code
stringlengths 3
10M
| language
stringclasses 31
values |
|---|---|
/*
* This file is part of EvinceD.
* EvinceD is based on GtkD.
*
* EvinceD 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, with
* some exceptions, please read the COPYING file.
*
* EvinceD 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 EvinceD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
module evince.view.JobExport;
private import evince.document.Document;
private import evince.view.Job;
private import evince.view.c.functions;
public import evince.view.c.types;
private import glib.ConstructionException;
private import gobject.ObjectG;
/** */
public class JobExport : Job
{
/** the main Gtk struct */
protected EvJobExport* evJobExport;
/** Get the main Gtk struct */
public EvJobExport* getJobExportStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return evJobExport;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)evJobExport;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (EvJobExport* evJobExport, bool ownedRef = false)
{
this.evJobExport = evJobExport;
super(cast(EvJob*)evJobExport, ownedRef);
}
/** */
public static GType getType()
{
return ev_job_export_get_type();
}
/** */
public this(Document document)
{
auto __p = ev_job_export_new((document is null) ? null : document.getDocumentStruct());
if(__p is null)
{
throw new ConstructionException("null returned by new");
}
this(cast(EvJobExport*) __p, true);
}
/** */
public void setPage(int page)
{
ev_job_export_set_page(evJobExport, page);
}
}
|
D
|
/Users/likongyang/Desktop/wenlvdianxiao/wenlv/target/debug/build/memchr-427274b9ff11755e/build_script_build-427274b9ff11755e: /Users/likongyang/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.4/build.rs
/Users/likongyang/Desktop/wenlvdianxiao/wenlv/target/debug/build/memchr-427274b9ff11755e/build_script_build-427274b9ff11755e.d: /Users/likongyang/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.4/build.rs
/Users/likongyang/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.4/build.rs:
|
D
|
module hubtel;
public import hubtel.config;
public import hubtel.merchant;
|
D
|
a sweet but poisonous syrupy liquid used as an antifreeze and solvent
any of a class of alcohols having 2 hydroxyl groups in each molecule
|
D
|
module owlchain.xdr.ledgerUpgradeType;
import std.conv;
import owlchain.xdr.type;
import owlchain.xdr.xdrDataInputStream;
import owlchain.xdr.xdrDataOutputStream;
enum LedgerUpgradeType
{
LEDGER_UPGRADE_VERSION = 1,
LEDGER_UPGRADE_BASE_FEE = 2,
LEDGER_UPGRADE_MAX_TX_SET_SIZE = 3
}
static void encodeLedgerUpgradeType(XdrDataOutputStream stream, ref const LedgerUpgradeType encodedLedgerUpgradeType)
{
int32 value = cast(int) encodedLedgerUpgradeType;
stream.writeInt32(value);
}
static LedgerUpgradeType decodeLedgerUpgradeType(XdrDataInputStream stream)
{
LedgerUpgradeType decodedLedgerUpgradeType;
const int32 value = stream.readInt32();
switch (value)
{
case 1:
decodedLedgerUpgradeType = LedgerUpgradeType.LEDGER_UPGRADE_VERSION;
break;
case 2:
decodedLedgerUpgradeType = LedgerUpgradeType.LEDGER_UPGRADE_BASE_FEE;
break;
case 3:
decodedLedgerUpgradeType = LedgerUpgradeType.LEDGER_UPGRADE_MAX_TX_SET_SIZE;
break;
default:
throw new Exception("Unknown enum value: " ~ to!string(value,10));
}
return decodedLedgerUpgradeType;
}
|
D
|
module hunt.database.driver.mysql.MySQLClient;
/**
* An interface to define MySQL specific constants or behaviors.
*/
interface MySQLClient {
/**
* SqlResult Property for last_insert_id
*/
enum string LAST_INSERTED_ID = "last_insert_id";
}
|
D
|
module UnrealScript.Engine.InterpGroupDirector;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.InterpGroup;
extern(C++) interface InterpGroupDirector : InterpGroup
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class Engine.InterpGroupDirector")); }
private static __gshared InterpGroupDirector mDefaultProperties;
@property final static InterpGroupDirector DefaultProperties() { mixin(MGDPC("InterpGroupDirector", "InterpGroupDirector Engine.Default__InterpGroupDirector")); }
}
|
D
|
module orm.orm;
public import orm.table;
public import orm.database;
import std.traits;
import std.conv;
import std.uuid;
/**
* Mark for primary key.
*
* Warning: Must be a one primary key or
* compile time error will occur.
*
* Example:
* --------
* struct SomeTable
* {
* @PrimaryKey
* int id;
* }
* --------
*/
enum PrimaryKey;
struct ForeignKey(Table)
if(isAggregateType!Table)
{
alias Table ForeignTable;
string foreignIdField;
}
Table!(T).WhereGenerator whereAllGen(T)()
{
return (TableFormat!T tf){return "";};
}
Table!(T).WhereGenerator whereFieldGen(T, FieldType)(string fieldName, FieldType field)
{
return (TableFormat!T tf){return fieldName~" = '"~to!string(field)~"'";};
}
Table!(T).WhereGenerator whereFieldsGen(T, FieldTypes...)(string[] fieldNames, FieldTypes fields)
{
return (TableFormat!T tf)
{
assert(fieldNames.length == fields.length, "whereFieldsGen: passed unqueal arrays of names and values");
string ret;
foreach(i, field; fields)
{
ret ~= fieldNames[i]~" = ";
static if(isSomeString!(FieldTypes[i]))
{
ret ~= "'"~field~"'";
} else static if(is(FieldTypes[i] == UUID))
{
ret ~= "'"~to!string(field)~"'";
} else
{
ret ~= to!string(field);
}
static if(i != fields.length-1)
{
ret ~= " AND ";
} else
{
ret ~= " ";
}
}
return ret;
};
}
|
D
|
/******************************************************************************
This module contains a struct that implements a simple interactive commandline
for running MiniD code.
License:
Copyright (c) 2008 Jarrett Billingsley
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the
use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it freely,
subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not
be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Authors:
John Demme <me@teqdruid.com> (2007, initial code)
Robert Clipsham <robert@octarineparrot.com> (2009, added readline support)
******************************************************************************/
module minid.commandline;
import std.stdio;
import std.string;
// import tango.core.Exception;
// import tango.io.Console;
// import tango.io.Stdout;
// import tango.io.model.IConduit;
// import tango.io.stream.Lines;
// import tango.stdc.signal;
// import tango.stdc.stringz;
// import tango.text.Util;
// alias tango.text.Util.contains contains;
import minid.compiler;
import minid.ex;
import minid.interpreter;
import minid.types;
import minid.utils;
version(MDReadline)
{
extern(C)
{
void using_history();
void add_history(char*);
void clear_history();
void stifle_history(int);
int unstifle_history();
char* readline(char*);
int printf(char*, ...);
char* function(char*, int) rl_completion_entry_function;
static char* emptyCompleter(char*, int)
{
return null;
}
}
static this()
{
using_history();
rl_completion_entry_function = &emptyCompleter;
}
// It's a singleton since there's only one stdin..!
class ReadlineStream : InputBuffer
{
private static ReadlineStream _instance;
public static ReadlineStream instance()
{
return _instance;
}
static this()
{
_instance = new ReadlineStream();
_instance.maxHistory = -1;
}
// nonstatic
private char* mPrompt;
private char[] mBuffer;
private bool mFirstCall = true;
private this()
{
if(_instance !is null)
throw new Exception("Attempting to create more than one instance of ReadlineStream");
}
public size_t readln(ref char[] dst)
{
dst = cast(char[])load();
return dst.length;
}
public void maxHistory(int max)
{
if(max == -1)
unstifle_history();
else if(max >= 0)
stifle_history(max);
}
/**
This depends on p always being 0-terminated (like a string literal).
*/
public void prompt(char[] p)
{
mPrompt = p.ptr;
}
public override size_t read(void[] dst)
{
throw new IOException("Unimplemented");
}
public override void[] load(size_t max = size_t.max)
{
if(mFirstCall)
{
mFirstCall = false;
return null;
}
if(mBuffer is null)
{
auto line = readline(mPrompt);
while(fromStringz(line).length == 0)
line = readline(mPrompt);
add_history(line);
return fromStringz(line);
}
auto buf = mBuffer;
mBuffer = null;
return buf;
}
public override InputStream input()
{
return this;
}
public override IConduit conduit()
{
return cast(IConduit)this;
}
public override long seek(long, Anchor)
{
throw new IOException( "Unimplemented" );
}
public override IOStream flush()
{
return this;
}
public override void close()
{
mBuffer = null;
clear_history();
}
public override void[] slice()
{
if(mBuffer is null)
mBuffer = cast(char[])load();
return cast(void[])mBuffer[0 .. $];
}
public override bool next(size_t delegate(void[]) scan)
{
if(mBuffer is null)
mBuffer = cast(char[])load();
if(scan(cast(void[])mBuffer) is Eof)
{
mBuffer = null;
return false;
}
return true;
}
public override size_t reader(size_t delegate(void[]) consumer)
{
if(mBuffer is null)
mBuffer = cast(char[])load();
return consumer(mBuffer[0 .. $]);
}
}
/**
An Input struct to be used with the CLI struct, which wraps libreadline.
*/
struct MDReadlineInput
{
static Lines!(char) mLines;
static this()
{
mLines = new Lines!(char)(ReadlineStream.instance.input);
}
char[] readln(MDThread* t, char[] prompt)
{
ReadlineStream.instance.prompt = prompt;
return mLines.next();
}
}
}
/**
An Input struct to be used with the CLI struct, which wraps standard in/out.
*/
struct MDConsoleInput
{
lines mLines;
void init(MDThread* t)
{
mLines = lines(stdin);
}
string readln(MDThread* t, string prompt)
{
write(prompt);
string s;
foreach(string line; mLines)
{
s = line;
break;
}
s = s[0 .. $ - 1];
if(s.length && s[$ - 1] == '\r')
s = s[0 .. $ - 1];
return s;
}
}
version(MDReadline)
/** An alias to the default Input type. */
alias MDReadlineInput MDDefaultInput;
else
/** An alias to the default Input type. */
alias MDConsoleInput MDDefaultInput;
/**
A template that checks that a given type conforms to the Input interface used by
the CLI struct. The given type T $(B must) implement "char[] readln(MDThread* t, char[] p)",
where 't' is a thread object and 'p' is the prompt to be used for getting a line of input. It
may optionally implement a method "init(MDThread* t)", which is called when the interactive
CLI prompt is started and can be used to initialize members. It may optionally implement a
method "cleanup(MDThread* t)", which is called when the interactive CLI prompt is exited and
can be used to clean up resources. If T is a class, it must have a no-argument constructor.
*/
template IsValidInputType(T)
{
const bool IsValidInputType = is(typeof
({
MDThread* t;
T input;
static if(is(T : Object))
input = new T;
static if(is(typeof(&input.init) == delegate))
input.init(t);
string prompt;
string line = input.readln(t, prompt);
static if(is(typeof(&input.cleanup) == delegate))
input.cleanup(t);
}));
}
const SIGINT = 2; // Terminal interrupt character
extern(C) private alias void function(int) sigfn_t;
extern(C) sigfn_t signal(int sig, sigfn_t func);
/**
This struct encapsulates an interactive MiniD interpreter. MDCL uses this struct to do its
interactive prompt.
This struct installs a signal handler that catches Ctrl+C (SIGINT) signals. It restores
the old signal handler when it exits.
The Input type must be a struct or class type which implements the Input interface as described
in IsValidInputType.
*/
struct CLI(Input)
{
static assert(IsValidInputType!(Input), "Type '" ~ Input.stringof ~ "' does not fulfill the Input interface");
enum string Prompt1 = ">>> ";
enum string Prompt2 = "... ";
private Input mInput;
private string mPrompt = Prompt1;
private bool mRunning;
private bool mReplacedExit = false;
static class Goober
{
CLI!(Input)* self;
this(CLI!(Input)* self)
{
this.self = self;
}
}
private void setupExit(MDThread* t)
{
// Check that minid.commandline.oldExits exists
getRegistry(t);
pushString(t, "minid.commandline.oldExits");
if(!opin(t, -1, -2))
{
newArray(t, 0);
fielda(t, -3);
pop(t);
}
else
pop(t, 2);
// Set up the exit object
newTable(t);
pushNativeObj(t, new Goober(&this));
newFunction(t, function uword(MDThread* t, uword numParams)
{
getUpval(t, 0);
auto g = cast(Goober)getNativeObj(t, -1);
g.self.mRunning = false;
return 0;
}, "exit", 1);
fielda(t, -2, "opCall");
newFunction(t, function uword(MDThread* t, uword numParams)
{
pushString(t, "Use \"exit()\" or Ctrl+D<enter> to end.");
return 1;
}, "toString");
fielda(t, -2, "toString");
// Is there already an 'exit'?
if(findGlobal(t, "exit"))
{
// Already a global named 'exit', replace it carefully.
field(t, -1, "exit");
dup(t);
fielda(t, -4, "old");
getRegistryVar(t, "minid.commandline.oldExits");
swap(t);
cateq(t, -2, 1);
pop(t);
swap(t);
fielda(t, -2, "exit");
pop(t);
mReplacedExit = true;
}
else
{
// We can just make the global.
newGlobal(t, "exit");
mReplacedExit = false;
}
}
private void cleanupExit(MDThread* t)
{
if(mReplacedExit)
{
// exit = registry.("minid.commandline.oldExits").pop()
getRegistryVar(t, "minid.commandline.oldExits");
pushNull(t);
methodCall(t, -2, "pop", 1);
setGlobal(t, "exit");
}
else
{
// This *should* return true, but just in case.
if(findGlobal(t, "exit"))
{
// unset("exit")
pushString(t, "exit");
removeKey(t, -2);
pop(t);
}
}
}
/**
This method runs an interactive prompt using the Input type that this struct was templated
with.
Params:
t = The thread to use for this CLI.
*/
public void interactive(MDThread* t)
{
// Initialize the input
static if(is(Input : Object))
mInput = new Input;
static if(is(typeof(&mInput.init) == delegate))
mInput.init(t);
char[] buffer;
// Set up the exit object
setupExit(t);
// Set up the Ctrl+C handler
// static so the interrupt handler can access it.
static bool didHalt = false;
didHalt = false;
static MDThread* thread;
thread = t;
static extern(C) void interruptHandler(int s)
{
pendingHalt(thread);
didHalt = true;
signal(s, &interruptHandler);
}
auto oldInterrupt = signal(SIGINT, &interruptHandler);
scope(exit)
signal(SIGINT, oldInterrupt);
// Support funcs
bool couldBeDecl()
{
auto temp = buffer.stripl();
return temp.startsWith("function") || temp.startsWith("class") || temp.startsWith("namespace") || temp.startsWith("@");
}
bool tryAsStatement(Exception e = null)
{
scope c = new Compiler(t);
word reg;
try
reg = c.compileStatements(cast(string)buffer, "CLI");
catch(MDException e2)
{
catchException(t);
pop(t);
if(c.isEof())
{
mPrompt = Prompt2;
return true;
}
else if(c.isLoneStmt())
{
if(e)
{
writeln("When attempting to evaluate as an expression:");
writefln("Error: %s", e);
writeln("When attempting to evaluate as a statement:");
}
}
writefln("Error: %s", e2);
return false;
}
try
{
pushNull(t);
rawCall(t, reg, 0);
}
catch(MDException e2)
{
catchException(t);
pop(t);
writefln("Error: %s", e2);
getTraceback(t);
writeln(getString(t, -1));
pop(t);
writeln();
}
return false;
}
bool tryAsExpression()
{
scope c = new Compiler(t);
word reg;
try
reg = c.compileExpression(cast(string)buffer, "CLI");
catch(MDException e)
{
catchException(t);
pop(t);
if(c.isEof())
{
mPrompt = Prompt2;
return true;
}
else
return tryAsStatement(e);
}
try
{
pushNull(t);
auto numRets = rawCall(t, reg, -1);
if(numRets > 0)
{
write(" => ");
bool first = true;
for(word i = stackSize(t) - numRets; i < stackSize(t); i++)
{
if(first)
first = false;
else
write(", ");
reg = pushGlobal(t, "dumpVal");
pushNull(t);
dup(t, i);
pushBool(t, false);
rawCall(t, reg, 0);
}
writeln();
}
}
catch(MDException e)
{
catchException(t);
pop(t);
writefln("Error: %s", e);
getTraceback(t);
writeln(getString(t, -1));
pop(t);
writeln();
}
return false;
}
// Main loop
writeln("Use exit() or Ctrl+D<Enter> to end.");
mRunning = true;
mPrompt = Prompt1;
auto stackIdx = stackSize(t);
scope(exit)
{
// Clean up the exit object
setStackSize(t, stackIdx);
cleanupExit(t);
// Clean up the input
static if(is(typeof(&mInput.cleanup) == delegate))
mInput.cleanup(t);
}
while(mRunning)
{
if(auto diff = stackSize(t) - stackIdx)
pop(t, diff);
// Get input
try
{
auto line = mInput.readln(t, mPrompt);
if(line.ptr is null)
{
if(didHalt)
{
didHalt = false;
writeln();
}
else
break;
}
// Look for Ctrl+D
if(line.indexOf('\4') != -1)
break;
if(buffer.length is 0 && line.strip().length is 0)
{
mPrompt = Prompt1;
continue;
}
if(buffer.length == 0)
buffer ~= line;
else
buffer ~= '\n' ~ line;
}
catch(MDHaltException e)
{
writeln("Halted by keyboard interrupt.");
didHalt = false;
mPrompt = Prompt1;
continue;
}
// Execute
try
{
if(couldBeDecl())
{
if(tryAsStatement())
continue;
}
else if(tryAsExpression())
continue;
}
catch(MDHaltException e)
{
writeln("Halted by keyboard interrupt.");
didHalt = false;
}
mPrompt = Prompt1;
buffer.length = 0;
}
}
}
/**
An alias for CLI instantiated with the default Input type. This is a basic console-
based CLI.
*/
alias CLI!(MDDefaultInput) ConsoleCLI;
|
D
|
module project.gui.windows.content.visualization;
/// Visualization window content description
import project.gui.windows.instantiator.instantiator;
import dlangui;
const BasicWindowInstantiator instantiator;
enum windowId = "visualization";
enum parentId = "score";
/// Window content described in DML language
private enum gui = q{
VerticalLayout {
backgroundColor: "#D3DAE3"
margins: 10px
padding: 20px
Visualizer {
id: visualizer
minHeight: 700px
minWidth: 700px
}
}
};
/// Module constructor
static this() @system {
const WindowInitParams params = {
caption: UIString.fromRaw("Visualization"d),
content: gui
};
instantiator = new const BasicWindowInstantiator(params);
}
|
D
|
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;
immutable long MOD = 17;
void main() {
long[][] mat = [[1, 1, 1, 1],
[1, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 1, 0]];
auto Q = readln.chomp.to!int;
while (Q--) {
auto N = readln.chomp.to!long;
auto A = powmod(mat, N);
A[3][3].writeln;
}
}
long[][] mul(long[][] A, long[][] B) {
auto n = A.length.to!int;
auto ret = new long[][](n, n);
foreach (i; 0..n)
foreach (j; 0..n)
foreach (k; 0..n)
(ret[i][j] += A[i][k] * B[k][j]) %= MOD;
return ret;
}
long[][] powmod(long[][] A, long x) {
auto n = A.length.to!int;
auto ret = new long[][](n, n);
foreach (i; 0..n) ret[i][i] = 1;
while (x) {
if (x % 2) ret = mul(ret, A);
A = mul(A, A);
x /= 2;
}
return ret;
}
|
D
|
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.build/Convertibles/Schema+Convertible.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UUID+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Schema+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Date+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/String+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Optional+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Bool+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Integer+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UnsignedInteger+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/SchemaWrapper+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Set+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/FloatingPoint+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Array+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Dictionary+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeConvertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Number/Number.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Identifier.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/FuzzyConverter.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Cases.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Literals.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Getters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Setters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Errors.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Init.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Context.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Fuzzy+Any.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.build/Schema+Convertible~partial.swiftmodule : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UUID+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Schema+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Date+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/String+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Optional+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Bool+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Integer+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UnsignedInteger+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/SchemaWrapper+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Set+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/FloatingPoint+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Array+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Dictionary+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeConvertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Number/Number.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Identifier.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/FuzzyConverter.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Cases.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Literals.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Getters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Setters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Errors.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Init.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Context.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Fuzzy+Any.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.build/Schema+Convertible~partial.swiftdoc : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Equatable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+PathIndexable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UUID+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Schema+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Date+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/String+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Optional+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Bool+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/Integer+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/UnsignedInteger+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/SchemaWrapper+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Set+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Convertibles/FloatingPoint+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Array+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Dictionary+Convertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/NodeConvertible.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Number/Number.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Identifier.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/FuzzyConverter.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Cases.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredDataWrapper/StructuredDataWrapper+Literals.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Getters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Accessors/Setters.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Errors.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData+Init.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Core/Context.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/node.git-9175390252000121167/Sources/Node/Fuzzy/Fuzzy+Any.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtWidgets module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QFONTDIALOG_H
#define QFONTDIALOG_H
public import qt.QtGui.qwindowdefs;
public import qt.QtWidgets.qdialog;
public import qt.QtGui.qfont;
QT_BEGIN_NAMESPACE
#ifndef QT_NO_FONTDIALOG
class QFontDialogPrivate;
class Q_WIDGETS_EXPORT QFontDialog : public QDialog
{
mixin Q_OBJECT;
mixin Q_DECLARE_PRIVATE;
Q_ENUMS(FontDialogOption)
mixin Q_PROPERTY!(QFont, "currentFont", "READ", "currentFont", "WRITE", "setCurrentFont", "NOTIFY", "currentFontChanged");
mixin Q_PROPERTY!(FontDialogOptions, "options", "READ", "options", "WRITE", "setOptions");
public:
enum FontDialogOption {
NoButtons = 0x00000001,
DontUseNativeDialog = 0x00000002,
ScalableFonts = 0x00000004,
NonScalableFonts = 0x00000008,
MonospacedFonts = 0x00000010,
ProportionalFonts = 0x00000020
};
Q_DECLARE_FLAGS(FontDialogOptions, FontDialogOption)
explicit QFontDialog(QWidget *parent = 0);
explicit QFontDialog(ref const(QFont) initial, QWidget *parent = 0);
~QFontDialog();
void setCurrentFont(ref const(QFont) font);
QFont currentFont() const;
QFont selectedFont() const;
void setOption(FontDialogOption option, bool on = true);
bool testOption(FontDialogOption option) const;
void setOptions(FontDialogOptions options);
FontDialogOptions options() const;
#ifdef Q_NO_USING_KEYWORD
#ifndef Q_QDOC
void open() { QDialog::open(); }
#endif
#else
using QDialog::open;
#endif
void open(QObject *receiver, const(char)* member);
void setVisible(bool visible);
static QFont getFont(bool *ok, QWidget *parent = 0);
static QFont getFont(bool *ok, ref const(QFont) initial, QWidget *parent = 0, ref const(QString) title = QString(),
FontDialogOptions options = 0);
Q_SIGNALS:
void currentFontChanged(ref const(QFont) font);
void fontSelected(ref const(QFont) font);
protected:
void changeEvent(QEvent *event);
void done(int result);
bool eventFilter(QObject *object, QEvent *event);
private:
mixin Q_DISABLE_COPY;
Q_PRIVATE_SLOT(d_func(), void _q_sizeChanged(ref const(QString) ))
Q_PRIVATE_SLOT(d_func(), void _q_familyHighlighted(int))
Q_PRIVATE_SLOT(d_func(), void _q_writingSystemHighlighted(int))
Q_PRIVATE_SLOT(d_func(), void _q_styleHighlighted(int))
Q_PRIVATE_SLOT(d_func(), void _q_sizeHighlighted(int))
Q_PRIVATE_SLOT(d_func(), void _q_updateSample())
};
Q_DECLARE_OPERATORS_FOR_FLAGS(QFontDialog::FontDialogOptions)
#endif // QT_NO_FONTDIALOG
QT_END_NAMESPACE
#endif // QFONTDIALOG_H
|
D
|
module android.java.android.widget.ExpandableListView_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.android.content.Context_d_interface;
import import35 = android.java.android.view.View_OnClickListener_d_interface;
import import33 = android.java.android.widget.AdapterView_OnItemLongClickListener_d_interface;
import import39 = android.java.java.util.Collection_d_interface;
import import49 = android.java.android.graphics.Region_d_interface;
import import72 = android.java.android.view.accessibility.AccessibilityNodeProvider_d_interface;
import import13 = android.java.android.widget.Adapter_d_interface;
import import67 = android.java.android.view.autofill.AutofillValue_d_interface;
import import99 = android.java.android.view.View_OnUnhandledKeyEventListener_d_interface;
import import64 = android.java.android.view.View_OnGenericMotionListener_d_interface;
import import100 = android.java.java.lang.Class_d_interface;
import import63 = android.java.android.view.View_OnTouchListener_d_interface;
import import66 = android.java.android.view.View_OnDragListener_d_interface;
import import88 = android.java.android.content.res.ColorStateList_d_interface;
import import46 = android.java.android.view.ViewParent_d_interface;
import import24 = android.java.android.view.PointerIcon_d_interface;
import import83 = android.java.android.view.WindowId_d_interface;
import import21 = android.java.android.view.accessibility.AccessibilityEvent_d_interface;
import import31 = android.java.android.widget.AbsListView_RecyclerListener_d_interface;
import import76 = android.java.android.view.TouchDelegate_d_interface;
import import5 = android.java.android.widget.ExpandableListAdapter_d_interface;
import import8 = android.java.android.widget.ExpandableListView_OnGroupExpandListener_d_interface;
import import11 = android.java.android.os.Parcelable_d_interface;
import import78 = android.java.android.animation.StateListAnimator_d_interface;
import import14 = android.java.android.content.Intent_d_interface;
import import15 = android.java.android.graphics.Rect_d_interface;
import import43 = android.java.android.view.ViewGroupOverlay_d_interface;
import import91 = android.java.android.view.ViewTreeObserver_d_interface;
import import23 = android.java.android.graphics.Canvas_d_interface;
import import80 = android.java.android.os.Handler_d_interface;
import import6 = android.java.android.view.View_d_interface;
import import70 = android.java.android.view.contentcapture.ContentCaptureSession_d_interface;
import import28 = android.java.android.text.Editable_d_interface;
import import44 = android.java.android.view.ViewGroup_OnHierarchyChangeListener_d_interface;
import import45 = android.java.android.animation.LayoutTransition_d_interface;
import import48 = android.java.android.view.animation.LayoutAnimationController_d_interface;
import import1 = android.java.android.util.AttributeSet_d_interface;
import import2 = android.java.android.graphics.drawable.Drawable_d_interface;
import import16 = android.java.android.view.KeyEvent_d_interface;
import import34 = android.java.android.widget.AdapterView_OnItemSelectedListener_d_interface;
import import61 = android.java.android.view.View_OnCreateContextMenuListener_d_interface;
import import65 = android.java.android.view.View_OnHoverListener_d_interface;
import import42 = android.java.android.os.Bundle_d_interface;
import import69 = android.java.android.view.autofill.AutofillId_d_interface;
import import71 = android.java.android.view.View_AccessibilityDelegate_d_interface;
import import62 = android.java.android.view.View_OnKeyListener_d_interface;
import import53 = android.java.java.util.Map_d_interface;
import import52 = android.java.android.view.ViewOverlay_d_interface;
import import81 = android.java.java.lang.Runnable_d_interface;
import import68 = android.java.android.util.SparseArray_d_interface;
import import85 = android.java.android.graphics.Paint_d_interface;
import import73 = android.java.android.view.View_OnApplyWindowInsetsListener_d_interface;
import import10 = android.java.android.widget.ExpandableListView_OnChildClickListener_d_interface;
import import94 = android.java.android.content.ClipData_d_interface;
import import79 = android.java.android.view.ViewOutlineProvider_d_interface;
import import77 = android.java.android.graphics.Matrix_d_interface;
import import82 = android.java.android.os.IBinder_d_interface;
import import98 = android.java.android.view.ViewPropertyAnimator_d_interface;
import import95 = android.java.android.view.View_DragShadowBuilder_d_interface;
import import74 = android.java.android.view.KeyEvent_DispatcherState_d_interface;
import import75 = android.java.android.view.ContextMenu_d_interface;
import import29 = android.java.android.widget.AbsListView_LayoutParams_d_interface;
import import96 = android.java.android.view.ViewGroup_d_interface;
import import37 = android.java.android.view.ActionMode_d_interface;
import import4 = android.java.android.widget.AdapterView_OnItemClickListener_d_interface;
import import27 = android.java.android.view.inputmethod.EditorInfo_d_interface;
import import41 = android.java.android.view.DragEvent_d_interface;
import import38 = android.java.android.view.ActionMode_Callback_d_interface;
import import60 = android.java.android.view.View_OnContextClickListener_d_interface;
import import40 = android.java.android.content.res.Configuration_d_interface;
import import50 = android.java.android.view.WindowInsets_d_interface;
import import32 = android.java.android.view.ViewGroup_LayoutParams_d_interface;
import import92 = android.java.android.view.animation.Animation_d_interface;
import import97 = android.java.android.view.View_OnCapturedPointerListener_d_interface;
import import59 = android.java.android.view.View_OnLongClickListener_d_interface;
import import3 = android.java.android.widget.ListAdapter_d_interface;
import import93 = android.java.android.view.View_OnSystemUiVisibilityChangeListener_d_interface;
import import47 = android.java.android.graphics.Point_d_interface;
import import86 = android.java.android.graphics.Bitmap_d_interface;
import import12 = android.java.java.lang.CharSequence_d_interface;
import import17 = android.java.android.view.accessibility.AccessibilityNodeInfo_d_interface;
import import90 = android.java.android.graphics.BlendMode_d_interface;
import import57 = android.java.android.view.View_OnLayoutChangeListener_d_interface;
import import87 = android.java.android.content.res.Resources_d_interface;
import import19 = android.java.android.widget.AbsListView_MultiChoiceModeListener_d_interface;
import import18 = android.java.android.util.SparseBooleanArray_d_interface;
import import20 = android.java.android.widget.AbsListView_OnScrollListener_d_interface;
import import58 = android.java.android.view.View_OnAttachStateChangeListener_d_interface;
import import55 = android.java.android.view.View_OnScrollChangeListener_d_interface;
import import26 = android.java.android.view.inputmethod.InputConnection_d_interface;
import import89 = android.java.android.graphics.PorterDuff_Mode_d_interface;
import import51 = android.java.android.view.animation.Animation_AnimationListener_d_interface;
import import84 = android.java.android.view.Display_d_interface;
import import22 = android.java.android.view.MotionEvent_d_interface;
import import54 = android.java.android.content.res.TypedArray_d_interface;
import import25 = android.java.java.util.ArrayList_d_interface;
import import36 = android.java.android.view.ViewStructure_d_interface;
import import30 = android.java.java.util.List_d_interface;
import import56 = android.java.android.view.View_OnFocusChangeListener_d_interface;
import import9 = android.java.android.widget.ExpandableListView_OnGroupClickListener_d_interface;
import import7 = android.java.android.widget.ExpandableListView_OnGroupCollapseListener_d_interface;
final class ExpandableListView : IJavaObject {
static immutable string[] _d_canCastTo = [
];
@Import this(import0.Context);
@Import this(import0.Context, import1.AttributeSet);
@Import this(import0.Context, import1.AttributeSet, int);
@Import this(import0.Context, import1.AttributeSet, int, int);
@Import void onRtlPropertiesChanged(int);
@Import void setChildDivider(import2.Drawable);
@Import void setAdapter(import3.ListAdapter);
@Import import3.ListAdapter getAdapter();
@Import void setOnItemClickListener(import4.AdapterView_OnItemClickListener);
@Import void setAdapter(import5.ExpandableListAdapter);
@Import import5.ExpandableListAdapter getExpandableListAdapter();
@Import bool performItemClick(import6.View, int, long);
@Import bool expandGroup(int);
@Import bool expandGroup(int, bool);
@Import bool collapseGroup(int);
@Import void setOnGroupCollapseListener(import7.ExpandableListView_OnGroupCollapseListener);
@Import void setOnGroupExpandListener(import8.ExpandableListView_OnGroupExpandListener);
@Import void setOnGroupClickListener(import9.ExpandableListView_OnGroupClickListener);
@Import void setOnChildClickListener(import10.ExpandableListView_OnChildClickListener);
@Import long getExpandableListPosition(int);
@Import int getFlatListPosition(long);
@Import long getSelectedPosition();
@Import long getSelectedId();
@Import void setSelectedGroup(int);
@Import bool setSelectedChild(int, int, bool);
@Import bool isGroupExpanded(int);
@Import static int getPackedPositionType(long);
@Import static int getPackedPositionGroup(long);
@Import static int getPackedPositionChild(long);
@Import static long getPackedPositionForChild(int, int);
@Import static long getPackedPositionForGroup(int);
@Import void setChildIndicator(import2.Drawable);
@Import void setChildIndicatorBounds(int, int);
@Import void setChildIndicatorBoundsRelative(int, int);
@Import void setGroupIndicator(import2.Drawable);
@Import void setIndicatorBounds(int, int);
@Import void setIndicatorBoundsRelative(int, int);
@Import import11.Parcelable onSaveInstanceState();
@Import void onRestoreInstanceState(import11.Parcelable);
@Import import12.CharSequence getAccessibilityClassName();
@Import void setAdapter(import13.Adapter);
@Import int getMaxScrollAmount();
@Import void addHeaderView(import6.View, IJavaObject, bool);
@Import void addHeaderView(import6.View);
@Import int getHeaderViewsCount();
@Import bool removeHeaderView(import6.View);
@Import void addFooterView(import6.View, IJavaObject, bool);
@Import void addFooterView(import6.View);
@Import int getFooterViewsCount();
@Import bool removeFooterView(import6.View);
@Import void setRemoteViewsAdapter(import14.Intent);
@Import bool requestChildRectangleOnScreen(import6.View, import15.Rect, bool);
@Import void smoothScrollToPosition(int);
@Import void smoothScrollByOffset(int);
@Import void setSelection(int);
@Import void setSelectionAfterHeaderView();
@Import bool dispatchKeyEvent(import16.KeyEvent);
@Import bool onKeyDown(int, import16.KeyEvent);
@Import bool onKeyMultiple(int, int, import16.KeyEvent);
@Import bool onKeyUp(int, import16.KeyEvent);
@Import void setItemsCanFocus(bool);
@Import bool getItemsCanFocus();
@Import bool isOpaque();
@Import void setCacheColorHint(int);
@Import import2.Drawable getDivider();
@Import void setDivider(import2.Drawable);
@Import int getDividerHeight();
@Import void setDividerHeight(int);
@Import void setHeaderDividersEnabled(bool);
@Import bool areHeaderDividersEnabled();
@Import void setFooterDividersEnabled(bool);
@Import bool areFooterDividersEnabled();
@Import void setOverscrollHeader(import2.Drawable);
@Import import2.Drawable getOverscrollHeader();
@Import void setOverscrollFooter(import2.Drawable);
@Import import2.Drawable getOverscrollFooter();
@Import long[] getCheckItemIds();
@Import void onInitializeAccessibilityNodeInfoForItem(import6.View, int, import17.AccessibilityNodeInfo);
@Import int getCheckedItemCount();
@Import bool isItemChecked(int);
@Import int getCheckedItemPosition();
@Import import18.SparseBooleanArray getCheckedItemPositions();
@Import long[] getCheckedItemIds();
@Import void clearChoices();
@Import void setItemChecked(int, bool);
@Import int getChoiceMode();
@Import void setChoiceMode(int);
@Import void setMultiChoiceModeListener(import19.AbsListView_MultiChoiceModeListener);
@Import void setFastScrollEnabled(bool);
@Import void setFastScrollStyle(int);
@Import void setFastScrollAlwaysVisible(bool);
@Import bool isFastScrollAlwaysVisible();
@Import int getVerticalScrollbarWidth();
@Import bool isFastScrollEnabled();
@Import void setVerticalScrollbarPosition(int);
@Import void setScrollBarStyle(int);
@Import void setSmoothScrollbarEnabled(bool);
@Import bool isSmoothScrollbarEnabled();
@Import void setOnScrollListener(import20.AbsListView_OnScrollListener);
@Import void sendAccessibilityEventUnchecked(import21.AccessibilityEvent);
@Import bool isScrollingCacheEnabled();
@Import void setScrollingCacheEnabled(bool);
@Import void setTextFilterEnabled(bool);
@Import bool isTextFilterEnabled();
@Import void getFocusedRect(import15.Rect);
@Import bool isStackFromBottom();
@Import void setStackFromBottom(bool);
@Import void setFilterText(string);
@Import import12.CharSequence getTextFilter();
@Import void requestLayout();
@Import import6.View getSelectedView();
@Import int getListPaddingTop();
@Import int getListPaddingBottom();
@Import int getListPaddingLeft();
@Import int getListPaddingRight();
@Import void setDrawSelectorOnTop(bool);
@Import bool isDrawSelectorOnTop();
@Import void setSelector(int);
@Import void setSelector(import2.Drawable);
@Import import2.Drawable getSelector();
@Import void setScrollIndicators(import6.View, import6.View);
@Import bool verifyDrawable(import2.Drawable);
@Import void jumpDrawablesToCurrentState();
@Import void onWindowFocusChanged(bool);
@Import void onCancelPendingInputEvents();
@Import bool showContextMenu();
@Import bool showContextMenu(float, float);
@Import bool showContextMenuForChild(import6.View);
@Import bool showContextMenuForChild(import6.View, float, float);
@Import void dispatchDrawableHotspotChanged(float, float);
@Import int pointToPosition(int, int);
@Import long pointToRowId(int, int);
@Import void onTouchModeChanged(bool);
@Import bool onTouchEvent(import22.MotionEvent);
@Import bool onGenericMotionEvent(import22.MotionEvent);
@Import void fling(int);
@Import bool onStartNestedScroll(import6.View, import6.View, int);
@Import void onNestedScrollAccepted(import6.View, import6.View, int);
@Import void onNestedScroll(import6.View, int, int, int, int);
@Import bool onNestedFling(import6.View, float, float, bool);
@Import void draw(import23.Canvas);
@Import void requestDisallowInterceptTouchEvent(bool);
@Import bool onInterceptHoverEvent(import22.MotionEvent);
@Import import24.PointerIcon onResolvePointerIcon(import22.MotionEvent, int);
@Import bool onInterceptTouchEvent(import22.MotionEvent);
@Import void addTouchables(import25.ArrayList);
@Import void setFriction(float);
@Import void setVelocityScale(float);
@Import void smoothScrollToPositionFromTop(int, int, int);
@Import void smoothScrollToPositionFromTop(int, int);
@Import void smoothScrollToPosition(int, int);
@Import void smoothScrollBy(int, int);
@Import void scrollListBy(int);
@Import bool canScrollList(int);
@Import void invalidateViews();
@Import import26.InputConnection onCreateInputConnection(import27.EditorInfo);
@Import bool checkInputConnectionProxy(import6.View);
@Import void clearTextFilter();
@Import bool hasTextFilter();
@Import void onGlobalLayout();
@Import void beforeTextChanged(import12.CharSequence, int, int, int);
@Import void onTextChanged(import12.CharSequence, int, int, int);
@Import void afterTextChanged(import28.Editable);
@Import void onFilterComplete(int);
@Import import29.AbsListView_LayoutParams generateLayoutParams(import1.AttributeSet);
@Import void setTranscriptMode(int);
@Import int getTranscriptMode();
@Import int getSolidColor();
@Import int getCacheColorHint();
@Import void reclaimViews(import30.List);
@Import void deferNotifyDataSetChanged();
@Import bool onRemoteAdapterConnected();
@Import void onRemoteAdapterDisconnected();
@Import void setEdgeEffectColor(int);
@Import void setBottomEdgeEffectColor(int);
@Import void setTopEdgeEffectColor(int);
@Import int getTopEdgeEffectColor();
@Import int getBottomEdgeEffectColor();
@Import void setRecyclerListener(import31.AbsListView_RecyclerListener);
@Import void setSelectionFromTop(int, int);
@Import import4.AdapterView_OnItemClickListener getOnItemClickListener();
@Import void setOnItemLongClickListener(import33.AdapterView_OnItemLongClickListener);
@Import import33.AdapterView_OnItemLongClickListener getOnItemLongClickListener();
@Import void setOnItemSelectedListener(import34.AdapterView_OnItemSelectedListener);
@Import import34.AdapterView_OnItemSelectedListener getOnItemSelectedListener();
@Import void addView(import6.View);
@Import void addView(import6.View, int);
@Import void addView(import6.View, import32.ViewGroup_LayoutParams);
@Import void addView(import6.View, int, import32.ViewGroup_LayoutParams);
@Import void removeView(import6.View);
@Import void removeViewAt(int);
@Import void removeAllViews();
@Import int getSelectedItemPosition();
@Import long getSelectedItemId();
@Import IJavaObject getSelectedItem();
@Import int getCount();
@Import int getPositionForView(import6.View);
@Import int getFirstVisiblePosition();
@Import int getLastVisiblePosition();
@Import void setEmptyView(import6.View);
@Import import6.View getEmptyView();
@Import void setFocusable(int);
@Import void setFocusableInTouchMode(bool);
@Import IJavaObject getItemAtPosition(int);
@Import long getItemIdAtPosition(int);
@Import void setOnClickListener(import35.View_OnClickListener);
@Import void onProvideAutofillStructure(import36.ViewStructure, int);
@Import int getDescendantFocusability();
@Import void setDescendantFocusability(int);
@Import void requestChildFocus(import6.View, import6.View);
@Import void focusableViewAvailable(import6.View);
@Import import37.ActionMode startActionModeForChild(import6.View, import38.ActionMode_Callback);
@Import import37.ActionMode startActionModeForChild(import6.View, import38.ActionMode_Callback, int);
@Import import6.View focusSearch(import6.View, int);
@Import bool requestSendAccessibilityEvent(import6.View, import21.AccessibilityEvent);
@Import bool onRequestSendAccessibilityEvent(import6.View, import21.AccessibilityEvent);
@Import void childHasTransientStateChanged(import6.View, bool);
@Import bool hasTransientState();
@Import bool dispatchUnhandledMove(import6.View, int);
@Import void clearChildFocus(import6.View);
@Import void clearFocus();
@Import import6.View getFocusedChild();
@Import bool hasFocus();
@Import import6.View findFocus();
@Import void addFocusables(import25.ArrayList, int, int);
@Import void addKeyboardNavigationClusters(import39.Collection, int);
@Import void setTouchscreenBlocksFocus(bool);
@Import bool getTouchscreenBlocksFocus();
@Import void findViewsWithText(import25.ArrayList, import12.CharSequence, int);
@Import void dispatchWindowFocusChanged(bool);
@Import void dispatchDisplayHint(int);
@Import void dispatchWindowVisibilityChanged(int);
@Import void dispatchConfigurationChanged(import40.Configuration);
@Import void recomputeViewAttributes(import6.View);
@Import void bringChildToFront(import6.View);
@Import bool dispatchDragEvent(import41.DragEvent);
@Import void dispatchWindowSystemUiVisiblityChanged(int);
@Import void dispatchSystemUiVisibilityChanged(int);
@Import bool dispatchKeyEventPreIme(import16.KeyEvent);
@Import bool dispatchKeyShortcutEvent(import16.KeyEvent);
@Import bool dispatchTrackballEvent(import22.MotionEvent);
@Import bool dispatchCapturedPointerEvent(import22.MotionEvent);
@Import void dispatchPointerCaptureChanged(bool);
@Import void addChildrenForAccessibility(import25.ArrayList);
@Import bool dispatchTouchEvent(import22.MotionEvent);
@Import void setMotionEventSplittingEnabled(bool);
@Import bool isMotionEventSplittingEnabled();
@Import bool isTransitionGroup();
@Import void setTransitionGroup(bool);
@Import bool requestFocus(int, import15.Rect);
@Import bool restoreDefaultFocus();
@Import void dispatchStartTemporaryDetach();
@Import void dispatchFinishTemporaryDetach();
@Import void dispatchProvideStructure(import36.ViewStructure);
@Import void dispatchProvideAutofillStructure(import36.ViewStructure, int);
@Import void notifySubtreeAccessibilityStateChanged(import6.View, import6.View, int);
@Import bool onNestedPrePerformAccessibilityAction(import6.View, int, import42.Bundle);
@Import import43.ViewGroupOverlay getOverlay();
@Import int getChildDrawingOrder(int);
@Import bool getClipChildren();
@Import void setClipChildren(bool);
@Import void setClipToPadding(bool);
@Import bool getClipToPadding();
@Import void dispatchSetSelected(bool);
@Import void dispatchSetActivated(bool);
@Import void addView(import6.View, int, int);
@Import void updateViewLayout(import6.View, import32.ViewGroup_LayoutParams);
@Import void setOnHierarchyChangeListener(import44.ViewGroup_OnHierarchyChangeListener);
@Import void onViewAdded(import6.View);
@Import void onViewRemoved(import6.View);
@Import void removeViewInLayout(import6.View);
@Import void removeViewsInLayout(int, int);
@Import void removeViews(int, int);
@Import void setLayoutTransition(import45.LayoutTransition);
@Import import45.LayoutTransition getLayoutTransition();
@Import void removeAllViewsInLayout();
@Import void onDescendantInvalidated(import6.View, import6.View);
@Import void invalidateChild(import6.View, import15.Rect);
@Import import46.ViewParent invalidateChildInParent(int, import15.Rect[]);
@Import void offsetDescendantRectToMyCoords(import6.View, import15.Rect);
@Import void offsetRectIntoDescendantCoords(import6.View, import15.Rect);
@Import bool getChildVisibleRect(import6.View, import15.Rect, import47.Point);
@Import void layout(int, int, int, int);
@Import void startLayoutAnimation();
@Import void scheduleLayoutAnimation();
@Import void setLayoutAnimation(import48.LayoutAnimationController);
@Import import48.LayoutAnimationController getLayoutAnimation();
@Import bool isAnimationCacheEnabled();
@Import void setAnimationCacheEnabled(bool);
@Import bool isAlwaysDrawnWithCacheEnabled();
@Import void setAlwaysDrawnWithCacheEnabled(bool);
@Import int getPersistentDrawingCache();
@Import void setPersistentDrawingCache(int);
@Import int getLayoutMode();
@Import void setLayoutMode(int);
@Import int indexOfChild(import6.View);
@Import int getChildCount();
@Import import6.View getChildAt(int);
@Import static int getChildMeasureSpec(int, int, int);
@Import void clearDisappearingChildren();
@Import void startViewTransition(import6.View);
@Import void endViewTransition(import6.View);
@Import void suppressLayout(bool);
@Import bool isLayoutSuppressed();
@Import bool gatherTransparentRegion(import49.Region);
@Import void requestTransparentRegion(import6.View);
@Import import50.WindowInsets dispatchApplyWindowInsets(import50.WindowInsets);
@Import import51.Animation_AnimationListener getLayoutAnimationListener();
@Import void setAddStatesFromChildren(bool);
@Import bool addStatesFromChildren();
@Import void childDrawableStateChanged(import6.View);
@Import void setLayoutAnimationListener(import51.Animation_AnimationListener);
@Import bool shouldDelayChildPressedState();
@Import void onStopNestedScroll(import6.View);
@Import void onNestedPreScroll(import6.View, int, int, int[]);
@Import bool onNestedPreFling(import6.View, float, float);
@Import int getNestedScrollAxes();
@Import int[] getAttributeResolutionStack(int);
@Import import53.Map getAttributeSourceResourceMap();
@Import int getExplicitStyle();
@Import void saveAttributeDataForStyleable(import0.Context, int, import1.AttributeSet, import54.TypedArray, int, int[]);
@Import @JavaName("toString") string toString_();
override string toString() { return arsd.jni.javaObjectToString(this); }
@Import int getVerticalFadingEdgeLength();
@Import void setFadingEdgeLength(int);
@Import int getHorizontalFadingEdgeLength();
@Import void setVerticalScrollbarThumbDrawable(import2.Drawable);
@Import void setVerticalScrollbarTrackDrawable(import2.Drawable);
@Import void setHorizontalScrollbarThumbDrawable(import2.Drawable);
@Import void setHorizontalScrollbarTrackDrawable(import2.Drawable);
@Import import2.Drawable getVerticalScrollbarThumbDrawable();
@Import import2.Drawable getVerticalScrollbarTrackDrawable();
@Import import2.Drawable getHorizontalScrollbarThumbDrawable();
@Import import2.Drawable getHorizontalScrollbarTrackDrawable();
@Import int getVerticalScrollbarPosition();
@Import void setScrollIndicators(int);
@Import void setScrollIndicators(int, int);
@Import int getScrollIndicators();
@Import void setOnScrollChangeListener(import55.View_OnScrollChangeListener);
@Import void setOnFocusChangeListener(import56.View_OnFocusChangeListener);
@Import void addOnLayoutChangeListener(import57.View_OnLayoutChangeListener);
@Import void removeOnLayoutChangeListener(import57.View_OnLayoutChangeListener);
@Import void addOnAttachStateChangeListener(import58.View_OnAttachStateChangeListener);
@Import void removeOnAttachStateChangeListener(import58.View_OnAttachStateChangeListener);
@Import import56.View_OnFocusChangeListener getOnFocusChangeListener();
@Import bool hasOnClickListeners();
@Import void setOnLongClickListener(import59.View_OnLongClickListener);
@Import void setOnContextClickListener(import60.View_OnContextClickListener);
@Import void setOnCreateContextMenuListener(import61.View_OnCreateContextMenuListener);
@Import bool performClick();
@Import bool callOnClick();
@Import bool performLongClick();
@Import bool performLongClick(float, float);
@Import bool performContextClick(float, float);
@Import bool performContextClick();
@Import import37.ActionMode startActionMode(import38.ActionMode_Callback);
@Import import37.ActionMode startActionMode(import38.ActionMode_Callback, int);
@Import void setOnKeyListener(import62.View_OnKeyListener);
@Import void setOnTouchListener(import63.View_OnTouchListener);
@Import void setOnGenericMotionListener(import64.View_OnGenericMotionListener);
@Import void setOnHoverListener(import65.View_OnHoverListener);
@Import void setOnDragListener(import66.View_OnDragListener);
@Import void setRevealOnFocusHint(bool);
@Import bool getRevealOnFocusHint();
@Import bool requestRectangleOnScreen(import15.Rect);
@Import bool requestRectangleOnScreen(import15.Rect, bool);
@Import bool hasFocusable();
@Import bool hasExplicitFocusable();
@Import void setAccessibilityPaneTitle(import12.CharSequence);
@Import import12.CharSequence getAccessibilityPaneTitle();
@Import void sendAccessibilityEvent(int);
@Import void announceForAccessibility(import12.CharSequence);
@Import bool dispatchPopulateAccessibilityEvent(import21.AccessibilityEvent);
@Import void onPopulateAccessibilityEvent(import21.AccessibilityEvent);
@Import void onInitializeAccessibilityEvent(import21.AccessibilityEvent);
@Import import17.AccessibilityNodeInfo createAccessibilityNodeInfo();
@Import void onInitializeAccessibilityNodeInfo(import17.AccessibilityNodeInfo);
@Import void onProvideStructure(import36.ViewStructure);
@Import void onProvideVirtualStructure(import36.ViewStructure);
@Import void onProvideAutofillVirtualStructure(import36.ViewStructure, int);
@Import void autofill(import67.AutofillValue);
@Import void autofill(import68.SparseArray);
@Import import69.AutofillId getAutofillId();
@Import void setAutofillId(import69.AutofillId);
@Import int getAutofillType();
@Import string[] getAutofillHints();
@Import import67.AutofillValue getAutofillValue();
@Import int getImportantForAutofill();
@Import void setImportantForAutofill(int);
@Import bool isImportantForAutofill();
@Import void setContentCaptureSession(import70.ContentCaptureSession);
@Import import70.ContentCaptureSession getContentCaptureSession();
@Import void addExtraDataToAccessibilityNodeInfo(import17.AccessibilityNodeInfo, string, import42.Bundle);
@Import bool isVisibleToUserForAutofill(int);
@Import import71.View_AccessibilityDelegate getAccessibilityDelegate();
@Import void setAccessibilityDelegate(import71.View_AccessibilityDelegate);
@Import import72.AccessibilityNodeProvider getAccessibilityNodeProvider();
@Import import12.CharSequence getContentDescription();
@Import void setContentDescription(import12.CharSequence);
@Import void setAccessibilityTraversalBefore(int);
@Import int getAccessibilityTraversalBefore();
@Import void setAccessibilityTraversalAfter(int);
@Import int getAccessibilityTraversalAfter();
@Import int getLabelFor();
@Import void setLabelFor(int);
@Import bool isFocused();
@Import bool isScrollContainer();
@Import void setScrollContainer(bool);
@Import int getDrawingCacheQuality();
@Import void setDrawingCacheQuality(int);
@Import bool getKeepScreenOn();
@Import void setKeepScreenOn(bool);
@Import int getNextFocusLeftId();
@Import void setNextFocusLeftId(int);
@Import int getNextFocusRightId();
@Import void setNextFocusRightId(int);
@Import int getNextFocusUpId();
@Import void setNextFocusUpId(int);
@Import int getNextFocusDownId();
@Import void setNextFocusDownId(int);
@Import int getNextFocusForwardId();
@Import void setNextFocusForwardId(int);
@Import int getNextClusterForwardId();
@Import void setNextClusterForwardId(int);
@Import bool isShown();
@Import import50.WindowInsets onApplyWindowInsets(import50.WindowInsets);
@Import void setOnApplyWindowInsetsListener(import73.View_OnApplyWindowInsetsListener);
@Import void setSystemGestureExclusionRects(import30.List);
@Import import30.List getSystemGestureExclusionRects();
@Import void getLocationInSurface(int[]);
@Import import50.WindowInsets getRootWindowInsets();
@Import import50.WindowInsets computeSystemWindowInsets(import50.WindowInsets, import15.Rect);
@Import void setFitsSystemWindows(bool);
@Import bool getFitsSystemWindows();
@Import void requestFitSystemWindows();
@Import void requestApplyInsets();
@Import int getVisibility();
@Import void setVisibility(int);
@Import bool isEnabled();
@Import void setEnabled(bool);
@Import void setFocusable(bool);
@Import void setAutofillHints(string[]);
@Import void setSoundEffectsEnabled(bool);
@Import bool isSoundEffectsEnabled();
@Import void setHapticFeedbackEnabled(bool);
@Import bool isHapticFeedbackEnabled();
@Import void setLayoutDirection(int);
@Import int getLayoutDirection();
@Import void setHasTransientState(bool);
@Import bool isAttachedToWindow();
@Import bool isLaidOut();
@Import void setWillNotDraw(bool);
@Import bool willNotDraw();
@Import void setWillNotCacheDrawing(bool);
@Import bool willNotCacheDrawing();
@Import bool isClickable();
@Import void setClickable(bool);
@Import bool isLongClickable();
@Import void setLongClickable(bool);
@Import bool isContextClickable();
@Import void setContextClickable(bool);
@Import void setPressed(bool);
@Import bool isPressed();
@Import bool isSaveEnabled();
@Import void setSaveEnabled(bool);
@Import bool getFilterTouchesWhenObscured();
@Import void setFilterTouchesWhenObscured(bool);
@Import bool isSaveFromParentEnabled();
@Import void setSaveFromParentEnabled(bool);
@Import bool isFocusable();
@Import int getFocusable();
@Import bool isFocusableInTouchMode();
@Import bool isScreenReaderFocusable();
@Import void setScreenReaderFocusable(bool);
@Import bool isAccessibilityHeading();
@Import void setAccessibilityHeading(bool);
@Import import6.View focusSearch(int);
@Import bool isKeyboardNavigationCluster();
@Import void setKeyboardNavigationCluster(bool);
@Import bool isFocusedByDefault();
@Import void setFocusedByDefault(bool);
@Import import6.View keyboardNavigationClusterSearch(import6.View, int);
@Import void setDefaultFocusHighlightEnabled(bool);
@Import bool getDefaultFocusHighlightEnabled();
@Import import25.ArrayList getFocusables(int);
@Import void addFocusables(import25.ArrayList, int);
@Import import25.ArrayList getTouchables();
@Import bool isAccessibilityFocused();
@Import bool requestFocus();
@Import bool requestFocus(int);
@Import bool requestFocusFromTouch();
@Import int getImportantForAccessibility();
@Import void setAccessibilityLiveRegion(int);
@Import int getAccessibilityLiveRegion();
@Import void setImportantForAccessibility(int);
@Import bool isImportantForAccessibility();
@Import import46.ViewParent getParentForAccessibility();
@Import void setTransitionVisibility(int);
@Import bool dispatchNestedPrePerformAccessibilityAction(int, import42.Bundle);
@Import bool performAccessibilityAction(int, import42.Bundle);
@Import bool isTemporarilyDetached();
@Import void onStartTemporaryDetach();
@Import void onFinishTemporaryDetach();
@Import import74.KeyEvent_DispatcherState getKeyDispatcherState();
@Import bool onFilterTouchEventForSecurity(import22.MotionEvent);
@Import bool dispatchGenericMotionEvent(import22.MotionEvent);
@Import bool hasWindowFocus();
@Import void onVisibilityAggregated(bool);
@Import int getWindowVisibility();
@Import void getWindowVisibleDisplayFrame(import15.Rect);
@Import bool isInTouchMode();
@Import import0.Context getContext();
@Import bool onKeyPreIme(int, import16.KeyEvent);
@Import bool onKeyLongPress(int, import16.KeyEvent);
@Import bool onKeyShortcut(int, import16.KeyEvent);
@Import bool onCheckIsTextEditor();
@Import void createContextMenu(import75.ContextMenu);
@Import bool onTrackballEvent(import22.MotionEvent);
@Import bool onHoverEvent(import22.MotionEvent);
@Import bool isHovered();
@Import void setHovered(bool);
@Import void onHoverChanged(bool);
@Import void cancelLongPress();
@Import void setTouchDelegate(import76.TouchDelegate);
@Import import76.TouchDelegate getTouchDelegate();
@Import void requestUnbufferedDispatch(import22.MotionEvent);
@Import void bringToFront();
@Import import46.ViewParent getParent();
@Import void setScrollX(int);
@Import void setScrollY(int);
@Import int getScrollX();
@Import int getScrollY();
@Import int getWidth();
@Import int getHeight();
@Import void getDrawingRect(import15.Rect);
@Import int getMeasuredWidth();
@Import int getMeasuredWidthAndState();
@Import int getMeasuredHeight();
@Import int getMeasuredHeightAndState();
@Import int getMeasuredState();
@Import import77.Matrix getMatrix();
@Import float getCameraDistance();
@Import void setCameraDistance(float);
@Import float getRotation();
@Import void setRotation(float);
@Import float getRotationY();
@Import void setRotationY(float);
@Import float getRotationX();
@Import void setRotationX(float);
@Import float getScaleX();
@Import void setScaleX(float);
@Import float getScaleY();
@Import void setScaleY(float);
@Import float getPivotX();
@Import void setPivotX(float);
@Import float getPivotY();
@Import void setPivotY(float);
@Import bool isPivotSet();
@Import void resetPivot();
@Import float getAlpha();
@Import void forceHasOverlappingRendering(bool);
@Import bool getHasOverlappingRendering();
@Import bool hasOverlappingRendering();
@Import void setAlpha(float);
@Import void setTransitionAlpha(float);
@Import float getTransitionAlpha();
@Import void setForceDarkAllowed(bool);
@Import bool isForceDarkAllowed();
@Import int getTop();
@Import void setTop(int);
@Import int getBottom();
@Import bool isDirty();
@Import void setBottom(int);
@Import int getLeft();
@Import void setLeft(int);
@Import int getRight();
@Import void setRight(int);
@Import float getX();
@Import void setX(float);
@Import float getY();
@Import void setY(float);
@Import float getZ();
@Import void setZ(float);
@Import float getElevation();
@Import void setElevation(float);
@Import float getTranslationX();
@Import void setTranslationX(float);
@Import float getTranslationY();
@Import void setTranslationY(float);
@Import float getTranslationZ();
@Import void setTranslationZ(float);
@Import void setAnimationMatrix(import77.Matrix);
@Import import77.Matrix getAnimationMatrix();
@Import import78.StateListAnimator getStateListAnimator();
@Import void setStateListAnimator(import78.StateListAnimator);
@Import bool getClipToOutline();
@Import void setClipToOutline(bool);
@Import void setOutlineProvider(import79.ViewOutlineProvider);
@Import import79.ViewOutlineProvider getOutlineProvider();
@Import void invalidateOutline();
@Import void setOutlineSpotShadowColor(int);
@Import int getOutlineSpotShadowColor();
@Import void setOutlineAmbientShadowColor(int);
@Import int getOutlineAmbientShadowColor();
@Import void getHitRect(import15.Rect);
@Import bool getGlobalVisibleRect(import15.Rect, import47.Point);
@Import bool getGlobalVisibleRect(import15.Rect);
@Import bool getLocalVisibleRect(import15.Rect);
@Import void offsetTopAndBottom(int);
@Import void offsetLeftAndRight(int);
@Import import32.ViewGroup_LayoutParams getLayoutParams();
@Import void setLayoutParams(import32.ViewGroup_LayoutParams);
@Import void scrollTo(int, int);
@Import void scrollBy(int, int);
@Import void invalidate(import15.Rect);
@Import void invalidate(int, int, int, int);
@Import void invalidate();
@Import import80.Handler getHandler();
@Import bool post(import81.Runnable);
@Import bool postDelayed(import81.Runnable, long);
@Import void postOnAnimation(import81.Runnable);
@Import void postOnAnimationDelayed(import81.Runnable, long);
@Import bool removeCallbacks(import81.Runnable);
@Import void postInvalidate();
@Import void postInvalidate(int, int, int, int);
@Import void postInvalidateDelayed(long);
@Import void postInvalidateDelayed(long, int, int, int, int);
@Import void postInvalidateOnAnimation();
@Import void postInvalidateOnAnimation(int, int, int, int);
@Import void computeScroll();
@Import bool isHorizontalFadingEdgeEnabled();
@Import void setHorizontalFadingEdgeEnabled(bool);
@Import bool isVerticalFadingEdgeEnabled();
@Import void setVerticalFadingEdgeEnabled(bool);
@Import bool isHorizontalScrollBarEnabled();
@Import void setHorizontalScrollBarEnabled(bool);
@Import bool isVerticalScrollBarEnabled();
@Import void setVerticalScrollBarEnabled(bool);
@Import void setScrollbarFadingEnabled(bool);
@Import bool isScrollbarFadingEnabled();
@Import int getScrollBarDefaultDelayBeforeFade();
@Import void setScrollBarDefaultDelayBeforeFade(int);
@Import int getScrollBarFadeDuration();
@Import void setScrollBarFadeDuration(int);
@Import int getScrollBarSize();
@Import void setScrollBarSize(int);
@Import int getScrollBarStyle();
@Import bool canScrollHorizontally(int);
@Import bool canScrollVertically(int);
@Import void onScreenStateChanged(int);
@Import bool canResolveLayoutDirection();
@Import bool isLayoutDirectionResolved();
@Import import82.IBinder getWindowToken();
@Import import83.WindowId getWindowId();
@Import import82.IBinder getApplicationWindowToken();
@Import import84.Display getDisplay();
@Import void cancelPendingInputEvents();
@Import void saveHierarchyState(import68.SparseArray);
@Import void restoreHierarchyState(import68.SparseArray);
@Import long getDrawingTime();
@Import void setDuplicateParentStateEnabled(bool);
@Import bool isDuplicateParentStateEnabled();
@Import void setLayerType(int, import85.Paint);
@Import void setLayerPaint(import85.Paint);
@Import int getLayerType();
@Import void buildLayer();
@Import void setDrawingCacheEnabled(bool);
@Import bool isDrawingCacheEnabled();
@Import import86.Bitmap getDrawingCache();
@Import import86.Bitmap getDrawingCache(bool);
@Import void destroyDrawingCache();
@Import void setDrawingCacheBackgroundColor(int);
@Import int getDrawingCacheBackgroundColor();
@Import void buildDrawingCache();
@Import void buildDrawingCache(bool);
@Import bool isInEditMode();
@Import bool isHardwareAccelerated();
@Import void setClipBounds(import15.Rect);
@Import import15.Rect getClipBounds();
@Import bool getClipBounds(import15.Rect);
@Import bool isLayoutRequested();
@Import void setLeftTopRightBottom(int, int, int, int);
@Import import87.Resources getResources();
@Import void invalidateDrawable(import2.Drawable);
@Import void scheduleDrawable(import2.Drawable, import81.Runnable, long);
@Import void unscheduleDrawable(import2.Drawable, import81.Runnable);
@Import void unscheduleDrawable(import2.Drawable);
@Import void drawableHotspotChanged(float, float);
@Import void refreshDrawableState();
@Import int[] getDrawableState();
@Import void setBackgroundColor(int);
@Import void setBackgroundResource(int);
@Import void setBackground(import2.Drawable);
@Import void setBackgroundDrawable(import2.Drawable);
@Import import2.Drawable getBackground();
@Import void setBackgroundTintList(import88.ColorStateList);
@Import import88.ColorStateList getBackgroundTintList();
@Import void setBackgroundTintMode(import89.PorterDuff_Mode);
@Import void setBackgroundTintBlendMode(import90.BlendMode);
@Import import89.PorterDuff_Mode getBackgroundTintMode();
@Import import90.BlendMode getBackgroundTintBlendMode();
@Import import2.Drawable getForeground();
@Import void setForeground(import2.Drawable);
@Import int getForegroundGravity();
@Import void setForegroundGravity(int);
@Import void setForegroundTintList(import88.ColorStateList);
@Import import88.ColorStateList getForegroundTintList();
@Import void setForegroundTintMode(import89.PorterDuff_Mode);
@Import void setForegroundTintBlendMode(import90.BlendMode);
@Import import89.PorterDuff_Mode getForegroundTintMode();
@Import import90.BlendMode getForegroundTintBlendMode();
@Import void onDrawForeground(import23.Canvas);
@Import void setPadding(int, int, int, int);
@Import void setPaddingRelative(int, int, int, int);
@Import int getSourceLayoutResId();
@Import int getPaddingTop();
@Import int getPaddingBottom();
@Import int getPaddingLeft();
@Import int getPaddingStart();
@Import int getPaddingRight();
@Import int getPaddingEnd();
@Import bool isPaddingRelative();
@Import void setSelected(bool);
@Import bool isSelected();
@Import void setActivated(bool);
@Import bool isActivated();
@Import import91.ViewTreeObserver getViewTreeObserver();
@Import import6.View getRootView();
@Import void transformMatrixToGlobal(import77.Matrix);
@Import void transformMatrixToLocal(import77.Matrix);
@Import void getLocationOnScreen(int[]);
@Import void getLocationInWindow(int[]);
@Import import6.View findViewById(int);
@Import import6.View requireViewById(int);
@Import import6.View findViewWithTag(IJavaObject);
@Import void setId(int);
@Import int getId();
@Import long getUniqueDrawingId();
@Import IJavaObject getTag();
@Import void setTag(IJavaObject);
@Import IJavaObject getTag(int);
@Import void setTag(int, IJavaObject);
@Import int getBaseline();
@Import bool isInLayout();
@Import void forceLayout();
@Import void measure(int, int);
@Import static int combineMeasuredStates(int, int);
@Import static int resolveSize(int, int);
@Import static int resolveSizeAndState(int, int, int);
@Import static int getDefaultSize(int, int);
@Import int getMinimumHeight();
@Import void setMinimumHeight(int);
@Import int getMinimumWidth();
@Import void setMinimumWidth(int);
@Import import92.Animation getAnimation();
@Import void startAnimation(import92.Animation);
@Import void clearAnimation();
@Import void setAnimation(import92.Animation);
@Import void playSoundEffect(int);
@Import bool performHapticFeedback(int);
@Import bool performHapticFeedback(int, int);
@Import void setSystemUiVisibility(int);
@Import int getSystemUiVisibility();
@Import int getWindowSystemUiVisibility();
@Import void onWindowSystemUiVisibilityChanged(int);
@Import void setOnSystemUiVisibilityChangeListener(import93.View_OnSystemUiVisibilityChangeListener);
@Import bool startDrag(import94.ClipData, import95.View_DragShadowBuilder, IJavaObject, int);
@Import bool startDragAndDrop(import94.ClipData, import95.View_DragShadowBuilder, IJavaObject, int);
@Import void cancelDragAndDrop();
@Import void updateDragShadow(import95.View_DragShadowBuilder);
@Import bool onDragEvent(import41.DragEvent);
@Import static import6.View inflate(import0.Context, int, import96.ViewGroup);
@Import int getOverScrollMode();
@Import void setOverScrollMode(int);
@Import void setNestedScrollingEnabled(bool);
@Import bool isNestedScrollingEnabled();
@Import bool startNestedScroll(int);
@Import void stopNestedScroll();
@Import bool hasNestedScrollingParent();
@Import bool dispatchNestedScroll(int, int, int, int, int[]);
@Import bool dispatchNestedPreScroll(int, int, int, int[][]);
@Import bool dispatchNestedFling(float, float, bool);
@Import bool dispatchNestedPreFling(float, float);
@Import void setTextDirection(int);
@Import int getTextDirection();
@Import bool canResolveTextDirection();
@Import bool isTextDirectionResolved();
@Import void setTextAlignment(int);
@Import int getTextAlignment();
@Import bool canResolveTextAlignment();
@Import bool isTextAlignmentResolved();
@Import static int generateViewId();
@Import void setPointerIcon(import24.PointerIcon);
@Import import24.PointerIcon getPointerIcon();
@Import bool hasPointerCapture();
@Import void requestPointerCapture();
@Import void releasePointerCapture();
@Import void onPointerCaptureChange(bool);
@Import bool onCapturedPointerEvent(import22.MotionEvent);
@Import void setOnCapturedPointerListener(import97.View_OnCapturedPointerListener);
@Import import98.ViewPropertyAnimator animate();
@Import void setTransitionName(string);
@Import string getTransitionName();
@Import void setTooltipText(import12.CharSequence);
@Import import12.CharSequence getTooltipText();
@Import void addOnUnhandledKeyEventListener(import99.View_OnUnhandledKeyEventListener);
@Import void removeOnUnhandledKeyEventListener(import99.View_OnUnhandledKeyEventListener);
@Import import100.Class getClass();
@Import int hashCode();
@Import bool equals(IJavaObject);
@Import void notify();
@Import void notifyAll();
@Import void wait(long);
@Import void wait(long, int);
@Import void wait();
mixin IJavaObjectImplementation!(false);
public static immutable string _javaParameterString = "Landroid/widget/ExpandableListView;";
}
|
D
|
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1999-2018 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/canthrow.d, _canthrow.d)
* Documentation: https://dlang.org/phobos/dmd_canthrow.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/canthrow.d
*/
module dmd.canthrow;
import dmd.aggregate;
import dmd.apply;
import dmd.arraytypes;
import dmd.attrib;
import dmd.declaration;
import dmd.dstruct;
import dmd.dsymbol;
import dmd.dtemplate;
import dmd.expression;
import dmd.func;
import dmd.globals;
import dmd.init;
import dmd.mtype;
import dmd.root.rootobject;
import dmd.tokens;
import dmd.visitor;
/********************************************
* Returns true if the expression may throw exceptions.
* If 'mustNotThrow' is true, generate an error if it throws
*/
extern (C++) bool canThrow(Expression e, FuncDeclaration func, bool mustNotThrow)
{
//printf("Expression::canThrow(%d) %s\n", mustNotThrow, toChars());
// stop walking if we determine this expression can throw
extern (C++) final class CanThrow : StoppableVisitor
{
alias visit = typeof(super).visit;
FuncDeclaration func;
bool mustNotThrow;
public:
extern (D) this(FuncDeclaration func, bool mustNotThrow)
{
this.func = func;
this.mustNotThrow = mustNotThrow;
}
override void visit(Expression)
{
}
override void visit(DeclarationExp de)
{
stop = Dsymbol_canThrow(de.declaration, func, mustNotThrow);
}
override void visit(CallExp ce)
{
if (global.errors && !ce.e1.type)
return; // error recovery
/* If calling a function or delegate that is typed as nothrow,
* then this expression cannot throw.
* Note that pure functions can throw.
*/
if (ce.f && ce.f == func)
return;
Type t = ce.e1.type.toBasetype();
if (t.ty == Tfunction && (cast(TypeFunction)t).isnothrow)
return;
if (t.ty == Tdelegate && (cast(TypeFunction)(cast(TypeDelegate)t).next).isnothrow)
return;
if (mustNotThrow)
{
if (ce.f)
{
ce.error("%s `%s` is not `nothrow`",
ce.f.kind(), ce.f.toPrettyChars());
}
else
{
auto e1 = ce.e1;
if (e1.op == TOK.star) // print 'fp' if e1 is (*fp)
e1 = (cast(PtrExp)e1).e1;
ce.error("`%s` is not `nothrow`", e1.toChars());
}
}
stop = true;
}
override void visit(NewExp ne)
{
if (ne.member)
{
if (ne.allocator)
{
// https://issues.dlang.org/show_bug.cgi?id=14407
Type t = ne.allocator.type.toBasetype();
if (t.ty == Tfunction && !(cast(TypeFunction)t).isnothrow)
{
if (mustNotThrow)
{
ne.error("%s `%s` is not `nothrow`",
ne.allocator.kind(), ne.allocator.toPrettyChars());
}
stop = true;
}
}
// See if constructor call can throw
Type t = ne.member.type.toBasetype();
if (t.ty == Tfunction && !(cast(TypeFunction)t).isnothrow)
{
if (mustNotThrow)
{
ne.error("%s `%s` is not `nothrow`",
ne.member.kind(), ne.member.toPrettyChars());
}
stop = true;
}
}
// regard storage allocation failures as not recoverable
}
override void visit(DeleteExp de)
{
Type tb = de.e1.type.toBasetype();
AggregateDeclaration ad = null;
switch (tb.ty)
{
case Tclass:
ad = (cast(TypeClass)tb).sym;
break;
case Tpointer:
tb = (cast(TypePointer)tb).next.toBasetype();
if (tb.ty == Tstruct)
ad = (cast(TypeStruct)tb).sym;
break;
case Tarray:
Type tv = tb.nextOf().baseElemOf();
if (tv.ty == Tstruct)
ad = (cast(TypeStruct)tv).sym;
break;
default:
break;
}
if (!ad)
return;
if (ad.dtor)
{
Type t = ad.dtor.type.toBasetype();
if (t.ty == Tfunction && !(cast(TypeFunction)t).isnothrow)
{
if (mustNotThrow)
{
de.error("%s `%s` is not `nothrow`",
ad.dtor.kind(), ad.dtor.toPrettyChars());
}
stop = true;
}
}
if (ad.aggDelete && tb.ty != Tarray)
{
Type t = ad.aggDelete.type;
if (t.ty == Tfunction && !(cast(TypeFunction)t).isnothrow)
{
if (mustNotThrow)
{
de.error("%s `%s` is not `nothrow`",
ad.aggDelete.kind(), ad.aggDelete.toPrettyChars());
}
stop = true;
}
}
}
override void visit(AssignExp ae)
{
// blit-init cannot throw
if (ae.op == TOK.blit)
return;
/* Element-wise assignment could invoke postblits.
*/
Type t;
if (ae.type.toBasetype().ty == Tsarray)
{
if (!ae.e2.isLvalue())
return;
t = ae.type;
}
else if (ae.e1.op == TOK.slice)
t = (cast(SliceExp)ae.e1).e1.type;
else
return;
Type tv = t.baseElemOf();
if (tv.ty != Tstruct)
return;
StructDeclaration sd = (cast(TypeStruct)tv).sym;
if (!sd.postblit || sd.postblit.type.ty != Tfunction)
return;
if ((cast(TypeFunction)sd.postblit.type).isnothrow)
{
}
else
{
if (mustNotThrow)
{
ae.error("%s `%s` is not `nothrow`",
sd.postblit.kind(), sd.postblit.toPrettyChars());
}
stop = true;
}
}
override void visit(NewAnonClassExp)
{
assert(0); // should have been lowered by semantic()
}
}
scope CanThrow ct = new CanThrow(func, mustNotThrow);
return walkPostorder(e, ct);
}
/**************************************
* Does symbol, when initialized, throw?
* Mirrors logic in Dsymbol_toElem().
*/
private bool Dsymbol_canThrow(Dsymbol s, FuncDeclaration func, bool mustNotThrow)
{
int symbolDg(Dsymbol s)
{
return Dsymbol_canThrow(s, func, mustNotThrow);
}
//printf("Dsymbol_toElem() %s\n", s.toChars());
if (auto vd = s.isVarDeclaration())
{
s = s.toAlias();
if (s != vd)
return Dsymbol_canThrow(s, func, mustNotThrow);
if (vd.storage_class & STC.manifest)
{
}
else if (vd.isStatic() || vd.storage_class & (STC.extern_ | STC.tls | STC.gshared))
{
}
else
{
if (vd._init)
{
if (auto ie = vd._init.isExpInitializer())
if (canThrow(ie.exp, func, mustNotThrow))
return true;
}
if (vd.needsScopeDtor())
return canThrow(vd.edtor, func, mustNotThrow);
}
}
else if (auto ad = s.isAttribDeclaration())
{
return ad.include(null).foreachDsymbol(&symbolDg) != 0;
}
else if (auto tm = s.isTemplateMixin())
{
return tm.members.foreachDsymbol(&symbolDg) != 0;
}
else if (auto td = s.isTupleDeclaration())
{
for (size_t i = 0; i < td.objects.dim; i++)
{
RootObject o = (*td.objects)[i];
if (o.dyncast() == DYNCAST.expression)
{
Expression eo = cast(Expression)o;
if (eo.op == TOK.dSymbol)
{
DsymbolExp se = cast(DsymbolExp)eo;
if (Dsymbol_canThrow(se.s, func, mustNotThrow))
return true;
}
}
}
}
return false;
}
|
D
|
/**
* Hash Map
* Copyright: © 2014 Economic Modeling Specialists, Intl.
* Authors: Brian Schott
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt Boost License 1.0)
*/
module containers.hashmap;
template HashMap(K, V) if (is (K == string))
{
import containers.internal.hash;
alias HashMap = HashMap!(K, V, hashString);
}
template HashMap(K, V) if (!is (K == string))
{
import containers.internal.hash;
alias HashMap = HashMap!(K, V, builtinHash!K);
}
/**
* Associative array / hash map.
* Params:
* K = the key type
* V = the value type
* hashFunction = the hash function to use on the keys
*/
struct HashMap(K, V, alias hashFunction)
{
this(this) @disable;
/**
* Constructs an HashMap with an initial bucket count of bucketCount. bucketCount
* must be a power of two.
*/
this(size_t bucketCount)
in
{
assert ((bucketCount & (bucketCount - 1)) == 0, "bucketCount must be a power of two");
}
body
{
initialize(bucketCount);
}
~this()
{
import std.allocator;
foreach (ref bucket; buckets)
typeid(typeof(bucket)).destroy(&bucket);
GC.removeRange(buckets.ptr);
Mallocator.it.deallocate(buckets);
typeid(typeof(*sListNodeAllocator)).destroy(sListNodeAllocator);
deallocate(Mallocator.it, sListNodeAllocator);
}
/**
* Supports $(B aa[key]) syntax.
*/
V opIndex(K key) const
{
import std.algorithm : find;
import std.exception : enforce;
import std.conv : text;
if (buckets.length == 0)
throw new Exception("'" ~ text(key) ~ "' not found in HashMap");
size_t hash = generateHash(key);
size_t index = hashToIndex(hash);
foreach (r; buckets[index].range)
{
if (r == key)
return r.value;
}
throw new Exception("'" ~ text(key) ~ "' not found in HashMap");
}
/**
* Supports $(B aa[key] = value;) syntax.
*/
void opIndexAssign(V value, K key)
{
insert(key, value);
}
/**
* Supports $(B key in aa) syntax.
*/
V* opBinaryRight(string op)(K key) const nothrow if (op == "in")
{
size_t index = hashIndex(key);
foreach (ref node; buckets[index].range)
{
if (node.key == key)
return &node.value;
}
return null;
}
/**
* Removes the value associated with the given key
* Returns: true if a value was actually removed.
*/
bool remove(K key)
{
if (buckets.length == 0)
return false;
size_t index = hashIndex(key);
bool removed = buckets[index].remove(key);
if (removed)
_length--;
return removed;
}
/**
* Number of key/value pairs in this aa
*/
size_t length() const @property
{
return _length;
}
/**
* Returns: A GC-allocates an array and fills it with the keys contained in this map.
*/
K[] keys() const @property
out(result)
{
assert (result.length == _length);
}
body
{
import std.array;
auto app = appender!(K[])();
foreach (ref const bucket; buckets)
{
foreach (item; bucket.range)
app.put(item.key);
}
return app.data;
}
/**
* Returns: A GC-allocated array containing the values contained in this map.
*/
V[] values() const @property
out(result)
{
assert (result.length == _length);
}
body
{
import std.array;
auto app = appender!(V[])();
foreach (ref const bucket; buckets)
{
foreach (item; bucket.range)
app.put(item.value);
}
return app.data;
}
/**
* Support for $(D foreach(key, value; aa) { ... }) syntax;
*/
int opApply(int delegate(ref K, ref V) del)
{
int result = 0;
outer: foreach (ref bucket; buckets)
{
foreach (ref node; bucket.range)
{
result = del(node.key, node.value);
if (result != 0)
return result;
}
}
return result;
}
private:
import std.allocator;
import std.traits;
import memory.allocators;
import containers.slist;
import core.memory;
enum bool storeHash = !isBasicType!K;
void initialize(size_t bucketCount = 4)
{
import std.conv;
import std.allocator;
sListNodeAllocator = allocate!(SListNodeAllocator)(Mallocator.it);
emplace(sListNodeAllocator);
buckets = cast(Bucket[]) Mallocator.it.allocate( // Valgrind
bucketCount * Bucket.sizeof);
assert (buckets.length == bucketCount);
foreach (ref bucket; buckets)
emplace(&bucket, sListNodeAllocator);
GC.addRange(buckets.ptr, buckets.length * Bucket.sizeof);
}
void insert(K key, V value)
{
import std.algorithm;
if (buckets.length == 0)
initialize();
size_t hash = generateHash(key);
size_t index = hashToIndex(hash);
foreach (ref item; buckets[index].range)
{
static if (storeHash)
{
if (item.hash == hash && item.key == key)
{
item.value = value;
return;
}
}
else
{
if (item.key == key)
{
item.value = value;
return;
}
}
}
static if (storeHash)
buckets[index].put(Node(hash, key, value));
else
buckets[index].put(Node(key, value));
_length++;
if (shouldRehash)
rehash();
}
/**
* Returns: true if the load factor has been exceeded
*/
bool shouldRehash() const pure nothrow @safe
{
return cast(float) _length / cast(float) buckets.length > 0.75;
}
/**
* Rehash the map.
*/
void rehash() @trusted
{
import std.allocator;
import std.conv;
immutable size_t newLength = buckets.length << 1;
immutable size_t newSize = newLength * Bucket.sizeof;
Bucket[] oldBuckets = buckets;
assert (oldBuckets.ptr == buckets.ptr);
buckets = cast(Bucket[]) Mallocator.it.allocate(newSize);
GC.addRange(buckets.ptr, buckets.length * Bucket.sizeof);
auto newAllocator = allocate!(SListNodeAllocator)(Mallocator.it);
assert (buckets);
assert (buckets.length == newLength);
foreach (ref bucket; buckets)
emplace(&bucket, newAllocator);
foreach (ref bucket; oldBuckets)
{
foreach (node; bucket.range)
{
static if (storeHash)
{
size_t index = hashToIndex(node.hash);
buckets[index].put(Node(node.hash, node.key, node.value));
}
else
{
size_t hash = generateHash(node.value);
size_t index = hashToIndex(hash);
buckets[index].put(Node(node.key, node.value));
}
}
typeid(typeof(bucket)).destroy(&bucket);
}
typeid(typeof(*sListNodeAllocator)).destroy(sListNodeAllocator);
deallocate(Mallocator.it, sListNodeAllocator);
foreach (ref bucket; oldBuckets)
typeid(typeof(bucket)).destroy(&bucket);
GC.removeRange(oldBuckets.ptr);
Mallocator.it.deallocate(cast(void[]) oldBuckets);
sListNodeAllocator = newAllocator;
}
size_t hashToIndex(size_t hash) const pure nothrow @safe
in
{
assert (buckets.length > 0);
}
out (result)
{
import std.string;
assert (result < buckets.length, "%d, %d".format(result, buckets.length));
}
body
{
return hash & (buckets.length - 1);
}
/**
* Move the bits a bit to the right. This trick was taken from the JRE
*/
size_t generateHash(K key) const nothrow @safe
{
size_t h = hashFunction(key);
h ^= (h >>> 20) ^ (h >>> 12);
return h ^ (h >>> 7) ^ (h >>> 4);
}
size_t hashIndex(K key) const nothrow @safe
out (result)
{
assert (result < buckets.length);
}
body
{
return hashToIndex(generateHash(key));
}
struct Node
{
bool opEquals(ref const K key) const
{
return key == this.key;
}
static if (storeHash)
size_t hash;
K key;
V value;
}
alias SListNodeAllocator = NodeAllocator!(Node.sizeof, 1024);
alias Bucket = SList!(Node, SListNodeAllocator*);
SListNodeAllocator* sListNodeAllocator;
Bucket[] buckets;
size_t _length;
}
///
unittest
{
import std.stdio;
import std.uuid;
auto hm = HashMap!(string, int)(16);
assert (hm.length == 0);
assert (!hm.remove("abc"));
hm["answer"] = 42;
assert (hm.length == 1);
assert ("answer" in hm);
hm.remove("answer");
assert (hm.length == 0);
hm["one"] = 1;
hm["one"] = 1;
assert (hm.length == 1);
assert (hm["one"] == 1);
foreach (i; 0 .. 1000)
{
hm[randomUUID().toString] = i;
}
assert (hm.length == 1001);
assert (hm.keys().length == hm.length);
assert (hm.values().length == hm.length);
foreach (ref k, ref v; hm) {}
auto hm2 = HashMap!(char, char)(4);
hm2['a'] = 'a';
}
|
D
|
module android.java.java.time.chrono.ChronoLocalDate_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.time.chrono.ChronoLocalDate_d_interface;
import import11 = android.java.java.time.chrono.ChronoPeriod_d_interface;
import import6 = android.java.java.time.temporal.TemporalUnit_d_interface;
import import7 = android.java.java.time.temporal.TemporalAdjuster_d_interface;
import import5 = android.java.java.time.temporal.TemporalField_d_interface;
import import12 = android.java.java.time.format.DateTimeFormatter_d_interface;
import import8 = android.java.java.time.temporal.TemporalAmount_d_interface;
import import4 = android.java.java.time.chrono.Era_d_interface;
import import14 = android.java.java.time.LocalTime_d_interface;
import import13 = android.java.java.time.chrono.ChronoLocalDateTime_d_interface;
import import3 = android.java.java.time.chrono.Chronology_d_interface;
import import9 = android.java.java.time.temporal.TemporalQuery_d_interface;
import import10 = android.java.java.time.temporal.Temporal_d_interface;
import import15 = android.java.java.lang.Class_d_interface;
import import16 = android.java.java.time.temporal.ValueRange_d_interface;
import import2 = android.java.java.time.temporal.TemporalAccessor_d_interface;
import import0 = android.java.java.util.Comparator_d_interface;
final class ChronoLocalDate : IJavaObject {
static immutable string[] _d_canCastTo = [
"java/time/temporal/Temporal",
"java/time/temporal/TemporalAdjuster",
"java/lang/Comparable",
];
@Import static import0.Comparator timeLineOrder();
@Import static import1.ChronoLocalDate from(import2.TemporalAccessor);
@Import import3.Chronology getChronology();
@Import import4.Era getEra();
@Import bool isLeapYear();
@Import int lengthOfMonth();
@Import int lengthOfYear();
@Import bool isSupported(import5.TemporalField);
@Import bool isSupported(import6.TemporalUnit);
@Import @JavaName("with") import1.ChronoLocalDate with_(import7.TemporalAdjuster);
@Import @JavaName("with") import1.ChronoLocalDate with_(import5.TemporalField, long);
@Import import1.ChronoLocalDate plus(import8.TemporalAmount);
@Import import1.ChronoLocalDate plus(long, import6.TemporalUnit);
@Import import1.ChronoLocalDate minus(import8.TemporalAmount);
@Import import1.ChronoLocalDate minus(long, import6.TemporalUnit);
@Import IJavaObject query(import9.TemporalQuery);
@Import import10.Temporal adjustInto(import10.Temporal);
@Import long until(import10.Temporal, import6.TemporalUnit);
@Import import11.ChronoPeriod until(import1.ChronoLocalDate);
@Import string format(import12.DateTimeFormatter);
@Import import13.ChronoLocalDateTime atTime(import14.LocalTime);
@Import long toEpochDay();
@Import int compareTo(import1.ChronoLocalDate);
@Import bool isAfter(import1.ChronoLocalDate);
@Import bool isBefore(import1.ChronoLocalDate);
@Import bool isEqual(import1.ChronoLocalDate);
@Import bool equals(IJavaObject);
@Import int hashCode();
@Import @JavaName("toString") string toString_();
override string toString() { return arsd.jni.javaObjectToString(this); }
@Import int compareTo(IJavaObject);
@Import import15.Class getClass();
@Import void notify();
@Import void notifyAll();
@Import void wait(long);
@Import void wait(long, int);
@Import void wait();
@Import import16.ValueRange range(import5.TemporalField);
@Import int get(import5.TemporalField);
@Import long getLong(import5.TemporalField);
mixin IJavaObjectImplementation!(false);
public static immutable string _javaParameterString = "Ljava/time/chrono/ChronoLocalDate;";
}
|
D
|
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
void main()
{
auto nmq = readln.split.to!(int[]);
auto N = nmq[0];
auto M = nmq[1];
auto Q = nmq[2];
auto cs = new int[][](N, N);
foreach (_; 0..M) {
auto lr = readln.split.to!(int[]);
auto L = lr[0]-1;
auto R = lr[1]-1;
cs[L][R] += 1;
}
foreach (k; 1..N) {
foreach (i; 0..N) {
auto j = i+k;
if (j >= N) break;
cs[i][j] += cs[i+1][j] + cs[i][j-1];
if (i+1 < j) cs[i][j] -= cs[i+1][j-1];
}
}
foreach (_; 0..Q) {
auto pq = readln.split.to!(int[]);
writeln(cs[pq[0]-1][pq[1]-1]);
}
}
|
D
|
import std.stdio;
import std.bigint;
int digs(BigInt n){
int count;
while(n/10){
count++;
n=n/10;
}
return count+1;
}
void main(){
BigInt first = 1;
BigInt second = 1;
BigInt temp;
int index = 1;
while(digs(first)<1000){
index++;
temp = first + second;
first = second;
second = temp;
}
writeln(index," " , first);
}
|
D
|
module xymodem.exception;
@safe:
import std.exception;
class YModemException : Exception
{
this(string msg, string file, size_t line) pure @safe
{
super(msg, file, line);
}
}
package:
enum RecvErrType
{
UNUSED,
NO_REPLY,
MORE_THAN_1_OCTET,
NOT_EXPECTED
}
class RecvException : YModemException
{
RecvErrType type;
this(RecvErrType t, string msg, string file, size_t line) pure @safe
{
type = t;
super(msg, file, line);
}
}
|
D
|
/* Converted to D from windows/windows.h by htod */
module windows;
const WS_OVERLAPPEDWINDOW = (WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX);
const WS_SIZEBOX = WS_THICKFRAME;
//C typedef unsigned long long size_t;
extern (System):
//C typedef long long ssize_t;
alias long ssize_t;
//C typedef long long intptr_t;
alias long intptr_t;
//C typedef unsigned long long uintptr_t;
alias ulong uintptr_t;
//C typedef long long ptrdiff_t;
alias long ptrdiff_t;
//C typedef unsigned short wchar_t;
alias ushort wchar_t;
//C typedef unsigned short wint_t;
alias ushort wint_t;
//C typedef unsigned short wctype_t;
alias ushort wctype_t;
//C typedef int errno_t;
alias int errno_t;
//C typedef long __time32_t;
alias int __time32_t;
//C typedef long long __time64_t;
alias long __time64_t;
//C typedef __time64_t time_t;
alias __time64_t time_t;
//C void __debugbreak(void);
void __debugbreak();
//C extern void __debugbreak(void)
//C {
//C __asm__ ("int $3");
//C }
//C const char *__mingw_get_crt_info (void);
void __debugbreak();
char * __mingw_get_crt_info();
//C typedef char * va_list;
alias char *va_list;
//C typedef unsigned long ULONG;
alias uint ULONG;
//C typedef ULONG *PULONG;
alias ULONG *PULONG;
//C typedef unsigned short USHORT;
alias ushort USHORT;
//C typedef USHORT *PUSHORT;
alias USHORT *PUSHORT;
//C typedef unsigned char UCHAR;
alias ubyte UCHAR;
//C typedef UCHAR *PUCHAR;
alias UCHAR *PUCHAR;
//C typedef char *PSZ;
alias char *PSZ;
//C typedef int WINBOOL;
alias int WINBOOL;
//C typedef int BOOL;
alias int BOOL;
//C typedef WINBOOL *PBOOL;
alias WINBOOL *PBOOL;
//C typedef WINBOOL *LPBOOL;
alias WINBOOL *LPBOOL;
//C typedef unsigned char BYTE;
alias ubyte BYTE;
//C typedef unsigned short WORD;
alias ushort WORD;
//C typedef unsigned long DWORD;
alias uint DWORD;
//C typedef float FLOAT;
alias float FLOAT;
//C typedef FLOAT *PFLOAT;
alias FLOAT *PFLOAT;
//C typedef BYTE *PBYTE;
alias BYTE *PBYTE;
//C typedef BYTE *LPBYTE;
alias BYTE *LPBYTE;
//C typedef int *PINT;
alias int *PINT;
//C typedef int *LPINT;
alias int *LPINT;
//C typedef WORD *PWORD;
alias WORD *PWORD;
//C typedef WORD *LPWORD;
alias WORD *LPWORD;
//C typedef long *LPLONG;
alias int *LPLONG;
//C typedef DWORD *PDWORD;
alias DWORD *PDWORD;
//C typedef DWORD *LPDWORD;
alias DWORD *LPDWORD;
//C typedef void *LPVOID;
alias void *LPVOID;
//C typedef const void *LPCVOID;
alias void *LPCVOID;
//C typedef int INT;
alias int INT;
//C typedef unsigned int UINT;
alias uint UINT;
//C typedef unsigned int *PUINT;
alias uint *PUINT;
//C typedef size_t rsize_t;
alias size_t rsize_t;
//C struct threadlocaleinfostruct;
//C struct threadmbcinfostruct;
//C typedef struct threadlocaleinfostruct *pthreadlocinfo;
alias threadlocaleinfostruct *pthreadlocinfo;
//C typedef struct threadmbcinfostruct *pthreadmbcinfo;
alias threadmbcinfostruct *pthreadmbcinfo;
//C struct __lc_time_data;
//C typedef struct localeinfo_struct {
//C pthreadlocinfo locinfo;
//C pthreadmbcinfo mbcinfo;
//C } _locale_tstruct,*_locale_t;
struct localeinfo_struct
{
pthreadlocinfo locinfo;
pthreadmbcinfo mbcinfo;
}
alias localeinfo_struct _locale_tstruct;
alias localeinfo_struct *_locale_t;
//C typedef struct tagLC_ID {
//C unsigned short wLanguage;
//C unsigned short wCountry;
//C unsigned short wCodePage;
//C } LC_ID,*LPLC_ID;
struct tagLC_ID
{
ushort wLanguage;
ushort wCountry;
ushort wCodePage;
}
alias tagLC_ID LC_ID;
alias tagLC_ID *LPLC_ID;
//C typedef struct threadlocaleinfostruct {
//C int refcount;
//C unsigned int lc_codepage;
//C unsigned int lc_collate_cp;
//C unsigned long lc_handle[6];
//C LC_ID lc_id[6];
//C struct {
//C char *locale;
//C wchar_t *wlocale;
//C int *refcount;
//C int *wrefcount;
//C } lc_category[6];
struct _N1
{
char *locale;
wchar_t *wlocale;
int *refcount;
int *wrefcount;
}
//C int lc_clike;
//C int mb_cur_max;
//C int *lconv_intl_refcount;
//C int *lconv_num_refcount;
//C int *lconv_mon_refcount;
//C struct struct lconv_;lconv_ *lconv;
//C int *ctype1_refcount;
//C unsigned short *ctype1;
//C const unsigned short *pctype;
//C const unsigned char *pclmap;
//C const unsigned char *pcumap;
//C struct struct __lc_time_data; __lc_time_data *lc_time_curr;
//C } threadlocinfo;
struct threadlocaleinfostruct
{
int refcount;
uint lc_codepage;
uint lc_collate_cp;
uint [6]lc_handle;
LC_ID [6]lc_id;
_N1 [6]lc_category;
int lc_clike;
int mb_cur_max;
int *lconv_intl_refcount;
int *lconv_num_refcount;
int *lconv_mon_refcount;
struct lconv_;lconv_ *lconv;
int *ctype1_refcount;
ushort *ctype1;
ushort *pctype;
ubyte *pclmap;
ubyte *pcumap;
struct __lc_time_data; __lc_time_data *lc_time_curr;
}
alias threadlocaleinfostruct threadlocinfo;
//C extern unsigned short ** __imp__pctype;
extern ushort **__imp__pctype;
//C extern unsigned short ** __imp__wctype;
extern ushort **__imp__wctype;
//C extern unsigned short ** __imp__pwctype;
extern ushort **__imp__pwctype;
//C extern const unsigned char __newclmap[];
extern const ubyte []__newclmap;
//C extern const unsigned char __newcumap[];
extern const ubyte []__newcumap;
//C extern pthreadlocinfo __ptlocinfo;
extern pthreadlocinfo __ptlocinfo;
//C extern pthreadmbcinfo __ptmbcinfo;
extern pthreadmbcinfo __ptmbcinfo;
//C extern int __globallocalestatus;
extern int __globallocalestatus;
//C extern int __locale_changed;
extern int __locale_changed;
//C extern struct threadlocaleinfostruct __initiallocinfo;
extern threadlocaleinfostruct __initiallocinfo;
//C extern _locale_tstruct __initiallocalestructinfo;
extern _locale_tstruct __initiallocalestructinfo;
//C pthreadlocinfo __updatetlocinfo(void);
pthreadlocinfo __updatetlocinfo();
//C pthreadmbcinfo __updatetmbcinfo(void);
pthreadmbcinfo __updatetmbcinfo();
//C int isblank(int _C);
int isblank(int _C);
//C int iswalpha(wint_t _C);
int iswalpha(wint_t _C);
//C int iswupper(wint_t _C);
int iswupper(wint_t _C);
//C int iswlower(wint_t _C);
int iswlower(wint_t _C);
//C int iswdigit(wint_t _C);
int iswdigit(wint_t _C);
//C int iswxdigit(wint_t _C);
int iswxdigit(wint_t _C);
//C int iswspace(wint_t _C);
int iswspace(wint_t _C);
//C int iswpunct(wint_t _C);
int iswpunct(wint_t _C);
//C int iswalnum(wint_t _C);
int iswalnum(wint_t _C);
//C int iswprint(wint_t _C);
int iswprint(wint_t _C);
//C int iswgraph(wint_t _C);
int iswgraph(wint_t _C);
//C int iswcntrl(wint_t _C);
int iswcntrl(wint_t _C);
//C int iswascii(wint_t _C);
int iswascii(wint_t _C);
//C int isleadbyte(int _C);
int isleadbyte(int _C);
//C wint_t towupper(wint_t _C);
wint_t towupper(wint_t _C);
//C wint_t towlower(wint_t _C);
wint_t towlower(wint_t _C);
//C int iswctype(wint_t _C,wctype_t _Type);
int iswctype(wint_t _C, wctype_t _Type);
//C int is_wctype(wint_t _C,wctype_t _Type);
int is_wctype(wint_t _C, wctype_t _Type);
//C int iswblank(wint_t _C);
int iswblank(wint_t _C);
//C extern int * __imp___mb_cur_max;
extern int *__imp___mb_cur_max;
//C typedef unsigned long long POINTER_64_INT;
alias ulong POINTER_64_INT;
//C typedef signed char INT8,*PINT8;
alias byte INT8;
alias byte *PINT8;
//C typedef signed short INT16,*PINT16;
alias short INT16;
alias short *PINT16;
//C typedef signed int INT32,*PINT32;
alias int INT32;
alias int *PINT32;
//C typedef signed long long INT64,*PINT64;
alias long INT64;
alias long *PINT64;
//C typedef unsigned char UINT8,*PUINT8;
alias ubyte UINT8;
alias ubyte *PUINT8;
//C typedef unsigned short UINT16,*PUINT16;
alias ushort UINT16;
alias ushort *PUINT16;
//C typedef unsigned int UINT32,*PUINT32;
alias uint UINT32;
alias uint *PUINT32;
//C typedef unsigned long long UINT64,*PUINT64;
alias ulong UINT64;
alias ulong *PUINT64;
//C typedef signed int LONG32,*PLONG32;
alias int LONG32;
alias int *PLONG32;
//C typedef unsigned int ULONG32,*PULONG32;
alias uint ULONG32;
alias uint *PULONG32;
//C typedef unsigned int DWORD32,*PDWORD32;
alias uint DWORD32;
alias uint *PDWORD32;
//C typedef long long INT_PTR,*PINT_PTR;
alias ptrdiff_t INT_PTR;
alias ptrdiff_t *PINT_PTR;
//C typedef unsigned long long UINT_PTR,*PUINT_PTR;
alias size_t UINT_PTR;
alias size_t *PUINT_PTR;
//C typedef long long LONG_PTR,*PLONG_PTR;
alias long LONG_PTR;
alias long *PLONG_PTR;
//C typedef unsigned long long ULONG_PTR,*PULONG_PTR;
alias ulong ULONG_PTR;
alias ulong *PULONG_PTR;
//C typedef long long SHANDLE_PTR;
alias long SHANDLE_PTR;
//C typedef unsigned long long HANDLE_PTR;
alias ulong HANDLE_PTR;
//C typedef unsigned int UHALF_PTR,*PUHALF_PTR;
alias uint UHALF_PTR;
alias uint *PUHALF_PTR;
//C typedef int HALF_PTR,*PHALF_PTR;
alias int HALF_PTR;
alias int *PHALF_PTR;
//C static unsigned long HandleToULong(const void *h) { return((unsigned long) (ULONG_PTR) h); }
//C static long HandleToLong(const void *h) { return((long) (LONG_PTR) h); }
uint HandleToULong(void *);
//C static void *ULongToHandle(const unsigned long h) { return((void *) (UINT_PTR) h); }
int HandleToLong(void *);
//C static void *LongToHandle(const long h) { return((void *) (INT_PTR) h); }
void * ULongToHandle(uint );
//C static unsigned long PtrToUlong(const void *p) { return((unsigned long) (ULONG_PTR) p); }
void * LongToHandle(int );
//C static unsigned int PtrToUint(const void *p) { return((unsigned int) (UINT_PTR) p); }
uint PtrToUlong(void *);
//C static unsigned short PtrToUshort(const void *p) { return((unsigned short) (unsigned long) (ULONG_PTR) p); }
uint PtrToUint(void *);
//C static long PtrToLong(const void *p) { return((long) (LONG_PTR) p); }
ushort PtrToUshort(void *);
//C static int PtrToInt(const void *p) { return(() (INT_PTR) p); }
int PtrToLong(void *);
//C static short PtrToShort(const void *p) { return((short) (long) (LONG_PTR) p); }
int PtrToInt(void *);
//C static void *IntToPtr(const int i) { return((void *)(INT_PTR)i); }
short PtrToShort(void *);
//C static void *UIntToPtr(const unsigned int ui) { return((void *)(UINT_PTR)ui); }
void * IntToPtr(int );
//C static void *LongToPtr(const long l) { return((void *)(LONG_PTR)l); }
void * UIntToPtr(uint );
//C static void *ULongToPtr(const unsigned long ul) { return((void *)(ULONG_PTR)ul); }
void * LongToPtr(int );
//C static void *Ptr32ToPtr(const void *p) { return (void *) (ULONG_PTR) p; }
void * ULongToPtr(uint );
//C static void *Handle32ToHandle(const void *h) { return((void *) (ULONG_PTR) h); }
void * Ptr32ToPtr(void *);
//C static void *PtrToPtr32(const void *p) { return((void *) (ULONG_PTR) p); }
void * Handle32ToHandle(void *);
//C typedef ULONG_PTR SIZE_T,*PSIZE_T;
void * PtrToPtr32(void *);
alias ULONG_PTR SIZE_T;
alias ULONG_PTR *PSIZE_T;
//C typedef LONG_PTR SSIZE_T,*PSSIZE_T;
alias LONG_PTR SSIZE_T;
alias LONG_PTR *PSSIZE_T;
//C typedef ULONG_PTR DWORD_PTR,*PDWORD_PTR;
alias ULONG_PTR DWORD_PTR;
alias ULONG_PTR *PDWORD_PTR;
//C typedef long long LONG64,*PLONG64;
alias long LONG64;
alias long *PLONG64;
//C typedef unsigned long long ULONG64,*PULONG64;
alias ulong ULONG64;
alias ulong *PULONG64;
//C typedef unsigned long long DWORD64,*PDWORD64;
alias ulong DWORD64;
alias ulong *PDWORD64;
//C typedef ULONG_PTR KAFFINITY;
alias ULONG_PTR KAFFINITY;
//C typedef KAFFINITY *PKAFFINITY;
alias KAFFINITY *PKAFFINITY;
//C typedef void *PVOID;
alias void *PVOID;
//C typedef void *PVOID64;
alias void *PVOID64;
//C typedef char CHAR;
alias char CHAR;
//C typedef short SHORT;
alias short SHORT;
//C typedef long LONG;
alias int LONG;
//C typedef wchar_t WCHAR;
alias wchar_t WCHAR;
//C typedef WCHAR *PWCHAR,*LPWCH,*PWCH;
alias WCHAR *PWCHAR;
alias WCHAR *LPWCH;
alias WCHAR *PWCH;
//C typedef const WCHAR *LPCWCH,*PCWCH;
alias WCHAR *LPCWCH;
alias WCHAR *PCWCH;
//C typedef WCHAR *NWPSTR,*LPWSTR,*PWSTR;
alias WCHAR *NWPSTR;
alias WCHAR *LPWSTR;
alias WCHAR *PWSTR;
//C typedef PWSTR *PZPWSTR;
alias PWSTR *PZPWSTR;
//C typedef const PWSTR *PCZPWSTR;
alias PWSTR *PCZPWSTR;
//C typedef WCHAR *LPUWSTR,*PUWSTR;
alias WCHAR *LPUWSTR;
alias WCHAR *PUWSTR;
//C typedef const WCHAR *LPCWSTR,*PCWSTR;
alias WCHAR *LPCWSTR;
alias WCHAR *PCWSTR;
//C typedef PCWSTR *PZPCWSTR;
alias PCWSTR *PZPCWSTR;
//C typedef const WCHAR *LPCUWSTR,*PCUWSTR;
alias WCHAR *LPCUWSTR;
alias WCHAR *PCUWSTR;
//C typedef CHAR *PCHAR,*LPCH,*PCH;
alias CHAR *PCHAR;
alias CHAR *LPCH;
alias CHAR *PCH;
//C typedef const CHAR *LPCCH,*PCCH;
alias CHAR *LPCCH;
alias CHAR *PCCH;
//C typedef CHAR *NPSTR,*LPSTR,*PSTR;
alias CHAR *NPSTR;
alias CHAR *LPSTR;
alias CHAR *PSTR;
//C typedef PSTR *PZPSTR;
alias PSTR *PZPSTR;
//C typedef const PSTR *PCZPSTR;
alias PSTR *PCZPSTR;
//C typedef const CHAR *LPCSTR,*PCSTR;
alias CHAR *LPCSTR;
alias CHAR *PCSTR;
//C typedef PCSTR *PZPCSTR;
alias PCSTR *PZPCSTR;
//C typedef char TCHAR,*PTCHAR;
alias char TCHAR;
alias char *PTCHAR;
//C typedef unsigned char TBYTE,*PTBYTE;
alias ubyte TBYTE;
alias ubyte *PTBYTE;
//C typedef LPSTR LPTCH,PTCH;
alias LPSTR LPTCH;
alias LPSTR PTCH;
//C typedef LPSTR PTSTR,LPTSTR,PUTSTR,LPUTSTR;
alias LPSTR PTSTR;
alias LPSTR LPTSTR;
alias LPSTR PUTSTR;
alias LPSTR LPUTSTR;
//C typedef LPCSTR PCTSTR,LPCTSTR,PCUTSTR,LPCUTSTR;
alias LPCSTR PCTSTR;
alias LPCSTR LPCTSTR;
alias LPCSTR PCUTSTR;
alias LPCSTR LPCUTSTR;
//C typedef SHORT *PSHORT;
alias SHORT *PSHORT;
//C typedef LONG *PLONG;
alias LONG *PLONG;
//C typedef void *HANDLE;
alias void *HANDLE;
//C typedef HANDLE *PHANDLE;
alias HANDLE *PHANDLE;
//C typedef BYTE FCHAR;
alias BYTE FCHAR;
//C typedef WORD FSHORT;
alias WORD FSHORT;
//C typedef DWORD FLONG;
alias DWORD FLONG;
//C typedef LONG HRESULT;
alias LONG HRESULT;
//C typedef char CCHAR;
alias char CCHAR;
//C typedef DWORD LCID;
alias DWORD LCID;
//C typedef PDWORD PLCID;
alias PDWORD PLCID;
//C typedef WORD LANGID;
alias WORD LANGID;
//C typedef struct _FLOAT128 {
//C long long LowPart;
//C long long HighPart;
//C } FLOAT128;
struct _FLOAT128
{
long LowPart;
long HighPart;
}
alias _FLOAT128 FLOAT128;
//C typedef FLOAT128 *PFLOAT128;
alias FLOAT128 *PFLOAT128;
//C typedef long long LONGLONG;
alias long LONGLONG;
//C typedef unsigned long long ULONGLONG;
alias ulong ULONGLONG;
//C typedef LONGLONG *PLONGLONG;
alias LONGLONG *PLONGLONG;
//C typedef ULONGLONG *PULONGLONG;
alias ULONGLONG *PULONGLONG;
//C typedef LONGLONG USN;
alias LONGLONG USN;
//C typedef union _LARGE_INTEGER {
//C struct {
//C DWORD LowPart;
//C LONG HighPart;
//C } ;
struct _N2
{
DWORD LowPart;
LONG HighPart;
}
//C struct {
//C DWORD LowPart;
//C LONG HighPart;
//C } u;
struct _N3
{
DWORD LowPart;
LONG HighPart;
}
//C LONGLONG QuadPart;
//C } LARGE_INTEGER;
union _LARGE_INTEGER
{
DWORD LowPart;
LONG HighPart;
_N3 u;
LONGLONG QuadPart;
}
alias _LARGE_INTEGER LARGE_INTEGER;
//C typedef LARGE_INTEGER *PLARGE_INTEGER;
alias LARGE_INTEGER *PLARGE_INTEGER;
//C typedef union _ULARGE_INTEGER {
//C struct {
//C DWORD LowPart;
//C DWORD HighPart;
//C } ;
struct _N4
{
DWORD LowPart;
DWORD HighPart;
}
//C struct {
//C DWORD LowPart;
//C DWORD HighPart;
//C } u;
struct _N5
{
DWORD LowPart;
DWORD HighPart;
}
//C ULONGLONG QuadPart;
//C } ULARGE_INTEGER;
union _ULARGE_INTEGER
{
DWORD LowPart;
DWORD HighPart;
_N5 u;
ULONGLONG QuadPart;
}
alias _ULARGE_INTEGER ULARGE_INTEGER;
//C typedef ULARGE_INTEGER *PULARGE_INTEGER;
alias ULARGE_INTEGER *PULARGE_INTEGER;
//C typedef struct _LUID {
//C DWORD LowPart;
//C LONG HighPart;
//C } LUID,*PLUID;
struct _LUID
{
DWORD LowPart;
LONG HighPart;
}
alias _LUID LUID;
alias _LUID *PLUID;
//C typedef ULONGLONG DWORDLONG;
alias ULONGLONG DWORDLONG;
//C typedef DWORDLONG *PDWORDLONG;
alias DWORDLONG *PDWORDLONG;
//C unsigned char _rotl8(unsigned char Value,unsigned char Shift);
ubyte _rotl8(ubyte Value, ubyte Shift);
//C unsigned short _rotl16(unsigned short Value,unsigned char Shift);
ushort _rotl16(ushort Value, ubyte Shift);
//C unsigned char _rotr8(unsigned char Value,unsigned char Shift);
ubyte _rotr8(ubyte Value, ubyte Shift);
//C unsigned short _rotr16(unsigned short Value,unsigned char Shift);
ushort _rotr16(ushort Value, ubyte Shift);
//C unsigned int _rotl(unsigned int Value,int Shift);
uint _rotl(uint Value, int Shift);
//C unsigned int _rotr(unsigned int Value,int Shift);
uint _rotr(uint Value, int Shift);
//C unsigned long long _rotl64(unsigned long long Value,int Shift);
ulong _rotl64(ulong Value, int Shift);
//C unsigned long long _rotr64(unsigned long long Value,int Shift);
ulong _rotr64(ulong Value, int Shift);
//C typedef BYTE BOOLEAN;
alias BYTE BOOLEAN;
//C typedef BOOLEAN *PBOOLEAN;
alias BOOLEAN *PBOOLEAN;
//C typedef struct _LIST_ENTRY {
//C struct _LIST_ENTRY *Flink;
//C struct _LIST_ENTRY *Blink;
//C } LIST_ENTRY,*PLIST_ENTRY,* PRLIST_ENTRY;
struct _LIST_ENTRY
{
_LIST_ENTRY *Flink;
_LIST_ENTRY *Blink;
}
alias _LIST_ENTRY LIST_ENTRY;
alias _LIST_ENTRY *PLIST_ENTRY;
alias _LIST_ENTRY *PRLIST_ENTRY;
//C typedef struct _SINGLE_LIST_ENTRY {
//C struct _SINGLE_LIST_ENTRY *Next;
//C } SINGLE_LIST_ENTRY,*PSINGLE_LIST_ENTRY;
struct _SINGLE_LIST_ENTRY
{
_SINGLE_LIST_ENTRY *Next;
}
alias _SINGLE_LIST_ENTRY SINGLE_LIST_ENTRY;
alias _SINGLE_LIST_ENTRY *PSINGLE_LIST_ENTRY;
//C typedef struct LIST_ENTRY32 {
//C DWORD Flink;
//C DWORD Blink;
//C } LIST_ENTRY32;
struct LIST_ENTRY32
{
DWORD Flink;
DWORD Blink;
}
//C typedef LIST_ENTRY32 *PLIST_ENTRY32;
alias LIST_ENTRY32 *PLIST_ENTRY32;
//C typedef struct LIST_ENTRY64 {
//C ULONGLONG Flink;
//C ULONGLONG Blink;
//C } LIST_ENTRY64;
struct LIST_ENTRY64
{
ULONGLONG Flink;
ULONGLONG Blink;
}
//C typedef LIST_ENTRY64 *PLIST_ENTRY64;
alias LIST_ENTRY64 *PLIST_ENTRY64;
//C typedef struct _GUID {
//C unsigned long Data1;
//C unsigned short Data2;
//C unsigned short Data3;
//C unsigned char Data4[8 ];
//C } GUID;
struct _GUID
{
uint Data1;
ushort Data2;
ushort Data3;
ubyte [8]Data4;
}
alias _GUID GUID;
//C typedef GUID *LPGUID;
alias GUID *LPGUID;
//C typedef const GUID *LPCGUID;
alias GUID *LPCGUID;
//C typedef GUID IID;
alias GUID IID;
//C typedef IID *LPIID;
alias IID *LPIID;
//C typedef GUID CLSID;
alias GUID CLSID;
//C typedef CLSID *LPCLSID;
alias CLSID *LPCLSID;
//C typedef GUID FMTID;
alias GUID FMTID;
//C typedef FMTID *LPFMTID;
alias FMTID *LPFMTID;
//C void * memchr(const void *_Buf ,int _Val,size_t _MaxCount);
void * memchr(void *_Buf, int _Val, size_t _MaxCount);
//C int memcmp(const void *_Buf1,const void *_Buf2,size_t _Size);
int memcmp(void *_Buf1, void *_Buf2, size_t _Size);
//C void * memcpy(void * _Dst,const void * _Src,size_t _Size) ;
void * memcpy(void *_Dst, void *_Src, size_t _Size);
//C void * mempcpy (void *_Dst,const void *_Src,size_t _Size);
void * mempcpy(void *_Dst, void *_Src, size_t _Size);
//C void * memset(void *_Dst,int _Val,size_t _Size);
void * memset(void *_Dst, int _Val, size_t _Size);
//C void * memccpy(void *_Dst,const void *_Src,int _Val,size_t _Size) ;
void * memccpy(void *_Dst, void *_Src, int _Val, size_t _Size);
//C int memicmp(const void *_Buf1,const void *_Buf2,size_t _Size) ;
int memicmp(void *_Buf1, void *_Buf2, size_t _Size);
//C char * _strset(char *_Str,int _Val) ;
char * _strset(char *_Str, int _Val);
//C char * _strset_l(char *_Str,int _Val,_locale_t _Locale) ;
char * _strset_l(char *_Str, int _Val, _locale_t _Locale);
//C char * strcpy(char * _Dest,const char * _Source);
char * strcpy(char *_Dest, char *_Source);
//C char * strcat(char * _Dest,const char * _Source);
char * strcat(char *_Dest, char *_Source);
//C int strcmp(const char *_Str1,const char *_Str2);
int strcmp(char *_Str1, char *_Str2);
//C size_t strlen(const char *_Str);
size_t strlen(char *_Str);
//C size_t strnlen(const char *_Str,size_t _MaxCount);
size_t strnlen(char *_Str, size_t _MaxCount);
//C void * memmove(void *_Dst,const void *_Src,size_t _Size) ;
void * memmove(void *_Dst, void *_Src, size_t _Size);
//C char * strchr(const char *_Str,int _Val);
char * strchr(char *_Str, int _Val);
//C int strcoll(const char *_Str1,const char *_Str2);
int strcoll(char *_Str1, char *_Str2);
//C size_t strcspn(const char *_Str,const char *_Control);
size_t strcspn(char *_Str, char *_Control);
//C char * strerror() ;
char * strerror(int );
//C char *strlwr_l(char *_String,_locale_t _Locale) ;
char * strlwr_l(char *_String, _locale_t _Locale);
//C char * strncat(char * _Dest,const char * _Source,size_t _Count) ;
char * strncat(char *_Dest, char *_Source, size_t _Count);
//C int strncmp(const char *_Str1,const char *_Str2,size_t _MaxCount);
int strncmp(char *_Str1, char *_Str2, size_t _MaxCount);
//C char *strncpy(char * _Dest,const char * _Source,size_t _Count) ;
char * strncpy(char *_Dest, char *_Source, size_t _Count);
//C char * strpbrk(const char *_Str,const char *_Control);
char * strpbrk(char *_Str, char *_Control);
//C char * strrchr(const char *_Str,int _Ch);
char * strrchr(char *_Str, int _Ch);
//C size_t strspn(const char *_Str,const char *_Control);
size_t strspn(char *_Str, char *_Control);
//C char * strstr(const char *_Str,const char *_SubStr);
char * strstr(char *_Str, char *_SubStr);
//C char * strtok(char * _Str,const char * _Delim) ;
char * strtok(char *_Str, char *_Delim);
//C size_t strxfrm(char * _Dst,const char * _Src,size_t _MaxCount);
size_t strxfrm(char *_Dst, char *_Src, size_t _MaxCount);
//C char * strdup(const char *_Src) ;
char * strdup(char *_Src);
//C int strcmpi(const char *_Str1,const char *_Str2) ;
int strcmpi(char *_Str1, char *_Str2);
//C int stricmp(const char *_Str1,const char *_Str2) ;
int stricmp(char *_Str1, char *_Str2);
//C char * strlwr(char *_Str) ;
char * strlwr(char *_Str);
//C int strnicmp(const char *_Str1,const char *_Str,size_t _MaxCount) ;
int strnicmp(char *_Str1, char *_Str, size_t _MaxCount);
//C int strncasecmp (const char *,const char *,size_t);
int strncasecmp(char *, char *, size_t );
//C int strcasecmp (const char *,const char *);
int strcasecmp(char *, char *);
//C char * strnset(char *_Str,int _Val,size_t _MaxCount) ;
char * strnset(char *_Str, int _Val, size_t _MaxCount);
//C char * strrev(char *_Str) ;
char * strrev(char *_Str);
//C char * strset(char *_Str,int _Val) ;
char * strset(char *_Str, int _Val);
//C char * strupr(char *_Str) ;
char * strupr(char *_Str);
//C wchar_t * wcscat(wchar_t * _Dest,const wchar_t * _Source) ;
wchar_t * wcscat(wchar_t *_Dest, wchar_t *_Source);
//C wchar_t * wcschr(const wchar_t *_Str,wchar_t _Ch);
wchar_t * wcschr(wchar_t *_Str, wchar_t _Ch);
//C int wcscmp(const wchar_t *_Str1,const wchar_t *_Str2);
int wcscmp(wchar_t *_Str1, wchar_t *_Str2);
//C wchar_t * wcscpy(wchar_t * _Dest,const wchar_t * _Source) ;
wchar_t * wcscpy(wchar_t *_Dest, wchar_t *_Source);
//C size_t wcscspn(const wchar_t *_Str,const wchar_t *_Control);
size_t wcscspn(wchar_t *_Str, wchar_t *_Control);
//C size_t wcslen(const wchar_t *_Str);
size_t wcslen(wchar_t *_Str);
//C size_t wcsnlen(const wchar_t *_Src,size_t _MaxCount);
size_t wcsnlen(wchar_t *_Src, size_t _MaxCount);
//C wchar_t *wcsncat(wchar_t * _Dest,const wchar_t * _Source,size_t _Count) ;
wchar_t * wcsncat(wchar_t *_Dest, wchar_t *_Source, size_t _Count);
//C int wcsncmp(const wchar_t *_Str1,const wchar_t *_Str2,size_t _MaxCount);
int wcsncmp(wchar_t *_Str1, wchar_t *_Str2, size_t _MaxCount);
//C wchar_t *wcsncpy(wchar_t * _Dest,const wchar_t * _Source,size_t _Count) ;
wchar_t * wcsncpy(wchar_t *_Dest, wchar_t *_Source, size_t _Count);
//C wchar_t * _wcsncpy_l(wchar_t * _Dest,const wchar_t * _Source,size_t _Count,_locale_t _Locale) ;
wchar_t * _wcsncpy_l(wchar_t *_Dest, wchar_t *_Source, size_t _Count, _locale_t _Locale);
//C wchar_t * wcspbrk(const wchar_t *_Str,const wchar_t *_Control);
wchar_t * wcspbrk(wchar_t *_Str, wchar_t *_Control);
//C wchar_t * wcsrchr(const wchar_t *_Str,wchar_t _Ch);
wchar_t * wcsrchr(wchar_t *_Str, wchar_t _Ch);
//C size_t wcsspn(const wchar_t *_Str,const wchar_t *_Control);
size_t wcsspn(wchar_t *_Str, wchar_t *_Control);
//C wchar_t * wcsstr(const wchar_t *_Str,const wchar_t *_SubStr);
wchar_t * wcsstr(wchar_t *_Str, wchar_t *_SubStr);
//C wchar_t * wcstok(wchar_t * _Str,const wchar_t * _Delim) ;
wchar_t * wcstok(wchar_t *_Str, wchar_t *_Delim);
//C size_t wcsxfrm(wchar_t * _Dst,const wchar_t * _Src,size_t _MaxCount);
size_t wcsxfrm(wchar_t *_Dst, wchar_t *_Src, size_t _MaxCount);
//C int wcscoll(const wchar_t *_Str1,const wchar_t *_Str2);
int wcscoll(wchar_t *_Str1, wchar_t *_Str2);
//C wchar_t * wcsdup(const wchar_t *_Str) ;
wchar_t * wcsdup(wchar_t *_Str);
//C int wcsicmp(const wchar_t *_Str1,const wchar_t *_Str2) ;
int wcsicmp(wchar_t *_Str1, wchar_t *_Str2);
//C int wcsnicmp(const wchar_t *_Str1,const wchar_t *_Str2,size_t _MaxCount) ;
int wcsnicmp(wchar_t *_Str1, wchar_t *_Str2, size_t _MaxCount);
//C wchar_t * wcsnset(wchar_t *_Str,wchar_t _Val,size_t _MaxCount) ;
wchar_t * wcsnset(wchar_t *_Str, wchar_t _Val, size_t _MaxCount);
//C wchar_t * wcsrev(wchar_t *_Str) ;
wchar_t * wcsrev(wchar_t *_Str);
//C wchar_t * wcsset(wchar_t *_Str,wchar_t _Val) ;
wchar_t * wcsset(wchar_t *_Str, wchar_t _Val);
//C wchar_t * wcslwr(wchar_t *_Str) ;
wchar_t * wcslwr(wchar_t *_Str);
//C wchar_t * wcsupr(wchar_t *_Str) ;
wchar_t * wcsupr(wchar_t *_Str);
//C int wcsicoll(const wchar_t *_Str1,const wchar_t *_Str2) ;
int wcsicoll(wchar_t *_Str1, wchar_t *_Str2);
//C typedef struct _OBJECTID {
//C GUID Lineage;
//C DWORD Uniquifier;
//C } OBJECTID;
struct _OBJECTID
{
GUID Lineage;
DWORD Uniquifier;
}
alias _OBJECTID OBJECTID;
//C typedef ULONG_PTR KSPIN_LOCK;
alias ULONG_PTR KSPIN_LOCK;
//C typedef KSPIN_LOCK *PKSPIN_LOCK;
alias KSPIN_LOCK *PKSPIN_LOCK;
//C BOOLEAN _bittest(LONG const *Base,LONG Offset);
BOOLEAN _bittest(LONG *Base, LONG Offset);
//C BOOLEAN _bittestandcomplement(LONG *Base,LONG Offset);
BOOLEAN _bittestandcomplement(LONG *Base, LONG Offset);
//C BOOLEAN InterlockedBitTestAndComplement(LONG *Base,LONG Bit);
BOOLEAN InterlockedBitTestAndComplement(LONG *Base, LONG Bit);
//C BOOLEAN _bittestandset(LONG *Base,LONG Offset);
BOOLEAN _bittestandset(LONG *Base, LONG Offset);
//C BOOLEAN _bittestandreset(LONG *Base,LONG Offset);
BOOLEAN _bittestandreset(LONG *Base, LONG Offset);
//C BOOLEAN _interlockedbittestandset(LONG *Base,LONG Offset);
BOOLEAN _interlockedbittestandset(LONG *Base, LONG Offset);
//C BOOLEAN _interlockedbittestandreset(LONG *Base,LONG Offset);
BOOLEAN _interlockedbittestandreset(LONG *Base, LONG Offset);
//C BOOLEAN _bittest64(LONG64 const *Base,LONG64 Offset);
BOOLEAN _bittest64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _bittestandcomplement64(LONG64 *Base,LONG64 Offset);
BOOLEAN _bittestandcomplement64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _bittestandset64(LONG64 *Base,LONG64 Offset);
BOOLEAN _bittestandset64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _bittestandreset64(LONG64 *Base,LONG64 Offset);
BOOLEAN _bittestandreset64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _interlockedbittestandset64(LONG64 *Base,LONG64 Offset);
BOOLEAN _interlockedbittestandset64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _interlockedbittestandreset64(LONG64 *Base,LONG64 Offset);
BOOLEAN _interlockedbittestandreset64(LONG64 *Base, LONG64 Offset);
//C BOOLEAN _BitScanForward(DWORD *Index,DWORD Mask);
BOOLEAN _BitScanForward(DWORD *Index, DWORD Mask);
//C BOOLEAN _BitScanReverse(DWORD *Index,DWORD Mask);
BOOLEAN _BitScanReverse(DWORD *Index, DWORD Mask);
//C BOOLEAN _BitScanForward64(DWORD *Index,DWORD64 Mask);
BOOLEAN _BitScanForward64(DWORD *Index, DWORD64 Mask);
//C BOOLEAN _BitScanReverse64(DWORD *Index,DWORD64 Mask);
BOOLEAN _BitScanReverse64(DWORD *Index, DWORD64 Mask);
//C SHORT _InterlockedIncrement16(SHORT volatile *Addend);
SHORT _InterlockedIncrement16(SHORT *Addend);
//C SHORT _InterlockedDecrement16(SHORT volatile *Addend);
SHORT _InterlockedDecrement16(SHORT *Addend);
//C SHORT _InterlockedCompareExchange16(SHORT volatile *Destination,SHORT ExChange,SHORT Comperand);
SHORT _InterlockedCompareExchange16(SHORT *Destination, SHORT ExChange, SHORT Comperand);
//C LONG _InterlockedAnd(LONG volatile *Destination,LONG Value);
LONG _InterlockedAnd(LONG *Destination, LONG Value);
//C LONG _InterlockedOr(LONG volatile *Destination,LONG Value);
LONG _InterlockedOr(LONG *Destination, LONG Value);
//C LONG _InterlockedXor(LONG volatile *Destination,LONG Value);
LONG _InterlockedXor(LONG *Destination, LONG Value);
//C LONG _InterlockedIncrement(LONG volatile *Addend);
LONG _InterlockedIncrement(LONG *Addend);
//C LONG _InterlockedDecrement(LONG volatile *Addend);
LONG _InterlockedDecrement(LONG *Addend);
//C LONG _InterlockedExchange(LONG volatile *Target,LONG Value);
LONG _InterlockedExchange(LONG *Target, LONG Value);
//C LONG64 _InterlockedAnd64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedAnd64(LONG64 *Destination, LONG64 Value);
//C LONG64 _InterlockedOr64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedOr64(LONG64 *Destination, LONG64 Value);
//C LONG64 _InterlockedXor64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedXor64(LONG64 *Destination, LONG64 Value);
//C LONG _InterlockedExchangeAdd(LONG volatile *Addend,LONG Value);
LONG _InterlockedExchangeAdd(LONG *Addend, LONG Value);
//C LONG _InterlockedCompareExchange(LONG volatile *Destination,LONG ExChange,LONG Comperand);
LONG _InterlockedCompareExchange(LONG *Destination, LONG ExChange, LONG Comperand);
//C LONG _InterlockedAdd(LONG volatile *Addend,LONG Value);
LONG _InterlockedAdd(LONG *Addend, LONG Value);
//C LONG64 _InterlockedIncrement64(LONG64 volatile *Addend);
LONG64 _InterlockedIncrement64(LONG64 *Addend);
//C LONG64 _InterlockedDecrement64(LONG64 volatile *Addend);
LONG64 _InterlockedDecrement64(LONG64 *Addend);
//C LONG64 _InterlockedExchange64(LONG64 volatile *Target,LONG64 Value);
LONG64 _InterlockedExchange64(LONG64 *Target, LONG64 Value);
//C LONG64 _InterlockedExchangeAdd64(LONG64 volatile *Addend,LONG64 Value);
LONG64 _InterlockedExchangeAdd64(LONG64 *Addend, LONG64 Value);
//C LONG64 _InterlockedAdd64(LONG64 volatile *Addend,LONG64 Value);
LONG64 _InterlockedAdd64(LONG64 *Addend, LONG64 Value);
//C LONG64 _InterlockedCompareExchange64(LONG64 volatile *Destination,LONG64 ExChange,LONG64 Comperand);
LONG64 _InterlockedCompareExchange64(LONG64 *Destination, LONG64 ExChange, LONG64 Comperand);
//C PVOID _InterlockedCompareExchangePointer(PVOID volatile *Destination,PVOID ExChange,PVOID Comperand);
PVOID _InterlockedCompareExchangePointer(PVOID *Destination, PVOID ExChange, PVOID Comperand);
//C PVOID _InterlockedExchangePointer(PVOID volatile *Target,PVOID Value);
PVOID _InterlockedExchangePointer(PVOID *Target, PVOID Value);
//C void _ReadWriteBarrier(void);
void _ReadWriteBarrier();
//C void __int2c(void);
void __int2c();
//C unsigned int __getcallerseflags(void);
uint __getcallerseflags();
//C DWORD __segmentlimit(DWORD Selector);
DWORD __segmentlimit(DWORD Selector);
//C unsigned long long __rdtsc(void);
ulong __rdtsc();
//C void __movsb(PBYTE Destination,BYTE const *Source,SIZE_T Count);
void __movsb(PBYTE Destination, BYTE *Source, SIZE_T Count);
//C void __movsw(PWORD Destination,WORD const *Source,SIZE_T Count);
void __movsw(PWORD Destination, WORD *Source, SIZE_T Count);
//C void __movsd(PDWORD Destination,DWORD const *Source,SIZE_T Count);
void __movsd(PDWORD Destination, DWORD *Source, SIZE_T Count);
//C void __movsq(PDWORD64 Destination,DWORD64 const *Source,SIZE_T Count);
void __movsq(PDWORD64 Destination, DWORD64 *Source, SIZE_T Count);
//C void __stosb(PBYTE Destination,BYTE Value,SIZE_T Count);
void __stosb(PBYTE Destination, BYTE Value, SIZE_T Count);
//C void __stosw(PWORD Destination,WORD Value,SIZE_T Count);
void __stosw(PWORD Destination, WORD Value, SIZE_T Count);
//C void __stosd(PDWORD Destination,DWORD Value,SIZE_T Count);
void __stosd(PDWORD Destination, DWORD Value, SIZE_T Count);
//C void __stosq(PDWORD64 Destination,DWORD64 Value,SIZE_T Count);
void __stosq(PDWORD64 Destination, DWORD64 Value, SIZE_T Count);
//C LONGLONG __mulh(LONGLONG Multiplier,LONGLONG Multiplicand);
LONGLONG __mulh(LONGLONG Multiplier, LONGLONG Multiplicand);
//C ULONGLONG __umulh(ULONGLONG Multiplier,ULONGLONG Multiplicand);
ULONGLONG __umulh(ULONGLONG Multiplier, ULONGLONG Multiplicand);
//C DWORD64 __shiftleft128(DWORD64 LowPart,DWORD64 HighPart,BYTE Shift);
DWORD64 __shiftleft128(DWORD64 LowPart, DWORD64 HighPart, BYTE Shift);
//C DWORD64 __shiftright128(DWORD64 LowPart,DWORD64 HighPart,BYTE Shift);
DWORD64 __shiftright128(DWORD64 LowPart, DWORD64 HighPart, BYTE Shift);
//C LONG64 _mul128(LONG64 Multiplier,LONG64 Multiplicand,LONG64 *HighProduct);
LONG64 _mul128(LONG64 Multiplier, LONG64 Multiplicand, LONG64 *HighProduct);
//C DWORD64 _umul128(DWORD64 Multiplier,DWORD64 Multiplicand,DWORD64 *HighProduct);
DWORD64 _umul128(DWORD64 Multiplier, DWORD64 Multiplicand, DWORD64 *HighProduct);
//C LONG64 MultiplyExtract128(LONG64 Multiplier,LONG64 Multiplicand,BYTE Shift);
LONG64 MultiplyExtract128(LONG64 Multiplier, LONG64 Multiplicand, BYTE Shift);
//C DWORD64 UnsignedMultiplyExtract128(DWORD64 Multiplier,DWORD64 Multiplicand,BYTE Shift);
DWORD64 UnsignedMultiplyExtract128(DWORD64 Multiplier, DWORD64 Multiplicand, BYTE Shift);
//C typedef struct _M128A {
//C ULONGLONG Low;
//C LONGLONG High;
//C } M128A,*PM128A;
struct _M128A
{
ULONGLONG Low;
LONGLONG High;
}
alias _M128A M128A;
alias _M128A *PM128A;
//C typedef struct _XMM_SAVE_AREA32 {
//C WORD ControlWord;
//C WORD StatusWord;
//C BYTE TagWord;
//C BYTE Reserved1;
//C WORD ErrorOpcode;
//C DWORD ErrorOffset;
//C WORD ErrorSelector;
//C WORD Reserved2;
//C DWORD DataOffset;
//C WORD DataSelector;
//C WORD Reserved3;
//C DWORD MxCsr;
//C DWORD MxCsr_Mask;
//C M128A FloatRegisters[8];
//C M128A XmmRegisters[16];
//C BYTE Reserved4[96];
//C } XMM_SAVE_AREA32,*PXMM_SAVE_AREA32;
struct _XMM_SAVE_AREA32
{
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 [8]FloatRegisters;
M128A [16]XmmRegisters;
BYTE [96]Reserved4;
}
alias _XMM_SAVE_AREA32 XMM_SAVE_AREA32;
alias _XMM_SAVE_AREA32 *PXMM_SAVE_AREA32;
//C typedef struct _CONTEXT {
//C DWORD64 P1Home;
//C DWORD64 P2Home;
//C DWORD64 P3Home;
//C DWORD64 P4Home;
//C DWORD64 P5Home;
//C DWORD64 P6Home;
//C DWORD ContextFlags;
//C DWORD MxCsr;
//C WORD SegCs;
//C WORD SegDs;
//C WORD SegEs;
//C WORD SegFs;
//C WORD SegGs;
//C WORD SegSs;
//C DWORD EFlags;
//C DWORD64 Dr0;
//C DWORD64 Dr1;
//C DWORD64 Dr2;
//C DWORD64 Dr3;
//C DWORD64 Dr6;
//C DWORD64 Dr7;
//C DWORD64 Rax;
//C DWORD64 Rcx;
//C DWORD64 Rdx;
//C DWORD64 Rbx;
//C DWORD64 Rsp;
//C DWORD64 Rbp;
//C DWORD64 Rsi;
//C DWORD64 Rdi;
//C DWORD64 R8;
//C DWORD64 R9;
//C DWORD64 R10;
//C DWORD64 R11;
//C DWORD64 R12;
//C DWORD64 R13;
//C DWORD64 R14;
//C DWORD64 R15;
//C DWORD64 Rip;
//C union {
//C XMM_SAVE_AREA32 FltSave;
//C XMM_SAVE_AREA32 FloatSave;
//C struct {
//C M128A Header[2];
//C M128A Legacy[8];
//C M128A Xmm0;
//C M128A Xmm1;
//C M128A Xmm2;
//C M128A Xmm3;
//C M128A Xmm4;
//C M128A Xmm5;
//C M128A Xmm6;
//C M128A Xmm7;
//C M128A Xmm8;
//C M128A Xmm9;
//C M128A Xmm10;
//C M128A Xmm11;
//C M128A Xmm12;
//C M128A Xmm13;
//C M128A Xmm14;
//C M128A Xmm15;
//C };
struct _N7
{
M128A [2]Header;
M128A [8]Legacy;
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;
}
//C };
union _N6
{
XMM_SAVE_AREA32 FltSave;
XMM_SAVE_AREA32 FloatSave;
M128A [2]Header;
M128A [8]Legacy;
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;
}
//C M128A VectorRegister[26];
//C DWORD64 VectorControl;
//C DWORD64 DebugControl;
//C DWORD64 LastBranchToRip;
//C DWORD64 LastBranchFromRip;
//C DWORD64 LastExceptionToRip;
//C DWORD64 LastExceptionFromRip;
//C } CONTEXT,*PCONTEXT;
struct _CONTEXT
{
DWORD64 P1Home;
DWORD64 P2Home;
DWORD64 P3Home;
DWORD64 P4Home;
DWORD64 P5Home;
DWORD64 P6Home;
DWORD ContextFlags;
DWORD MxCsr;
WORD SegCs;
WORD SegDs;
WORD SegEs;
WORD SegFs;
WORD SegGs;
WORD SegSs;
DWORD EFlags;
DWORD64 Dr0;
DWORD64 Dr1;
DWORD64 Dr2;
DWORD64 Dr3;
DWORD64 Dr6;
DWORD64 Dr7;
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;
DWORD64 Rip;
XMM_SAVE_AREA32 FltSave;
XMM_SAVE_AREA32 FloatSave;
M128A [2]Header;
M128A [8]Legacy;
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;
M128A [26]VectorRegister;
DWORD64 VectorControl;
DWORD64 DebugControl;
DWORD64 LastBranchToRip;
DWORD64 LastBranchFromRip;
DWORD64 LastExceptionToRip;
DWORD64 LastExceptionFromRip;
}
alias _CONTEXT CONTEXT;
alias _CONTEXT *PCONTEXT;
//C typedef struct _RUNTIME_FUNCTION {
//C DWORD BeginAddress;
//C DWORD EndAddress;
//C DWORD UnwindData;
//C } RUNTIME_FUNCTION,*PRUNTIME_FUNCTION;
struct _RUNTIME_FUNCTION
{
DWORD BeginAddress;
DWORD EndAddress;
DWORD UnwindData;
}
alias _RUNTIME_FUNCTION RUNTIME_FUNCTION;
alias _RUNTIME_FUNCTION *PRUNTIME_FUNCTION;
//C typedef PRUNTIME_FUNCTION (*PGET_RUNTIME_FUNCTION_CALLBACK)(DWORD64 ControlPc,PVOID Context);
alias PRUNTIME_FUNCTION function(DWORD64 ControlPc, PVOID Context)PGET_RUNTIME_FUNCTION_CALLBACK;
//C typedef DWORD (*POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK)(HANDLE Process,PVOID TableAddress,PDWORD Entries,PRUNTIME_FUNCTION *Functions);
alias DWORD function(HANDLE Process, PVOID TableAddress, PDWORD Entries, PRUNTIME_FUNCTION *Functions)POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK;
//C void RtlRestoreContext (PCONTEXT ContextRecord,struct _EXCEPTION_RECORD *ExceptionRecord);
void RtlRestoreContext(PCONTEXT ContextRecord, _EXCEPTION_RECORD *ExceptionRecord);
//C BOOLEAN RtlAddFunctionTable(PRUNTIME_FUNCTION FunctionTable,DWORD EntryCount,DWORD64 BaseAddress);
BOOLEAN RtlAddFunctionTable(PRUNTIME_FUNCTION FunctionTable, DWORD EntryCount, DWORD64 BaseAddress);
//C BOOLEAN RtlInstallFunctionTableCallback(DWORD64 TableIdentifier,DWORD64 BaseAddress,DWORD Length,PGET_RUNTIME_FUNCTION_CALLBACK Callback,PVOID Context,PCWSTR OutOfProcessCallbackDll);
BOOLEAN RtlInstallFunctionTableCallback(DWORD64 TableIdentifier, DWORD64 BaseAddress, DWORD Length, PGET_RUNTIME_FUNCTION_CALLBACK Callback, PVOID Context, PCWSTR OutOfProcessCallbackDll);
//C BOOLEAN RtlDeleteFunctionTable(PRUNTIME_FUNCTION FunctionTable);
BOOLEAN RtlDeleteFunctionTable(PRUNTIME_FUNCTION FunctionTable);
//C LONG _InterlockedIncrement(LONG volatile *);
LONG _InterlockedIncrement(LONG *);
//C LONG _InterlockedDecrement(LONG volatile *);
LONG _InterlockedDecrement(LONG *);
//C LONG _InterlockedExchange(LONG volatile *,LONG);
LONG _InterlockedExchange(LONG *, LONG );
//C typedef struct _LDT_ENTRY {
//C WORD LimitLow;
//C WORD BaseLow;
//C union {
//C struct {
//C BYTE BaseMid;
//C BYTE Flags1;
//C BYTE Flags2;
//C BYTE BaseHi;
//C } Bytes;
struct _N9
{
BYTE BaseMid;
BYTE Flags1;
BYTE Flags2;
BYTE BaseHi;
}
//C struct {
//C DWORD BaseMid : 8;
//C DWORD Type : 5;
//C DWORD Dpl : 2;
//C DWORD Pres : 1;
//C DWORD LimitHi : 4;
//C DWORD Sys : 1;
//C DWORD Reserved_0 : 1;
//C DWORD Default_Big : 1;
//C DWORD Granularity : 1;
//C DWORD BaseHi : 8;
//C } Bits;
struct _N10
{
DWORD __bitfield1;
DWORD BaseMid() { return (__bitfield1 >> 0) & 0xff; }
DWORD Type() { return (__bitfield1 >> 8) & 0x1f; }
DWORD Dpl() { return (__bitfield1 >> 13) & 0x3; }
DWORD Pres() { return (__bitfield1 >> 15) & 0x1; }
DWORD LimitHi() { return (__bitfield1 >> 16) & 0xf; }
DWORD Sys() { return (__bitfield1 >> 20) & 0x1; }
DWORD Reserved_0() { return (__bitfield1 >> 21) & 0x1; }
DWORD Default_Big() { return (__bitfield1 >> 22) & 0x1; }
DWORD Granularity() { return (__bitfield1 >> 23) & 0x1; }
DWORD BaseHi() { return (__bitfield1 >> 24) & 0xff; }
}
//C } HighWord;
union _N8
{
_N9 Bytes;
_N10 Bits;
}
//C } LDT_ENTRY,*PLDT_ENTRY;
struct _LDT_ENTRY
{
WORD LimitLow;
WORD BaseLow;
_N8 HighWord;
}
alias _LDT_ENTRY LDT_ENTRY;
alias _LDT_ENTRY *PLDT_ENTRY;
//C typedef struct _EXCEPTION_RECORD {
//C DWORD ExceptionCode;
//C DWORD ExceptionFlags;
//C struct _EXCEPTION_RECORD *ExceptionRecord;
//C PVOID ExceptionAddress;
//C DWORD NumberParameters;
//C ULONG_PTR ExceptionInformation[15];
//C } EXCEPTION_RECORD;
struct _EXCEPTION_RECORD
{
DWORD ExceptionCode;
DWORD ExceptionFlags;
_EXCEPTION_RECORD *ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
ULONG_PTR [15]ExceptionInformation;
}
alias _EXCEPTION_RECORD EXCEPTION_RECORD;
//C typedef EXCEPTION_RECORD *PEXCEPTION_RECORD;
alias EXCEPTION_RECORD *PEXCEPTION_RECORD;
//C typedef struct _EXCEPTION_RECORD32 {
//C DWORD ExceptionCode;
//C DWORD ExceptionFlags;
//C DWORD ExceptionRecord;
//C DWORD ExceptionAddress;
//C DWORD NumberParameters;
//C DWORD ExceptionInformation[15];
//C } EXCEPTION_RECORD32,*PEXCEPTION_RECORD32;
struct _EXCEPTION_RECORD32
{
DWORD ExceptionCode;
DWORD ExceptionFlags;
DWORD ExceptionRecord;
DWORD ExceptionAddress;
DWORD NumberParameters;
DWORD [15]ExceptionInformation;
}
alias _EXCEPTION_RECORD32 EXCEPTION_RECORD32;
alias _EXCEPTION_RECORD32 *PEXCEPTION_RECORD32;
//C typedef struct _EXCEPTION_RECORD64 {
//C DWORD ExceptionCode;
//C DWORD ExceptionFlags;
//C DWORD64 ExceptionRecord;
//C DWORD64 ExceptionAddress;
//C DWORD NumberParameters;
//C DWORD __unusedAlignment;
//C DWORD64 ExceptionInformation[15];
//C } EXCEPTION_RECORD64,*PEXCEPTION_RECORD64;
struct _EXCEPTION_RECORD64
{
DWORD ExceptionCode;
DWORD ExceptionFlags;
DWORD64 ExceptionRecord;
DWORD64 ExceptionAddress;
DWORD NumberParameters;
DWORD __unusedAlignment;
DWORD64 [15]ExceptionInformation;
}
alias _EXCEPTION_RECORD64 EXCEPTION_RECORD64;
alias _EXCEPTION_RECORD64 *PEXCEPTION_RECORD64;
//C typedef struct _EXCEPTION_POINTERS {
//C PEXCEPTION_RECORD ExceptionRecord;
//C PCONTEXT ContextRecord;
//C } EXCEPTION_POINTERS,*PEXCEPTION_POINTERS;
struct _EXCEPTION_POINTERS
{
PEXCEPTION_RECORD ExceptionRecord;
PCONTEXT ContextRecord;
}
alias _EXCEPTION_POINTERS EXCEPTION_POINTERS;
alias _EXCEPTION_POINTERS *PEXCEPTION_POINTERS;
//C typedef struct _UNWIND_HISTORY_TABLE_ENTRY {
//C ULONG64 ImageBase;
//C PRUNTIME_FUNCTION FunctionEntry;
//C } UNWIND_HISTORY_TABLE_ENTRY,*PUNWIND_HISTORY_TABLE_ENTRY;
struct _UNWIND_HISTORY_TABLE_ENTRY
{
ULONG64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
}
alias _UNWIND_HISTORY_TABLE_ENTRY UNWIND_HISTORY_TABLE_ENTRY;
alias _UNWIND_HISTORY_TABLE_ENTRY *PUNWIND_HISTORY_TABLE_ENTRY;
//C typedef struct _UNWIND_HISTORY_TABLE {
//C ULONG Count;
//C UCHAR Search;
//C ULONG64 LowAddress;
//C ULONG64 HighAddress;
//C UNWIND_HISTORY_TABLE_ENTRY Entry[12];
//C } UNWIND_HISTORY_TABLE,*PUNWIND_HISTORY_TABLE;
struct _UNWIND_HISTORY_TABLE
{
ULONG Count;
UCHAR Search;
ULONG64 LowAddress;
ULONG64 HighAddress;
UNWIND_HISTORY_TABLE_ENTRY [12]Entry;
}
alias _UNWIND_HISTORY_TABLE UNWIND_HISTORY_TABLE;
alias _UNWIND_HISTORY_TABLE *PUNWIND_HISTORY_TABLE;
//C PRUNTIME_FUNCTION RtlLookupFunctionEntry(ULONG64 ControlPc,PULONG64 ImageBase,PUNWIND_HISTORY_TABLE HistoryTable);
PRUNTIME_FUNCTION RtlLookupFunctionEntry(ULONG64 ControlPc, PULONG64 ImageBase, PUNWIND_HISTORY_TABLE HistoryTable);
//C struct _DISPATCHER_CONTEXT;
//C typedef struct _DISPATCHER_CONTEXT DISPATCHER_CONTEXT;
alias _DISPATCHER_CONTEXT DISPATCHER_CONTEXT;
//C typedef struct _DISPATCHER_CONTEXT *PDISPATCHER_CONTEXT;
alias _DISPATCHER_CONTEXT *PDISPATCHER_CONTEXT;
//C typedef struct EXCEPTION_DISPOSITION* PEXCEPTION_ROUTINE;
alias EXCEPTION_DISPOSITION *PEXCEPTION_ROUTINE;
//C typedef struct PEXCEPTION_RECORD ExceptionRecord;
alias PEXCEPTION_RECORD ExceptionRecord;
//C typedef ULONG64 EstablisherFrame;
alias ULONG64 EstablisherFrame;
//C typedef struct PCONTEXT ContextRecord;
alias PCONTEXT ContextRecord;
//C typedef struct PDISPATCHER_CONTEXT DispatcherContext;
alias PDISPATCHER_CONTEXT DispatcherContext;
//C struct _DISPATCHER_CONTEXT {
//C ULONG64 ControlPc;
//C ULONG64 ImageBase;
//C PRUNTIME_FUNCTION FunctionEntry;
//C ULONG64 EstablisherFrame;
//C ULONG64 TargetIp;
//C PCONTEXT ContextRecord;
//C PEXCEPTION_ROUTINE LanguageHandler;
//C PVOID HandlerData;
//C PUNWIND_HISTORY_TABLE HistoryTable;
//C ULONG ScopeIndex;
//C ULONG Fill0;
//C };
struct _DISPATCHER_CONTEXT
{
ULONG64 ControlPc;
ULONG64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
ULONG64 EstablisherFrame;
ULONG64 TargetIp;
PCONTEXT ContextRecord;
PEXCEPTION_ROUTINE LanguageHandler;
PVOID HandlerData;
PUNWIND_HISTORY_TABLE HistoryTable;
ULONG ScopeIndex;
ULONG Fill0;
}
//C typedef struct _KNONVOLATILE_CONTEXT_POINTERS
//C {
//C PM128A FloatingContext[16];
//C PULONG64 IntegerContext[16];
//C } KNONVOLATILE_CONTEXT_POINTERS,*PKNONVOLATILE_CONTEXT_POINTERS;
struct _KNONVOLATILE_CONTEXT_POINTERS
{
PM128A [16]FloatingContext;
PULONG64 [16]IntegerContext;
}
alias _KNONVOLATILE_CONTEXT_POINTERS KNONVOLATILE_CONTEXT_POINTERS;
alias _KNONVOLATILE_CONTEXT_POINTERS *PKNONVOLATILE_CONTEXT_POINTERS;
//C void RtlUnwindEx(PVOID TargetFrame,ULONG64 TargetIp,PEXCEPTION_RECORD ExceptionRecord,PVOID ReturnValue,PCONTEXT OriginalContext,PUNWIND_HISTORY_TABLE HistoryTable);
void RtlUnwindEx(PVOID TargetFrame, ULONG64 TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT OriginalContext, PUNWIND_HISTORY_TABLE HistoryTable);
//C PEXCEPTION_ROUTINE RtlVirtualUnwind(ULONG HandlerType,ULONG64 ImageBase,ULONG64 ControlPc,PRUNTIME_FUNCTION FunctionEntry,PCONTEXT ContextRecord,PVOID *HandlerData,PULONG64 EstablisherFrame,PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
PEXCEPTION_ROUTINE RtlVirtualUnwind(ULONG HandlerType, ULONG64 ImageBase, ULONG64 ControlPc, PRUNTIME_FUNCTION FunctionEntry, PCONTEXT ContextRecord, PVOID *HandlerData, PULONG64 EstablisherFrame, PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
//C typedef PVOID PACCESS_TOKEN;
alias PVOID PACCESS_TOKEN;
//C typedef PVOID PSECURITY_DESCRIPTOR;
alias PVOID PSECURITY_DESCRIPTOR;
//C typedef PVOID PSID;
alias PVOID PSID;
//C typedef DWORD ACCESS_MASK;
alias DWORD ACCESS_MASK;
//C typedef ACCESS_MASK *PACCESS_MASK;
alias ACCESS_MASK *PACCESS_MASK;
//C typedef struct _GENERIC_MAPPING {
//C ACCESS_MASK GenericRead;
//C ACCESS_MASK GenericWrite;
//C ACCESS_MASK GenericExecute;
//C ACCESS_MASK GenericAll;
//C } GENERIC_MAPPING;
struct _GENERIC_MAPPING
{
ACCESS_MASK GenericRead;
ACCESS_MASK GenericWrite;
ACCESS_MASK GenericExecute;
ACCESS_MASK GenericAll;
}
alias _GENERIC_MAPPING GENERIC_MAPPING;
//C typedef GENERIC_MAPPING *PGENERIC_MAPPING;
alias GENERIC_MAPPING *PGENERIC_MAPPING;
//C typedef struct _LUID_AND_ATTRIBUTES {
//C LUID Luid;
//C DWORD Attributes;
//C } LUID_AND_ATTRIBUTES,*PLUID_AND_ATTRIBUTES;
struct _LUID_AND_ATTRIBUTES
{
LUID Luid;
DWORD Attributes;
}
alias _LUID_AND_ATTRIBUTES LUID_AND_ATTRIBUTES;
alias _LUID_AND_ATTRIBUTES *PLUID_AND_ATTRIBUTES;
//C typedef LUID_AND_ATTRIBUTES LUID_AND_ATTRIBUTES_ARRAY[1];
alias LUID_AND_ATTRIBUTES [1]LUID_AND_ATTRIBUTES_ARRAY;
//C typedef LUID_AND_ATTRIBUTES_ARRAY *PLUID_AND_ATTRIBUTES_ARRAY;
alias LUID_AND_ATTRIBUTES_ARRAY *PLUID_AND_ATTRIBUTES_ARRAY;
//C typedef struct _SID_IDENTIFIER_AUTHORITY {
//C BYTE Value[6];
//C } SID_IDENTIFIER_AUTHORITY,*PSID_IDENTIFIER_AUTHORITY;
struct _SID_IDENTIFIER_AUTHORITY
{
BYTE [6]Value;
}
alias _SID_IDENTIFIER_AUTHORITY SID_IDENTIFIER_AUTHORITY;
alias _SID_IDENTIFIER_AUTHORITY *PSID_IDENTIFIER_AUTHORITY;
//C typedef struct _SID {
//C BYTE Revision;
//C BYTE SubAuthorityCount;
//C SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
//C DWORD SubAuthority[1];
//C } SID,*PISID;
struct _SID
{
BYTE Revision;
BYTE SubAuthorityCount;
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
DWORD [1]SubAuthority;
}
alias _SID SID;
alias _SID *PISID;
//C typedef enum _SID_NAME_USE {
//C SidTypeUser = 1,SidTypeGroup,SidTypeDomain,SidTypeAlias,SidTypeWellKnownGroup,SidTypeDeletedAccount,SidTypeInvalid,SidTypeUnknown,SidTypeComputer
//C } SID_NAME_USE,*PSID_NAME_USE;
enum _SID_NAME_USE
{
SidTypeUser = 1,
SidTypeGroup,
SidTypeDomain,
SidTypeAlias,
SidTypeWellKnownGroup,
SidTypeDeletedAccount,
SidTypeInvalid,
SidTypeUnknown,
SidTypeComputer,
}
alias _SID_NAME_USE SID_NAME_USE;
alias _SID_NAME_USE *PSID_NAME_USE;
//C typedef struct _SID_AND_ATTRIBUTES {
//C PSID Sid;
//C DWORD Attributes;
//C } SID_AND_ATTRIBUTES,*PSID_AND_ATTRIBUTES;
struct _SID_AND_ATTRIBUTES
{
PSID Sid;
DWORD Attributes;
}
alias _SID_AND_ATTRIBUTES SID_AND_ATTRIBUTES;
alias _SID_AND_ATTRIBUTES *PSID_AND_ATTRIBUTES;
//C typedef SID_AND_ATTRIBUTES SID_AND_ATTRIBUTES_ARRAY[1];
alias SID_AND_ATTRIBUTES [1]SID_AND_ATTRIBUTES_ARRAY;
//C typedef SID_AND_ATTRIBUTES_ARRAY *PSID_AND_ATTRIBUTES_ARRAY;
alias SID_AND_ATTRIBUTES_ARRAY *PSID_AND_ATTRIBUTES_ARRAY;
//C typedef enum {
//C 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
//C } WELL_KNOWN_SID_TYPE;
enum
{
WinNullSid,
WinWorldSid,
WinLocalSid,
WinCreatorOwnerSid,
WinCreatorGroupSid,
WinCreatorOwnerServerSid,
WinCreatorGroupServerSid,
WinNtAuthoritySid,
WinDialupSid,
WinNetworkSid,
WinBatchSid,
WinInteractiveSid,
WinServiceSid,
WinAnonymousSid,
WinProxySid,
WinEnterpriseControllersSid,
WinSelfSid,
WinAuthenticatedUserSid,
WinRestrictedCodeSid,
WinTerminalServerSid,
WinRemoteLogonIdSid,
WinLogonIdsSid,
WinLocalSystemSid,
WinLocalServiceSid,
WinNetworkServiceSid,
WinBuiltinDomainSid,
WinBuiltinAdministratorsSid,
WinBuiltinUsersSid,
WinBuiltinGuestsSid,
WinBuiltinPowerUsersSid,
WinBuiltinAccountOperatorsSid,
WinBuiltinSystemOperatorsSid,
WinBuiltinPrintOperatorsSid,
WinBuiltinBackupOperatorsSid,
WinBuiltinReplicatorSid,
WinBuiltinPreWindows2000CompatibleAccessSid,
WinBuiltinRemoteDesktopUsersSid,
WinBuiltinNetworkConfigurationOperatorsSid,
WinAccountAdministratorSid,
WinAccountGuestSid,
WinAccountKrbtgtSid,
WinAccountDomainAdminsSid,
WinAccountDomainUsersSid,
WinAccountDomainGuestsSid,
WinAccountComputersSid,
WinAccountControllersSid,
WinAccountCertAdminsSid,
WinAccountSchemaAdminsSid,
WinAccountEnterpriseAdminsSid,
WinAccountPolicyAdminsSid,
WinAccountRasAndIasServersSid,
WinNTLMAuthenticationSid,
WinDigestAuthenticationSid,
WinSChannelAuthenticationSid,
WinThisOrganizationSid,
WinOtherOrganizationSid,
WinBuiltinIncomingForestTrustBuildersSid,
WinBuiltinPerfMonitoringUsersSid,
WinBuiltinPerfLoggingUsersSid,
WinBuiltinAuthorizationAccessSid,
WinBuiltinTerminalServerLicenseServersSid,
WinBuiltinDCOMUsersSid,
}
alias int WELL_KNOWN_SID_TYPE;
//C typedef struct _ACL {
//C BYTE AclRevision;
//C BYTE Sbz1;
//C WORD AclSize;
//C WORD AceCount;
//C WORD Sbz2;
//C } ACL;
struct _ACL
{
BYTE AclRevision;
BYTE Sbz1;
WORD AclSize;
WORD AceCount;
WORD Sbz2;
}
alias _ACL ACL;
//C typedef ACL *PACL;
alias ACL *PACL;
//C typedef struct _ACE_HEADER {
//C BYTE AceType;
//C BYTE AceFlags;
//C WORD AceSize;
//C } ACE_HEADER;
struct _ACE_HEADER
{
BYTE AceType;
BYTE AceFlags;
WORD AceSize;
}
alias _ACE_HEADER ACE_HEADER;
//C typedef ACE_HEADER *PACE_HEADER;
alias ACE_HEADER *PACE_HEADER;
//C typedef struct _ACCESS_ALLOWED_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } ACCESS_ALLOWED_ACE;
struct _ACCESS_ALLOWED_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _ACCESS_ALLOWED_ACE ACCESS_ALLOWED_ACE;
//C typedef ACCESS_ALLOWED_ACE *PACCESS_ALLOWED_ACE;
alias ACCESS_ALLOWED_ACE *PACCESS_ALLOWED_ACE;
//C typedef struct _ACCESS_DENIED_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } ACCESS_DENIED_ACE;
struct _ACCESS_DENIED_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _ACCESS_DENIED_ACE ACCESS_DENIED_ACE;
//C typedef ACCESS_DENIED_ACE *PACCESS_DENIED_ACE;
alias ACCESS_DENIED_ACE *PACCESS_DENIED_ACE;
//C typedef struct _SYSTEM_AUDIT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } SYSTEM_AUDIT_ACE;
struct _SYSTEM_AUDIT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _SYSTEM_AUDIT_ACE SYSTEM_AUDIT_ACE;
//C typedef SYSTEM_AUDIT_ACE *PSYSTEM_AUDIT_ACE;
alias SYSTEM_AUDIT_ACE *PSYSTEM_AUDIT_ACE;
//C typedef struct _SYSTEM_ALARM_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } SYSTEM_ALARM_ACE;
struct _SYSTEM_ALARM_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _SYSTEM_ALARM_ACE SYSTEM_ALARM_ACE;
//C typedef SYSTEM_ALARM_ACE *PSYSTEM_ALARM_ACE;
alias SYSTEM_ALARM_ACE *PSYSTEM_ALARM_ACE;
//C typedef struct _SYSTEM_MANDATORY_LABEL_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } SYSTEM_MANDATORY_LABEL_ACE,*PSYSTEM_MANDATORY_LABEL_ACE;
struct _SYSTEM_MANDATORY_LABEL_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _SYSTEM_MANDATORY_LABEL_ACE SYSTEM_MANDATORY_LABEL_ACE;
alias _SYSTEM_MANDATORY_LABEL_ACE *PSYSTEM_MANDATORY_LABEL_ACE;
//C typedef struct _ACCESS_ALLOWED_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } ACCESS_ALLOWED_OBJECT_ACE,*PACCESS_ALLOWED_OBJECT_ACE;
struct _ACCESS_ALLOWED_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _ACCESS_ALLOWED_OBJECT_ACE ACCESS_ALLOWED_OBJECT_ACE;
alias _ACCESS_ALLOWED_OBJECT_ACE *PACCESS_ALLOWED_OBJECT_ACE;
//C typedef struct _ACCESS_DENIED_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } ACCESS_DENIED_OBJECT_ACE,*PACCESS_DENIED_OBJECT_ACE;
struct _ACCESS_DENIED_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _ACCESS_DENIED_OBJECT_ACE ACCESS_DENIED_OBJECT_ACE;
alias _ACCESS_DENIED_OBJECT_ACE *PACCESS_DENIED_OBJECT_ACE;
//C typedef struct _SYSTEM_AUDIT_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } SYSTEM_AUDIT_OBJECT_ACE,*PSYSTEM_AUDIT_OBJECT_ACE;
struct _SYSTEM_AUDIT_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _SYSTEM_AUDIT_OBJECT_ACE SYSTEM_AUDIT_OBJECT_ACE;
alias _SYSTEM_AUDIT_OBJECT_ACE *PSYSTEM_AUDIT_OBJECT_ACE;
//C typedef struct _SYSTEM_ALARM_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } SYSTEM_ALARM_OBJECT_ACE,*PSYSTEM_ALARM_OBJECT_ACE;
struct _SYSTEM_ALARM_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _SYSTEM_ALARM_OBJECT_ACE SYSTEM_ALARM_OBJECT_ACE;
alias _SYSTEM_ALARM_OBJECT_ACE *PSYSTEM_ALARM_OBJECT_ACE;
//C typedef struct _ACCESS_ALLOWED_CALLBACK_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } ACCESS_ALLOWED_CALLBACK_ACE,*PACCESS_ALLOWED_CALLBACK_ACE;
struct _ACCESS_ALLOWED_CALLBACK_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _ACCESS_ALLOWED_CALLBACK_ACE ACCESS_ALLOWED_CALLBACK_ACE;
alias _ACCESS_ALLOWED_CALLBACK_ACE *PACCESS_ALLOWED_CALLBACK_ACE;
//C typedef struct _ACCESS_DENIED_CALLBACK_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } ACCESS_DENIED_CALLBACK_ACE,*PACCESS_DENIED_CALLBACK_ACE;
struct _ACCESS_DENIED_CALLBACK_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _ACCESS_DENIED_CALLBACK_ACE ACCESS_DENIED_CALLBACK_ACE;
alias _ACCESS_DENIED_CALLBACK_ACE *PACCESS_DENIED_CALLBACK_ACE;
//C typedef struct _SYSTEM_AUDIT_CALLBACK_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } SYSTEM_AUDIT_CALLBACK_ACE,*PSYSTEM_AUDIT_CALLBACK_ACE;
struct _SYSTEM_AUDIT_CALLBACK_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _SYSTEM_AUDIT_CALLBACK_ACE SYSTEM_AUDIT_CALLBACK_ACE;
alias _SYSTEM_AUDIT_CALLBACK_ACE *PSYSTEM_AUDIT_CALLBACK_ACE;
//C typedef struct _SYSTEM_ALARM_CALLBACK_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD SidStart;
//C } SYSTEM_ALARM_CALLBACK_ACE,*PSYSTEM_ALARM_CALLBACK_ACE;
struct _SYSTEM_ALARM_CALLBACK_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
}
alias _SYSTEM_ALARM_CALLBACK_ACE SYSTEM_ALARM_CALLBACK_ACE;
alias _SYSTEM_ALARM_CALLBACK_ACE *PSYSTEM_ALARM_CALLBACK_ACE;
//C typedef struct _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } ACCESS_ALLOWED_CALLBACK_OBJECT_ACE,*PACCESS_ALLOWED_CALLBACK_OBJECT_ACE;
struct _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE ACCESS_ALLOWED_CALLBACK_OBJECT_ACE;
alias _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE *PACCESS_ALLOWED_CALLBACK_OBJECT_ACE;
//C typedef struct _ACCESS_DENIED_CALLBACK_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } ACCESS_DENIED_CALLBACK_OBJECT_ACE,*PACCESS_DENIED_CALLBACK_OBJECT_ACE;
struct _ACCESS_DENIED_CALLBACK_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _ACCESS_DENIED_CALLBACK_OBJECT_ACE ACCESS_DENIED_CALLBACK_OBJECT_ACE;
alias _ACCESS_DENIED_CALLBACK_OBJECT_ACE *PACCESS_DENIED_CALLBACK_OBJECT_ACE;
//C typedef struct _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } SYSTEM_AUDIT_CALLBACK_OBJECT_ACE,*PSYSTEM_AUDIT_CALLBACK_OBJECT_ACE;
struct _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE SYSTEM_AUDIT_CALLBACK_OBJECT_ACE;
alias _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE *PSYSTEM_AUDIT_CALLBACK_OBJECT_ACE;
//C typedef struct _SYSTEM_ALARM_CALLBACK_OBJECT_ACE {
//C ACE_HEADER Header;
//C ACCESS_MASK Mask;
//C DWORD Flags;
//C GUID ObjectType;
//C GUID InheritedObjectType;
//C DWORD SidStart;
//C } SYSTEM_ALARM_CALLBACK_OBJECT_ACE,*PSYSTEM_ALARM_CALLBACK_OBJECT_ACE;
struct _SYSTEM_ALARM_CALLBACK_OBJECT_ACE
{
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
}
alias _SYSTEM_ALARM_CALLBACK_OBJECT_ACE SYSTEM_ALARM_CALLBACK_OBJECT_ACE;
alias _SYSTEM_ALARM_CALLBACK_OBJECT_ACE *PSYSTEM_ALARM_CALLBACK_OBJECT_ACE;
//C typedef enum _ACL_INFORMATION_CLASS {
//C AclRevisionInformation = 1,AclSizeInformation
//C } ACL_INFORMATION_CLASS;
enum _ACL_INFORMATION_CLASS
{
AclRevisionInformation = 1,
AclSizeInformation,
}
alias _ACL_INFORMATION_CLASS ACL_INFORMATION_CLASS;
//C typedef struct _ACL_REVISION_INFORMATION {
//C DWORD AclRevision;
//C } ACL_REVISION_INFORMATION;
struct _ACL_REVISION_INFORMATION
{
DWORD AclRevision;
}
alias _ACL_REVISION_INFORMATION ACL_REVISION_INFORMATION;
//C typedef ACL_REVISION_INFORMATION *PACL_REVISION_INFORMATION;
alias ACL_REVISION_INFORMATION *PACL_REVISION_INFORMATION;
//C typedef struct _ACL_SIZE_INFORMATION {
//C DWORD AceCount;
//C DWORD AclBytesInUse;
//C DWORD AclBytesFree;
//C } ACL_SIZE_INFORMATION;
struct _ACL_SIZE_INFORMATION
{
DWORD AceCount;
DWORD AclBytesInUse;
DWORD AclBytesFree;
}
alias _ACL_SIZE_INFORMATION ACL_SIZE_INFORMATION;
//C typedef ACL_SIZE_INFORMATION *PACL_SIZE_INFORMATION;
alias ACL_SIZE_INFORMATION *PACL_SIZE_INFORMATION;
//C typedef WORD SECURITY_DESCRIPTOR_CONTROL,*PSECURITY_DESCRIPTOR_CONTROL;
alias WORD SECURITY_DESCRIPTOR_CONTROL;
alias WORD *PSECURITY_DESCRIPTOR_CONTROL;
//C typedef struct _SECURITY_DESCRIPTOR_RELATIVE {
//C BYTE Revision;
//C BYTE Sbz1;
//C SECURITY_DESCRIPTOR_CONTROL Control;
//C DWORD Owner;
//C DWORD Group;
//C DWORD Sacl;
//C DWORD Dacl;
//C } SECURITY_DESCRIPTOR_RELATIVE,*PISECURITY_DESCRIPTOR_RELATIVE;
struct _SECURITY_DESCRIPTOR_RELATIVE
{
BYTE Revision;
BYTE Sbz1;
SECURITY_DESCRIPTOR_CONTROL Control;
DWORD Owner;
DWORD Group;
DWORD Sacl;
DWORD Dacl;
}
alias _SECURITY_DESCRIPTOR_RELATIVE SECURITY_DESCRIPTOR_RELATIVE;
alias _SECURITY_DESCRIPTOR_RELATIVE *PISECURITY_DESCRIPTOR_RELATIVE;
//C typedef struct _SECURITY_DESCRIPTOR {
//C BYTE Revision;
//C BYTE Sbz1;
//C SECURITY_DESCRIPTOR_CONTROL Control;
//C PSID Owner;
//C PSID Group;
//C PACL Sacl;
//C PACL Dacl;
//C } SECURITY_DESCRIPTOR,*PISECURITY_DESCRIPTOR;
struct _SECURITY_DESCRIPTOR
{
BYTE Revision;
BYTE Sbz1;
SECURITY_DESCRIPTOR_CONTROL Control;
PSID Owner;
PSID Group;
PACL Sacl;
PACL Dacl;
}
alias _SECURITY_DESCRIPTOR SECURITY_DESCRIPTOR;
alias _SECURITY_DESCRIPTOR *PISECURITY_DESCRIPTOR;
//C typedef struct _OBJECT_TYPE_LIST {
//C WORD Level;
//C WORD Sbz;
//C GUID *ObjectType;
//C } OBJECT_TYPE_LIST,*POBJECT_TYPE_LIST;
struct _OBJECT_TYPE_LIST
{
WORD Level;
WORD Sbz;
GUID *ObjectType;
}
alias _OBJECT_TYPE_LIST OBJECT_TYPE_LIST;
alias _OBJECT_TYPE_LIST *POBJECT_TYPE_LIST;
//C typedef enum _AUDIT_EVENT_TYPE {
//C AuditEventObjectAccess,AuditEventDirectoryServiceAccess
//C } AUDIT_EVENT_TYPE,*PAUDIT_EVENT_TYPE;
enum _AUDIT_EVENT_TYPE
{
AuditEventObjectAccess,
AuditEventDirectoryServiceAccess,
}
alias _AUDIT_EVENT_TYPE AUDIT_EVENT_TYPE;
alias _AUDIT_EVENT_TYPE *PAUDIT_EVENT_TYPE;
//C typedef struct _PRIVILEGE_SET {
//C DWORD PrivilegeCount;
//C DWORD Control;
//C LUID_AND_ATTRIBUTES Privilege[1];
//C } PRIVILEGE_SET,*PPRIVILEGE_SET;
struct _PRIVILEGE_SET
{
DWORD PrivilegeCount;
DWORD Control;
LUID_AND_ATTRIBUTES [1]Privilege;
}
alias _PRIVILEGE_SET PRIVILEGE_SET;
alias _PRIVILEGE_SET *PPRIVILEGE_SET;
//C typedef enum _SECURITY_IMPERSONATION_LEVEL {
//C SecurityAnonymous,SecurityIdentification,SecurityImpersonation,SecurityDelegation
//C } SECURITY_IMPERSONATION_LEVEL,*PSECURITY_IMPERSONATION_LEVEL;
enum _SECURITY_IMPERSONATION_LEVEL
{
SecurityAnonymous,
SecurityIdentification,
SecurityImpersonation,
SecurityDelegation,
}
alias _SECURITY_IMPERSONATION_LEVEL SECURITY_IMPERSONATION_LEVEL;
alias _SECURITY_IMPERSONATION_LEVEL *PSECURITY_IMPERSONATION_LEVEL;
//C typedef enum _TOKEN_TYPE {
//C TokenPrimary = 1,TokenImpersonation
//C } TOKEN_TYPE;
enum _TOKEN_TYPE
{
TokenPrimary = 1,
TokenImpersonation,
}
alias _TOKEN_TYPE TOKEN_TYPE;
//C typedef TOKEN_TYPE *PTOKEN_TYPE;
alias TOKEN_TYPE *PTOKEN_TYPE;
//C typedef enum _TOKEN_ELEVATION_TYPE {
//C TokenElevationTypeDefault = 1,
//C TokenElevationTypeFull,
//C TokenElevationTypeLimited
//C } TOKEN_ELEVATION_TYPE,*PTOKEN_ELEVATION_TYPE;
enum _TOKEN_ELEVATION_TYPE
{
TokenElevationTypeDefault = 1,
TokenElevationTypeFull,
TokenElevationTypeLimited,
}
alias _TOKEN_ELEVATION_TYPE TOKEN_ELEVATION_TYPE;
alias _TOKEN_ELEVATION_TYPE *PTOKEN_ELEVATION_TYPE;
//C typedef enum _TOKEN_INFORMATION_CLASS {
//C TokenUser = 1,
//C TokenGroups,
//C TokenPrivileges,
//C TokenOwner,
//C TokenPrimaryGroup,
//C TokenDefaultDacl,
//C TokenSource,
//C TokenType,
//C TokenImpersonationLevel,
//C TokenStatistics,
//C TokenRestrictedSids,
//C TokenSessionId,
//C TokenGroupsAndPrivileges,
//C TokenSessionReference,
//C TokenSandBoxInert,
//C TokenAuditPolicy,
//C TokenOrigin,
//C TokenElevationType,
//C TokenLinkedToken,
//C TokenElevation,
//C TokenHasRestrictions,
//C TokenAccessInformation,
//C TokenVirtualizationAllowed,
//C TokenVirtualizationEnabled,
//C TokenIntegrityLevel,
//C TokenUIAccess,
//C TokenMandatoryPolicy,
//C TokenLogonSid,
//C MaxTokenInfoClass
//C } TOKEN_INFORMATION_CLASS,*PTOKEN_INFORMATION_CLASS;
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,
MaxTokenInfoClass,
}
alias _TOKEN_INFORMATION_CLASS TOKEN_INFORMATION_CLASS;
alias _TOKEN_INFORMATION_CLASS *PTOKEN_INFORMATION_CLASS;
//C typedef struct _TOKEN_USER {
//C SID_AND_ATTRIBUTES User;
//C } TOKEN_USER,*PTOKEN_USER;
struct _TOKEN_USER
{
SID_AND_ATTRIBUTES User;
}
alias _TOKEN_USER TOKEN_USER;
alias _TOKEN_USER *PTOKEN_USER;
//C typedef struct _TOKEN_GROUPS {
//C DWORD GroupCount;
//C SID_AND_ATTRIBUTES Groups[1];
//C } TOKEN_GROUPS,*PTOKEN_GROUPS;
struct _TOKEN_GROUPS
{
DWORD GroupCount;
SID_AND_ATTRIBUTES [1]Groups;
}
alias _TOKEN_GROUPS TOKEN_GROUPS;
alias _TOKEN_GROUPS *PTOKEN_GROUPS;
//C typedef struct _TOKEN_PRIVILEGES {
//C DWORD PrivilegeCount;
//C LUID_AND_ATTRIBUTES Privileges[1];
//C } TOKEN_PRIVILEGES,*PTOKEN_PRIVILEGES;
struct _TOKEN_PRIVILEGES
{
DWORD PrivilegeCount;
LUID_AND_ATTRIBUTES [1]Privileges;
}
alias _TOKEN_PRIVILEGES TOKEN_PRIVILEGES;
alias _TOKEN_PRIVILEGES *PTOKEN_PRIVILEGES;
//C typedef struct _TOKEN_OWNER {
//C PSID Owner;
//C } TOKEN_OWNER,*PTOKEN_OWNER;
struct _TOKEN_OWNER
{
PSID Owner;
}
alias _TOKEN_OWNER TOKEN_OWNER;
alias _TOKEN_OWNER *PTOKEN_OWNER;
//C typedef struct _TOKEN_PRIMARY_GROUP {
//C PSID PrimaryGroup;
//C } TOKEN_PRIMARY_GROUP,*PTOKEN_PRIMARY_GROUP;
struct _TOKEN_PRIMARY_GROUP
{
PSID PrimaryGroup;
}
alias _TOKEN_PRIMARY_GROUP TOKEN_PRIMARY_GROUP;
alias _TOKEN_PRIMARY_GROUP *PTOKEN_PRIMARY_GROUP;
//C typedef struct _TOKEN_DEFAULT_DACL {
//C PACL DefaultDacl;
//C } TOKEN_DEFAULT_DACL,*PTOKEN_DEFAULT_DACL;
struct _TOKEN_DEFAULT_DACL
{
PACL DefaultDacl;
}
alias _TOKEN_DEFAULT_DACL TOKEN_DEFAULT_DACL;
alias _TOKEN_DEFAULT_DACL *PTOKEN_DEFAULT_DACL;
//C typedef struct _TOKEN_GROUPS_AND_PRIVILEGES {
//C DWORD SidCount;
//C DWORD SidLength;
//C PSID_AND_ATTRIBUTES Sids;
//C DWORD RestrictedSidCount;
//C DWORD RestrictedSidLength;
//C PSID_AND_ATTRIBUTES RestrictedSids;
//C DWORD PrivilegeCount;
//C DWORD PrivilegeLength;
//C PLUID_AND_ATTRIBUTES Privileges;
//C LUID AuthenticationId;
//C } TOKEN_GROUPS_AND_PRIVILEGES,*PTOKEN_GROUPS_AND_PRIVILEGES;
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;
}
alias _TOKEN_GROUPS_AND_PRIVILEGES TOKEN_GROUPS_AND_PRIVILEGES;
alias _TOKEN_GROUPS_AND_PRIVILEGES *PTOKEN_GROUPS_AND_PRIVILEGES;
//C typedef struct _TOKEN_AUDIT_POLICY {
//C UCHAR PerUserPolicy[(()) >> 1) + 1];
//C } TOKEN_AUDIT_POLICY,*PTOKEN_AUDIT_POLICY;
struct _TOKEN_AUDIT_POLICY
{
UCHAR [27]PerUserPolicy;
}
alias _TOKEN_AUDIT_POLICY TOKEN_AUDIT_POLICY;
alias _TOKEN_AUDIT_POLICY *PTOKEN_AUDIT_POLICY;
//C typedef struct _TOKEN_SOURCE {
//C CHAR SourceName[8];
//C LUID SourceIdentifier;
//C } TOKEN_SOURCE,*PTOKEN_SOURCE;
struct _TOKEN_SOURCE
{
CHAR [8]SourceName;
LUID SourceIdentifier;
}
alias _TOKEN_SOURCE TOKEN_SOURCE;
alias _TOKEN_SOURCE *PTOKEN_SOURCE;
//C typedef struct _TOKEN_STATISTICS {
//C LUID TokenId;
//C LUID AuthenticationId;
//C LARGE_INTEGER ExpirationTime;
//C TOKEN_TYPE TokenType;
//C SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
//C DWORD DynamicCharged;
//C DWORD DynamicAvailable;
//C DWORD GroupCount;
//C DWORD PrivilegeCount;
//C LUID ModifiedId;
//C } TOKEN_STATISTICS,*PTOKEN_STATISTICS;
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;
}
alias _TOKEN_STATISTICS TOKEN_STATISTICS;
alias _TOKEN_STATISTICS *PTOKEN_STATISTICS;
//C typedef struct _TOKEN_CONTROL {
//C LUID TokenId;
//C LUID AuthenticationId;
//C LUID ModifiedId;
//C TOKEN_SOURCE TokenSource;
//C } TOKEN_CONTROL,*PTOKEN_CONTROL;
struct _TOKEN_CONTROL
{
LUID TokenId;
LUID AuthenticationId;
LUID ModifiedId;
TOKEN_SOURCE TokenSource;
}
alias _TOKEN_CONTROL TOKEN_CONTROL;
alias _TOKEN_CONTROL *PTOKEN_CONTROL;
//C typedef struct _TOKEN_ORIGIN {
//C LUID OriginatingLogonSession;
//C } TOKEN_ORIGIN,*PTOKEN_ORIGIN;
struct _TOKEN_ORIGIN
{
LUID OriginatingLogonSession;
}
alias _TOKEN_ORIGIN TOKEN_ORIGIN;
alias _TOKEN_ORIGIN *PTOKEN_ORIGIN;
//C typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE,*PSECURITY_CONTEXT_TRACKING_MODE;
alias BOOLEAN SECURITY_CONTEXT_TRACKING_MODE;
alias BOOLEAN *PSECURITY_CONTEXT_TRACKING_MODE;
//C typedef struct _SECURITY_QUALITY_OF_SERVICE {
//C DWORD Length;
//C SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
//C SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
//C BOOLEAN EffectiveOnly;
//C } SECURITY_QUALITY_OF_SERVICE,*PSECURITY_QUALITY_OF_SERVICE;
struct _SECURITY_QUALITY_OF_SERVICE
{
DWORD Length;
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
BOOLEAN EffectiveOnly;
}
alias _SECURITY_QUALITY_OF_SERVICE SECURITY_QUALITY_OF_SERVICE;
alias _SECURITY_QUALITY_OF_SERVICE *PSECURITY_QUALITY_OF_SERVICE;
//C typedef struct _SE_IMPERSONATION_STATE {
//C PACCESS_TOKEN Token;
//C BOOLEAN CopyOnOpen;
//C BOOLEAN EffectiveOnly;
//C SECURITY_IMPERSONATION_LEVEL Level;
//C } SE_IMPERSONATION_STATE,*PSE_IMPERSONATION_STATE;
struct _SE_IMPERSONATION_STATE
{
PACCESS_TOKEN Token;
BOOLEAN CopyOnOpen;
BOOLEAN EffectiveOnly;
SECURITY_IMPERSONATION_LEVEL Level;
}
alias _SE_IMPERSONATION_STATE SE_IMPERSONATION_STATE;
alias _SE_IMPERSONATION_STATE *PSE_IMPERSONATION_STATE;
//C typedef DWORD SECURITY_INFORMATION,*PSECURITY_INFORMATION;
alias DWORD SECURITY_INFORMATION;
alias DWORD *PSECURITY_INFORMATION;
//C typedef struct _JOB_SET_ARRAY {
//C HANDLE JobHandle;
//C DWORD MemberLevel;
//C DWORD Flags;
//C } JOB_SET_ARRAY,*PJOB_SET_ARRAY;
struct _JOB_SET_ARRAY
{
HANDLE JobHandle;
DWORD MemberLevel;
DWORD Flags;
}
alias _JOB_SET_ARRAY JOB_SET_ARRAY;
alias _JOB_SET_ARRAY *PJOB_SET_ARRAY;
//C typedef struct _NT_TIB {
//C struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
//C PVOID StackBase;
//C PVOID StackLimit;
//C PVOID SubSystemTib;
//C union {
//C PVOID FiberData;
//C DWORD Version;
//C };
union _N12
{
PVOID FiberData;
DWORD Version;
}
//C PVOID ArbitraryUserPointer;
//C struct _NT_TIB *Self;
//C } NT_TIB;
struct _NT_TIB
{
_EXCEPTION_REGISTRATION_RECORD *ExceptionList;
PVOID StackBase;
PVOID StackLimit;
PVOID SubSystemTib;
PVOID FiberData;
DWORD Version;
PVOID ArbitraryUserPointer;
_NT_TIB *Self;
}
alias _NT_TIB NT_TIB;
//C typedef NT_TIB *PNT_TIB;
alias NT_TIB *PNT_TIB;
//C typedef struct _NT_TIB32 {
//C DWORD ExceptionList;
//C DWORD StackBase;
//C DWORD StackLimit;
//C DWORD SubSystemTib;
//C union {
//C DWORD FiberData;
//C DWORD Version;
//C };
union _N13
{
DWORD FiberData;
DWORD Version;
}
//C DWORD ArbitraryUserPointer;
//C DWORD Self;
//C } NT_TIB32,*PNT_TIB32;
struct _NT_TIB32
{
DWORD ExceptionList;
DWORD StackBase;
DWORD StackLimit;
DWORD SubSystemTib;
DWORD FiberData;
DWORD Version;
DWORD ArbitraryUserPointer;
DWORD Self;
}
alias _NT_TIB32 NT_TIB32;
alias _NT_TIB32 *PNT_TIB32;
//C typedef struct _NT_TIB64 {
//C DWORD64 ExceptionList;
//C DWORD64 StackBase;
//C DWORD64 StackLimit;
//C DWORD64 SubSystemTib;
//C union {
//C DWORD64 FiberData;
//C DWORD Version;
//C };
union _N14
{
DWORD64 FiberData;
DWORD Version;
}
//C DWORD64 ArbitraryUserPointer;
//C DWORD64 Self;
//C } NT_TIB64,*PNT_TIB64;
struct _NT_TIB64
{
DWORD64 ExceptionList;
DWORD64 StackBase;
DWORD64 StackLimit;
DWORD64 SubSystemTib;
DWORD64 FiberData;
DWORD Version;
DWORD64 ArbitraryUserPointer;
DWORD64 Self;
}
alias _NT_TIB64 NT_TIB64;
alias _NT_TIB64 *PNT_TIB64;
//C typedef struct _QUOTA_LIMITS {
//C SIZE_T PagedPoolLimit;
//C SIZE_T NonPagedPoolLimit;
//C SIZE_T MinimumWorkingSetSize;
//C SIZE_T MaximumWorkingSetSize;
//C SIZE_T PagefileLimit;
//C LARGE_INTEGER TimeLimit;
//C } QUOTA_LIMITS,*PQUOTA_LIMITS;
struct _QUOTA_LIMITS
{
SIZE_T PagedPoolLimit;
SIZE_T NonPagedPoolLimit;
SIZE_T MinimumWorkingSetSize;
SIZE_T MaximumWorkingSetSize;
SIZE_T PagefileLimit;
LARGE_INTEGER TimeLimit;
}
alias _QUOTA_LIMITS QUOTA_LIMITS;
alias _QUOTA_LIMITS *PQUOTA_LIMITS;
//C typedef union _RATE_QUOTA_LIMIT {
//C DWORD RateData;
//C struct {
//C DWORD RatePercent : 7;
//C DWORD Reserved0 : 25;
//C } ;
struct _N15
{
DWORD __bitfield1;
DWORD RatePercent() { return (__bitfield1 >> 0) & 0x7f; }
DWORD Reserved0() { return (__bitfield1 >> 7) & 0x1ffffff; }
}
//C } RATE_QUOTA_LIMIT,*PRATE_QUOTA_LIMIT;
union _RATE_QUOTA_LIMIT
{
DWORD RateData;
DWORD RatePercent() { return 0x7f; }
DWORD Reserved0() { return 0x1ffffff; }
}
alias _RATE_QUOTA_LIMIT RATE_QUOTA_LIMIT;
alias _RATE_QUOTA_LIMIT *PRATE_QUOTA_LIMIT;
//C typedef struct _QUOTA_LIMITS_EX {
//C SIZE_T PagedPoolLimit;
//C SIZE_T NonPagedPoolLimit;
//C SIZE_T MinimumWorkingSetSize;
//C SIZE_T MaximumWorkingSetSize;
//C SIZE_T PagefileLimit;
//C LARGE_INTEGER TimeLimit;
//C SIZE_T WorkingSetLimit;
//C SIZE_T Reserved2;
//C SIZE_T Reserved3;
//C SIZE_T Reserved4;
//C DWORD Flags;
//C RATE_QUOTA_LIMIT CpuRateLimit;
//C } QUOTA_LIMITS_EX,*PQUOTA_LIMITS_EX;
struct _QUOTA_LIMITS_EX
{
SIZE_T PagedPoolLimit;
SIZE_T NonPagedPoolLimit;
SIZE_T MinimumWorkingSetSize;
SIZE_T MaximumWorkingSetSize;
SIZE_T PagefileLimit;
LARGE_INTEGER TimeLimit;
SIZE_T WorkingSetLimit;
SIZE_T Reserved2;
SIZE_T Reserved3;
SIZE_T Reserved4;
DWORD Flags;
RATE_QUOTA_LIMIT CpuRateLimit;
}
alias _QUOTA_LIMITS_EX QUOTA_LIMITS_EX;
alias _QUOTA_LIMITS_EX *PQUOTA_LIMITS_EX;
//C typedef struct _IO_COUNTERS {
//C ULONGLONG ReadOperationCount;
//C ULONGLONG WriteOperationCount;
//C ULONGLONG OtherOperationCount;
//C ULONGLONG ReadTransferCount;
//C ULONGLONG WriteTransferCount;
//C ULONGLONG OtherTransferCount;
//C } IO_COUNTERS;
struct _IO_COUNTERS
{
ULONGLONG ReadOperationCount;
ULONGLONG WriteOperationCount;
ULONGLONG OtherOperationCount;
ULONGLONG ReadTransferCount;
ULONGLONG WriteTransferCount;
ULONGLONG OtherTransferCount;
}
alias _IO_COUNTERS IO_COUNTERS;
//C typedef IO_COUNTERS *PIO_COUNTERS;
alias IO_COUNTERS *PIO_COUNTERS;
//C typedef enum _HARDWARE_COUNTER_TYPE {
//C PMCCounter,
//C MaxHardwareCounterType
//C } HARDWARE_COUNTER_TYPE,*PHARDWARE_COUNTER_TYPE;
enum _HARDWARE_COUNTER_TYPE
{
PMCCounter,
MaxHardwareCounterType,
}
alias _HARDWARE_COUNTER_TYPE HARDWARE_COUNTER_TYPE;
alias _HARDWARE_COUNTER_TYPE *PHARDWARE_COUNTER_TYPE;
//C typedef struct _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION {
//C LARGE_INTEGER TotalUserTime;
//C LARGE_INTEGER TotalKernelTime;
//C LARGE_INTEGER ThisPeriodTotalUserTime;
//C LARGE_INTEGER ThisPeriodTotalKernelTime;
//C DWORD TotalPageFaultCount;
//C DWORD TotalProcesses;
//C DWORD ActiveProcesses;
//C DWORD TotalTerminatedProcesses;
//C } JOBOBJECT_BASIC_ACCOUNTING_INFORMATION,*PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
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;
}
alias _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION JOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
alias _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION *PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
//C typedef struct _JOBOBJECT_BASIC_LIMIT_INFORMATION {
//C LARGE_INTEGER PerProcessUserTimeLimit;
//C LARGE_INTEGER PerJobUserTimeLimit;
//C DWORD LimitFlags;
//C SIZE_T MinimumWorkingSetSize;
//C SIZE_T MaximumWorkingSetSize;
//C DWORD ActiveProcessLimit;
//C ULONG_PTR Affinity;
//C DWORD PriorityClass;
//C DWORD SchedulingClass;
//C } JOBOBJECT_BASIC_LIMIT_INFORMATION,*PJOBOBJECT_BASIC_LIMIT_INFORMATION;
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;
}
alias _JOBOBJECT_BASIC_LIMIT_INFORMATION JOBOBJECT_BASIC_LIMIT_INFORMATION;
alias _JOBOBJECT_BASIC_LIMIT_INFORMATION *PJOBOBJECT_BASIC_LIMIT_INFORMATION;
//C typedef struct _JOBOBJECT_EXTENDED_LIMIT_INFORMATION {
//C JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
//C IO_COUNTERS IoInfo;
//C SIZE_T ProcessMemoryLimit;
//C SIZE_T JobMemoryLimit;
//C SIZE_T PeakProcessMemoryUsed;
//C SIZE_T PeakJobMemoryUsed;
//C } JOBOBJECT_EXTENDED_LIMIT_INFORMATION,*PJOBOBJECT_EXTENDED_LIMIT_INFORMATION;
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;
}
alias _JOBOBJECT_EXTENDED_LIMIT_INFORMATION JOBOBJECT_EXTENDED_LIMIT_INFORMATION;
alias _JOBOBJECT_EXTENDED_LIMIT_INFORMATION *PJOBOBJECT_EXTENDED_LIMIT_INFORMATION;
//C typedef struct _JOBOBJECT_BASIC_PROCESS_ID_LIST {
//C DWORD NumberOfAssignedProcesses;
//C DWORD NumberOfProcessIdsInList;
//C ULONG_PTR ProcessIdList[1];
//C } JOBOBJECT_BASIC_PROCESS_ID_LIST,*PJOBOBJECT_BASIC_PROCESS_ID_LIST;
struct _JOBOBJECT_BASIC_PROCESS_ID_LIST
{
DWORD NumberOfAssignedProcesses;
DWORD NumberOfProcessIdsInList;
ULONG_PTR [1]ProcessIdList;
}
alias _JOBOBJECT_BASIC_PROCESS_ID_LIST JOBOBJECT_BASIC_PROCESS_ID_LIST;
alias _JOBOBJECT_BASIC_PROCESS_ID_LIST *PJOBOBJECT_BASIC_PROCESS_ID_LIST;
//C typedef struct _JOBOBJECT_BASIC_UI_RESTRICTIONS {
//C DWORD UIRestrictionsClass;
//C } JOBOBJECT_BASIC_UI_RESTRICTIONS,*PJOBOBJECT_BASIC_UI_RESTRICTIONS;
struct _JOBOBJECT_BASIC_UI_RESTRICTIONS
{
DWORD UIRestrictionsClass;
}
alias _JOBOBJECT_BASIC_UI_RESTRICTIONS JOBOBJECT_BASIC_UI_RESTRICTIONS;
alias _JOBOBJECT_BASIC_UI_RESTRICTIONS *PJOBOBJECT_BASIC_UI_RESTRICTIONS;
//C typedef struct _JOBOBJECT_SECURITY_LIMIT_INFORMATION {
//C DWORD SecurityLimitFlags;
//C HANDLE JobToken;
//C PTOKEN_GROUPS SidsToDisable;
//C PTOKEN_PRIVILEGES PrivilegesToDelete;
//C PTOKEN_GROUPS RestrictedSids;
//C } JOBOBJECT_SECURITY_LIMIT_INFORMATION,*PJOBOBJECT_SECURITY_LIMIT_INFORMATION;
struct _JOBOBJECT_SECURITY_LIMIT_INFORMATION
{
DWORD SecurityLimitFlags;
HANDLE JobToken;
PTOKEN_GROUPS SidsToDisable;
PTOKEN_PRIVILEGES PrivilegesToDelete;
PTOKEN_GROUPS RestrictedSids;
}
alias _JOBOBJECT_SECURITY_LIMIT_INFORMATION JOBOBJECT_SECURITY_LIMIT_INFORMATION;
alias _JOBOBJECT_SECURITY_LIMIT_INFORMATION *PJOBOBJECT_SECURITY_LIMIT_INFORMATION;
//C typedef struct _JOBOBJECT_END_OF_JOB_TIME_INFORMATION {
//C DWORD EndOfJobTimeAction;
//C } JOBOBJECT_END_OF_JOB_TIME_INFORMATION,*PJOBOBJECT_END_OF_JOB_TIME_INFORMATION;
struct _JOBOBJECT_END_OF_JOB_TIME_INFORMATION
{
DWORD EndOfJobTimeAction;
}
alias _JOBOBJECT_END_OF_JOB_TIME_INFORMATION JOBOBJECT_END_OF_JOB_TIME_INFORMATION;
alias _JOBOBJECT_END_OF_JOB_TIME_INFORMATION *PJOBOBJECT_END_OF_JOB_TIME_INFORMATION;
//C typedef struct _JOBOBJECT_ASSOCIATE_COMPLETION_PORT {
//C PVOID CompletionKey;
//C HANDLE CompletionPort;
//C } JOBOBJECT_ASSOCIATE_COMPLETION_PORT,*PJOBOBJECT_ASSOCIATE_COMPLETION_PORT;
struct _JOBOBJECT_ASSOCIATE_COMPLETION_PORT
{
PVOID CompletionKey;
HANDLE CompletionPort;
}
alias _JOBOBJECT_ASSOCIATE_COMPLETION_PORT JOBOBJECT_ASSOCIATE_COMPLETION_PORT;
alias _JOBOBJECT_ASSOCIATE_COMPLETION_PORT *PJOBOBJECT_ASSOCIATE_COMPLETION_PORT;
//C typedef struct _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION {
//C JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
//C IO_COUNTERS IoInfo;
//C } JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION,*PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
struct _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION
{
JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
IO_COUNTERS IoInfo;
}
alias _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
alias _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION *PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
//C typedef struct _JOBOBJECT_JOBSET_INFORMATION {
//C DWORD MemberLevel;
//C } JOBOBJECT_JOBSET_INFORMATION,*PJOBOBJECT_JOBSET_INFORMATION;
struct _JOBOBJECT_JOBSET_INFORMATION
{
DWORD MemberLevel;
}
alias _JOBOBJECT_JOBSET_INFORMATION JOBOBJECT_JOBSET_INFORMATION;
alias _JOBOBJECT_JOBSET_INFORMATION *PJOBOBJECT_JOBSET_INFORMATION;
//C typedef enum _JOBOBJECTINFOCLASS {
//C JobObjectBasicAccountingInformation = 1,JobObjectBasicLimitInformation,
//C JobObjectBasicProcessIdList,JobObjectBasicUIRestrictions,
//C JobObjectSecurityLimitInformation,JobObjectEndOfJobTimeInformation,
//C JobObjectAssociateCompletionPortInformation,JobObjectBasicAndIoAccountingInformation,
//C JobObjectExtendedLimitInformation,JobObjectJobSetInformation,
//C JobObjectGroupInformation,
//C MaxJobObjectInfoClass
//C } JOBOBJECTINFOCLASS;
enum _JOBOBJECTINFOCLASS
{
JobObjectBasicAccountingInformation = 1,
JobObjectBasicLimitInformation,
JobObjectBasicProcessIdList,
JobObjectBasicUIRestrictions,
JobObjectSecurityLimitInformation,
JobObjectEndOfJobTimeInformation,
JobObjectAssociateCompletionPortInformation,
JobObjectBasicAndIoAccountingInformation,
JobObjectExtendedLimitInformation,
JobObjectJobSetInformation,
JobObjectGroupInformation,
MaxJobObjectInfoClass,
}
alias _JOBOBJECTINFOCLASS JOBOBJECTINFOCLASS;
//C typedef enum _LOGICAL_PROCESSOR_RELATIONSHIP {
//C RelationProcessorCore,RelationNumaNode,RelationCache,
//C RelationProcessorPackage,RelationGroup,RelationAll=0xffff
//C } LOGICAL_PROCESSOR_RELATIONSHIP;
enum _LOGICAL_PROCESSOR_RELATIONSHIP
{
RelationProcessorCore,
RelationNumaNode,
RelationCache,
RelationProcessorPackage,
RelationGroup,
RelationAll = 65535,
}
alias _LOGICAL_PROCESSOR_RELATIONSHIP LOGICAL_PROCESSOR_RELATIONSHIP;
//C typedef enum _PROCESSOR_CACHE_TYPE {
//C CacheUnified,CacheInstruction,CacheData,CacheTrace
//C } PROCESSOR_CACHE_TYPE;
enum _PROCESSOR_CACHE_TYPE
{
CacheUnified,
CacheInstruction,
CacheData,
CacheTrace,
}
alias _PROCESSOR_CACHE_TYPE PROCESSOR_CACHE_TYPE;
//C typedef struct _CACHE_DESCRIPTOR {
//C BYTE Level;
//C BYTE Associativity;
//C WORD LineSize;
//C DWORD Size;
//C PROCESSOR_CACHE_TYPE Type;
//C } CACHE_DESCRIPTOR,*PCACHE_DESCRIPTOR;
struct _CACHE_DESCRIPTOR
{
BYTE Level;
BYTE Associativity;
WORD LineSize;
DWORD Size;
PROCESSOR_CACHE_TYPE Type;
}
alias _CACHE_DESCRIPTOR CACHE_DESCRIPTOR;
alias _CACHE_DESCRIPTOR *PCACHE_DESCRIPTOR;
//C typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION {
//C ULONG_PTR ProcessorMask;
//C LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
//C union {
//C struct {
//C BYTE Flags;
//C } ProcessorCore;
struct _N17
{
BYTE Flags;
}
//C struct {
//C DWORD NodeNumber;
//C } NumaNode;
struct _N18
{
DWORD NodeNumber;
}
//C CACHE_DESCRIPTOR Cache;
//C ULONGLONG Reserved[2];
//C };
union _N16
{
_N17 ProcessorCore;
_N18 NumaNode;
CACHE_DESCRIPTOR Cache;
ULONGLONG [2]Reserved;
}
//C } SYSTEM_LOGICAL_PROCESSOR_INFORMATION,*PSYSTEM_LOGICAL_PROCESSOR_INFORMATION;
struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION
{
ULONG_PTR ProcessorMask;
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
_N17 ProcessorCore;
_N18 NumaNode;
CACHE_DESCRIPTOR Cache;
ULONGLONG [2]Reserved;
}
alias _SYSTEM_LOGICAL_PROCESSOR_INFORMATION SYSTEM_LOGICAL_PROCESSOR_INFORMATION;
alias _SYSTEM_LOGICAL_PROCESSOR_INFORMATION *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION;
//C typedef struct _MEMORY_BASIC_INFORMATION {
//C PVOID BaseAddress;
//C PVOID AllocationBase;
//C DWORD AllocationProtect;
//C SIZE_T RegionSize;
//C DWORD State;
//C DWORD Protect;
//C DWORD Type;
//C } MEMORY_BASIC_INFORMATION,*PMEMORY_BASIC_INFORMATION;
struct _MEMORY_BASIC_INFORMATION
{
PVOID BaseAddress;
PVOID AllocationBase;
DWORD AllocationProtect;
SIZE_T RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
}
alias _MEMORY_BASIC_INFORMATION MEMORY_BASIC_INFORMATION;
alias _MEMORY_BASIC_INFORMATION *PMEMORY_BASIC_INFORMATION;
//C typedef struct _MEMORY_BASIC_INFORMATION32 {
//C DWORD BaseAddress;
//C DWORD AllocationBase;
//C DWORD AllocationProtect;
//C DWORD RegionSize;
//C DWORD State;
//C DWORD Protect;
//C DWORD Type;
//C } MEMORY_BASIC_INFORMATION32,*PMEMORY_BASIC_INFORMATION32;
struct _MEMORY_BASIC_INFORMATION32
{
DWORD BaseAddress;
DWORD AllocationBase;
DWORD AllocationProtect;
DWORD RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
}
alias _MEMORY_BASIC_INFORMATION32 MEMORY_BASIC_INFORMATION32;
alias _MEMORY_BASIC_INFORMATION32 *PMEMORY_BASIC_INFORMATION32;
//C typedef struct _MEMORY_BASIC_INFORMATION64 {
//C ULONGLONG BaseAddress;
//C ULONGLONG AllocationBase;
//C DWORD AllocationProtect;
//C DWORD __alignment1;
//C ULONGLONG RegionSize;
//C DWORD State;
//C DWORD Protect;
//C DWORD Type;
//C DWORD __alignment2;
//C } MEMORY_BASIC_INFORMATION64,*PMEMORY_BASIC_INFORMATION64;
struct _MEMORY_BASIC_INFORMATION64
{
ULONGLONG BaseAddress;
ULONGLONG AllocationBase;
DWORD AllocationProtect;
DWORD __alignment1;
ULONGLONG RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
DWORD __alignment2;
}
alias _MEMORY_BASIC_INFORMATION64 MEMORY_BASIC_INFORMATION64;
alias _MEMORY_BASIC_INFORMATION64 *PMEMORY_BASIC_INFORMATION64;
//C typedef struct _FILE_NOTIFY_INFORMATION {
//C DWORD NextEntryOffset;
//C DWORD Action;
//C DWORD FileNameLength;
//C WCHAR FileName[1];
//C } FILE_NOTIFY_INFORMATION,*PFILE_NOTIFY_INFORMATION;
struct _FILE_NOTIFY_INFORMATION
{
DWORD NextEntryOffset;
DWORD Action;
DWORD FileNameLength;
WCHAR [1]FileName;
}
alias _FILE_NOTIFY_INFORMATION FILE_NOTIFY_INFORMATION;
alias _FILE_NOTIFY_INFORMATION *PFILE_NOTIFY_INFORMATION;
//C typedef union _FILE_SEGMENT_ELEMENT {
//C PVOID64 Buffer;
//C ULONGLONG Alignment;
//C }FILE_SEGMENT_ELEMENT,*PFILE_SEGMENT_ELEMENT;
union _FILE_SEGMENT_ELEMENT
{
PVOID64 Buffer;
ULONGLONG Alignment;
}
alias _FILE_SEGMENT_ELEMENT FILE_SEGMENT_ELEMENT;
alias _FILE_SEGMENT_ELEMENT *PFILE_SEGMENT_ELEMENT;
//C typedef struct _REPARSE_GUID_DATA_BUFFER {
//C DWORD ReparseTag;
//C WORD ReparseDataLength;
//C WORD Reserved;
//C GUID ReparseGuid;
//C struct {
//C BYTE DataBuffer[1];
//C } GenericReparseBuffer;
struct _N19
{
BYTE [1]DataBuffer;
}
//C } REPARSE_GUID_DATA_BUFFER,*PREPARSE_GUID_DATA_BUFFER;
struct _REPARSE_GUID_DATA_BUFFER
{
DWORD ReparseTag;
WORD ReparseDataLength;
WORD Reserved;
GUID ReparseGuid;
_N19 GenericReparseBuffer;
}
alias _REPARSE_GUID_DATA_BUFFER REPARSE_GUID_DATA_BUFFER;
alias _REPARSE_GUID_DATA_BUFFER *PREPARSE_GUID_DATA_BUFFER;
//C typedef enum _SYSTEM_POWER_STATE {
//C PowerSystemUnspecified = 0,PowerSystemWorking = 1,PowerSystemSleeping1 = 2,PowerSystemSleeping2 = 3,PowerSystemSleeping3 = 4,PowerSystemHibernate = 5,PowerSystemShutdown = 6,PowerSystemMaximum = 7
//C } SYSTEM_POWER_STATE,*PSYSTEM_POWER_STATE;
enum _SYSTEM_POWER_STATE
{
PowerSystemUnspecified,
PowerSystemWorking,
PowerSystemSleeping1,
PowerSystemSleeping2,
PowerSystemSleeping3,
PowerSystemHibernate,
PowerSystemShutdown,
PowerSystemMaximum,
}
alias _SYSTEM_POWER_STATE SYSTEM_POWER_STATE;
alias _SYSTEM_POWER_STATE *PSYSTEM_POWER_STATE;
//C typedef enum {
//C PowerActionNone = 0,PowerActionReserved,PowerActionSleep,PowerActionHibernate,
//C PowerActionShutdown,PowerActionShutdownReset,PowerActionShutdownOff,
//C PowerActionWarmEject
//C } POWER_ACTION,*PPOWER_ACTION;
enum
{
PowerActionNone,
PowerActionReserved,
PowerActionSleep,
PowerActionHibernate,
PowerActionShutdown,
PowerActionShutdownReset,
PowerActionShutdownOff,
PowerActionWarmEject,
}
alias int POWER_ACTION;
alias int *PPOWER_ACTION;
//C typedef enum _DEVICE_POWER_STATE {
//C PowerDeviceUnspecified = 0,PowerDeviceD0,PowerDeviceD1,PowerDeviceD2,PowerDeviceD3,
//C PowerDeviceMaximum
//C } DEVICE_POWER_STATE,*PDEVICE_POWER_STATE;
enum _DEVICE_POWER_STATE
{
PowerDeviceUnspecified,
PowerDeviceD0,
PowerDeviceD1,
PowerDeviceD2,
PowerDeviceD3,
PowerDeviceMaximum,
}
alias _DEVICE_POWER_STATE DEVICE_POWER_STATE;
alias _DEVICE_POWER_STATE *PDEVICE_POWER_STATE;
//C typedef enum _MONITOR_DISPLAY_STATE {
//C PowerMonitorOff = 0,PowerMonitorOn,PowerMonitorDim
//C } MONITOR_DISPLAY_STATE,*PMONITOR_DISPLAY_STATE;
enum _MONITOR_DISPLAY_STATE
{
PowerMonitorOff,
PowerMonitorOn,
PowerMonitorDim,
}
alias _MONITOR_DISPLAY_STATE MONITOR_DISPLAY_STATE;
alias _MONITOR_DISPLAY_STATE *PMONITOR_DISPLAY_STATE;
//C typedef DWORD EXECUTION_STATE;
alias DWORD EXECUTION_STATE;
//C typedef enum {
//C LT_DONT_CARE,LT_LOWEST_LATENCY
//C } LATENCY_TIME;
enum
{
LT_DONT_CARE,
LT_LOWEST_LATENCY,
}
alias int LATENCY_TIME;
//C typedef struct CM_Power_Data_s {
//C DWORD PD_Size;
//C DEVICE_POWER_STATE PD_MostRecentPowerState;
//C DWORD PD_Capabilities;
//C DWORD PD_D1Latency;
//C DWORD PD_D2Latency;
//C DWORD PD_D3Latency;
//C DEVICE_POWER_STATE PD_PowerStateMapping[7];
//C SYSTEM_POWER_STATE PD_DeepestSystemWake;
//C } CM_POWER_DATA,*PCM_POWER_DATA;
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 [7]PD_PowerStateMapping;
SYSTEM_POWER_STATE PD_DeepestSystemWake;
}
alias CM_Power_Data_s CM_POWER_DATA;
alias CM_Power_Data_s *PCM_POWER_DATA;
//C typedef enum {
//C SystemPowerPolicyAc,SystemPowerPolicyDc,VerifySystemPolicyAc,VerifySystemPolicyDc,SystemPowerCapabilities,SystemBatteryState,SystemPowerStateHandler,ProcessorStateHandler,SystemPowerPolicyCurrent,AdministratorPowerPolicy,SystemReserveHiberFile,ProcessorInformation,SystemPowerInformation,ProcessorStateHandler2,LastWakeTime,LastSleepTime,SystemExecutionState,SystemPowerStateNotifyHandler,ProcessorPowerPolicyAc,ProcessorPowerPolicyDc,VerifyProcessorPowerPolicyAc,VerifyProcessorPowerPolicyDc,ProcessorPowerPolicyCurrent,SystemPowerStateLogging,SystemPowerLoggingEntry
//C } POWER_INFORMATION_LEVEL;
enum
{
SystemPowerPolicyAc,
SystemPowerPolicyDc,
VerifySystemPolicyAc,
VerifySystemPolicyDc,
SystemPowerCapabilities,
SystemBatteryState,
SystemPowerStateHandler,
ProcessorStateHandler,
SystemPowerPolicyCurrent,
AdministratorPowerPolicy,
SystemReserveHiberFile,
ProcessorInformation,
SystemPowerInformation,
ProcessorStateHandler2,
LastWakeTime,
LastSleepTime,
SystemExecutionState,
SystemPowerStateNotifyHandler,
ProcessorPowerPolicyAc,
ProcessorPowerPolicyDc,
VerifyProcessorPowerPolicyAc,
VerifyProcessorPowerPolicyDc,
ProcessorPowerPolicyCurrent,
SystemPowerStateLogging,
SystemPowerLoggingEntry,
}
alias int POWER_INFORMATION_LEVEL;
//C typedef struct {
//C DWORD Granularity;
//C DWORD Capacity;
//C } BATTERY_REPORTING_SCALE,*PBATTERY_REPORTING_SCALE;
struct _N23
{
DWORD Granularity;
DWORD Capacity;
}
alias _N23 BATTERY_REPORTING_SCALE;
alias _N23 *PBATTERY_REPORTING_SCALE;
//C typedef struct {
//C POWER_ACTION Action;
//C DWORD Flags;
//C DWORD EventCode;
//C } POWER_ACTION_POLICY,*PPOWER_ACTION_POLICY;
struct _N24
{
POWER_ACTION Action;
DWORD Flags;
DWORD EventCode;
}
alias _N24 POWER_ACTION_POLICY;
alias _N24 *PPOWER_ACTION_POLICY;
//C typedef struct {
//C BOOLEAN Enable;
//C BYTE Spare[3];
//C DWORD BatteryLevel;
//C POWER_ACTION_POLICY PowerPolicy;
//C SYSTEM_POWER_STATE MinSystemState;
//C } SYSTEM_POWER_LEVEL,*PSYSTEM_POWER_LEVEL;
struct _N25
{
BOOLEAN Enable;
BYTE [3]Spare;
DWORD BatteryLevel;
POWER_ACTION_POLICY PowerPolicy;
SYSTEM_POWER_STATE MinSystemState;
}
alias _N25 SYSTEM_POWER_LEVEL;
alias _N25 *PSYSTEM_POWER_LEVEL;
//C typedef struct _SYSTEM_POWER_POLICY {
//C DWORD Revision;
//C POWER_ACTION_POLICY PowerButton;
//C POWER_ACTION_POLICY SleepButton;
//C POWER_ACTION_POLICY LidClose;
//C SYSTEM_POWER_STATE LidOpenWake;
//C DWORD Reserved;
//C POWER_ACTION_POLICY Idle;
//C DWORD IdleTimeout;
//C BYTE IdleSensitivity;
//C BYTE DynamicThrottle;
//C BYTE Spare2[2];
//C SYSTEM_POWER_STATE MinSleep;
//C SYSTEM_POWER_STATE MaxSleep;
//C SYSTEM_POWER_STATE ReducedLatencySleep;
//C DWORD WinLogonFlags;
//C DWORD Spare3;
//C DWORD DozeS4Timeout;
//C DWORD BroadcastCapacityResolution;
//C SYSTEM_POWER_LEVEL DischargePolicy[4];
//C DWORD VideoTimeout;
//C BOOLEAN VideoDimDisplay;
//C DWORD VideoReserved[3];
//C DWORD SpindownTimeout;
//C BOOLEAN OptimizeForPower;
//C BYTE FanThrottleTolerance;
//C BYTE ForcedThrottle;
//C BYTE MinThrottle;
//C POWER_ACTION_POLICY OverThrottled;
//C } SYSTEM_POWER_POLICY,*PSYSTEM_POWER_POLICY;
struct _SYSTEM_POWER_POLICY
{
DWORD Revision;
POWER_ACTION_POLICY PowerButton;
POWER_ACTION_POLICY SleepButton;
POWER_ACTION_POLICY LidClose;
SYSTEM_POWER_STATE LidOpenWake;
DWORD Reserved;
POWER_ACTION_POLICY Idle;
DWORD IdleTimeout;
BYTE IdleSensitivity;
BYTE DynamicThrottle;
BYTE [2]Spare2;
SYSTEM_POWER_STATE MinSleep;
SYSTEM_POWER_STATE MaxSleep;
SYSTEM_POWER_STATE ReducedLatencySleep;
DWORD WinLogonFlags;
DWORD Spare3;
DWORD DozeS4Timeout;
DWORD BroadcastCapacityResolution;
SYSTEM_POWER_LEVEL [4]DischargePolicy;
DWORD VideoTimeout;
BOOLEAN VideoDimDisplay;
DWORD [3]VideoReserved;
DWORD SpindownTimeout;
BOOLEAN OptimizeForPower;
BYTE FanThrottleTolerance;
BYTE ForcedThrottle;
BYTE MinThrottle;
POWER_ACTION_POLICY OverThrottled;
}
alias _SYSTEM_POWER_POLICY SYSTEM_POWER_POLICY;
alias _SYSTEM_POWER_POLICY *PSYSTEM_POWER_POLICY;
//C typedef struct _PROCESSOR_POWER_POLICY_INFO {
//C DWORD TimeCheck;
//C DWORD DemoteLimit;
//C DWORD PromoteLimit;
//C BYTE DemotePercent;
//C BYTE PromotePercent;
//C BYTE Spare[2];
//C DWORD AllowDemotion:1;
//C DWORD AllowPromotion:1;
//C DWORD Reserved:30;
//C } PROCESSOR_POWER_POLICY_INFO,*PPROCESSOR_POWER_POLICY_INFO;
struct _PROCESSOR_POWER_POLICY_INFO
{
DWORD TimeCheck;
DWORD DemoteLimit;
DWORD PromoteLimit;
BYTE DemotePercent;
BYTE PromotePercent;
BYTE [2]Spare;
DWORD __bitfield1;
DWORD AllowDemotion() { return (__bitfield1 >> 0) & 0x1; }
DWORD AllowPromotion() { return (__bitfield1 >> 1) & 0x1; }
DWORD Reserved() { return (__bitfield1 >> 2) & 0x3fffffff; }
}
alias _PROCESSOR_POWER_POLICY_INFO PROCESSOR_POWER_POLICY_INFO;
alias _PROCESSOR_POWER_POLICY_INFO *PPROCESSOR_POWER_POLICY_INFO;
//C typedef struct _PROCESSOR_POWER_POLICY {
//C DWORD Revision;
//C BYTE DynamicThrottle;
//C BYTE Spare[3];
//C DWORD DisableCStates:1;
//C DWORD Reserved:31;
//C DWORD PolicyCount;
//C PROCESSOR_POWER_POLICY_INFO Policy[3];
//C } PROCESSOR_POWER_POLICY,*PPROCESSOR_POWER_POLICY;
struct _PROCESSOR_POWER_POLICY
{
DWORD Revision;
BYTE DynamicThrottle;
BYTE [3]Spare;
DWORD __bitfield1;
DWORD DisableCStates() { return (__bitfield1 >> 0) & 0x1; }
DWORD Reserved() { return (__bitfield1 >> 1) & 0x7fffffff; }
DWORD PolicyCount;
PROCESSOR_POWER_POLICY_INFO [3]Policy;
}
alias _PROCESSOR_POWER_POLICY PROCESSOR_POWER_POLICY;
alias _PROCESSOR_POWER_POLICY *PPROCESSOR_POWER_POLICY;
//C typedef struct _ADMINISTRATOR_POWER_POLICY {
//C SYSTEM_POWER_STATE MinSleep;
//C SYSTEM_POWER_STATE MaxSleep;
//C DWORD MinVideoTimeout;
//C DWORD MaxVideoTimeout;
//C DWORD MinSpindownTimeout;
//C DWORD MaxSpindownTimeout;
//C } ADMINISTRATOR_POWER_POLICY,*PADMINISTRATOR_POWER_POLICY;
struct _ADMINISTRATOR_POWER_POLICY
{
SYSTEM_POWER_STATE MinSleep;
SYSTEM_POWER_STATE MaxSleep;
DWORD MinVideoTimeout;
DWORD MaxVideoTimeout;
DWORD MinSpindownTimeout;
DWORD MaxSpindownTimeout;
}
alias _ADMINISTRATOR_POWER_POLICY ADMINISTRATOR_POWER_POLICY;
alias _ADMINISTRATOR_POWER_POLICY *PADMINISTRATOR_POWER_POLICY;
//C typedef struct {
//C BOOLEAN PowerButtonPresent;
//C BOOLEAN SleepButtonPresent;
//C BOOLEAN LidPresent;
//C BOOLEAN SystemS1;
//C BOOLEAN SystemS2;
//C BOOLEAN SystemS3;
//C BOOLEAN SystemS4;
//C BOOLEAN SystemS5;
//C BOOLEAN HiberFilePresent;
//C BOOLEAN FullWake;
//C BOOLEAN VideoDimPresent;
//C BOOLEAN ApmPresent;
//C BOOLEAN UpsPresent;
//C BOOLEAN ThermalControl;
//C BOOLEAN ProcessorThrottle;
//C BYTE ProcessorMinThrottle;
//C BYTE ProcessorMaxThrottle;
//C BOOLEAN FastSystemS4;
//C BYTE spare2[3];
//C BOOLEAN DiskSpinDown;
//C BYTE spare3[8];
//C BOOLEAN SystemBatteriesPresent;
//C BOOLEAN BatteriesAreShortTerm;
//C BATTERY_REPORTING_SCALE BatteryScale[3];
//C SYSTEM_POWER_STATE AcOnLineWake;
//C SYSTEM_POWER_STATE SoftLidWake;
//C SYSTEM_POWER_STATE RtcWake;
//C SYSTEM_POWER_STATE MinDeviceWakeState;
//C SYSTEM_POWER_STATE DefaultLowLatencyWake;
//C } SYSTEM_POWER_CAPABILITIES,*PSYSTEM_POWER_CAPABILITIES;
struct _N26
{
BOOLEAN PowerButtonPresent;
BOOLEAN SleepButtonPresent;
BOOLEAN LidPresent;
BOOLEAN SystemS1;
BOOLEAN SystemS2;
BOOLEAN SystemS3;
BOOLEAN SystemS4;
BOOLEAN SystemS5;
BOOLEAN HiberFilePresent;
BOOLEAN FullWake;
BOOLEAN VideoDimPresent;
BOOLEAN ApmPresent;
BOOLEAN UpsPresent;
BOOLEAN ThermalControl;
BOOLEAN ProcessorThrottle;
BYTE ProcessorMinThrottle;
BYTE ProcessorMaxThrottle;
BOOLEAN FastSystemS4;
BYTE [3]spare2;
BOOLEAN DiskSpinDown;
BYTE [8]spare3;
BOOLEAN SystemBatteriesPresent;
BOOLEAN BatteriesAreShortTerm;
BATTERY_REPORTING_SCALE [3]BatteryScale;
SYSTEM_POWER_STATE AcOnLineWake;
SYSTEM_POWER_STATE SoftLidWake;
SYSTEM_POWER_STATE RtcWake;
SYSTEM_POWER_STATE MinDeviceWakeState;
SYSTEM_POWER_STATE DefaultLowLatencyWake;
}
alias _N26 SYSTEM_POWER_CAPABILITIES;
alias _N26 *PSYSTEM_POWER_CAPABILITIES;
//C typedef struct {
//C BOOLEAN AcOnLine;
//C BOOLEAN BatteryPresent;
//C BOOLEAN Charging;
//C BOOLEAN Discharging;
//C BOOLEAN Spare1[4];
//C DWORD MaxCapacity;
//C DWORD RemainingCapacity;
//C DWORD Rate;
//C DWORD EstimatedTime;
//C DWORD DefaultAlert1;
//C DWORD DefaultAlert2;
//C } SYSTEM_BATTERY_STATE,*PSYSTEM_BATTERY_STATE;
struct _N27
{
BOOLEAN AcOnLine;
BOOLEAN BatteryPresent;
BOOLEAN Charging;
BOOLEAN Discharging;
BOOLEAN [4]Spare1;
DWORD MaxCapacity;
DWORD RemainingCapacity;
DWORD Rate;
DWORD EstimatedTime;
DWORD DefaultAlert1;
DWORD DefaultAlert2;
}
alias _N27 SYSTEM_BATTERY_STATE;
alias _N27 *PSYSTEM_BATTERY_STATE;
//C typedef struct _IMAGE_DOS_HEADER {
//C WORD e_magic;
//C WORD e_cblp;
//C WORD e_cp;
//C WORD e_crlc;
//C WORD e_cparhdr;
//C WORD e_minalloc;
//C WORD e_maxalloc;
//C WORD e_ss;
//C WORD e_sp;
//C WORD e_csum;
//C WORD e_ip;
//C WORD e_cs;
//C WORD e_lfarlc;
//C WORD e_ovno;
//C WORD e_res[4];
//C WORD e_oemid;
//C WORD e_oeminfo;
//C WORD e_res2[10];
//C LONG e_lfanew;
//C } IMAGE_DOS_HEADER,*PIMAGE_DOS_HEADER;
struct _IMAGE_DOS_HEADER
{
WORD e_magic;
WORD e_cblp;
WORD e_cp;
WORD e_crlc;
WORD e_cparhdr;
WORD e_minalloc;
WORD e_maxalloc;
WORD e_ss;
WORD e_sp;
WORD e_csum;
WORD e_ip;
WORD e_cs;
WORD e_lfarlc;
WORD e_ovno;
WORD [4]e_res;
WORD e_oemid;
WORD e_oeminfo;
WORD [10]e_res2;
LONG e_lfanew;
}
alias _IMAGE_DOS_HEADER IMAGE_DOS_HEADER;
alias _IMAGE_DOS_HEADER *PIMAGE_DOS_HEADER;
//C typedef struct _IMAGE_OS2_HEADER {
//C WORD ne_magic;
//C CHAR ne_ver;
//C CHAR ne_rev;
//C WORD ne_enttab;
//C WORD ne_cbenttab;
//C LONG ne_crc;
//C WORD ne_flags;
//C WORD ne_autodata;
//C WORD ne_heap;
//C WORD ne_stack;
//C LONG ne_csip;
//C LONG ne_sssp;
//C WORD ne_cseg;
//C WORD ne_cmod;
//C WORD ne_cbnrestab;
//C WORD ne_segtab;
//C WORD ne_rsrctab;
//C WORD ne_restab;
//C WORD ne_modtab;
//C WORD ne_imptab;
//C LONG ne_nrestab;
//C WORD ne_cmovent;
//C WORD ne_align;
//C WORD ne_cres;
//C BYTE ne_exetyp;
//C BYTE ne_flagsothers;
//C WORD ne_pretthunks;
//C WORD ne_psegrefbytes;
//C WORD ne_swaparea;
//C WORD ne_expver;
//C } IMAGE_OS2_HEADER,*PIMAGE_OS2_HEADER;
struct _IMAGE_OS2_HEADER
{
WORD ne_magic;
CHAR ne_ver;
CHAR ne_rev;
WORD ne_enttab;
WORD ne_cbenttab;
LONG ne_crc;
WORD ne_flags;
WORD ne_autodata;
WORD ne_heap;
WORD ne_stack;
LONG ne_csip;
LONG ne_sssp;
WORD ne_cseg;
WORD ne_cmod;
WORD ne_cbnrestab;
WORD ne_segtab;
WORD ne_rsrctab;
WORD ne_restab;
WORD ne_modtab;
WORD ne_imptab;
LONG ne_nrestab;
WORD ne_cmovent;
WORD ne_align;
WORD ne_cres;
BYTE ne_exetyp;
BYTE ne_flagsothers;
WORD ne_pretthunks;
WORD ne_psegrefbytes;
WORD ne_swaparea;
WORD ne_expver;
}
alias _IMAGE_OS2_HEADER IMAGE_OS2_HEADER;
alias _IMAGE_OS2_HEADER *PIMAGE_OS2_HEADER;
//C typedef struct _IMAGE_VXD_HEADER {
//C WORD e32_magic;
//C BYTE e32_border;
//C BYTE e32_worder;
//C DWORD e32_level;
//C WORD e32_cpu;
//C WORD e32_os;
//C DWORD e32_ver;
//C DWORD e32_mflags;
//C DWORD e32_mpages;
//C DWORD e32_startobj;
//C DWORD e32_eip;
//C DWORD e32_stackobj;
//C DWORD e32_esp;
//C DWORD e32_pagesize;
//C DWORD e32_lastpagesize;
//C DWORD e32_fixupsize;
//C DWORD e32_fixupsum;
//C DWORD e32_ldrsize;
//C DWORD e32_ldrsum;
//C DWORD e32_objtab;
//C DWORD e32_objcnt;
//C DWORD e32_objmap;
//C DWORD e32_itermap;
//C DWORD e32_rsrctab;
//C DWORD e32_rsrccnt;
//C DWORD e32_restab;
//C DWORD e32_enttab;
//C DWORD e32_dirtab;
//C DWORD e32_dircnt;
//C DWORD e32_fpagetab;
//C DWORD e32_frectab;
//C DWORD e32_impmod;
//C DWORD e32_impmodcnt;
//C DWORD e32_impproc;
//C DWORD e32_pagesum;
//C DWORD e32_datapage;
//C DWORD e32_preload;
//C DWORD e32_nrestab;
//C DWORD e32_cbnrestab;
//C DWORD e32_nressum;
//C DWORD e32_autodata;
//C DWORD e32_debuginfo;
//C DWORD e32_debuglen;
//C DWORD e32_instpreload;
//C DWORD e32_instdemand;
//C DWORD e32_heapsize;
//C BYTE e32_res3[12];
//C DWORD e32_winresoff;
//C DWORD e32_winreslen;
//C WORD e32_devid;
//C WORD e32_ddkver;
//C } IMAGE_VXD_HEADER,*PIMAGE_VXD_HEADER;
struct _IMAGE_VXD_HEADER
{
WORD e32_magic;
BYTE e32_border;
BYTE e32_worder;
DWORD e32_level;
WORD e32_cpu;
WORD e32_os;
DWORD e32_ver;
DWORD e32_mflags;
DWORD e32_mpages;
DWORD e32_startobj;
DWORD e32_eip;
DWORD e32_stackobj;
DWORD e32_esp;
DWORD e32_pagesize;
DWORD e32_lastpagesize;
DWORD e32_fixupsize;
DWORD e32_fixupsum;
DWORD e32_ldrsize;
DWORD e32_ldrsum;
DWORD e32_objtab;
DWORD e32_objcnt;
DWORD e32_objmap;
DWORD e32_itermap;
DWORD e32_rsrctab;
DWORD e32_rsrccnt;
DWORD e32_restab;
DWORD e32_enttab;
DWORD e32_dirtab;
DWORD e32_dircnt;
DWORD e32_fpagetab;
DWORD e32_frectab;
DWORD e32_impmod;
DWORD e32_impmodcnt;
DWORD e32_impproc;
DWORD e32_pagesum;
DWORD e32_datapage;
DWORD e32_preload;
DWORD e32_nrestab;
DWORD e32_cbnrestab;
DWORD e32_nressum;
DWORD e32_autodata;
DWORD e32_debuginfo;
DWORD e32_debuglen;
DWORD e32_instpreload;
DWORD e32_instdemand;
DWORD e32_heapsize;
BYTE [12]e32_res3;
DWORD e32_winresoff;
DWORD e32_winreslen;
WORD e32_devid;
WORD e32_ddkver;
}
alias _IMAGE_VXD_HEADER IMAGE_VXD_HEADER;
alias _IMAGE_VXD_HEADER *PIMAGE_VXD_HEADER;
//C typedef struct _IMAGE_FILE_HEADER {
//C WORD Machine;
//C WORD NumberOfSections;
//C DWORD TimeDateStamp;
//C DWORD PointerToSymbolTable;
//C DWORD NumberOfSymbols;
//C WORD SizeOfOptionalHeader;
//C WORD Characteristics;
//C } IMAGE_FILE_HEADER,*PIMAGE_FILE_HEADER;
struct _IMAGE_FILE_HEADER
{
WORD Machine;
WORD NumberOfSections;
DWORD TimeDateStamp;
DWORD PointerToSymbolTable;
DWORD NumberOfSymbols;
WORD SizeOfOptionalHeader;
WORD Characteristics;
}
alias _IMAGE_FILE_HEADER IMAGE_FILE_HEADER;
alias _IMAGE_FILE_HEADER *PIMAGE_FILE_HEADER;
//C typedef struct _IMAGE_DATA_DIRECTORY {
//C DWORD VirtualAddress;
//C DWORD Size;
//C } IMAGE_DATA_DIRECTORY,*PIMAGE_DATA_DIRECTORY;
struct _IMAGE_DATA_DIRECTORY
{
DWORD VirtualAddress;
DWORD Size;
}
alias _IMAGE_DATA_DIRECTORY IMAGE_DATA_DIRECTORY;
alias _IMAGE_DATA_DIRECTORY *PIMAGE_DATA_DIRECTORY;
//C typedef struct _IMAGE_OPTIONAL_HEADER {
//C WORD Magic;
//C BYTE MajorLinkerVersion;
//C BYTE MinorLinkerVersion;
//C DWORD SizeOfCode;
//C DWORD SizeOfInitializedData;
//C DWORD SizeOfUninitializedData;
//C DWORD AddressOfEntryPoint;
//C DWORD BaseOfCode;
//C DWORD BaseOfData;
//C DWORD ImageBase;
//C DWORD SectionAlignment;
//C DWORD FileAlignment;
//C WORD MajorOperatingSystemVersion;
//C WORD MinorOperatingSystemVersion;
//C WORD MajorImageVersion;
//C WORD MinorImageVersion;
//C WORD MajorSubsystemVersion;
//C WORD MinorSubsystemVersion;
//C DWORD Win32VersionValue;
//C DWORD SizeOfImage;
//C DWORD SizeOfHeaders;
//C DWORD CheckSum;
//C WORD Subsystem;
//C WORD DllCharacteristics;
//C DWORD SizeOfStackReserve;
//C DWORD SizeOfStackCommit;
//C DWORD SizeOfHeapReserve;
//C DWORD SizeOfHeapCommit;
//C DWORD LoaderFlags;
//C DWORD NumberOfRvaAndSizes;
//C IMAGE_DATA_DIRECTORY DataDirectory[16];
//C } IMAGE_OPTIONAL_HEADER32,*PIMAGE_OPTIONAL_HEADER32;
struct _IMAGE_OPTIONAL_HEADER
{
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
DWORD BaseOfData;
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 [16]DataDirectory;
}
alias _IMAGE_OPTIONAL_HEADER IMAGE_OPTIONAL_HEADER32;
alias _IMAGE_OPTIONAL_HEADER *PIMAGE_OPTIONAL_HEADER32;
//C typedef struct _IMAGE_ROM_OPTIONAL_HEADER {
//C WORD Magic;
//C BYTE MajorLinkerVersion;
//C BYTE MinorLinkerVersion;
//C DWORD SizeOfCode;
//C DWORD SizeOfInitializedData;
//C DWORD SizeOfUninitializedData;
//C DWORD AddressOfEntryPoint;
//C DWORD BaseOfCode;
//C DWORD BaseOfData;
//C DWORD BaseOfBss;
//C DWORD GprMask;
//C DWORD CprMask[4];
//C DWORD GpValue;
//C } IMAGE_ROM_OPTIONAL_HEADER,*PIMAGE_ROM_OPTIONAL_HEADER;
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 [4]CprMask;
DWORD GpValue;
}
alias _IMAGE_ROM_OPTIONAL_HEADER IMAGE_ROM_OPTIONAL_HEADER;
alias _IMAGE_ROM_OPTIONAL_HEADER *PIMAGE_ROM_OPTIONAL_HEADER;
//C typedef struct _IMAGE_OPTIONAL_HEADER64 {
//C WORD Magic;
//C BYTE MajorLinkerVersion;
//C BYTE MinorLinkerVersion;
//C DWORD SizeOfCode;
//C DWORD SizeOfInitializedData;
//C DWORD SizeOfUninitializedData;
//C DWORD AddressOfEntryPoint;
//C DWORD BaseOfCode;
//C ULONGLONG ImageBase;
//C DWORD SectionAlignment;
//C DWORD FileAlignment;
//C WORD MajorOperatingSystemVersion;
//C WORD MinorOperatingSystemVersion;
//C WORD MajorImageVersion;
//C WORD MinorImageVersion;
//C WORD MajorSubsystemVersion;
//C WORD MinorSubsystemVersion;
//C DWORD Win32VersionValue;
//C DWORD SizeOfImage;
//C DWORD SizeOfHeaders;
//C DWORD CheckSum;
//C WORD Subsystem;
//C WORD DllCharacteristics;
//C ULONGLONG SizeOfStackReserve;
//C ULONGLONG SizeOfStackCommit;
//C ULONGLONG SizeOfHeapReserve;
//C ULONGLONG SizeOfHeapCommit;
//C DWORD LoaderFlags;
//C DWORD NumberOfRvaAndSizes;
//C IMAGE_DATA_DIRECTORY DataDirectory[16];
//C } IMAGE_OPTIONAL_HEADER64,*PIMAGE_OPTIONAL_HEADER64;
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 [16]DataDirectory;
}
alias _IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER64;
alias _IMAGE_OPTIONAL_HEADER64 *PIMAGE_OPTIONAL_HEADER64;
//C typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
alias IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
//C typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
alias PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
//C typedef struct _IMAGE_NT_HEADERS64 {
//C DWORD Signature;
//C IMAGE_FILE_HEADER FileHeader;
//C IMAGE_OPTIONAL_HEADER64 OptionalHeader;
//C } IMAGE_NT_HEADERS64,*PIMAGE_NT_HEADERS64;
struct _IMAGE_NT_HEADERS64
{
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER64 OptionalHeader;
}
alias _IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS64;
alias _IMAGE_NT_HEADERS64 *PIMAGE_NT_HEADERS64;
//C typedef struct _IMAGE_NT_HEADERS {
//C DWORD Signature;
//C IMAGE_FILE_HEADER FileHeader;
//C IMAGE_OPTIONAL_HEADER32 OptionalHeader;
//C } IMAGE_NT_HEADERS32,*PIMAGE_NT_HEADERS32;
struct _IMAGE_NT_HEADERS
{
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER32 OptionalHeader;
}
alias _IMAGE_NT_HEADERS IMAGE_NT_HEADERS32;
alias _IMAGE_NT_HEADERS *PIMAGE_NT_HEADERS32;
//C typedef struct _IMAGE_ROM_HEADERS {
//C IMAGE_FILE_HEADER FileHeader;
//C IMAGE_ROM_OPTIONAL_HEADER OptionalHeader;
//C } IMAGE_ROM_HEADERS,*PIMAGE_ROM_HEADERS;
struct _IMAGE_ROM_HEADERS
{
IMAGE_FILE_HEADER FileHeader;
IMAGE_ROM_OPTIONAL_HEADER OptionalHeader;
}
alias _IMAGE_ROM_HEADERS IMAGE_ROM_HEADERS;
alias _IMAGE_ROM_HEADERS *PIMAGE_ROM_HEADERS;
//C typedef IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS;
alias IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS;
//C typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
alias PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
//C typedef struct ANON_OBJECT_HEADER {
//C WORD Sig1;
//C WORD Sig2;
//C WORD Version;
//C WORD Machine;
//C DWORD TimeDateStamp;
//C CLSID ClassID;
//C DWORD SizeOfData;
//C } ANON_OBJECT_HEADER;
struct ANON_OBJECT_HEADER
{
WORD Sig1;
WORD Sig2;
WORD Version;
WORD Machine;
DWORD TimeDateStamp;
CLSID ClassID;
DWORD SizeOfData;
}
//C typedef struct _IMAGE_SECTION_HEADER {
//C BYTE Name[8];
//C union {
//C DWORD PhysicalAddress;
//C DWORD VirtualSize;
//C } Misc;
union _N28
{
DWORD PhysicalAddress;
DWORD VirtualSize;
}
//C DWORD VirtualAddress;
//C DWORD SizeOfRawData;
//C DWORD PointerToRawData;
//C DWORD PointerToRelocations;
//C DWORD PointerToLinenumbers;
//C WORD NumberOfRelocations;
//C WORD NumberOfLinenumbers;
//C DWORD Characteristics;
//C } IMAGE_SECTION_HEADER,*PIMAGE_SECTION_HEADER;
struct _IMAGE_SECTION_HEADER
{
BYTE [8]Name;
_N28 Misc;
DWORD VirtualAddress;
DWORD SizeOfRawData;
DWORD PointerToRawData;
DWORD PointerToRelocations;
DWORD PointerToLinenumbers;
WORD NumberOfRelocations;
WORD NumberOfLinenumbers;
DWORD Characteristics;
}
alias _IMAGE_SECTION_HEADER IMAGE_SECTION_HEADER;
alias _IMAGE_SECTION_HEADER *PIMAGE_SECTION_HEADER;
//C typedef struct _IMAGE_SYMBOL {
//C union {
//C BYTE ShortName[8];
//C struct {
//C DWORD Short;
//C DWORD Long;
//C } Name;
struct _N30
{
DWORD Short;
DWORD Long;
}
//C DWORD LongName[2];
//C } N;
union _N29
{
BYTE [8]ShortName;
_N30 Name;
DWORD [2]LongName;
}
//C DWORD Value;
//C SHORT SectionNumber;
//C WORD Type;
//C BYTE StorageClass;
//C BYTE NumberOfAuxSymbols;
//C } IMAGE_SYMBOL;
struct _IMAGE_SYMBOL
{
_N29 N;
DWORD Value;
SHORT SectionNumber;
WORD Type;
BYTE StorageClass;
BYTE NumberOfAuxSymbols;
}
alias _IMAGE_SYMBOL IMAGE_SYMBOL;
//C typedef IMAGE_SYMBOL *PIMAGE_SYMBOL;
alias IMAGE_SYMBOL *PIMAGE_SYMBOL;
//C typedef union _IMAGE_AUX_SYMBOL {
//C struct {
//C DWORD TagIndex;
//C union {
//C struct {
//C WORD Linenumber;
//C WORD Size;
//C } LnSz;
struct _N33
{
WORD Linenumber;
WORD Size;
}
//C DWORD TotalSize;
//C } Misc;
union _N32
{
_N33 LnSz;
DWORD TotalSize;
}
//C union {
//C struct {
//C DWORD PointerToLinenumber;
//C DWORD PointerToNextFunction;
//C } Function;
struct _N35
{
DWORD PointerToLinenumber;
DWORD PointerToNextFunction;
}
//C struct {
//C WORD Dimension[4];
//C } Array;
struct _N36
{
WORD [4]Dimension;
}
//C } FcnAry;
union _N34
{
_N35 Function;
_N36 Array;
}
//C WORD TvIndex;
//C } Sym;
struct _N31
{
DWORD TagIndex;
_N32 Misc;
_N34 FcnAry;
WORD TvIndex;
}
//C struct {
//C BYTE Name[18];
//C } File;
struct _N37
{
BYTE [18]Name;
}
//C struct {
//C DWORD Length;
//C WORD NumberOfRelocations;
//C WORD NumberOfLinenumbers;
//C DWORD CheckSum;
//C SHORT Number;
//C BYTE Selection;
//C } Section;
struct _N38
{
DWORD Length;
WORD NumberOfRelocations;
WORD NumberOfLinenumbers;
DWORD CheckSum;
SHORT Number;
BYTE Selection;
}
//C } IMAGE_AUX_SYMBOL;
union _IMAGE_AUX_SYMBOL
{
_N31 Sym;
_N37 File;
_N38 Section;
}
alias _IMAGE_AUX_SYMBOL IMAGE_AUX_SYMBOL;
//C typedef IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
alias IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
//C typedef enum IMAGE_AUX_SYMBOL_TYPE {
//C IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF = 1
//C } IMAGE_AUX_SYMBOL_TYPE;
enum IMAGE_AUX_SYMBOL_TYPE
{
IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF = 1,
}
//C typedef struct IMAGE_AUX_SYMBOL_TOKEN_DEF {
//C BYTE bAuxType;
//C BYTE bReserved;
//C DWORD SymbolTableIndex;
//C BYTE rgbReserved[12];
//C } IMAGE_AUX_SYMBOL_TOKEN_DEF;
struct IMAGE_AUX_SYMBOL_TOKEN_DEF
{
BYTE bAuxType;
BYTE bReserved;
DWORD SymbolTableIndex;
BYTE [12]rgbReserved;
}
//C typedef IMAGE_AUX_SYMBOL_TOKEN_DEF *PIMAGE_AUX_SYMBOL_TOKEN_DEF;
alias IMAGE_AUX_SYMBOL_TOKEN_DEF *PIMAGE_AUX_SYMBOL_TOKEN_DEF;
//C typedef struct _IMAGE_RELOCATION {
//C union {
//C DWORD VirtualAddress;
//C DWORD RelocCount;
//C } ;
union _N39
{
DWORD VirtualAddress;
DWORD RelocCount;
}
//C DWORD SymbolTableIndex;
//C WORD Type;
//C } IMAGE_RELOCATION;
struct _IMAGE_RELOCATION
{
DWORD VirtualAddress;
DWORD RelocCount;
DWORD SymbolTableIndex;
WORD Type;
}
alias _IMAGE_RELOCATION IMAGE_RELOCATION;
//C typedef IMAGE_RELOCATION *PIMAGE_RELOCATION;
alias IMAGE_RELOCATION *PIMAGE_RELOCATION;
//C typedef struct _IMAGE_LINENUMBER {
//C union {
//C DWORD SymbolTableIndex;
//C DWORD VirtualAddress;
//C } Type;
union _N40
{
DWORD SymbolTableIndex;
DWORD VirtualAddress;
}
//C WORD Linenumber;
//C } IMAGE_LINENUMBER;
struct _IMAGE_LINENUMBER
{
_N40 Type;
WORD Linenumber;
}
alias _IMAGE_LINENUMBER IMAGE_LINENUMBER;
//C typedef IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
alias IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
//C typedef struct _IMAGE_BASE_RELOCATION {
//C DWORD VirtualAddress;
//C DWORD SizeOfBlock;
//C } IMAGE_BASE_RELOCATION;
struct _IMAGE_BASE_RELOCATION
{
DWORD VirtualAddress;
DWORD SizeOfBlock;
}
alias _IMAGE_BASE_RELOCATION IMAGE_BASE_RELOCATION;
//C typedef IMAGE_BASE_RELOCATION *PIMAGE_BASE_RELOCATION;
alias IMAGE_BASE_RELOCATION *PIMAGE_BASE_RELOCATION;
//C typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER {
//C BYTE Name[16];
//C BYTE Date[12];
//C BYTE UserID[6];
//C BYTE GroupID[6];
//C BYTE Mode[8];
//C BYTE Size[10];
//C BYTE EndHeader[2];
//C } IMAGE_ARCHIVE_MEMBER_HEADER,*PIMAGE_ARCHIVE_MEMBER_HEADER;
struct _IMAGE_ARCHIVE_MEMBER_HEADER
{
BYTE [16]Name;
BYTE [12]Date;
BYTE [6]UserID;
BYTE [6]GroupID;
BYTE [8]Mode;
BYTE [10]Size;
BYTE [2]EndHeader;
}
alias _IMAGE_ARCHIVE_MEMBER_HEADER IMAGE_ARCHIVE_MEMBER_HEADER;
alias _IMAGE_ARCHIVE_MEMBER_HEADER *PIMAGE_ARCHIVE_MEMBER_HEADER;
//C typedef struct _IMAGE_EXPORT_DIRECTORY {
//C DWORD Characteristics;
//C DWORD TimeDateStamp;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C DWORD Name;
//C DWORD Base;
//C DWORD NumberOfFunctions;
//C DWORD NumberOfNames;
//C DWORD AddressOfFunctions;
//C DWORD AddressOfNames;
//C DWORD AddressOfNameOrdinals;
//C } IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
struct _IMAGE_EXPORT_DIRECTORY
{
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD Name;
DWORD Base;
DWORD NumberOfFunctions;
DWORD NumberOfNames;
DWORD AddressOfFunctions;
DWORD AddressOfNames;
DWORD AddressOfNameOrdinals;
}
alias _IMAGE_EXPORT_DIRECTORY IMAGE_EXPORT_DIRECTORY;
alias _IMAGE_EXPORT_DIRECTORY *PIMAGE_EXPORT_DIRECTORY;
//C typedef struct _IMAGE_IMPORT_BY_NAME {
//C WORD Hint;
//C BYTE Name[1];
//C } IMAGE_IMPORT_BY_NAME,*PIMAGE_IMPORT_BY_NAME;
struct _IMAGE_IMPORT_BY_NAME
{
WORD Hint;
BYTE [1]Name;
}
alias _IMAGE_IMPORT_BY_NAME IMAGE_IMPORT_BY_NAME;
alias _IMAGE_IMPORT_BY_NAME *PIMAGE_IMPORT_BY_NAME;
//C typedef struct _IMAGE_THUNK_DATA64 {
//C union {
//C ULONGLONG ForwarderString;
//C ULONGLONG Function;
//C ULONGLONG Ordinal;
//C ULONGLONG AddressOfData;
//C } u1;
union _N41
{
ULONGLONG ForwarderString;
ULONGLONG Function;
ULONGLONG Ordinal;
ULONGLONG AddressOfData;
}
//C } IMAGE_THUNK_DATA64;
struct _IMAGE_THUNK_DATA64
{
_N41 u1;
}
alias _IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA64;
//C typedef IMAGE_THUNK_DATA64 *PIMAGE_THUNK_DATA64;
alias IMAGE_THUNK_DATA64 *PIMAGE_THUNK_DATA64;
//C typedef struct _IMAGE_THUNK_DATA32 {
//C union {
//C DWORD ForwarderString;
//C DWORD Function;
//C DWORD Ordinal;
//C DWORD AddressOfData;
//C } u1;
union _N42
{
DWORD ForwarderString;
DWORD Function;
DWORD Ordinal;
DWORD AddressOfData;
}
//C } IMAGE_THUNK_DATA32;
struct _IMAGE_THUNK_DATA32
{
_N42 u1;
}
alias _IMAGE_THUNK_DATA32 IMAGE_THUNK_DATA32;
//C typedef IMAGE_THUNK_DATA32 *PIMAGE_THUNK_DATA32;
alias IMAGE_THUNK_DATA32 *PIMAGE_THUNK_DATA32;
//C typedef void
//C ( *PIMAGE_TLS_CALLBACK)(PVOID DllHandle,DWORD Reason,PVOID Reserved);
alias void function(PVOID DllHandle, DWORD Reason, PVOID Reserved)PIMAGE_TLS_CALLBACK;
//C typedef struct _IMAGE_TLS_DIRECTORY64 {
//C ULONGLONG StartAddressOfRawData;
//C ULONGLONG EndAddressOfRawData;
//C ULONGLONG AddressOfIndex;
//C ULONGLONG AddressOfCallBacks;
//C DWORD SizeOfZeroFill;
//C DWORD Characteristics;
//C } IMAGE_TLS_DIRECTORY64;
struct _IMAGE_TLS_DIRECTORY64
{
ULONGLONG StartAddressOfRawData;
ULONGLONG EndAddressOfRawData;
ULONGLONG AddressOfIndex;
ULONGLONG AddressOfCallBacks;
DWORD SizeOfZeroFill;
DWORD Characteristics;
}
alias _IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY64;
//C typedef IMAGE_TLS_DIRECTORY64 *PIMAGE_TLS_DIRECTORY64;
alias IMAGE_TLS_DIRECTORY64 *PIMAGE_TLS_DIRECTORY64;
//C typedef struct _IMAGE_TLS_DIRECTORY32 {
//C DWORD StartAddressOfRawData;
//C DWORD EndAddressOfRawData;
//C DWORD AddressOfIndex;
//C DWORD AddressOfCallBacks;
//C DWORD SizeOfZeroFill;
//C DWORD Characteristics;
//C } IMAGE_TLS_DIRECTORY32;
struct _IMAGE_TLS_DIRECTORY32
{
DWORD StartAddressOfRawData;
DWORD EndAddressOfRawData;
DWORD AddressOfIndex;
DWORD AddressOfCallBacks;
DWORD SizeOfZeroFill;
DWORD Characteristics;
}
alias _IMAGE_TLS_DIRECTORY32 IMAGE_TLS_DIRECTORY32;
//C typedef IMAGE_TLS_DIRECTORY32 *PIMAGE_TLS_DIRECTORY32;
alias IMAGE_TLS_DIRECTORY32 *PIMAGE_TLS_DIRECTORY32;
//C typedef IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA;
alias IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA;
//C typedef PIMAGE_THUNK_DATA64 PIMAGE_THUNK_DATA;
alias PIMAGE_THUNK_DATA64 PIMAGE_THUNK_DATA;
//C typedef IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY;
alias IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY;
//C typedef PIMAGE_TLS_DIRECTORY64 PIMAGE_TLS_DIRECTORY;
alias PIMAGE_TLS_DIRECTORY64 PIMAGE_TLS_DIRECTORY;
//C typedef struct _IMAGE_IMPORT_DESCRIPTOR {
//C union {
//C DWORD Characteristics;
//C DWORD OriginalFirstThunk;
//C } ;
union _N43
{
DWORD Characteristics;
DWORD OriginalFirstThunk;
}
//C DWORD TimeDateStamp;
//C DWORD ForwarderChain;
//C DWORD Name;
//C DWORD FirstThunk;
//C } IMAGE_IMPORT_DESCRIPTOR;
struct _IMAGE_IMPORT_DESCRIPTOR
{
DWORD Characteristics;
DWORD OriginalFirstThunk;
DWORD TimeDateStamp;
DWORD ForwarderChain;
DWORD Name;
DWORD FirstThunk;
}
alias _IMAGE_IMPORT_DESCRIPTOR IMAGE_IMPORT_DESCRIPTOR;
//C typedef IMAGE_IMPORT_DESCRIPTOR *PIMAGE_IMPORT_DESCRIPTOR;
alias IMAGE_IMPORT_DESCRIPTOR *PIMAGE_IMPORT_DESCRIPTOR;
//C typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR {
//C DWORD TimeDateStamp;
//C WORD OffsetModuleName;
//C WORD NumberOfModuleForwarderRefs;
//C } IMAGE_BOUND_IMPORT_DESCRIPTOR,*PIMAGE_BOUND_IMPORT_DESCRIPTOR;
struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
{
DWORD TimeDateStamp;
WORD OffsetModuleName;
WORD NumberOfModuleForwarderRefs;
}
alias _IMAGE_BOUND_IMPORT_DESCRIPTOR IMAGE_BOUND_IMPORT_DESCRIPTOR;
alias _IMAGE_BOUND_IMPORT_DESCRIPTOR *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
//C typedef struct _IMAGE_BOUND_FORWARDER_REF {
//C DWORD TimeDateStamp;
//C WORD OffsetModuleName;
//C WORD Reserved;
//C } IMAGE_BOUND_FORWARDER_REF,*PIMAGE_BOUND_FORWARDER_REF;
struct _IMAGE_BOUND_FORWARDER_REF
{
DWORD TimeDateStamp;
WORD OffsetModuleName;
WORD Reserved;
}
alias _IMAGE_BOUND_FORWARDER_REF IMAGE_BOUND_FORWARDER_REF;
alias _IMAGE_BOUND_FORWARDER_REF *PIMAGE_BOUND_FORWARDER_REF;
//C typedef struct _IMAGE_RESOURCE_DIRECTORY {
//C DWORD Characteristics;
//C DWORD TimeDateStamp;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C WORD NumberOfNamedEntries;
//C WORD NumberOfIdEntries;
//C } IMAGE_RESOURCE_DIRECTORY,*PIMAGE_RESOURCE_DIRECTORY;
struct _IMAGE_RESOURCE_DIRECTORY
{
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
WORD NumberOfNamedEntries;
WORD NumberOfIdEntries;
}
alias _IMAGE_RESOURCE_DIRECTORY IMAGE_RESOURCE_DIRECTORY;
alias _IMAGE_RESOURCE_DIRECTORY *PIMAGE_RESOURCE_DIRECTORY;
//C typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
//C union {
//C struct {
//C DWORD NameOffset:31;
//C DWORD NameIsString:1;
//C } ;
struct _N45
{
DWORD __bitfield1;
DWORD NameOffset() { return (__bitfield1 >> 0) & 0x7fffffff; }
DWORD NameIsString() { return (__bitfield1 >> 31) & 0x1; }
}
//C DWORD Name;
//C WORD Id;
//C } ;
union _N44
{
DWORD __bitfield1;
DWORD NameOffset() { return (__bitfield1 >> 0) & 0x7fffffff; }
DWORD NameIsString() { return (__bitfield1 >> 31) & 0x1; }
DWORD Name;
WORD Id;
}
//C union {
//C DWORD OffsetToData;
//C struct {
//C DWORD OffsetToDirectory:31;
//C DWORD DataIsDirectory:1;
//C } ;
struct _N47
{
DWORD __bitfield1;
DWORD OffsetToDirectory() { return (__bitfield1 >> 0) & 0x7fffffff; }
DWORD DataIsDirectory() { return (__bitfield1 >> 31) & 0x1; }
}
//C } ;
union _N46
{
DWORD OffsetToData;
DWORD OffsetToDirectory() { return 0x7fffffff; }
DWORD DataIsDirectory() { return 0x1; }
}
//C } IMAGE_RESOURCE_DIRECTORY_ENTRY,*PIMAGE_RESOURCE_DIRECTORY_ENTRY;
struct _IMAGE_RESOURCE_DIRECTORY_ENTRY
{
DWORD __bitfield1;
DWORD NameOffset() { return (__bitfield1 >> 0) & 0x7fffffff; }
DWORD NameIsString() { return (__bitfield1 >> 31) & 0x1; }
DWORD Name;
WORD Id;
DWORD OffsetToData;
DWORD OffsetToDirectory() { return (__bitfield1 >> 0) & 0x7fffffff; }
DWORD DataIsDirectory() { return (__bitfield1 >> 31) & 0x1; }
}
alias _IMAGE_RESOURCE_DIRECTORY_ENTRY IMAGE_RESOURCE_DIRECTORY_ENTRY;
alias _IMAGE_RESOURCE_DIRECTORY_ENTRY *PIMAGE_RESOURCE_DIRECTORY_ENTRY;
//C typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
//C WORD Length;
//C CHAR NameString[1];
//C } IMAGE_RESOURCE_DIRECTORY_STRING,*PIMAGE_RESOURCE_DIRECTORY_STRING;
struct _IMAGE_RESOURCE_DIRECTORY_STRING
{
WORD Length;
CHAR [1]NameString;
}
alias _IMAGE_RESOURCE_DIRECTORY_STRING IMAGE_RESOURCE_DIRECTORY_STRING;
alias _IMAGE_RESOURCE_DIRECTORY_STRING *PIMAGE_RESOURCE_DIRECTORY_STRING;
//C typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
//C WORD Length;
//C WCHAR NameString[1];
//C } IMAGE_RESOURCE_DIR_STRING_U,*PIMAGE_RESOURCE_DIR_STRING_U;
struct _IMAGE_RESOURCE_DIR_STRING_U
{
WORD Length;
WCHAR [1]NameString;
}
alias _IMAGE_RESOURCE_DIR_STRING_U IMAGE_RESOURCE_DIR_STRING_U;
alias _IMAGE_RESOURCE_DIR_STRING_U *PIMAGE_RESOURCE_DIR_STRING_U;
//C typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
//C DWORD OffsetToData;
//C DWORD Size;
//C DWORD CodePage;
//C DWORD Reserved;
//C } IMAGE_RESOURCE_DATA_ENTRY,*PIMAGE_RESOURCE_DATA_ENTRY;
struct _IMAGE_RESOURCE_DATA_ENTRY
{
DWORD OffsetToData;
DWORD Size;
DWORD CodePage;
DWORD Reserved;
}
alias _IMAGE_RESOURCE_DATA_ENTRY IMAGE_RESOURCE_DATA_ENTRY;
alias _IMAGE_RESOURCE_DATA_ENTRY *PIMAGE_RESOURCE_DATA_ENTRY;
//C typedef struct {
//C DWORD Size;
//C DWORD TimeDateStamp;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C DWORD GlobalFlagsClear;
//C DWORD GlobalFlagsSet;
//C DWORD CriticalSectionDefaultTimeout;
//C DWORD DeCommitFreeBlockThreshold;
//C DWORD DeCommitTotalFreeThreshold;
//C DWORD LockPrefixTable;
//C DWORD MaximumAllocationSize;
//C DWORD VirtualMemoryThreshold;
//C DWORD ProcessHeapFlags;
//C DWORD ProcessAffinityMask;
//C WORD CSDVersion;
//C WORD Reserved1;
//C DWORD EditList;
//C DWORD SecurityCookie;
//C DWORD SEHandlerTable;
//C DWORD SEHandlerCount;
//C } IMAGE_LOAD_CONFIG_DIRECTORY32,*PIMAGE_LOAD_CONFIG_DIRECTORY32;
struct _N48
{
DWORD Size;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD GlobalFlagsClear;
DWORD GlobalFlagsSet;
DWORD CriticalSectionDefaultTimeout;
DWORD DeCommitFreeBlockThreshold;
DWORD DeCommitTotalFreeThreshold;
DWORD LockPrefixTable;
DWORD MaximumAllocationSize;
DWORD VirtualMemoryThreshold;
DWORD ProcessHeapFlags;
DWORD ProcessAffinityMask;
WORD CSDVersion;
WORD Reserved1;
DWORD EditList;
DWORD SecurityCookie;
DWORD SEHandlerTable;
DWORD SEHandlerCount;
}
alias _N48 IMAGE_LOAD_CONFIG_DIRECTORY32;
alias _N48 *PIMAGE_LOAD_CONFIG_DIRECTORY32;
//C typedef struct {
//C DWORD Size;
//C DWORD TimeDateStamp;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C DWORD GlobalFlagsClear;
//C DWORD GlobalFlagsSet;
//C DWORD CriticalSectionDefaultTimeout;
//C ULONGLONG DeCommitFreeBlockThreshold;
//C ULONGLONG DeCommitTotalFreeThreshold;
//C ULONGLONG LockPrefixTable;
//C ULONGLONG MaximumAllocationSize;
//C ULONGLONG VirtualMemoryThreshold;
//C ULONGLONG ProcessAffinityMask;
//C DWORD ProcessHeapFlags;
//C WORD CSDVersion;
//C WORD Reserved1;
//C ULONGLONG EditList;
//C ULONGLONG SecurityCookie;
//C ULONGLONG SEHandlerTable;
//C ULONGLONG SEHandlerCount;
//C } IMAGE_LOAD_CONFIG_DIRECTORY64,*PIMAGE_LOAD_CONFIG_DIRECTORY64;
struct _N49
{
DWORD Size;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD GlobalFlagsClear;
DWORD GlobalFlagsSet;
DWORD CriticalSectionDefaultTimeout;
ULONGLONG DeCommitFreeBlockThreshold;
ULONGLONG DeCommitTotalFreeThreshold;
ULONGLONG LockPrefixTable;
ULONGLONG MaximumAllocationSize;
ULONGLONG VirtualMemoryThreshold;
ULONGLONG ProcessAffinityMask;
DWORD ProcessHeapFlags;
WORD CSDVersion;
WORD Reserved1;
ULONGLONG EditList;
ULONGLONG SecurityCookie;
ULONGLONG SEHandlerTable;
ULONGLONG SEHandlerCount;
}
alias _N49 IMAGE_LOAD_CONFIG_DIRECTORY64;
alias _N49 *PIMAGE_LOAD_CONFIG_DIRECTORY64;
//C typedef IMAGE_LOAD_CONFIG_DIRECTORY64 IMAGE_LOAD_CONFIG_DIRECTORY;
alias IMAGE_LOAD_CONFIG_DIRECTORY64 IMAGE_LOAD_CONFIG_DIRECTORY;
//C typedef PIMAGE_LOAD_CONFIG_DIRECTORY64 PIMAGE_LOAD_CONFIG_DIRECTORY;
alias PIMAGE_LOAD_CONFIG_DIRECTORY64 PIMAGE_LOAD_CONFIG_DIRECTORY;
//C typedef struct _IMAGE_CE_RUNTIME_FUNCTION_ENTRY {
//C DWORD FuncStart;
//C DWORD PrologLen : 8;
//C DWORD FuncLen : 22;
//C DWORD ThirtyTwoBit : 1;
//C DWORD ExceptionFlag : 1;
//C } IMAGE_CE_RUNTIME_FUNCTION_ENTRY,*PIMAGE_CE_RUNTIME_FUNCTION_ENTRY;
struct _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
{
DWORD FuncStart;
DWORD __bitfield1;
DWORD PrologLen() { return (__bitfield1 >> 0) & 0xff; }
DWORD FuncLen() { return (__bitfield1 >> 8) & 0x3fffff; }
DWORD ThirtyTwoBit() { return (__bitfield1 >> 30) & 0x1; }
DWORD ExceptionFlag() { return (__bitfield1 >> 31) & 0x1; }
}
alias _IMAGE_CE_RUNTIME_FUNCTION_ENTRY IMAGE_CE_RUNTIME_FUNCTION_ENTRY;
alias _IMAGE_CE_RUNTIME_FUNCTION_ENTRY *PIMAGE_CE_RUNTIME_FUNCTION_ENTRY;
//C typedef struct _IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY {
//C ULONGLONG BeginAddress;
//C ULONGLONG EndAddress;
//C ULONGLONG ExceptionHandler;
//C ULONGLONG HandlerData;
//C ULONGLONG PrologEndAddress;
//C } IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY,*PIMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY;
struct _IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY
{
ULONGLONG BeginAddress;
ULONGLONG EndAddress;
ULONGLONG ExceptionHandler;
ULONGLONG HandlerData;
ULONGLONG PrologEndAddress;
}
alias _IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY;
alias _IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY *PIMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY;
//C typedef struct _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY {
//C DWORD BeginAddress;
//C DWORD EndAddress;
//C DWORD ExceptionHandler;
//C DWORD HandlerData;
//C DWORD PrologEndAddress;
//C } IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY,*PIMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY;
struct _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY
{
DWORD BeginAddress;
DWORD EndAddress;
DWORD ExceptionHandler;
DWORD HandlerData;
DWORD PrologEndAddress;
}
alias _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY;
alias _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY *PIMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY;
//C typedef struct _IMAGE_RUNTIME_FUNCTION_ENTRY {
//C DWORD BeginAddress;
//C DWORD EndAddress;
//C DWORD UnwindInfoAddress;
//C } _IMAGE_RUNTIME_FUNCTION_ENTRY,*_PIMAGE_RUNTIME_FUNCTION_ENTRY;
struct _IMAGE_RUNTIME_FUNCTION_ENTRY
{
DWORD BeginAddress;
DWORD EndAddress;
DWORD UnwindInfoAddress;
}
alias _IMAGE_RUNTIME_FUNCTION_ENTRY *_PIMAGE_RUNTIME_FUNCTION_ENTRY;
//C typedef _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
alias _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
//C typedef _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
alias _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
//C typedef _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
alias _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
//C typedef _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
alias _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
//C typedef struct _IMAGE_DEBUG_DIRECTORY {
//C DWORD Characteristics;
//C DWORD TimeDateStamp;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C DWORD Type;
//C DWORD SizeOfData;
//C DWORD AddressOfRawData;
//C DWORD PointerToRawData;
//C } IMAGE_DEBUG_DIRECTORY,*PIMAGE_DEBUG_DIRECTORY;
struct _IMAGE_DEBUG_DIRECTORY
{
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD Type;
DWORD SizeOfData;
DWORD AddressOfRawData;
DWORD PointerToRawData;
}
alias _IMAGE_DEBUG_DIRECTORY IMAGE_DEBUG_DIRECTORY;
alias _IMAGE_DEBUG_DIRECTORY *PIMAGE_DEBUG_DIRECTORY;
//C typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
//C DWORD NumberOfSymbols;
//C DWORD LvaToFirstSymbol;
//C DWORD NumberOfLinenumbers;
//C DWORD LvaToFirstLinenumber;
//C DWORD RvaToFirstByteOfCode;
//C DWORD RvaToLastByteOfCode;
//C DWORD RvaToFirstByteOfData;
//C DWORD RvaToLastByteOfData;
//C } IMAGE_COFF_SYMBOLS_HEADER,*PIMAGE_COFF_SYMBOLS_HEADER;
struct _IMAGE_COFF_SYMBOLS_HEADER
{
DWORD NumberOfSymbols;
DWORD LvaToFirstSymbol;
DWORD NumberOfLinenumbers;
DWORD LvaToFirstLinenumber;
DWORD RvaToFirstByteOfCode;
DWORD RvaToLastByteOfCode;
DWORD RvaToFirstByteOfData;
DWORD RvaToLastByteOfData;
}
alias _IMAGE_COFF_SYMBOLS_HEADER IMAGE_COFF_SYMBOLS_HEADER;
alias _IMAGE_COFF_SYMBOLS_HEADER *PIMAGE_COFF_SYMBOLS_HEADER;
//C typedef struct _FPO_DATA {
//C DWORD ulOffStart;
//C DWORD cbProcSize;
//C DWORD cdwLocals;
//C WORD cdwParams;
//C WORD cbProlog : 8;
//C WORD cbRegs : 3;
//C WORD fHasSEH : 1;
//C WORD fUseBP : 1;
//C WORD reserved : 1;
//C WORD cbFrame : 2;
//C } FPO_DATA,*PFPO_DATA;
struct _FPO_DATA
{
DWORD ulOffStart;
DWORD cbProcSize;
DWORD cdwLocals;
WORD cdwParams;
WORD __bitfield1;
WORD cbProlog() { return (__bitfield1 >> 0) & 0xff; }
WORD cbRegs() { return (__bitfield1 >> 8) & 0x7; }
WORD fHasSEH() { return (__bitfield1 >> 11) & 0x1; }
WORD fUseBP() { return (__bitfield1 >> 12) & 0x1; }
WORD reserved() { return (__bitfield1 >> 13) & 0x1; }
WORD cbFrame() { return (__bitfield1 >> 14) & 0x3; }
}
alias _FPO_DATA FPO_DATA;
alias _FPO_DATA *PFPO_DATA;
//C typedef struct _IMAGE_DEBUG_MISC {
//C DWORD DataType;
//C DWORD Length;
//C BOOLEAN Unicode;
//C BYTE Reserved[3];
//C BYTE Data[1];
//C } IMAGE_DEBUG_MISC,*PIMAGE_DEBUG_MISC;
struct _IMAGE_DEBUG_MISC
{
DWORD DataType;
DWORD Length;
BOOLEAN Unicode;
BYTE [3]Reserved;
BYTE [1]Data;
}
alias _IMAGE_DEBUG_MISC IMAGE_DEBUG_MISC;
alias _IMAGE_DEBUG_MISC *PIMAGE_DEBUG_MISC;
//C typedef struct _IMAGE_FUNCTION_ENTRY {
//C DWORD StartingAddress;
//C DWORD EndingAddress;
//C DWORD EndOfPrologue;
//C } IMAGE_FUNCTION_ENTRY,*PIMAGE_FUNCTION_ENTRY;
struct _IMAGE_FUNCTION_ENTRY
{
DWORD StartingAddress;
DWORD EndingAddress;
DWORD EndOfPrologue;
}
alias _IMAGE_FUNCTION_ENTRY IMAGE_FUNCTION_ENTRY;
alias _IMAGE_FUNCTION_ENTRY *PIMAGE_FUNCTION_ENTRY;
//C typedef struct _IMAGE_FUNCTION_ENTRY64 {
//C ULONGLONG StartingAddress;
//C ULONGLONG EndingAddress;
//C union {
//C ULONGLONG EndOfPrologue;
//C ULONGLONG UnwindInfoAddress;
//C } ;
union _N50
{
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
}
//C } IMAGE_FUNCTION_ENTRY64,*PIMAGE_FUNCTION_ENTRY64;
struct _IMAGE_FUNCTION_ENTRY64
{
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
}
alias _IMAGE_FUNCTION_ENTRY64 IMAGE_FUNCTION_ENTRY64;
alias _IMAGE_FUNCTION_ENTRY64 *PIMAGE_FUNCTION_ENTRY64;
//C typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
//C WORD Signature;
//C WORD Flags;
//C WORD Machine;
//C WORD Characteristics;
//C DWORD TimeDateStamp;
//C DWORD CheckSum;
//C DWORD ImageBase;
//C DWORD SizeOfImage;
//C DWORD NumberOfSections;
//C DWORD ExportedNamesSize;
//C DWORD DebugDirectorySize;
//C DWORD SectionAlignment;
//C DWORD Reserved[2];
//C } IMAGE_SEPARATE_DEBUG_HEADER,*PIMAGE_SEPARATE_DEBUG_HEADER;
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 [2]Reserved;
}
alias _IMAGE_SEPARATE_DEBUG_HEADER IMAGE_SEPARATE_DEBUG_HEADER;
alias _IMAGE_SEPARATE_DEBUG_HEADER *PIMAGE_SEPARATE_DEBUG_HEADER;
//C typedef struct _NON_PAGED_DEBUG_INFO {
//C WORD Signature;
//C WORD Flags;
//C DWORD Size;
//C WORD Machine;
//C WORD Characteristics;
//C DWORD TimeDateStamp;
//C DWORD CheckSum;
//C DWORD SizeOfImage;
//C ULONGLONG ImageBase;
//C } NON_PAGED_DEBUG_INFO,*PNON_PAGED_DEBUG_INFO;
struct _NON_PAGED_DEBUG_INFO
{
WORD Signature;
WORD Flags;
DWORD Size;
WORD Machine;
WORD Characteristics;
DWORD TimeDateStamp;
DWORD CheckSum;
DWORD SizeOfImage;
ULONGLONG ImageBase;
}
alias _NON_PAGED_DEBUG_INFO NON_PAGED_DEBUG_INFO;
alias _NON_PAGED_DEBUG_INFO *PNON_PAGED_DEBUG_INFO;
//C typedef struct _ImageArchitectureHeader {
//C unsigned int AmaskValue: 1;
//C int Adummy1 :7;
//C unsigned int AmaskShift: 8;
//C int Adummy2 :16;
//C DWORD FirstEntryRVA;
//C } IMAGE_ARCHITECTURE_HEADER,*PIMAGE_ARCHITECTURE_HEADER;
struct _ImageArchitectureHeader
{
uint __bitfield1;
uint AmaskValue() { return (__bitfield1 >> 0) & 0x1; }
int Adummy1() { return (__bitfield1 << 24) >> 25; }
uint AmaskShift() { return (__bitfield1 >> 8) & 0xff; }
int Adummy2() { return (__bitfield1 << 0) >> 16; }
DWORD FirstEntryRVA;
}
alias _ImageArchitectureHeader IMAGE_ARCHITECTURE_HEADER;
alias _ImageArchitectureHeader *PIMAGE_ARCHITECTURE_HEADER;
//C typedef struct _ImageArchitectureEntry {
//C DWORD FixupInstRVA;
//C DWORD NewInst;
//C } IMAGE_ARCHITECTURE_ENTRY,*PIMAGE_ARCHITECTURE_ENTRY;
struct _ImageArchitectureEntry
{
DWORD FixupInstRVA;
DWORD NewInst;
}
alias _ImageArchitectureEntry IMAGE_ARCHITECTURE_ENTRY;
alias _ImageArchitectureEntry *PIMAGE_ARCHITECTURE_ENTRY;
//C typedef struct IMPORT_OBJECT_HEADER {
//C WORD Sig1;
//C WORD Sig2;
//C WORD Version;
//C WORD Machine;
//C DWORD TimeDateStamp;
//C DWORD SizeOfData;
//C union {
//C WORD Ordinal;
//C WORD Hint;
//C };
union _N51
{
WORD Ordinal;
WORD Hint;
}
//C WORD Type : 2;
//C WORD NameType : 3;
//C WORD Reserved : 11;
//C } IMPORT_OBJECT_HEADER;
struct IMPORT_OBJECT_HEADER
{
WORD Sig1;
WORD Sig2;
WORD Version;
WORD Machine;
DWORD TimeDateStamp;
DWORD SizeOfData;
WORD Ordinal;
WORD Hint;
WORD __bitfield1;
WORD Type() { return (__bitfield1 >> 0) & 0x3; }
WORD NameType() { return (__bitfield1 >> 2) & 0x7; }
WORD Reserved() { return (__bitfield1 >> 5) & 0x7ff; }
}
//C typedef enum IMPORT_OBJECT_TYPE {
//C IMPORT_OBJECT_CODE = 0,IMPORT_OBJECT_DATA = 1,IMPORT_OBJECT_CONST = 2
//C } IMPORT_OBJECT_TYPE;
enum IMPORT_OBJECT_TYPE
{
IMPORT_OBJECT_CODE,
IMPORT_OBJECT_DATA,
IMPORT_OBJECT_CONST,
}
//C typedef enum IMPORT_OBJECT_NAME_TYPE {
//C IMPORT_OBJECT_ORDINAL = 0,IMPORT_OBJECT_NAME = 1,IMPORT_OBJECT_NAME_NO_PREFIX = 2,IMPORT_OBJECT_NAME_UNDECORATE = 3
//C } IMPORT_OBJECT_NAME_TYPE;
enum IMPORT_OBJECT_NAME_TYPE
{
IMPORT_OBJECT_ORDINAL,
IMPORT_OBJECT_NAME,
IMPORT_OBJECT_NAME_NO_PREFIX,
IMPORT_OBJECT_NAME_UNDECORATE,
}
//C typedef enum ReplacesCorHdrNumericDefines {
//C COMIMAGE_FLAGS_ILONLY =0x00000001,COMIMAGE_FLAGS_32BITREQUIRED =0x00000002,COMIMAGE_FLAGS_IL_LIBRARY =0x00000004,
//C COMIMAGE_FLAGS_STRONGNAMESIGNED =0x00000008,COMIMAGE_FLAGS_TRACKDEBUGDATA =0x00010000,COR_VERSION_MAJOR_V2 =2,
//C COR_VERSION_MAJOR =COR_VERSION_MAJOR_V2,COR_VERSION_MINOR =0,COR_DELETED_NAME_LENGTH =8,COR_VTABLEGAP_NAME_LENGTH =8,
//C NATIVE_TYPE_MAX_CB =1,COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE=0xFF,IMAGE_COR_MIH_METHODRVA =0x01,IMAGE_COR_MIH_EHRVA =0x02,
//C IMAGE_COR_MIH_BASICBLOCK =0x08,COR_VTABLE_32BIT =0x01,COR_VTABLE_64BIT =0x02,COR_VTABLE_FROM_UNMANAGED =0x04,
//C COR_VTABLE_CALL_MOST_DERIVED =0x10,IMAGE_COR_EATJ_THUNK_SIZE =32,MAX_CLASS_NAME =1024,MAX_PACKAGE_NAME =1024
//C } ReplacesCorHdrNumericDefines;
enum ReplacesCorHdrNumericDefines
{
COMIMAGE_FLAGS_ILONLY = 1,
COMIMAGE_FLAGS_32BITREQUIRED,
COMIMAGE_FLAGS_IL_LIBRARY = 4,
COMIMAGE_FLAGS_STRONGNAMESIGNED = 8,
COMIMAGE_FLAGS_TRACKDEBUGDATA = 65536,
COR_VERSION_MAJOR_V2 = 2,
COR_VERSION_MAJOR = 2,
COR_VERSION_MINOR = 0,
COR_DELETED_NAME_LENGTH = 8,
COR_VTABLEGAP_NAME_LENGTH = 8,
NATIVE_TYPE_MAX_CB = 1,
COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE = 255,
IMAGE_COR_MIH_METHODRVA = 1,
IMAGE_COR_MIH_EHRVA,
IMAGE_COR_MIH_BASICBLOCK = 8,
COR_VTABLE_32BIT = 1,
COR_VTABLE_64BIT,
COR_VTABLE_FROM_UNMANAGED = 4,
COR_VTABLE_CALL_MOST_DERIVED = 16,
IMAGE_COR_EATJ_THUNK_SIZE = 32,
MAX_CLASS_NAME = 1024,
MAX_PACKAGE_NAME = 1024,
}
//C typedef struct IMAGE_COR20_HEADER {
//C DWORD cb;
//C WORD MajorRuntimeVersion;
//C WORD MinorRuntimeVersion;
//C IMAGE_DATA_DIRECTORY MetaData;
//C DWORD Flags;
//C DWORD EntryPointToken;
//C IMAGE_DATA_DIRECTORY Resources;
//C IMAGE_DATA_DIRECTORY StrongNameSignature;
//C IMAGE_DATA_DIRECTORY CodeManagerTable;
//C IMAGE_DATA_DIRECTORY VTableFixups;
//C IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
//C IMAGE_DATA_DIRECTORY ManagedNativeHeader;
//C } IMAGE_COR20_HEADER,*PIMAGE_COR20_HEADER;
struct IMAGE_COR20_HEADER
{
DWORD cb;
WORD MajorRuntimeVersion;
WORD MinorRuntimeVersion;
IMAGE_DATA_DIRECTORY MetaData;
DWORD Flags;
DWORD EntryPointToken;
IMAGE_DATA_DIRECTORY Resources;
IMAGE_DATA_DIRECTORY StrongNameSignature;
IMAGE_DATA_DIRECTORY CodeManagerTable;
IMAGE_DATA_DIRECTORY VTableFixups;
IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
IMAGE_DATA_DIRECTORY ManagedNativeHeader;
}
alias IMAGE_COR20_HEADER *PIMAGE_COR20_HEADER;
//C typedef struct _SLIST_ENTRY *PSLIST_ENTRY;
alias _SLIST_ENTRY *PSLIST_ENTRY;
//C typedef struct _SLIST_ENTRY {
//C PSLIST_ENTRY Next;
//C } SLIST_ENTRY;
struct _SLIST_ENTRY
{
PSLIST_ENTRY Next;
}
alias _SLIST_ENTRY SLIST_ENTRY;
//C typedef struct _SLIST_HEADER {
//C ULONGLONG Alignment;
//C ULONGLONG Region;
//C } SLIST_HEADER;
struct _SLIST_HEADER
{
ULONGLONG Alignment;
ULONGLONG Region;
}
alias _SLIST_HEADER SLIST_HEADER;
//C typedef struct _SLIST_HEADER *PSLIST_HEADER;
alias _SLIST_HEADER *PSLIST_HEADER;
//C void RtlInitializeSListHead(PSLIST_HEADER ListHead);
void RtlInitializeSListHead(PSLIST_HEADER ListHead);
//C PSLIST_ENTRY RtlFirstEntrySList(const SLIST_HEADER *ListHead);
PSLIST_ENTRY RtlFirstEntrySList(SLIST_HEADER *ListHead);
//C PSLIST_ENTRY RtlInterlockedPopEntrySList(PSLIST_HEADER ListHead);
PSLIST_ENTRY RtlInterlockedPopEntrySList(PSLIST_HEADER ListHead);
//C PSLIST_ENTRY RtlInterlockedPushEntrySList(PSLIST_HEADER ListHead,PSLIST_ENTRY ListEntry);
PSLIST_ENTRY RtlInterlockedPushEntrySList(PSLIST_HEADER ListHead, PSLIST_ENTRY ListEntry);
//C PSLIST_ENTRY RtlInterlockedFlushSList(PSLIST_HEADER ListHead);
PSLIST_ENTRY RtlInterlockedFlushSList(PSLIST_HEADER ListHead);
//C WORD RtlQueryDepthSList(PSLIST_HEADER ListHead);
WORD RtlQueryDepthSList(PSLIST_HEADER ListHead);
//C WORD RtlCaptureStackBackTrace(DWORD FramesToSkip,DWORD FramesToCapture,PVOID *BackTrace,PDWORD BackTraceHash);
WORD RtlCaptureStackBackTrace(DWORD FramesToSkip, DWORD FramesToCapture, PVOID *BackTrace, PDWORD BackTraceHash);
//C void RtlCaptureContext(PCONTEXT ContextRecord);
void RtlCaptureContext(PCONTEXT ContextRecord);
//C SIZE_T RtlCompareMemory(const void *Source1,const void *Source2,SIZE_T Length);
SIZE_T RtlCompareMemory(void *Source1, void *Source2, SIZE_T Length);
//C void RtlUnwind(PVOID TargetFrame,PVOID TargetIp,PEXCEPTION_RECORD ExceptionRecord,PVOID ReturnValue);
void RtlUnwind(PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue);
//C PVOID RtlSecureZeroMemory(PVOID ptr,SIZE_T cnt);
PVOID RtlSecureZeroMemory(PVOID ptr, SIZE_T cnt);
//C typedef struct _MESSAGE_RESOURCE_ENTRY {
//C WORD Length;
//C WORD Flags;
//C BYTE Text[1];
//C } MESSAGE_RESOURCE_ENTRY,*PMESSAGE_RESOURCE_ENTRY;
struct _MESSAGE_RESOURCE_ENTRY
{
WORD Length;
WORD Flags;
BYTE [1]Text;
}
alias _MESSAGE_RESOURCE_ENTRY MESSAGE_RESOURCE_ENTRY;
alias _MESSAGE_RESOURCE_ENTRY *PMESSAGE_RESOURCE_ENTRY;
//C typedef struct _MESSAGE_RESOURCE_BLOCK {
//C DWORD LowId;
//C DWORD HighId;
//C DWORD OffsetToEntries;
//C } MESSAGE_RESOURCE_BLOCK,*PMESSAGE_RESOURCE_BLOCK;
struct _MESSAGE_RESOURCE_BLOCK
{
DWORD LowId;
DWORD HighId;
DWORD OffsetToEntries;
}
alias _MESSAGE_RESOURCE_BLOCK MESSAGE_RESOURCE_BLOCK;
alias _MESSAGE_RESOURCE_BLOCK *PMESSAGE_RESOURCE_BLOCK;
//C typedef struct _MESSAGE_RESOURCE_DATA {
//C DWORD NumberOfBlocks;
//C MESSAGE_RESOURCE_BLOCK Blocks[1];
//C } MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
struct _MESSAGE_RESOURCE_DATA
{
DWORD NumberOfBlocks;
MESSAGE_RESOURCE_BLOCK [1]Blocks;
}
alias _MESSAGE_RESOURCE_DATA MESSAGE_RESOURCE_DATA;
alias _MESSAGE_RESOURCE_DATA *PMESSAGE_RESOURCE_DATA;
//C typedef struct _OSVERSIONINFOA {
//C DWORD dwOSVersionInfoSize;
//C DWORD dwMajorVersion;
//C DWORD dwMinorVersion;
//C DWORD dwBuildNumber;
//C DWORD dwPlatformId;
//C CHAR szCSDVersion[128];
//C } OSVERSIONINFOA,*POSVERSIONINFOA,*LPOSVERSIONINFOA;
struct _OSVERSIONINFOA
{
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
CHAR [128]szCSDVersion;
}
alias _OSVERSIONINFOA OSVERSIONINFOA;
alias _OSVERSIONINFOA *POSVERSIONINFOA;
alias _OSVERSIONINFOA *LPOSVERSIONINFOA;
//C typedef struct _OSVERSIONINFOW {
//C DWORD dwOSVersionInfoSize;
//C DWORD dwMajorVersion;
//C DWORD dwMinorVersion;
//C DWORD dwBuildNumber;
//C DWORD dwPlatformId;
//C WCHAR szCSDVersion[128];
//C } OSVERSIONINFOW,*POSVERSIONINFOW,*LPOSVERSIONINFOW,RTL_OSVERSIONINFOW,*PRTL_OSVERSIONINFOW;
struct _OSVERSIONINFOW
{
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
WCHAR [128]szCSDVersion;
}
alias _OSVERSIONINFOW OSVERSIONINFOW;
alias _OSVERSIONINFOW *POSVERSIONINFOW;
alias _OSVERSIONINFOW *LPOSVERSIONINFOW;
alias _OSVERSIONINFOW RTL_OSVERSIONINFOW;
alias _OSVERSIONINFOW *PRTL_OSVERSIONINFOW;
//C typedef OSVERSIONINFOA OSVERSIONINFO;
alias OSVERSIONINFOA OSVERSIONINFO;
//C typedef POSVERSIONINFOA POSVERSIONINFO;
alias POSVERSIONINFOA POSVERSIONINFO;
//C typedef LPOSVERSIONINFOA LPOSVERSIONINFO;
alias LPOSVERSIONINFOA LPOSVERSIONINFO;
//C typedef struct _OSVERSIONINFOEXA {
//C DWORD dwOSVersionInfoSize;
//C DWORD dwMajorVersion;
//C DWORD dwMinorVersion;
//C DWORD dwBuildNumber;
//C DWORD dwPlatformId;
//C CHAR szCSDVersion[128];
//C WORD wServicePackMajor;
//C WORD wServicePackMinor;
//C WORD wSuiteMask;
//C BYTE wProductType;
//C BYTE wReserved;
//C } OSVERSIONINFOEXA,*POSVERSIONINFOEXA,*LPOSVERSIONINFOEXA;
struct _OSVERSIONINFOEXA
{
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
CHAR [128]szCSDVersion;
WORD wServicePackMajor;
WORD wServicePackMinor;
WORD wSuiteMask;
BYTE wProductType;
BYTE wReserved;
}
alias _OSVERSIONINFOEXA OSVERSIONINFOEXA;
alias _OSVERSIONINFOEXA *POSVERSIONINFOEXA;
alias _OSVERSIONINFOEXA *LPOSVERSIONINFOEXA;
//C typedef struct _OSVERSIONINFOEXW {
//C DWORD dwOSVersionInfoSize;
//C DWORD dwMajorVersion;
//C DWORD dwMinorVersion;
//C DWORD dwBuildNumber;
//C DWORD dwPlatformId;
//C WCHAR szCSDVersion[128];
//C WORD wServicePackMajor;
//C WORD wServicePackMinor;
//C WORD wSuiteMask;
//C BYTE wProductType;
//C BYTE wReserved;
//C } OSVERSIONINFOEXW,*POSVERSIONINFOEXW,*LPOSVERSIONINFOEXW,RTL_OSVERSIONINFOEXW,*PRTL_OSVERSIONINFOEXW;
struct _OSVERSIONINFOEXW
{
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
WCHAR [128]szCSDVersion;
WORD wServicePackMajor;
WORD wServicePackMinor;
WORD wSuiteMask;
BYTE wProductType;
BYTE wReserved;
}
alias _OSVERSIONINFOEXW OSVERSIONINFOEXW;
alias _OSVERSIONINFOEXW *POSVERSIONINFOEXW;
alias _OSVERSIONINFOEXW *LPOSVERSIONINFOEXW;
alias _OSVERSIONINFOEXW RTL_OSVERSIONINFOEXW;
alias _OSVERSIONINFOEXW *PRTL_OSVERSIONINFOEXW;
//C typedef OSVERSIONINFOEXA OSVERSIONINFOEX;
alias OSVERSIONINFOEXA OSVERSIONINFOEX;
//C typedef POSVERSIONINFOEXA POSVERSIONINFOEX;
alias POSVERSIONINFOEXA POSVERSIONINFOEX;
//C typedef LPOSVERSIONINFOEXA LPOSVERSIONINFOEX;
alias LPOSVERSIONINFOEXA LPOSVERSIONINFOEX;
//C ULONGLONG VerSetConditionMask(ULONGLONG ConditionMask,DWORD TypeMask,BYTE Condition);
ULONGLONG VerSetConditionMask(ULONGLONG ConditionMask, DWORD TypeMask, BYTE Condition);
//C typedef struct _RTL_CRITICAL_SECTION_DEBUG {
//C WORD Type;
//C WORD CreatorBackTraceIndex;
//C struct _RTL_CRITICAL_SECTION *CriticalSection;
//C LIST_ENTRY ProcessLocksList;
//C DWORD EntryCount;
//C DWORD ContentionCount;
//C DWORD Flags;
//C WORD CreatorBackTraceIndexHigh;
//C WORD SpareWORD;
//C } RTL_CRITICAL_SECTION_DEBUG,*PRTL_CRITICAL_SECTION_DEBUG,RTL_RESOURCE_DEBUG,*PRTL_RESOURCE_DEBUG;
struct _RTL_CRITICAL_SECTION_DEBUG
{
WORD Type;
WORD CreatorBackTraceIndex;
_RTL_CRITICAL_SECTION *CriticalSection;
LIST_ENTRY ProcessLocksList;
DWORD EntryCount;
DWORD ContentionCount;
DWORD Flags;
WORD CreatorBackTraceIndexHigh;
WORD SpareWORD;
}
alias _RTL_CRITICAL_SECTION_DEBUG RTL_CRITICAL_SECTION_DEBUG;
alias _RTL_CRITICAL_SECTION_DEBUG *PRTL_CRITICAL_SECTION_DEBUG;
alias _RTL_CRITICAL_SECTION_DEBUG RTL_RESOURCE_DEBUG;
alias _RTL_CRITICAL_SECTION_DEBUG *PRTL_RESOURCE_DEBUG;
//C typedef struct _RTL_CRITICAL_SECTION {
//C PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
//C LONG LockCount;
//C LONG RecursionCount;
//C HANDLE OwningThread;
//C HANDLE LockSemaphore;
//C ULONG_PTR SpinCount;
//C } RTL_CRITICAL_SECTION,*PRTL_CRITICAL_SECTION;
struct _RTL_CRITICAL_SECTION
{
PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
LONG LockCount;
LONG RecursionCount;
HANDLE OwningThread;
HANDLE LockSemaphore;
ULONG_PTR SpinCount;
}
alias _RTL_CRITICAL_SECTION RTL_CRITICAL_SECTION;
alias _RTL_CRITICAL_SECTION *PRTL_CRITICAL_SECTION;
//C typedef void ( *RTL_VERIFIER_DLL_LOAD_CALLBACK) (PWSTR DllName,PVOID DllBase,SIZE_T DllSize,PVOID Reserved);
alias void function(PWSTR DllName, PVOID DllBase, SIZE_T DllSize, PVOID Reserved)RTL_VERIFIER_DLL_LOAD_CALLBACK;
//C typedef void ( *RTL_VERIFIER_DLL_UNLOAD_CALLBACK) (PWSTR DllName,PVOID DllBase,SIZE_T DllSize,PVOID Reserved);
alias void function(PWSTR DllName, PVOID DllBase, SIZE_T DllSize, PVOID Reserved)RTL_VERIFIER_DLL_UNLOAD_CALLBACK;
//C typedef void ( *RTL_VERIFIER_NTDLLHEAPFREE_CALLBACK)(PVOID AllocationBase,SIZE_T AllocationSize);
alias void function(PVOID AllocationBase, SIZE_T AllocationSize)RTL_VERIFIER_NTDLLHEAPFREE_CALLBACK;
//C typedef struct _RTL_VERIFIER_THUNK_DESCRIPTOR {
//C PCHAR ThunkName;
//C PVOID ThunkOldAddress;
//C PVOID ThunkNewAddress;
//C } RTL_VERIFIER_THUNK_DESCRIPTOR,*PRTL_VERIFIER_THUNK_DESCRIPTOR;
struct _RTL_VERIFIER_THUNK_DESCRIPTOR
{
PCHAR ThunkName;
PVOID ThunkOldAddress;
PVOID ThunkNewAddress;
}
alias _RTL_VERIFIER_THUNK_DESCRIPTOR RTL_VERIFIER_THUNK_DESCRIPTOR;
alias _RTL_VERIFIER_THUNK_DESCRIPTOR *PRTL_VERIFIER_THUNK_DESCRIPTOR;
//C typedef struct _RTL_VERIFIER_DLL_DESCRIPTOR {
//C PWCHAR DllName;
//C DWORD DllFlags;
//C PVOID DllAddress;
//C PRTL_VERIFIER_THUNK_DESCRIPTOR DllThunks;
//C } RTL_VERIFIER_DLL_DESCRIPTOR,*PRTL_VERIFIER_DLL_DESCRIPTOR;
struct _RTL_VERIFIER_DLL_DESCRIPTOR
{
PWCHAR DllName;
DWORD DllFlags;
PVOID DllAddress;
PRTL_VERIFIER_THUNK_DESCRIPTOR DllThunks;
}
alias _RTL_VERIFIER_DLL_DESCRIPTOR RTL_VERIFIER_DLL_DESCRIPTOR;
alias _RTL_VERIFIER_DLL_DESCRIPTOR *PRTL_VERIFIER_DLL_DESCRIPTOR;
//C typedef struct _RTL_VERIFIER_PROVIDER_DESCRIPTOR {
//C DWORD Length;
//C PRTL_VERIFIER_DLL_DESCRIPTOR ProviderDlls;
//C RTL_VERIFIER_DLL_LOAD_CALLBACK ProviderDllLoadCallback;
//C RTL_VERIFIER_DLL_UNLOAD_CALLBACK ProviderDllUnloadCallback;
//C PWSTR VerifierImage;
//C DWORD VerifierFlags;
//C DWORD VerifierDebug;
//C PVOID RtlpGetStackTraceAddress;
//C PVOID RtlpDebugPageHeapCreate;
//C PVOID RtlpDebugPageHeapDestroy;
//C RTL_VERIFIER_NTDLLHEAPFREE_CALLBACK ProviderNtdllHeapFreeCallback;
//C } RTL_VERIFIER_PROVIDER_DESCRIPTOR,*PRTL_VERIFIER_PROVIDER_DESCRIPTOR;
struct _RTL_VERIFIER_PROVIDER_DESCRIPTOR
{
DWORD Length;
PRTL_VERIFIER_DLL_DESCRIPTOR ProviderDlls;
RTL_VERIFIER_DLL_LOAD_CALLBACK ProviderDllLoadCallback;
RTL_VERIFIER_DLL_UNLOAD_CALLBACK ProviderDllUnloadCallback;
PWSTR VerifierImage;
DWORD VerifierFlags;
DWORD VerifierDebug;
PVOID RtlpGetStackTraceAddress;
PVOID RtlpDebugPageHeapCreate;
PVOID RtlpDebugPageHeapDestroy;
RTL_VERIFIER_NTDLLHEAPFREE_CALLBACK ProviderNtdllHeapFreeCallback;
}
alias _RTL_VERIFIER_PROVIDER_DESCRIPTOR RTL_VERIFIER_PROVIDER_DESCRIPTOR;
alias _RTL_VERIFIER_PROVIDER_DESCRIPTOR *PRTL_VERIFIER_PROVIDER_DESCRIPTOR;
//C void RtlApplicationVerifierStop(ULONG_PTR Code,PSTR Message,ULONG_PTR Param1,PSTR Description1,ULONG_PTR Param2,PSTR Description2,ULONG_PTR Param3,PSTR Description3,ULONG_PTR Param4,PSTR Description4);
void RtlApplicationVerifierStop(ULONG_PTR Code, PSTR Message, ULONG_PTR Param1, PSTR Description1, ULONG_PTR Param2, PSTR Description2, ULONG_PTR Param3, PSTR Description3, ULONG_PTR Param4, PSTR Description4);
//C typedef LONG ( *PVECTORED_EXCEPTION_HANDLER)(struct _EXCEPTION_POINTERS *ExceptionInfo);
alias LONG function(_EXCEPTION_POINTERS *ExceptionInfo)PVECTORED_EXCEPTION_HANDLER;
//C typedef enum _HEAP_INFORMATION_CLASS {
//C HeapCompatibilityInformation,
//C HeapEnableTerminationOnCorruption
//C } HEAP_INFORMATION_CLASS;
enum _HEAP_INFORMATION_CLASS
{
HeapCompatibilityInformation,
HeapEnableTerminationOnCorruption,
}
alias _HEAP_INFORMATION_CLASS HEAP_INFORMATION_CLASS;
//C DWORD RtlSetHeapInformation(PVOID HeapHandle,HEAP_INFORMATION_CLASS HeapInformationClass,PVOID HeapInformation,SIZE_T HeapInformationLength);
DWORD RtlSetHeapInformation(PVOID HeapHandle, HEAP_INFORMATION_CLASS HeapInformationClass, PVOID HeapInformation, SIZE_T HeapInformationLength);
//C DWORD RtlQueryHeapInformation(PVOID HeapHandle,HEAP_INFORMATION_CLASS HeapInformationClass,PVOID HeapInformation,SIZE_T HeapInformationLength,PSIZE_T ReturnLength);
DWORD RtlQueryHeapInformation(PVOID HeapHandle, HEAP_INFORMATION_CLASS HeapInformationClass, PVOID HeapInformation, SIZE_T HeapInformationLength, PSIZE_T ReturnLength);
//C DWORD RtlMultipleAllocateHeap(PVOID HeapHandle,DWORD Flags,SIZE_T Size,DWORD Count,PVOID *Array);
DWORD RtlMultipleAllocateHeap(PVOID HeapHandle, DWORD Flags, SIZE_T Size, DWORD Count, PVOID *Array);
//C DWORD RtlMultipleFreeHeap(PVOID HeapHandle,DWORD Flags,DWORD Count,PVOID *Array);
DWORD RtlMultipleFreeHeap(PVOID HeapHandle, DWORD Flags, DWORD Count, PVOID *Array);
//C typedef void ( *WAITORTIMERCALLBACKFUNC)(PVOID,BOOLEAN);
alias void function(PVOID , BOOLEAN )WAITORTIMERCALLBACKFUNC;
//C typedef void ( *WORKERCALLBACKFUNC)(PVOID);
alias void function(PVOID )WORKERCALLBACKFUNC;
//C typedef void ( *APC_CALLBACK_FUNCTION)(DWORD ,PVOID,PVOID);
alias void function(DWORD , PVOID , PVOID )APC_CALLBACK_FUNCTION;
//C typedef
//C void
//C ( *PFLS_CALLBACK_FUNCTION)(PVOID lpFlsData);
alias void function(PVOID lpFlsData)PFLS_CALLBACK_FUNCTION;
//C typedef enum _ACTIVATION_CONTEXT_INFO_CLASS {
//C ActivationContextBasicInformation = 1,ActivationContextDetailedInformation = 2,AssemblyDetailedInformationInActivationContext = 3,FileInformationInAssemblyOfAssemblyInActivationContext = 4,MaxActivationContextInfoClass,AssemblyDetailedInformationInActivationContxt = 3,FileInformationInAssemblyOfAssemblyInActivationContxt = 4
//C } ACTIVATION_CONTEXT_INFO_CLASS;
enum _ACTIVATION_CONTEXT_INFO_CLASS
{
ActivationContextBasicInformation = 1,
ActivationContextDetailedInformation,
AssemblyDetailedInformationInActivationContext,
FileInformationInAssemblyOfAssemblyInActivationContext,
MaxActivationContextInfoClass,
AssemblyDetailedInformationInActivationContxt = 3,
FileInformationInAssemblyOfAssemblyInActivationContxt,
}
alias _ACTIVATION_CONTEXT_INFO_CLASS ACTIVATION_CONTEXT_INFO_CLASS;
//C typedef struct _ACTIVATION_CONTEXT_QUERY_INDEX {
//C DWORD ulAssemblyIndex;
//C DWORD ulFileIndexInAssembly;
//C } ACTIVATION_CONTEXT_QUERY_INDEX,*PACTIVATION_CONTEXT_QUERY_INDEX;
struct _ACTIVATION_CONTEXT_QUERY_INDEX
{
DWORD ulAssemblyIndex;
DWORD ulFileIndexInAssembly;
}
alias _ACTIVATION_CONTEXT_QUERY_INDEX ACTIVATION_CONTEXT_QUERY_INDEX;
alias _ACTIVATION_CONTEXT_QUERY_INDEX *PACTIVATION_CONTEXT_QUERY_INDEX;
//C typedef const struct _ACTIVATION_CONTEXT_QUERY_INDEX *PCACTIVATION_CONTEXT_QUERY_INDEX;
alias _ACTIVATION_CONTEXT_QUERY_INDEX *PCACTIVATION_CONTEXT_QUERY_INDEX;
//C typedef struct _ASSEMBLY_FILE_DETAILED_INFORMATION {
//C DWORD ulFlags;
//C DWORD ulFilenameLength;
//C DWORD ulPathLength;
//C PCWSTR lpFileName;
//C PCWSTR lpFilePath;
//C } ASSEMBLY_FILE_DETAILED_INFORMATION,*PASSEMBLY_FILE_DETAILED_INFORMATION;
struct _ASSEMBLY_FILE_DETAILED_INFORMATION
{
DWORD ulFlags;
DWORD ulFilenameLength;
DWORD ulPathLength;
PCWSTR lpFileName;
PCWSTR lpFilePath;
}
alias _ASSEMBLY_FILE_DETAILED_INFORMATION ASSEMBLY_FILE_DETAILED_INFORMATION;
alias _ASSEMBLY_FILE_DETAILED_INFORMATION *PASSEMBLY_FILE_DETAILED_INFORMATION;
//C typedef const ASSEMBLY_FILE_DETAILED_INFORMATION *PCASSEMBLY_FILE_DETAILED_INFORMATION;
alias ASSEMBLY_FILE_DETAILED_INFORMATION *PCASSEMBLY_FILE_DETAILED_INFORMATION;
//C typedef struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION {
//C DWORD ulFlags;
//C DWORD ulEncodedAssemblyIdentityLength;
//C DWORD ulManifestPathType;
//C DWORD ulManifestPathLength;
//C LARGE_INTEGER liManifestLastWriteTime;
//C DWORD ulPolicyPathType;
//C DWORD ulPolicyPathLength;
//C LARGE_INTEGER liPolicyLastWriteTime;
//C DWORD ulMetadataSatelliteRosterIndex;
//C DWORD ulManifestVersionMajor;
//C DWORD ulManifestVersionMinor;
//C DWORD ulPolicyVersionMajor;
//C DWORD ulPolicyVersionMinor;
//C DWORD ulAssemblyDirectoryNameLength;
//C PCWSTR lpAssemblyEncodedAssemblyIdentity;
//C PCWSTR lpAssemblyManifestPath;
//C PCWSTR lpAssemblyPolicyPath;
//C PCWSTR lpAssemblyDirectoryName;
//C DWORD ulFileCount;
//C } ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,*PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION
{
DWORD ulFlags;
DWORD ulEncodedAssemblyIdentityLength;
DWORD ulManifestPathType;
DWORD ulManifestPathLength;
LARGE_INTEGER liManifestLastWriteTime;
DWORD ulPolicyPathType;
DWORD ulPolicyPathLength;
LARGE_INTEGER liPolicyLastWriteTime;
DWORD ulMetadataSatelliteRosterIndex;
DWORD ulManifestVersionMajor;
DWORD ulManifestVersionMinor;
DWORD ulPolicyVersionMajor;
DWORD ulPolicyVersionMinor;
DWORD ulAssemblyDirectoryNameLength;
PCWSTR lpAssemblyEncodedAssemblyIdentity;
PCWSTR lpAssemblyManifestPath;
PCWSTR lpAssemblyPolicyPath;
PCWSTR lpAssemblyDirectoryName;
DWORD ulFileCount;
}
alias _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
alias _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION *PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
//C typedef const struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
alias _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
//C typedef struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION {
//C DWORD dwFlags;
//C DWORD ulFormatVersion;
//C DWORD ulAssemblyCount;
//C DWORD ulRootManifestPathType;
//C DWORD ulRootManifestPathChars;
//C DWORD ulRootConfigurationPathType;
//C DWORD ulRootConfigurationPathChars;
//C DWORD ulAppDirPathType;
//C DWORD ulAppDirPathChars;
//C PCWSTR lpRootManifestPath;
//C PCWSTR lpRootConfigurationPath;
//C PCWSTR lpAppDirPath;
//C } ACTIVATION_CONTEXT_DETAILED_INFORMATION,*PACTIVATION_CONTEXT_DETAILED_INFORMATION;
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;
}
alias _ACTIVATION_CONTEXT_DETAILED_INFORMATION ACTIVATION_CONTEXT_DETAILED_INFORMATION;
alias _ACTIVATION_CONTEXT_DETAILED_INFORMATION *PACTIVATION_CONTEXT_DETAILED_INFORMATION;
//C typedef const struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_DETAILED_INFORMATION;
alias _ACTIVATION_CONTEXT_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_DETAILED_INFORMATION;
//C typedef struct _EVENTLOGRECORD {
//C DWORD Length;
//C DWORD Reserved;
//C DWORD RecordNumber;
//C DWORD TimeGenerated;
//C DWORD TimeWritten;
//C DWORD EventID;
//C WORD EventType;
//C WORD NumStrings;
//C WORD EventCategory;
//C WORD ReservedFlags;
//C DWORD ClosingRecordNumber;
//C DWORD StringOffset;
//C DWORD UserSidLength;
//C DWORD UserSidOffset;
//C DWORD DataLength;
//C DWORD DataOffset;
//C } EVENTLOGRECORD,*PEVENTLOGRECORD;
struct _EVENTLOGRECORD
{
DWORD Length;
DWORD Reserved;
DWORD RecordNumber;
DWORD TimeGenerated;
DWORD TimeWritten;
DWORD EventID;
WORD EventType;
WORD NumStrings;
WORD EventCategory;
WORD ReservedFlags;
DWORD ClosingRecordNumber;
DWORD StringOffset;
DWORD UserSidLength;
DWORD UserSidOffset;
DWORD DataLength;
DWORD DataOffset;
}
alias _EVENTLOGRECORD EVENTLOGRECORD;
alias _EVENTLOGRECORD *PEVENTLOGRECORD;
//C typedef struct _EVENTSFORLOGFILE{
//C DWORD ulSize;
//C WCHAR szLogicalLogFile[256];
//C DWORD ulNumRecords;
//C EVENTLOGRECORD pEventLogRecords[];
//C } EVENTSFORLOGFILE,*PEVENTSFORLOGFILE;
struct _EVENTSFORLOGFILE
{
DWORD ulSize;
WCHAR [256]szLogicalLogFile;
DWORD ulNumRecords;
EVENTLOGRECORD []pEventLogRecords;
}
alias _EVENTSFORLOGFILE EVENTSFORLOGFILE;
alias _EVENTSFORLOGFILE *PEVENTSFORLOGFILE;
//C typedef struct _PACKEDEVENTINFO{
//C DWORD ulSize;
//C DWORD ulNumEventsForLogFile;
//C DWORD ulOffsets[];
//C } PACKEDEVENTINFO,*PPACKEDEVENTINFO;
struct _PACKEDEVENTINFO
{
DWORD ulSize;
DWORD ulNumEventsForLogFile;
DWORD []ulOffsets;
}
alias _PACKEDEVENTINFO PACKEDEVENTINFO;
alias _PACKEDEVENTINFO *PPACKEDEVENTINFO;
//C typedef enum _CM_SERVICE_NODE_TYPE {
//C DriverType = 0x00000001,FileSystemType = 0x00000002,Win32ServiceOwnProcess = 0x00000010,
//C Win32ServiceShareProcess = 0x00000020,AdapterType = 0x00000004,RecognizerType = 0x00000008
//C } SERVICE_NODE_TYPE;
enum _CM_SERVICE_NODE_TYPE
{
DriverType = 1,
FileSystemType,
Win32ServiceOwnProcess = 16,
Win32ServiceShareProcess = 32,
AdapterType = 4,
RecognizerType = 8,
}
alias _CM_SERVICE_NODE_TYPE SERVICE_NODE_TYPE;
//C typedef enum _CM_SERVICE_LOAD_TYPE {
//C BootLoad = 0x00000000,SystemLoad = 0x00000001,AutoLoad = 0x00000002,DemandLoad = 0x00000003,
//C DisableLoad = 0x00000004
//C } SERVICE_LOAD_TYPE;
enum _CM_SERVICE_LOAD_TYPE
{
BootLoad,
SystemLoad,
AutoLoad,
DemandLoad,
DisableLoad,
}
alias _CM_SERVICE_LOAD_TYPE SERVICE_LOAD_TYPE;
//C typedef enum _CM_ERROR_CONTROL_TYPE {
//C IgnoreError = 0x00000000,NormalError = 0x00000001,SevereError = 0x00000002,CriticalError = 0x00000003
//C } SERVICE_ERROR_TYPE;
enum _CM_ERROR_CONTROL_TYPE
{
IgnoreError,
NormalError,
SevereError,
CriticalError,
}
alias _CM_ERROR_CONTROL_TYPE SERVICE_ERROR_TYPE;
//C typedef struct _TAPE_ERASE {
//C DWORD Type;
//C BOOLEAN Immediate;
//C } TAPE_ERASE,*PTAPE_ERASE;
struct _TAPE_ERASE
{
DWORD Type;
BOOLEAN Immediate;
}
alias _TAPE_ERASE TAPE_ERASE;
alias _TAPE_ERASE *PTAPE_ERASE;
//C typedef struct _TAPE_PREPARE {
//C DWORD Operation;
//C BOOLEAN Immediate;
//C } TAPE_PREPARE,*PTAPE_PREPARE;
struct _TAPE_PREPARE
{
DWORD Operation;
BOOLEAN Immediate;
}
alias _TAPE_PREPARE TAPE_PREPARE;
alias _TAPE_PREPARE *PTAPE_PREPARE;
//C typedef struct _TAPE_WRITE_MARKS {
//C DWORD Type;
//C DWORD Count;
//C BOOLEAN Immediate;
//C } TAPE_WRITE_MARKS,*PTAPE_WRITE_MARKS;
struct _TAPE_WRITE_MARKS
{
DWORD Type;
DWORD Count;
BOOLEAN Immediate;
}
alias _TAPE_WRITE_MARKS TAPE_WRITE_MARKS;
alias _TAPE_WRITE_MARKS *PTAPE_WRITE_MARKS;
//C typedef struct _TAPE_GET_POSITION {
//C DWORD Type;
//C DWORD Partition;
//C LARGE_INTEGER Offset;
//C } TAPE_GET_POSITION,*PTAPE_GET_POSITION;
struct _TAPE_GET_POSITION
{
DWORD Type;
DWORD Partition;
LARGE_INTEGER Offset;
}
alias _TAPE_GET_POSITION TAPE_GET_POSITION;
alias _TAPE_GET_POSITION *PTAPE_GET_POSITION;
//C typedef struct _TAPE_SET_POSITION {
//C DWORD Method;
//C DWORD Partition;
//C LARGE_INTEGER Offset;
//C BOOLEAN Immediate;
//C } TAPE_SET_POSITION,*PTAPE_SET_POSITION;
struct _TAPE_SET_POSITION
{
DWORD Method;
DWORD Partition;
LARGE_INTEGER Offset;
BOOLEAN Immediate;
}
alias _TAPE_SET_POSITION TAPE_SET_POSITION;
alias _TAPE_SET_POSITION *PTAPE_SET_POSITION;
//C typedef struct _TAPE_GET_DRIVE_PARAMETERS {
//C BOOLEAN ECC;
//C BOOLEAN Compression;
//C BOOLEAN DataPadding;
//C BOOLEAN ReportSetmarks;
//C DWORD DefaultBlockSize;
//C DWORD MaximumBlockSize;
//C DWORD MinimumBlockSize;
//C DWORD MaximumPartitionCount;
//C DWORD FeaturesLow;
//C DWORD FeaturesHigh;
//C DWORD EOTWarningZoneSize;
//C } TAPE_GET_DRIVE_PARAMETERS,*PTAPE_GET_DRIVE_PARAMETERS;
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;
}
alias _TAPE_GET_DRIVE_PARAMETERS TAPE_GET_DRIVE_PARAMETERS;
alias _TAPE_GET_DRIVE_PARAMETERS *PTAPE_GET_DRIVE_PARAMETERS;
//C typedef struct _TAPE_SET_DRIVE_PARAMETERS {
//C BOOLEAN ECC;
//C BOOLEAN Compression;
//C BOOLEAN DataPadding;
//C BOOLEAN ReportSetmarks;
//C DWORD EOTWarningZoneSize;
//C } TAPE_SET_DRIVE_PARAMETERS,*PTAPE_SET_DRIVE_PARAMETERS;
struct _TAPE_SET_DRIVE_PARAMETERS
{
BOOLEAN ECC;
BOOLEAN Compression;
BOOLEAN DataPadding;
BOOLEAN ReportSetmarks;
DWORD EOTWarningZoneSize;
}
alias _TAPE_SET_DRIVE_PARAMETERS TAPE_SET_DRIVE_PARAMETERS;
alias _TAPE_SET_DRIVE_PARAMETERS *PTAPE_SET_DRIVE_PARAMETERS;
//C typedef struct _TAPE_GET_MEDIA_PARAMETERS {
//C LARGE_INTEGER Capacity;
//C LARGE_INTEGER Remaining;
//C DWORD BlockSize;
//C DWORD PartitionCount;
//C BOOLEAN WriteProtected;
//C } TAPE_GET_MEDIA_PARAMETERS,*PTAPE_GET_MEDIA_PARAMETERS;
struct _TAPE_GET_MEDIA_PARAMETERS
{
LARGE_INTEGER Capacity;
LARGE_INTEGER Remaining;
DWORD BlockSize;
DWORD PartitionCount;
BOOLEAN WriteProtected;
}
alias _TAPE_GET_MEDIA_PARAMETERS TAPE_GET_MEDIA_PARAMETERS;
alias _TAPE_GET_MEDIA_PARAMETERS *PTAPE_GET_MEDIA_PARAMETERS;
//C typedef struct _TAPE_SET_MEDIA_PARAMETERS {
//C DWORD BlockSize;
//C } TAPE_SET_MEDIA_PARAMETERS,*PTAPE_SET_MEDIA_PARAMETERS;
struct _TAPE_SET_MEDIA_PARAMETERS
{
DWORD BlockSize;
}
alias _TAPE_SET_MEDIA_PARAMETERS TAPE_SET_MEDIA_PARAMETERS;
alias _TAPE_SET_MEDIA_PARAMETERS *PTAPE_SET_MEDIA_PARAMETERS;
//C typedef struct _TAPE_CREATE_PARTITION {
//C DWORD Method;
//C DWORD Count;
//C DWORD Size;
//C } TAPE_CREATE_PARTITION,*PTAPE_CREATE_PARTITION;
struct _TAPE_CREATE_PARTITION
{
DWORD Method;
DWORD Count;
DWORD Size;
}
alias _TAPE_CREATE_PARTITION TAPE_CREATE_PARTITION;
alias _TAPE_CREATE_PARTITION *PTAPE_CREATE_PARTITION;
//C typedef struct _TAPE_WMI_OPERATIONS {
//C DWORD Method;
//C DWORD DataBufferSize;
//C PVOID DataBuffer;
//C } TAPE_WMI_OPERATIONS,*PTAPE_WMI_OPERATIONS;
struct _TAPE_WMI_OPERATIONS
{
DWORD Method;
DWORD DataBufferSize;
PVOID DataBuffer;
}
alias _TAPE_WMI_OPERATIONS TAPE_WMI_OPERATIONS;
alias _TAPE_WMI_OPERATIONS *PTAPE_WMI_OPERATIONS;
//C typedef enum _TAPE_DRIVE_PROBLEM_TYPE {
//C TapeDriveProblemNone,TapeDriveReadWriteWarning,TapeDriveReadWriteError,TapeDriveReadWarning,TapeDriveWriteWarning,TapeDriveReadError,TapeDriveWriteError,TapeDriveHardwareError,TapeDriveUnsupportedMedia,TapeDriveScsiConnectionError,TapeDriveTimetoClean,TapeDriveCleanDriveNow,TapeDriveMediaLifeExpired,TapeDriveSnappedTape
//C } TAPE_DRIVE_PROBLEM_TYPE;
enum _TAPE_DRIVE_PROBLEM_TYPE
{
TapeDriveProblemNone,
TapeDriveReadWriteWarning,
TapeDriveReadWriteError,
TapeDriveReadWarning,
TapeDriveWriteWarning,
TapeDriveReadError,
TapeDriveWriteError,
TapeDriveHardwareError,
TapeDriveUnsupportedMedia,
TapeDriveScsiConnectionError,
TapeDriveTimetoClean,
TapeDriveCleanDriveNow,
TapeDriveMediaLifeExpired,
TapeDriveSnappedTape,
}
alias _TAPE_DRIVE_PROBLEM_TYPE TAPE_DRIVE_PROBLEM_TYPE;
//C struct _TEB *NtCurrentTeb(void);
_TEB * NtCurrentTeb();
//C PVOID GetCurrentFiber(void);
PVOID GetCurrentFiber();
//C PVOID GetFiberData(void);
PVOID GetFiberData();
//C typedef UINT_PTR WPARAM;
alias uint* WPARAM;
//C typedef LONG_PTR LPARAM;
alias ulong* LPARAM;
//C typedef LONG_PTR LRESULT;
alias ulong* LRESULT;
//C struct HWND__ { int unused; }; typedef struct HWND__ *HWND;
struct HWND__
{
int unused;
}
alias HWND__ *HWND;
//C struct HHOOK__ { int unused; }; typedef struct HHOOK__ *HHOOK;
struct HHOOK__
{
int unused;
}
alias HHOOK__ *HHOOK;
//C typedef WORD ATOM;
alias WORD ATOM;
//C typedef HANDLE *SPHANDLE;
alias HANDLE *SPHANDLE;
//C typedef HANDLE *LPHANDLE;
alias HANDLE *LPHANDLE;
//C typedef HANDLE HGLOBAL;
alias HANDLE HGLOBAL;
//C typedef HANDLE HLOCAL;
alias HANDLE HLOCAL;
//C typedef HANDLE GLOBALHANDLE;
alias HANDLE GLOBALHANDLE;
//C typedef HANDLE LOCALHANDLE;
alias HANDLE LOCALHANDLE;
//C typedef INT_PTR ( *FARPROC)();
alias INT_PTR function()FARPROC;
//C typedef INT_PTR ( *NEARPROC)();
alias INT_PTR function()NEARPROC;
//C typedef INT_PTR ( *PROC)();
alias INT_PTR function()PROC;
//C typedef void *HGDIOBJ;
alias void *HGDIOBJ;
//C struct HKEY__ { int unused; }; typedef struct HKEY__ *HKEY;
struct HKEY__
{
int unused;
}
alias HKEY__ *HKEY;
//C typedef HKEY *PHKEY;
alias HKEY *PHKEY;
//C struct HACCEL__ { int unused; }; typedef struct HACCEL__ *HACCEL;
struct HACCEL__
{
int unused;
}
alias HACCEL__ *HACCEL;
//C struct HBITMAP__ { int unused; }; typedef struct HBITMAP__ *HBITMAP;
struct HBITMAP__
{
int unused;
}
alias HBITMAP__ *HBITMAP;
//C struct HBRUSH__ { int unused; }; typedef struct HBRUSH__ *HBRUSH;
struct HBRUSH__
{
int unused;
}
alias HBRUSH__ *HBRUSH;
//C struct HCOLORSPACE__ { int unused; }; typedef struct HCOLORSPACE__ *HCOLORSPACE;
struct HCOLORSPACE__
{
int unused;
}
alias HCOLORSPACE__ *HCOLORSPACE;
//C struct HDC__ { int unused; }; typedef struct HDC__ *HDC;
struct HDC__
{
int unused;
}
alias HDC__ *HDC;
//C struct HGLRC__ { int unused; }; typedef struct HGLRC__ *HGLRC;
struct HGLRC__
{
int unused;
}
alias HGLRC__ *HGLRC;
//C struct HDESK__ { int unused; }; typedef struct HDESK__ *HDESK;
struct HDESK__
{
int unused;
}
alias HDESK__ *HDESK;
//C struct HENHMETAFILE__ { int unused; }; typedef struct HENHMETAFILE__ *HENHMETAFILE;
struct HENHMETAFILE__
{
int unused;
}
alias HENHMETAFILE__ *HENHMETAFILE;
//C struct HFONT__ { int unused; }; typedef struct HFONT__ *HFONT;
struct HFONT__
{
int unused;
}
alias HFONT__ *HFONT;
//C struct HICON__ { int unused; }; typedef struct HICON__ *HICON;
struct HICON__
{
int unused;
}
alias HICON__ *HICON;
//C struct HMENU__ { int unused; }; typedef struct HMENU__ *HMENU;
struct HMENU__
{
int unused;
}
alias HMENU__ *HMENU;
//C struct HMETAFILE__ { int unused; }; typedef struct HMETAFILE__ *HMETAFILE;
struct HMETAFILE__
{
int unused;
}
alias HMETAFILE__ *HMETAFILE;
//C struct HINSTANCE__ { int unused; }; typedef struct HINSTANCE__ *HINSTANCE;
struct HINSTANCE__
{
int unused;
}
alias HINSTANCE__ *HINSTANCE;
//C typedef HINSTANCE HMODULE;
alias HINSTANCE HMODULE;
//C struct HPALETTE__ { int unused; }; typedef struct HPALETTE__ *HPALETTE;
struct HPALETTE__
{
int unused;
}
alias HPALETTE__ *HPALETTE;
//C struct HPEN__ { int unused; }; typedef struct HPEN__ *HPEN;
struct HPEN__
{
int unused;
}
alias HPEN__ *HPEN;
//C struct HRGN__ { int unused; }; typedef struct HRGN__ *HRGN;
struct HRGN__
{
int unused;
}
alias HRGN__ *HRGN;
//C struct HRSRC__ { int unused; }; typedef struct HRSRC__ *HRSRC;
struct HRSRC__
{
int unused;
}
alias HRSRC__ *HRSRC;
//C struct HSTR__ { int unused; }; typedef struct HSTR__ *HSTR;
struct HSTR__
{
int unused;
}
alias HSTR__ *HSTR;
//C struct HTASK__ { int unused; }; typedef struct HTASK__ *HTASK;
struct HTASK__
{
int unused;
}
alias HTASK__ *HTASK;
//C struct HWINSTA__ { int unused; }; typedef struct HWINSTA__ *HWINSTA;
struct HWINSTA__
{
int unused;
}
alias HWINSTA__ *HWINSTA;
//C struct HKL__ { int unused; }; typedef struct HKL__ *HKL;
struct HKL__
{
int unused;
}
alias HKL__ *HKL;
//C struct HMONITOR__ { int unused; }; typedef struct HMONITOR__ *HMONITOR;
struct HMONITOR__
{
int unused;
}
alias HMONITOR__ *HMONITOR;
//C struct HWINEVENTHOOK__ { int unused; }; typedef struct HWINEVENTHOOK__ *HWINEVENTHOOK;
struct HWINEVENTHOOK__
{
int unused;
}
alias HWINEVENTHOOK__ *HWINEVENTHOOK;
//C struct HUMPD__ { int unused; }; typedef struct HUMPD__ *HUMPD;
struct HUMPD__
{
int unused;
}
alias HUMPD__ *HUMPD;
//C typedef int HFILE;
alias int HFILE;
//C typedef HICON HCURSOR;
alias HICON HCURSOR;
//C typedef DWORD COLORREF;
alias DWORD COLORREF;
//C typedef DWORD *LPCOLORREF;
alias DWORD *LPCOLORREF;
//C typedef struct tagRECT {
//C LONG left;
//C LONG top;
//C LONG right;
//C LONG bottom;
//C } RECT,*PRECT,*NPRECT,*LPRECT;
struct tagRECT
{
LONG left;
LONG top;
LONG right;
LONG bottom;
}
alias tagRECT RECT;
alias tagRECT *PRECT;
alias tagRECT *NPRECT;
alias tagRECT *LPRECT;
//C typedef const RECT *LPCRECT;
alias RECT *LPCRECT;
//C typedef struct _RECTL {
//C LONG left;
//C LONG top;
//C LONG right;
//C LONG bottom;
//C } RECTL,*PRECTL,*LPRECTL;
struct _RECTL
{
LONG left;
LONG top;
LONG right;
LONG bottom;
}
alias _RECTL RECTL;
alias _RECTL *PRECTL;
alias _RECTL *LPRECTL;
//C typedef const RECTL *LPCRECTL;
alias RECTL *LPCRECTL;
//C typedef struct tagPOINT {
//C LONG x;
//C LONG y;
//C } POINT,*PPOINT,*NPPOINT,*LPPOINT;
struct tagPOINT
{
LONG x;
LONG y;
}
alias tagPOINT POINT;
alias tagPOINT *PPOINT;
alias tagPOINT *NPPOINT;
alias tagPOINT *LPPOINT;
//C typedef struct _POINTL {
//C LONG x;
//C LONG y;
//C } POINTL,*PPOINTL;
struct _POINTL
{
LONG x;
LONG y;
}
alias _POINTL POINTL;
alias _POINTL *PPOINTL;
//C typedef struct tagSIZE {
//C LONG cx;
//C LONG cy;
//C } SIZE,*PSIZE,*LPSIZE;
struct tagSIZE
{
LONG cx;
LONG cy;
}
alias tagSIZE SIZE;
alias tagSIZE *PSIZE;
alias tagSIZE *LPSIZE;
//C typedef SIZE SIZEL;
alias SIZE SIZEL;
//C typedef SIZE *PSIZEL,*LPSIZEL;
alias SIZE *PSIZEL;
alias SIZE *LPSIZEL;
//C typedef struct tagPOINTS {
//C SHORT x;
//C SHORT y;
//C } POINTS,*PPOINTS,*LPPOINTS;
struct tagPOINTS
{
SHORT x;
SHORT y;
}
alias tagPOINTS POINTS;
alias tagPOINTS *PPOINTS;
alias tagPOINTS *LPPOINTS;
//C typedef struct _FILETIME {
//C DWORD dwLowDateTime;
//C DWORD dwHighDateTime;
//C } FILETIME,*PFILETIME,*LPFILETIME;
struct _FILETIME
{
DWORD dwLowDateTime;
DWORD dwHighDateTime;
}
alias _FILETIME FILETIME;
alias _FILETIME *PFILETIME;
alias _FILETIME *LPFILETIME;
//C typedef struct _OVERLAPPED {
//C ULONG_PTR Internal;
//C ULONG_PTR InternalHigh;
//C union {
//C struct {
//C DWORD Offset;
//C DWORD OffsetHigh;
//C };
struct _N53
{
DWORD Offset;
DWORD OffsetHigh;
}
//C PVOID Pointer;
//C };
union _N52
{
DWORD Offset;
DWORD OffsetHigh;
PVOID Pointer;
}
//C HANDLE hEvent;
//C } OVERLAPPED,*LPOVERLAPPED;
struct _OVERLAPPED
{
ULONG_PTR Internal;
ULONG_PTR InternalHigh;
DWORD Offset;
DWORD OffsetHigh;
PVOID Pointer;
HANDLE hEvent;
}
alias _OVERLAPPED OVERLAPPED;
alias _OVERLAPPED *LPOVERLAPPED;
//C typedef struct _SECURITY_ATTRIBUTES {
//C DWORD nLength;
//C LPVOID lpSecurityDescriptor;
//C WINBOOL bInheritHandle;
//C } SECURITY_ATTRIBUTES,*PSECURITY_ATTRIBUTES,*LPSECURITY_ATTRIBUTES;
struct _SECURITY_ATTRIBUTES
{
DWORD nLength;
LPVOID lpSecurityDescriptor;
WINBOOL bInheritHandle;
}
alias _SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES;
alias _SECURITY_ATTRIBUTES *PSECURITY_ATTRIBUTES;
alias _SECURITY_ATTRIBUTES *LPSECURITY_ATTRIBUTES;
//C typedef struct _PROCESS_INFORMATION {
//C HANDLE hProcess;
//C HANDLE hThread;
//C DWORD dwProcessId;
//C DWORD dwThreadId;
//C } PROCESS_INFORMATION,*PPROCESS_INFORMATION,*LPPROCESS_INFORMATION;
struct _PROCESS_INFORMATION
{
HANDLE hProcess;
HANDLE hThread;
DWORD dwProcessId;
DWORD dwThreadId;
}
alias _PROCESS_INFORMATION PROCESS_INFORMATION;
alias _PROCESS_INFORMATION *PPROCESS_INFORMATION;
alias _PROCESS_INFORMATION *LPPROCESS_INFORMATION;
//C typedef struct _SYSTEMTIME {
//C WORD wYear;
//C WORD wMonth;
//C WORD wDayOfWeek;
//C WORD wDay;
//C WORD wHour;
//C WORD wMinute;
//C WORD wSecond;
//C WORD wMilliseconds;
//C } SYSTEMTIME,*PSYSTEMTIME,*LPSYSTEMTIME;
struct _SYSTEMTIME
{
WORD wYear;
WORD wMonth;
WORD wDayOfWeek;
WORD wDay;
WORD wHour;
WORD wMinute;
WORD wSecond;
WORD wMilliseconds;
}
alias _SYSTEMTIME SYSTEMTIME;
alias _SYSTEMTIME *PSYSTEMTIME;
alias _SYSTEMTIME *LPSYSTEMTIME;
//C typedef DWORD ( *PTHREAD_START_ROUTINE)(LPVOID lpThreadParameter);
alias DWORD function(LPVOID lpThreadParameter)PTHREAD_START_ROUTINE;
//C typedef PTHREAD_START_ROUTINE LPTHREAD_START_ROUTINE;
alias PTHREAD_START_ROUTINE LPTHREAD_START_ROUTINE;
//C typedef void ( *PFIBER_START_ROUTINE)(LPVOID lpFiberParameter);
alias void function(LPVOID lpFiberParameter)PFIBER_START_ROUTINE;
//C typedef PFIBER_START_ROUTINE LPFIBER_START_ROUTINE;
alias PFIBER_START_ROUTINE LPFIBER_START_ROUTINE;
//C typedef RTL_CRITICAL_SECTION CRITICAL_SECTION;
alias RTL_CRITICAL_SECTION CRITICAL_SECTION;
//C typedef PRTL_CRITICAL_SECTION PCRITICAL_SECTION;
alias PRTL_CRITICAL_SECTION PCRITICAL_SECTION;
//C typedef PRTL_CRITICAL_SECTION LPCRITICAL_SECTION;
alias PRTL_CRITICAL_SECTION LPCRITICAL_SECTION;
//C typedef RTL_CRITICAL_SECTION_DEBUG CRITICAL_SECTION_DEBUG;
alias RTL_CRITICAL_SECTION_DEBUG CRITICAL_SECTION_DEBUG;
//C typedef PRTL_CRITICAL_SECTION_DEBUG PCRITICAL_SECTION_DEBUG;
alias PRTL_CRITICAL_SECTION_DEBUG PCRITICAL_SECTION_DEBUG;
//C typedef PRTL_CRITICAL_SECTION_DEBUG LPCRITICAL_SECTION_DEBUG;
alias PRTL_CRITICAL_SECTION_DEBUG LPCRITICAL_SECTION_DEBUG;
//C PVOID EncodePointer(PVOID Ptr);
PVOID EncodePointer(PVOID Ptr);
//C PVOID DecodePointer(PVOID Ptr);
PVOID DecodePointer(PVOID Ptr);
//C PVOID EncodeSystemPointer(PVOID Ptr);
PVOID EncodeSystemPointer(PVOID Ptr);
//C PVOID DecodeSystemPointer(PVOID Ptr);
PVOID DecodeSystemPointer(PVOID Ptr);
//C typedef LPVOID LPLDT_ENTRY;
alias LPVOID LPLDT_ENTRY;
//C typedef struct _COMMPROP {
//C WORD wPacketLength;
//C WORD wPacketVersion;
//C DWORD dwServiceMask;
//C DWORD dwReserved1;
//C DWORD dwMaxTxQueue;
//C DWORD dwMaxRxQueue;
//C DWORD dwMaxBaud;
//C DWORD dwProvSubType;
//C DWORD dwProvCapabilities;
//C DWORD dwSettableParams;
//C DWORD dwSettableBaud;
//C WORD wSettableData;
//C WORD wSettableStopParity;
//C DWORD dwCurrentTxQueue;
//C DWORD dwCurrentRxQueue;
//C DWORD dwProvSpec1;
//C DWORD dwProvSpec2;
//C WCHAR wcProvChar[1];
//C } COMMPROP,*LPCOMMPROP;
struct _COMMPROP
{
WORD wPacketLength;
WORD wPacketVersion;
DWORD dwServiceMask;
DWORD dwReserved1;
DWORD dwMaxTxQueue;
DWORD dwMaxRxQueue;
DWORD dwMaxBaud;
DWORD dwProvSubType;
DWORD dwProvCapabilities;
DWORD dwSettableParams;
DWORD dwSettableBaud;
WORD wSettableData;
WORD wSettableStopParity;
DWORD dwCurrentTxQueue;
DWORD dwCurrentRxQueue;
DWORD dwProvSpec1;
DWORD dwProvSpec2;
WCHAR [1]wcProvChar;
}
alias _COMMPROP COMMPROP;
alias _COMMPROP *LPCOMMPROP;
//C typedef struct _COMSTAT {
//C DWORD fCtsHold : 1;
//C DWORD fDsrHold : 1;
//C DWORD fRlsdHold : 1;
//C DWORD fXoffHold : 1;
//C DWORD fXoffSent : 1;
//C DWORD fEof : 1;
//C DWORD fTxim : 1;
//C DWORD fReserved : 25;
//C DWORD cbInQue;
//C DWORD cbOutQue;
//C } COMSTAT,*LPCOMSTAT;
struct _COMSTAT
{
DWORD __bitfield1;
DWORD fCtsHold() { return (__bitfield1 >> 0) & 0x1; }
DWORD fDsrHold() { return (__bitfield1 >> 1) & 0x1; }
DWORD fRlsdHold() { return (__bitfield1 >> 2) & 0x1; }
DWORD fXoffHold() { return (__bitfield1 >> 3) & 0x1; }
DWORD fXoffSent() { return (__bitfield1 >> 4) & 0x1; }
DWORD fEof() { return (__bitfield1 >> 5) & 0x1; }
DWORD fTxim() { return (__bitfield1 >> 6) & 0x1; }
DWORD fReserved() { return (__bitfield1 >> 7) & 0x1ffffff; }
DWORD cbInQue;
DWORD cbOutQue;
}
alias _COMSTAT COMSTAT;
alias _COMSTAT *LPCOMSTAT;
//C typedef struct _DCB {
//C DWORD DCBlength;
//C DWORD BaudRate;
//C DWORD fBinary: 1;
//C DWORD fParity: 1;
//C DWORD fOutxCtsFlow:1;
//C DWORD fOutxDsrFlow:1;
//C DWORD fDtrControl:2;
//C DWORD fDsrSensitivity:1;
//C DWORD fTXContinueOnXoff: 1;
//C DWORD fOutX: 1;
//C DWORD fInX: 1;
//C DWORD fErrorChar: 1;
//C DWORD fNull: 1;
//C DWORD fRtsControl:2;
//C DWORD fAbortOnError:1;
//C DWORD fDummy2:17;
//C WORD wReserved;
//C WORD XonLim;
//C WORD XoffLim;
//C BYTE ByteSize;
//C BYTE Parity;
//C BYTE StopBits;
//C char XonChar;
//C char XoffChar;
//C char ErrorChar;
//C char EofChar;
//C char EvtChar;
//C WORD wReserved1;
//C } DCB,*LPDCB;
struct _DCB
{
DWORD DCBlength;
DWORD BaudRate;
DWORD __bitfield1;
DWORD fBinary() { return (__bitfield1 >> 0) & 0x1; }
DWORD fParity() { return (__bitfield1 >> 1) & 0x1; }
DWORD fOutxCtsFlow() { return (__bitfield1 >> 2) & 0x1; }
DWORD fOutxDsrFlow() { return (__bitfield1 >> 3) & 0x1; }
DWORD fDtrControl() { return (__bitfield1 >> 4) & 0x3; }
DWORD fDsrSensitivity() { return (__bitfield1 >> 6) & 0x1; }
DWORD fTXContinueOnXoff() { return (__bitfield1 >> 7) & 0x1; }
DWORD fOutX() { return (__bitfield1 >> 8) & 0x1; }
DWORD fInX() { return (__bitfield1 >> 9) & 0x1; }
DWORD fErrorChar() { return (__bitfield1 >> 10) & 0x1; }
DWORD fNull() { return (__bitfield1 >> 11) & 0x1; }
DWORD fRtsControl() { return (__bitfield1 >> 12) & 0x3; }
DWORD fAbortOnError() { return (__bitfield1 >> 14) & 0x1; }
DWORD fDummy2() { return (__bitfield1 >> 15) & 0x1ffff; }
WORD wReserved;
WORD XonLim;
WORD XoffLim;
BYTE ByteSize;
BYTE Parity;
BYTE StopBits;
char XonChar;
char XoffChar;
char ErrorChar;
char EofChar;
char EvtChar;
WORD wReserved1;
}
alias _DCB DCB;
alias _DCB *LPDCB;
//C typedef struct _COMMTIMEOUTS {
//C DWORD ReadIntervalTimeout;
//C DWORD ReadTotalTimeoutMultiplier;
//C DWORD ReadTotalTimeoutConstant;
//C DWORD WriteTotalTimeoutMultiplier;
//C DWORD WriteTotalTimeoutConstant;
//C } COMMTIMEOUTS,*LPCOMMTIMEOUTS;
struct _COMMTIMEOUTS
{
DWORD ReadIntervalTimeout;
DWORD ReadTotalTimeoutMultiplier;
DWORD ReadTotalTimeoutConstant;
DWORD WriteTotalTimeoutMultiplier;
DWORD WriteTotalTimeoutConstant;
}
alias _COMMTIMEOUTS COMMTIMEOUTS;
alias _COMMTIMEOUTS *LPCOMMTIMEOUTS;
//C typedef struct _COMMCONFIG {
//C DWORD dwSize;
//C WORD wVersion;
//C WORD wReserved;
//C DCB dcb;
//C DWORD dwProviderSubType;
//C DWORD dwProviderOffset;
//C DWORD dwProviderSize;
//C WCHAR wcProviderData[1];
//C } COMMCONFIG,*LPCOMMCONFIG;
struct _COMMCONFIG
{
DWORD dwSize;
WORD wVersion;
WORD wReserved;
DCB dcb;
DWORD dwProviderSubType;
DWORD dwProviderOffset;
DWORD dwProviderSize;
WCHAR [1]wcProviderData;
}
alias _COMMCONFIG COMMCONFIG;
alias _COMMCONFIG *LPCOMMCONFIG;
//C typedef struct _SYSTEM_INFO {
//C union {
//C DWORD dwOemId;
//C struct {
//C WORD wProcessorArchitecture;
//C WORD wReserved;
//C } ;
struct _N55
{
WORD wProcessorArchitecture;
WORD wReserved;
}
//C } ;
union _N54
{
DWORD dwOemId;
WORD wProcessorArchitecture;
WORD wReserved;
}
//C DWORD dwPageSize;
//C LPVOID lpMinimumApplicationAddress;
//C LPVOID lpMaximumApplicationAddress;
//C DWORD_PTR dwActiveProcessorMask;
//C DWORD dwNumberOfProcessors;
//C DWORD dwProcessorType;
//C DWORD dwAllocationGranularity;
//C WORD wProcessorLevel;
//C WORD wProcessorRevision;
//C } SYSTEM_INFO,*LPSYSTEM_INFO;
struct _SYSTEM_INFO
{
DWORD dwOemId;
WORD wProcessorArchitecture;
WORD wReserved;
DWORD dwPageSize;
LPVOID lpMinimumApplicationAddress;
LPVOID lpMaximumApplicationAddress;
DWORD_PTR dwActiveProcessorMask;
DWORD dwNumberOfProcessors;
DWORD dwProcessorType;
DWORD dwAllocationGranularity;
WORD wProcessorLevel;
WORD wProcessorRevision;
}
alias _SYSTEM_INFO SYSTEM_INFO;
alias _SYSTEM_INFO *LPSYSTEM_INFO;
//C typedef struct _MEMORYSTATUS {
//C DWORD dwLength;
//C DWORD dwMemoryLoad;
//C SIZE_T dwTotalPhys;
//C SIZE_T dwAvailPhys;
//C SIZE_T dwTotalPageFile;
//C SIZE_T dwAvailPageFile;
//C SIZE_T dwTotalVirtual;
//C SIZE_T dwAvailVirtual;
//C } MEMORYSTATUS,*LPMEMORYSTATUS;
struct _MEMORYSTATUS
{
DWORD dwLength;
DWORD dwMemoryLoad;
SIZE_T dwTotalPhys;
SIZE_T dwAvailPhys;
SIZE_T dwTotalPageFile;
SIZE_T dwAvailPageFile;
SIZE_T dwTotalVirtual;
SIZE_T dwAvailVirtual;
}
alias _MEMORYSTATUS MEMORYSTATUS;
alias _MEMORYSTATUS *LPMEMORYSTATUS;
//C typedef struct _EXCEPTION_DEBUG_INFO {
//C EXCEPTION_RECORD ExceptionRecord;
//C DWORD dwFirstChance;
//C } EXCEPTION_DEBUG_INFO,*LPEXCEPTION_DEBUG_INFO;
struct _EXCEPTION_DEBUG_INFO
{
EXCEPTION_RECORD ExceptionRecord;
DWORD dwFirstChance;
}
alias _EXCEPTION_DEBUG_INFO EXCEPTION_DEBUG_INFO;
alias _EXCEPTION_DEBUG_INFO *LPEXCEPTION_DEBUG_INFO;
//C typedef struct _CREATE_THREAD_DEBUG_INFO {
//C HANDLE hThread;
//C LPVOID lpThreadLocalBase;
//C LPTHREAD_START_ROUTINE lpStartAddress;
//C } CREATE_THREAD_DEBUG_INFO,*LPCREATE_THREAD_DEBUG_INFO;
struct _CREATE_THREAD_DEBUG_INFO
{
HANDLE hThread;
LPVOID lpThreadLocalBase;
LPTHREAD_START_ROUTINE lpStartAddress;
}
alias _CREATE_THREAD_DEBUG_INFO CREATE_THREAD_DEBUG_INFO;
alias _CREATE_THREAD_DEBUG_INFO *LPCREATE_THREAD_DEBUG_INFO;
//C typedef struct _CREATE_PROCESS_DEBUG_INFO {
//C HANDLE hFile;
//C HANDLE hProcess;
//C HANDLE hThread;
//C LPVOID lpBaseOfImage;
//C DWORD dwDebugInfoFileOffset;
//C DWORD nDebugInfoSize;
//C LPVOID lpThreadLocalBase;
//C LPTHREAD_START_ROUTINE lpStartAddress;
//C LPVOID lpImageName;
//C WORD fUnicode;
//C } CREATE_PROCESS_DEBUG_INFO,*LPCREATE_PROCESS_DEBUG_INFO;
struct _CREATE_PROCESS_DEBUG_INFO
{
HANDLE hFile;
HANDLE hProcess;
HANDLE hThread;
LPVOID lpBaseOfImage;
DWORD dwDebugInfoFileOffset;
DWORD nDebugInfoSize;
LPVOID lpThreadLocalBase;
LPTHREAD_START_ROUTINE lpStartAddress;
LPVOID lpImageName;
WORD fUnicode;
}
alias _CREATE_PROCESS_DEBUG_INFO CREATE_PROCESS_DEBUG_INFO;
alias _CREATE_PROCESS_DEBUG_INFO *LPCREATE_PROCESS_DEBUG_INFO;
//C typedef struct _EXIT_THREAD_DEBUG_INFO {
//C DWORD dwExitCode;
//C } EXIT_THREAD_DEBUG_INFO,*LPEXIT_THREAD_DEBUG_INFO;
struct _EXIT_THREAD_DEBUG_INFO
{
DWORD dwExitCode;
}
alias _EXIT_THREAD_DEBUG_INFO EXIT_THREAD_DEBUG_INFO;
alias _EXIT_THREAD_DEBUG_INFO *LPEXIT_THREAD_DEBUG_INFO;
//C typedef struct _EXIT_PROCESS_DEBUG_INFO {
//C DWORD dwExitCode;
//C } EXIT_PROCESS_DEBUG_INFO,*LPEXIT_PROCESS_DEBUG_INFO;
struct _EXIT_PROCESS_DEBUG_INFO
{
DWORD dwExitCode;
}
alias _EXIT_PROCESS_DEBUG_INFO EXIT_PROCESS_DEBUG_INFO;
alias _EXIT_PROCESS_DEBUG_INFO *LPEXIT_PROCESS_DEBUG_INFO;
//C typedef struct _LOAD_DLL_DEBUG_INFO {
//C HANDLE hFile;
//C LPVOID lpBaseOfDll;
//C DWORD dwDebugInfoFileOffset;
//C DWORD nDebugInfoSize;
//C LPVOID lpImageName;
//C WORD fUnicode;
//C } LOAD_DLL_DEBUG_INFO,*LPLOAD_DLL_DEBUG_INFO;
struct _LOAD_DLL_DEBUG_INFO
{
HANDLE hFile;
LPVOID lpBaseOfDll;
DWORD dwDebugInfoFileOffset;
DWORD nDebugInfoSize;
LPVOID lpImageName;
WORD fUnicode;
}
alias _LOAD_DLL_DEBUG_INFO LOAD_DLL_DEBUG_INFO;
alias _LOAD_DLL_DEBUG_INFO *LPLOAD_DLL_DEBUG_INFO;
//C typedef struct _UNLOAD_DLL_DEBUG_INFO {
//C LPVOID lpBaseOfDll;
//C } UNLOAD_DLL_DEBUG_INFO,*LPUNLOAD_DLL_DEBUG_INFO;
struct _UNLOAD_DLL_DEBUG_INFO
{
LPVOID lpBaseOfDll;
}
alias _UNLOAD_DLL_DEBUG_INFO UNLOAD_DLL_DEBUG_INFO;
alias _UNLOAD_DLL_DEBUG_INFO *LPUNLOAD_DLL_DEBUG_INFO;
//C typedef struct _OUTPUT_DEBUG_STRING_INFO {
//C LPSTR lpDebugStringData;
//C WORD fUnicode;
//C WORD nDebugStringLength;
//C } OUTPUT_DEBUG_STRING_INFO,*LPOUTPUT_DEBUG_STRING_INFO;
struct _OUTPUT_DEBUG_STRING_INFO
{
LPSTR lpDebugStringData;
WORD fUnicode;
WORD nDebugStringLength;
}
alias _OUTPUT_DEBUG_STRING_INFO OUTPUT_DEBUG_STRING_INFO;
alias _OUTPUT_DEBUG_STRING_INFO *LPOUTPUT_DEBUG_STRING_INFO;
//C typedef struct _RIP_INFO {
//C DWORD dwError;
//C DWORD dwType;
//C } RIP_INFO,*LPRIP_INFO;
struct _RIP_INFO
{
DWORD dwError;
DWORD dwType;
}
alias _RIP_INFO RIP_INFO;
alias _RIP_INFO *LPRIP_INFO;
//C typedef struct _DEBUG_EVENT {
//C DWORD dwDebugEventCode;
//C DWORD dwProcessId;
//C DWORD dwThreadId;
//C union {
//C EXCEPTION_DEBUG_INFO Exception;
//C CREATE_THREAD_DEBUG_INFO CreateThread;
//C CREATE_PROCESS_DEBUG_INFO CreateProcessInfo;
//C EXIT_THREAD_DEBUG_INFO ExitThread;
//C EXIT_PROCESS_DEBUG_INFO ExitProcess;
//C LOAD_DLL_DEBUG_INFO LoadDll;
//C UNLOAD_DLL_DEBUG_INFO UnloadDll;
//C OUTPUT_DEBUG_STRING_INFO DebugString;
//C RIP_INFO RipInfo;
//C } u;
union _N56
{
EXCEPTION_DEBUG_INFO Exception;
CREATE_THREAD_DEBUG_INFO CreateThread;
CREATE_PROCESS_DEBUG_INFO CreateProcessInfo;
EXIT_THREAD_DEBUG_INFO ExitThread;
EXIT_PROCESS_DEBUG_INFO ExitProcess;
LOAD_DLL_DEBUG_INFO LoadDll;
UNLOAD_DLL_DEBUG_INFO UnloadDll;
OUTPUT_DEBUG_STRING_INFO DebugString;
RIP_INFO RipInfo;
}
//C } DEBUG_EVENT,*LPDEBUG_EVENT;
struct _DEBUG_EVENT
{
DWORD dwDebugEventCode;
DWORD dwProcessId;
DWORD dwThreadId;
_N56 u;
}
alias _DEBUG_EVENT DEBUG_EVENT;
alias _DEBUG_EVENT *LPDEBUG_EVENT;
//C typedef PCONTEXT LPCONTEXT;
alias PCONTEXT LPCONTEXT;
//C typedef PEXCEPTION_RECORD LPEXCEPTION_RECORD;
alias PEXCEPTION_RECORD LPEXCEPTION_RECORD;
//C typedef PEXCEPTION_POINTERS LPEXCEPTION_POINTERS;
alias PEXCEPTION_POINTERS LPEXCEPTION_POINTERS;
//C typedef struct _OFSTRUCT {
//C BYTE cBytes;
//C BYTE fFixedDisk;
//C WORD nErrCode;
//C WORD Reserved1;
//C WORD Reserved2;
//C CHAR szPathName[128];
//C } OFSTRUCT,*LPOFSTRUCT,*POFSTRUCT;
struct _OFSTRUCT
{
BYTE cBytes;
BYTE fFixedDisk;
WORD nErrCode;
WORD Reserved1;
WORD Reserved2;
CHAR [128]szPathName;
}
alias _OFSTRUCT OFSTRUCT;
alias _OFSTRUCT *LPOFSTRUCT;
alias _OFSTRUCT *POFSTRUCT;
//C LONG _InterlockedIncrement(LONG volatile *Addend);
LONG _InterlockedIncrement(LONG *Addend);
//C LONG _InterlockedDecrement(LONG volatile *Addend);
LONG _InterlockedDecrement(LONG *Addend);
//C LONG _InterlockedExchange(LONG volatile *Target,LONG Value);
LONG _InterlockedExchange(LONG *Target, LONG Value);
//C LONG _InterlockedExchangeAdd(LONG volatile *Addend,LONG Value);
LONG _InterlockedExchangeAdd(LONG *Addend, LONG Value);
//C LONG _InterlockedCompareExchange(LONG volatile *Destination,LONG ExChange,LONG Comperand);
LONG _InterlockedCompareExchange(LONG *Destination, LONG ExChange, LONG Comperand);
//C PVOID _InterlockedCompareExchangePointer(PVOID volatile *Destination,PVOID Exchange,PVOID Comperand);
PVOID _InterlockedCompareExchangePointer(PVOID *Destination, PVOID Exchange, PVOID Comperand);
//C PVOID _InterlockedExchangePointer(PVOID volatile *Target,PVOID Value);
PVOID _InterlockedExchangePointer(PVOID *Target, PVOID Value);
//C LONG64 _InterlockedAnd64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedAnd64(LONG64 *Destination, LONG64 Value);
//C LONG64 _InterlockedOr64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedOr64(LONG64 *Destination, LONG64 Value);
//C LONG64 _InterlockedXor64(LONG64 volatile *Destination,LONG64 Value);
LONG64 _InterlockedXor64(LONG64 *Destination, LONG64 Value);
//C LONG64 _InterlockedIncrement64(LONG64 volatile *Addend);
LONG64 _InterlockedIncrement64(LONG64 *Addend);
//C LONG64 _InterlockedDecrement64(LONG64 volatile *Addend);
LONG64 _InterlockedDecrement64(LONG64 *Addend);
//C LONG64 _InterlockedExchange64(LONG64 volatile *Target,LONG64 Value);
LONG64 _InterlockedExchange64(LONG64 *Target, LONG64 Value);
//C LONG64 _InterlockedExchangeAdd64(LONG64 volatile *Addend,LONG64 Value);
LONG64 _InterlockedExchangeAdd64(LONG64 *Addend, LONG64 Value);
//C LONG64 _InterlockedCompareExchange64(LONG64 volatile *Destination,LONG64 ExChange,LONG64 Comperand);
LONG64 _InterlockedCompareExchange64(LONG64 *Destination, LONG64 ExChange, LONG64 Comperand);
//C void InitializeSListHead(PSLIST_HEADER ListHead);
void InitializeSListHead(PSLIST_HEADER ListHead);
//C PSLIST_ENTRY InterlockedPopEntrySList(PSLIST_HEADER ListHead);
PSLIST_ENTRY InterlockedPopEntrySList(PSLIST_HEADER ListHead);
//C PSLIST_ENTRY InterlockedPushEntrySList(PSLIST_HEADER ListHead,PSLIST_ENTRY ListEntry);
PSLIST_ENTRY InterlockedPushEntrySList(PSLIST_HEADER ListHead, PSLIST_ENTRY ListEntry);
//C PSLIST_ENTRY InterlockedFlushSList(PSLIST_HEADER ListHead);
PSLIST_ENTRY InterlockedFlushSList(PSLIST_HEADER ListHead);
//C USHORT QueryDepthSList(PSLIST_HEADER ListHead);
USHORT QueryDepthSList(PSLIST_HEADER ListHead);
//C WINBOOL FreeResource(HGLOBAL hResData);
WINBOOL FreeResource(HGLOBAL hResData);
//C LPVOID LockResource(HGLOBAL hResData);
LPVOID LockResource(HGLOBAL hResData);
//C int WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nShowCmd);
extern (Windows):
//C int wWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPWSTR lpCmdLine,int nShowCmd);
//C WINBOOL FreeLibrary(HMODULE hLibModule);
extern (System):
WINBOOL FreeLibrary(HMODULE hLibModule);
//C void FreeLibraryAndExitThread(HMODULE hLibModule,DWORD dwExitCode);
void FreeLibraryAndExitThread(HMODULE hLibModule, DWORD dwExitCode);
//C WINBOOL DisableThreadLibraryCalls(HMODULE hLibModule);
WINBOOL DisableThreadLibraryCalls(HMODULE hLibModule);
//C FARPROC GetProcAddress(HMODULE hModule,LPCSTR lpProcName);
FARPROC GetProcAddress(HMODULE hModule, LPCSTR lpProcName);
//C DWORD GetVersion(void);
DWORD GetVersion();
//C HGLOBAL GlobalAlloc(UINT uFlags,SIZE_T dwBytes);
HGLOBAL GlobalAlloc(UINT uFlags, SIZE_T dwBytes);
//C HGLOBAL GlobalReAlloc(HGLOBAL hMem,SIZE_T dwBytes,UINT uFlags);
HGLOBAL GlobalReAlloc(HGLOBAL hMem, SIZE_T dwBytes, UINT uFlags);
//C SIZE_T GlobalSize(HGLOBAL hMem);
SIZE_T GlobalSize(HGLOBAL hMem);
//C UINT GlobalFlags(HGLOBAL hMem);
UINT GlobalFlags(HGLOBAL hMem);
//C LPVOID GlobalLock(HGLOBAL hMem);
LPVOID GlobalLock(HGLOBAL hMem);
//C HGLOBAL GlobalHandle(LPCVOID pMem);
HGLOBAL GlobalHandle(LPCVOID pMem);
//C WINBOOL GlobalUnlock(HGLOBAL hMem);
WINBOOL GlobalUnlock(HGLOBAL hMem);
//C HGLOBAL GlobalFree(HGLOBAL hMem);
HGLOBAL GlobalFree(HGLOBAL hMem);
//C SIZE_T GlobalCompact(DWORD dwMinFree);
SIZE_T GlobalCompact(DWORD dwMinFree);
//C void GlobalFix(HGLOBAL hMem);
void GlobalFix(HGLOBAL hMem);
//C void GlobalUnfix(HGLOBAL hMem);
void GlobalUnfix(HGLOBAL hMem);
//C LPVOID GlobalWire(HGLOBAL hMem);
LPVOID GlobalWire(HGLOBAL hMem);
//C WINBOOL GlobalUnWire(HGLOBAL hMem);
WINBOOL GlobalUnWire(HGLOBAL hMem);
//C void GlobalMemoryStatus(LPMEMORYSTATUS lpBuffer);
void GlobalMemoryStatus(LPMEMORYSTATUS lpBuffer);
//C typedef struct _MEMORYSTATUSEX {
//C DWORD dwLength;
//C DWORD dwMemoryLoad;
//C DWORDLONG ullTotalPhys;
//C DWORDLONG ullAvailPhys;
//C DWORDLONG ullTotalPageFile;
//C DWORDLONG ullAvailPageFile;
//C DWORDLONG ullTotalVirtual;
//C DWORDLONG ullAvailVirtual;
//C DWORDLONG ullAvailExtendedVirtual;
//C } MEMORYSTATUSEX,*LPMEMORYSTATUSEX;
struct _MEMORYSTATUSEX
{
DWORD dwLength;
DWORD dwMemoryLoad;
DWORDLONG ullTotalPhys;
DWORDLONG ullAvailPhys;
DWORDLONG ullTotalPageFile;
DWORDLONG ullAvailPageFile;
DWORDLONG ullTotalVirtual;
DWORDLONG ullAvailVirtual;
DWORDLONG ullAvailExtendedVirtual;
}
alias _MEMORYSTATUSEX MEMORYSTATUSEX;
alias _MEMORYSTATUSEX *LPMEMORYSTATUSEX;
//C WINBOOL GlobalMemoryStatusEx(LPMEMORYSTATUSEX lpBuffer);
WINBOOL GlobalMemoryStatusEx(LPMEMORYSTATUSEX lpBuffer);
//C HLOCAL LocalAlloc(UINT uFlags,SIZE_T uBytes);
HLOCAL LocalAlloc(UINT uFlags, SIZE_T uBytes);
//C HLOCAL LocalReAlloc(HLOCAL hMem,SIZE_T uBytes,UINT uFlags);
HLOCAL LocalReAlloc(HLOCAL hMem, SIZE_T uBytes, UINT uFlags);
//C LPVOID LocalLock(HLOCAL hMem);
LPVOID LocalLock(HLOCAL hMem);
//C HLOCAL LocalHandle(LPCVOID pMem);
HLOCAL LocalHandle(LPCVOID pMem);
//C WINBOOL LocalUnlock(HLOCAL hMem);
WINBOOL LocalUnlock(HLOCAL hMem);
//C SIZE_T LocalSize(HLOCAL hMem);
SIZE_T LocalSize(HLOCAL hMem);
//C UINT LocalFlags(HLOCAL hMem);
UINT LocalFlags(HLOCAL hMem);
//C HLOCAL LocalFree(HLOCAL hMem);
HLOCAL LocalFree(HLOCAL hMem);
//C SIZE_T LocalShrink(HLOCAL hMem,UINT cbNewSize);
SIZE_T LocalShrink(HLOCAL hMem, UINT cbNewSize);
//C SIZE_T LocalCompact(UINT uMinFree);
SIZE_T LocalCompact(UINT uMinFree);
//C WINBOOL FlushInstructionCache(HANDLE hProcess,LPCVOID lpBaseAddress,SIZE_T dwSize);
WINBOOL FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize);
//C LPVOID VirtualAlloc(LPVOID lpAddress,SIZE_T dwSize,DWORD flAllocationType,DWORD flProtect);
LPVOID VirtualAlloc(LPVOID lpAddress, SIZE_T dwSize, DWORD flAllocationType, DWORD flProtect);
//C WINBOOL VirtualFree(LPVOID lpAddress,SIZE_T dwSize,DWORD dwFreeType);
WINBOOL VirtualFree(LPVOID lpAddress, SIZE_T dwSize, DWORD dwFreeType);
//C WINBOOL VirtualProtect(LPVOID lpAddress,SIZE_T dwSize,DWORD flNewProtect,PDWORD lpflOldProtect);
WINBOOL VirtualProtect(LPVOID lpAddress, SIZE_T dwSize, DWORD flNewProtect, PDWORD lpflOldProtect);
//C SIZE_T VirtualQuery(LPCVOID lpAddress,PMEMORY_BASIC_INFORMATION lpBuffer,SIZE_T dwLength);
SIZE_T VirtualQuery(LPCVOID lpAddress, PMEMORY_BASIC_INFORMATION lpBuffer, SIZE_T dwLength);
//C LPVOID VirtualAllocEx(HANDLE hProcess,LPVOID lpAddress,SIZE_T dwSize,DWORD flAllocationType,DWORD flProtect);
LPVOID VirtualAllocEx(HANDLE hProcess, LPVOID lpAddress, SIZE_T dwSize, DWORD flAllocationType, DWORD flProtect);
//C UINT GetWriteWatch(DWORD dwFlags,PVOID lpBaseAddress,SIZE_T dwRegionSize,PVOID *lpAddresses,ULONG_PTR *lpdwCount,PULONG lpdwGranularity);
UINT GetWriteWatch(DWORD dwFlags, PVOID lpBaseAddress, SIZE_T dwRegionSize, PVOID *lpAddresses, ULONG_PTR *lpdwCount, PULONG lpdwGranularity);
//C UINT ResetWriteWatch(LPVOID lpBaseAddress,SIZE_T dwRegionSize);
UINT ResetWriteWatch(LPVOID lpBaseAddress, SIZE_T dwRegionSize);
//C SIZE_T GetLargePageMinimum(void);
SIZE_T GetLargePageMinimum();
//C UINT EnumSystemFirmwareTables(DWORD FirmwareTableProviderSignature,PVOID pFirmwareTableEnumBuffer,DWORD BufferSize);
UINT EnumSystemFirmwareTables(DWORD FirmwareTableProviderSignature, PVOID pFirmwareTableEnumBuffer, DWORD BufferSize);
//C UINT GetSystemFirmwareTable(DWORD FirmwareTableProviderSignature,DWORD FirmwareTableID,PVOID pFirmwareTableBuffer,DWORD BufferSize);
UINT GetSystemFirmwareTable(DWORD FirmwareTableProviderSignature, DWORD FirmwareTableID, PVOID pFirmwareTableBuffer, DWORD BufferSize);
//C WINBOOL VirtualFreeEx(HANDLE hProcess,LPVOID lpAddress,SIZE_T dwSize,DWORD dwFreeType);
WINBOOL VirtualFreeEx(HANDLE hProcess, LPVOID lpAddress, SIZE_T dwSize, DWORD dwFreeType);
//C WINBOOL VirtualProtectEx(HANDLE hProcess,LPVOID lpAddress,SIZE_T dwSize,DWORD flNewProtect,PDWORD lpflOldProtect);
WINBOOL VirtualProtectEx(HANDLE hProcess, LPVOID lpAddress, SIZE_T dwSize, DWORD flNewProtect, PDWORD lpflOldProtect);
//C SIZE_T VirtualQueryEx(HANDLE hProcess,LPCVOID lpAddress,PMEMORY_BASIC_INFORMATION lpBuffer,SIZE_T dwLength);
SIZE_T VirtualQueryEx(HANDLE hProcess, LPCVOID lpAddress, PMEMORY_BASIC_INFORMATION lpBuffer, SIZE_T dwLength);
//C HANDLE HeapCreate(DWORD flOptions,SIZE_T dwInitialSize,SIZE_T dwMaximumSize);
HANDLE HeapCreate(DWORD flOptions, SIZE_T dwInitialSize, SIZE_T dwMaximumSize);
//C WINBOOL HeapDestroy(HANDLE hHeap);
WINBOOL HeapDestroy(HANDLE hHeap);
//C LPVOID HeapAlloc(HANDLE hHeap,DWORD dwFlags,SIZE_T dwBytes);
LPVOID HeapAlloc(HANDLE hHeap, DWORD dwFlags, SIZE_T dwBytes);
//C LPVOID HeapReAlloc(HANDLE hHeap,DWORD dwFlags,LPVOID lpMem,SIZE_T dwBytes);
LPVOID HeapReAlloc(HANDLE hHeap, DWORD dwFlags, LPVOID lpMem, SIZE_T dwBytes);
//C WINBOOL HeapFree(HANDLE hHeap,DWORD dwFlags,LPVOID lpMem);
WINBOOL HeapFree(HANDLE hHeap, DWORD dwFlags, LPVOID lpMem);
//C SIZE_T HeapSize(HANDLE hHeap,DWORD dwFlags,LPCVOID lpMem);
SIZE_T HeapSize(HANDLE hHeap, DWORD dwFlags, LPCVOID lpMem);
//C WINBOOL HeapValidate(HANDLE hHeap,DWORD dwFlags,LPCVOID lpMem);
WINBOOL HeapValidate(HANDLE hHeap, DWORD dwFlags, LPCVOID lpMem);
//C SIZE_T HeapCompact(HANDLE hHeap,DWORD dwFlags);
SIZE_T HeapCompact(HANDLE hHeap, DWORD dwFlags);
//C HANDLE GetProcessHeap(void);
HANDLE GetProcessHeap();
//C DWORD GetProcessHeaps(DWORD NumberOfHeaps,PHANDLE ProcessHeaps);
DWORD GetProcessHeaps(DWORD NumberOfHeaps, PHANDLE ProcessHeaps);
//C typedef struct _PROCESS_HEAP_ENTRY {
//C PVOID lpData;
//C DWORD cbData;
//C BYTE cbOverhead;
//C BYTE iRegionIndex;
//C WORD wFlags;
//C union {
//C struct {
//C HANDLE hMem;
//C DWORD dwReserved[3];
//C } Block;
struct _N58
{
HANDLE hMem;
DWORD [3]dwReserved;
}
//C struct {
//C DWORD dwCommittedSize;
//C DWORD dwUnCommittedSize;
//C LPVOID lpFirstBlock;
//C LPVOID lpLastBlock;
//C } Region;
struct _N59
{
DWORD dwCommittedSize;
DWORD dwUnCommittedSize;
LPVOID lpFirstBlock;
LPVOID lpLastBlock;
}
//C } ;
union _N57
{
_N58 Block;
_N59 Region;
}
//C } PROCESS_HEAP_ENTRY,*LPPROCESS_HEAP_ENTRY,*PPROCESS_HEAP_ENTRY;
struct _PROCESS_HEAP_ENTRY
{
PVOID lpData;
DWORD cbData;
BYTE cbOverhead;
BYTE iRegionIndex;
WORD wFlags;
_N58 Block;
_N59 Region;
}
alias _PROCESS_HEAP_ENTRY PROCESS_HEAP_ENTRY;
alias _PROCESS_HEAP_ENTRY *LPPROCESS_HEAP_ENTRY;
alias _PROCESS_HEAP_ENTRY *PPROCESS_HEAP_ENTRY;
//C WINBOOL HeapLock(HANDLE hHeap);
WINBOOL HeapLock(HANDLE hHeap);
//C WINBOOL HeapUnlock(HANDLE hHeap);
WINBOOL HeapUnlock(HANDLE hHeap);
//C WINBOOL HeapWalk(HANDLE hHeap,LPPROCESS_HEAP_ENTRY lpEntry);
WINBOOL HeapWalk(HANDLE hHeap, LPPROCESS_HEAP_ENTRY lpEntry);
//C WINBOOL HeapSetInformation(HANDLE HeapHandle,HEAP_INFORMATION_CLASS HeapInformationClass,PVOID HeapInformation,SIZE_T HeapInformationLength);
WINBOOL HeapSetInformation(HANDLE HeapHandle, HEAP_INFORMATION_CLASS HeapInformationClass, PVOID HeapInformation, SIZE_T HeapInformationLength);
//C WINBOOL HeapQueryInformation(HANDLE HeapHandle,HEAP_INFORMATION_CLASS HeapInformationClass,PVOID HeapInformation,SIZE_T HeapInformationLength,PSIZE_T ReturnLength);
WINBOOL HeapQueryInformation(HANDLE HeapHandle, HEAP_INFORMATION_CLASS HeapInformationClass, PVOID HeapInformation, SIZE_T HeapInformationLength, PSIZE_T ReturnLength);
//C WINBOOL GetBinaryTypeA(LPCSTR lpApplicationName,LPDWORD lpBinaryType);
WINBOOL GetBinaryTypeA(LPCSTR lpApplicationName, LPDWORD lpBinaryType);
//C WINBOOL GetBinaryTypeW(LPCWSTR lpApplicationName,LPDWORD lpBinaryType);
WINBOOL GetBinaryTypeW(LPCWSTR lpApplicationName, LPDWORD lpBinaryType);
//C DWORD GetShortPathNameA(LPCSTR lpszLongPath,LPSTR lpszShortPath,DWORD cchBuffer);
DWORD GetShortPathNameA(LPCSTR lpszLongPath, LPSTR lpszShortPath, DWORD cchBuffer);
//C DWORD GetShortPathNameW(LPCWSTR lpszLongPath,LPWSTR lpszShortPath,DWORD cchBuffer);
DWORD GetShortPathNameW(LPCWSTR lpszLongPath, LPWSTR lpszShortPath, DWORD cchBuffer);
//C DWORD GetLongPathNameA(LPCSTR lpszShortPath,LPSTR lpszLongPath,DWORD cchBuffer);
DWORD GetLongPathNameA(LPCSTR lpszShortPath, LPSTR lpszLongPath, DWORD cchBuffer);
//C DWORD GetLongPathNameW(LPCWSTR lpszShortPath,LPWSTR lpszLongPath,DWORD cchBuffer);
DWORD GetLongPathNameW(LPCWSTR lpszShortPath, LPWSTR lpszLongPath, DWORD cchBuffer);
//C WINBOOL GetProcessAffinityMask(HANDLE hProcess,PDWORD_PTR lpProcessAffinityMask,PDWORD_PTR lpSystemAffinityMask);
WINBOOL GetProcessAffinityMask(HANDLE hProcess, PDWORD_PTR lpProcessAffinityMask, PDWORD_PTR lpSystemAffinityMask);
//C WINBOOL SetProcessAffinityMask(HANDLE hProcess,DWORD_PTR dwProcessAffinityMask);
WINBOOL SetProcessAffinityMask(HANDLE hProcess, DWORD_PTR dwProcessAffinityMask);
//C WINBOOL GetProcessDEPPolicy (HANDLE hProcess,LPDWORD lpFlags,PBOOL lpPermanent);
WINBOOL GetProcessDEPPolicy(HANDLE hProcess, LPDWORD lpFlags, PBOOL lpPermanent);
//C WINBOOL SetProcessDEPPolicy (DWORD dwFlags);
WINBOOL SetProcessDEPPolicy(DWORD dwFlags);
//C WINBOOL GetProcessHandleCount(HANDLE hProcess,PDWORD pdwHandleCount);
WINBOOL GetProcessHandleCount(HANDLE hProcess, PDWORD pdwHandleCount);
//C WINBOOL GetProcessTimes(HANDLE hProcess,LPFILETIME lpCreationTime,LPFILETIME lpExitTime,LPFILETIME lpKernelTime,LPFILETIME lpUserTime);
WINBOOL GetProcessTimes(HANDLE hProcess, LPFILETIME lpCreationTime, LPFILETIME lpExitTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime);
//C WINBOOL GetProcessIoCounters(HANDLE hProcess,PIO_COUNTERS lpIoCounters);
WINBOOL GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS lpIoCounters);
//C WINBOOL GetProcessWorkingSetSize(HANDLE hProcess,PSIZE_T lpMinimumWorkingSetSize,PSIZE_T lpMaximumWorkingSetSize);
WINBOOL GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T lpMinimumWorkingSetSize, PSIZE_T lpMaximumWorkingSetSize);
//C WINBOOL GetProcessWorkingSetSizeEx(HANDLE hProcess,PSIZE_T lpMinimumWorkingSetSize,PSIZE_T lpMaximumWorkingSetSize,PDWORD Flags);
WINBOOL GetProcessWorkingSetSizeEx(HANDLE hProcess, PSIZE_T lpMinimumWorkingSetSize, PSIZE_T lpMaximumWorkingSetSize, PDWORD Flags);
//C WINBOOL SetProcessWorkingSetSize(HANDLE hProcess,SIZE_T dwMinimumWorkingSetSize,SIZE_T dwMaximumWorkingSetSize);
WINBOOL SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T dwMinimumWorkingSetSize, SIZE_T dwMaximumWorkingSetSize);
//C WINBOOL SetProcessWorkingSetSizeEx(HANDLE hProcess,SIZE_T dwMinimumWorkingSetSize,SIZE_T dwMaximumWorkingSetSize,DWORD Flags);
WINBOOL SetProcessWorkingSetSizeEx(HANDLE hProcess, SIZE_T dwMinimumWorkingSetSize, SIZE_T dwMaximumWorkingSetSize, DWORD Flags);
//C HANDLE OpenProcess(DWORD dwDesiredAccess,WINBOOL bInheritHandle,DWORD dwProcessId);
HANDLE OpenProcess(DWORD dwDesiredAccess, WINBOOL bInheritHandle, DWORD dwProcessId);
//C HANDLE GetCurrentProcess(void);
HANDLE GetCurrentProcess();
//C DWORD GetCurrentProcessId(void);
DWORD GetCurrentProcessId();
//C void ExitProcess(UINT uExitCode);
void ExitProcess(UINT uExitCode);
//C WINBOOL TerminateProcess(HANDLE hProcess,UINT uExitCode);
WINBOOL TerminateProcess(HANDLE hProcess, UINT uExitCode);
//C WINBOOL GetExitCodeProcess(HANDLE hProcess,LPDWORD lpExitCode);
WINBOOL GetExitCodeProcess(HANDLE hProcess, LPDWORD lpExitCode);
//C void FatalExit(int ExitCode);
void FatalExit(int ExitCode);
//C LPCH GetEnvironmentStrings(void);
LPCH GetEnvironmentStrings();
//C LPWCH GetEnvironmentStringsW(void);
LPWCH GetEnvironmentStringsW();
//C WINBOOL SetEnvironmentStringsA(LPCH NewEnvironment);
WINBOOL SetEnvironmentStringsA(LPCH NewEnvironment);
//C WINBOOL SetEnvironmentStringsW(LPWCH NewEnvironment);
WINBOOL SetEnvironmentStringsW(LPWCH NewEnvironment);
//C WINBOOL FreeEnvironmentStringsA(LPCH);
WINBOOL FreeEnvironmentStringsA(LPCH );
//C WINBOOL FreeEnvironmentStringsW(LPWCH);
WINBOOL FreeEnvironmentStringsW(LPWCH );
//C void RaiseException(DWORD dwExceptionCode,DWORD dwExceptionFlags,DWORD nNumberOfArguments,const ULONG_PTR *lpArguments);
void RaiseException(DWORD dwExceptionCode, DWORD dwExceptionFlags, DWORD nNumberOfArguments, ULONG_PTR *lpArguments);
//C LONG UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo);
LONG UnhandledExceptionFilter(_EXCEPTION_POINTERS *ExceptionInfo);
//C typedef LONG ( *PTOP_LEVEL_EXCEPTION_FILTER)(struct _EXCEPTION_POINTERS *ExceptionInfo);
alias LONG function(_EXCEPTION_POINTERS *ExceptionInfo)PTOP_LEVEL_EXCEPTION_FILTER;
//C typedef PTOP_LEVEL_EXCEPTION_FILTER LPTOP_LEVEL_EXCEPTION_FILTER;
alias PTOP_LEVEL_EXCEPTION_FILTER LPTOP_LEVEL_EXCEPTION_FILTER;
//C LPTOP_LEVEL_EXCEPTION_FILTER SetUnhandledExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter);
LPTOP_LEVEL_EXCEPTION_FILTER SetUnhandledExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter);
//C LPVOID CreateFiber(SIZE_T dwStackSize,LPFIBER_START_ROUTINE lpStartAddress,LPVOID lpParameter);
LPVOID CreateFiber(SIZE_T dwStackSize, LPFIBER_START_ROUTINE lpStartAddress, LPVOID lpParameter);
//C LPVOID CreateFiberEx(SIZE_T dwStackCommitSize,SIZE_T dwStackReserveSize,DWORD dwFlags,LPFIBER_START_ROUTINE lpStartAddress,LPVOID lpParameter);
LPVOID CreateFiberEx(SIZE_T dwStackCommitSize, SIZE_T dwStackReserveSize, DWORD dwFlags, LPFIBER_START_ROUTINE lpStartAddress, LPVOID lpParameter);
//C void DeleteFiber(LPVOID lpFiber);
void DeleteFiber(LPVOID lpFiber);
//C LPVOID ConvertThreadToFiber(LPVOID lpParameter);
LPVOID ConvertThreadToFiber(LPVOID lpParameter);
//C LPVOID ConvertThreadToFiberEx(LPVOID lpParameter,DWORD dwFlags);
LPVOID ConvertThreadToFiberEx(LPVOID lpParameter, DWORD dwFlags);
//C WINBOOL ConvertFiberToThread(void);
WINBOOL ConvertFiberToThread();
//C void SwitchToFiber(LPVOID lpFiber);
void SwitchToFiber(LPVOID lpFiber);
//C WINBOOL SwitchToThread(void);
WINBOOL SwitchToThread();
//C HANDLE CreateThread(LPSECURITY_ATTRIBUTES lpThreadAttributes,SIZE_T dwStackSize,LPTHREAD_START_ROUTINE lpStartAddress,LPVOID lpParameter,DWORD dwCreationFlags,LPDWORD lpThreadId);
HANDLE CreateThread(LPSECURITY_ATTRIBUTES lpThreadAttributes, SIZE_T dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId);
//C HANDLE CreateRemoteThread(HANDLE hProcess,LPSECURITY_ATTRIBUTES lpThreadAttributes,SIZE_T dwStackSize,LPTHREAD_START_ROUTINE lpStartAddress,LPVOID lpParameter,DWORD dwCreationFlags,LPDWORD lpThreadId);
HANDLE CreateRemoteThread(HANDLE hProcess, LPSECURITY_ATTRIBUTES lpThreadAttributes, SIZE_T dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId);
//C HANDLE GetCurrentThread(void);
HANDLE GetCurrentThread();
//C DWORD GetCurrentThreadId(void);
DWORD GetCurrentThreadId();
//C WINBOOL SetThreadStackGuarantee (PULONG StackSizeInBytes);
WINBOOL SetThreadStackGuarantee(PULONG StackSizeInBytes);
//C DWORD GetProcessIdOfThread(HANDLE Thread);
DWORD GetProcessIdOfThread(HANDLE Thread);
//C DWORD GetThreadId(HANDLE Thread);
DWORD GetThreadId(HANDLE Thread);
//C DWORD GetProcessId(HANDLE Process);
DWORD GetProcessId(HANDLE Process);
//C DWORD GetCurrentProcessorNumber(void);
DWORD GetCurrentProcessorNumber();
//C DWORD_PTR SetThreadAffinityMask(HANDLE hThread,DWORD_PTR dwThreadAffinityMask);
DWORD_PTR SetThreadAffinityMask(HANDLE hThread, DWORD_PTR dwThreadAffinityMask);
//C DWORD SetThreadIdealProcessor(HANDLE hThread,DWORD dwIdealProcessor);
DWORD SetThreadIdealProcessor(HANDLE hThread, DWORD dwIdealProcessor);
//C WINBOOL SetProcessPriorityBoost(HANDLE hProcess,WINBOOL bDisablePriorityBoost);
WINBOOL SetProcessPriorityBoost(HANDLE hProcess, WINBOOL bDisablePriorityBoost);
//C WINBOOL GetProcessPriorityBoost(HANDLE hProcess,PBOOL pDisablePriorityBoost);
WINBOOL GetProcessPriorityBoost(HANDLE hProcess, PBOOL pDisablePriorityBoost);
//C WINBOOL RequestWakeupLatency(LATENCY_TIME latency);
WINBOOL RequestWakeupLatency(LATENCY_TIME latency);
//C WINBOOL IsSystemResumeAutomatic(void);
WINBOOL IsSystemResumeAutomatic();
//C HANDLE OpenThread(DWORD dwDesiredAccess,WINBOOL bInheritHandle,DWORD dwThreadId);
HANDLE OpenThread(DWORD dwDesiredAccess, WINBOOL bInheritHandle, DWORD dwThreadId);
//C WINBOOL SetThreadPriority(HANDLE hThread,int nPriority);
WINBOOL SetThreadPriority(HANDLE hThread, int nPriority);
//C WINBOOL SetThreadPriorityBoost(HANDLE hThread,WINBOOL bDisablePriorityBoost);
WINBOOL SetThreadPriorityBoost(HANDLE hThread, WINBOOL bDisablePriorityBoost);
//C WINBOOL GetThreadPriorityBoost(HANDLE hThread,PBOOL pDisablePriorityBoost);
WINBOOL GetThreadPriorityBoost(HANDLE hThread, PBOOL pDisablePriorityBoost);
//C int GetThreadPriority(HANDLE hThread);
int GetThreadPriority(HANDLE hThread);
//C WINBOOL GetThreadTimes(HANDLE hThread,LPFILETIME lpCreationTime,LPFILETIME lpExitTime,LPFILETIME lpKernelTime,LPFILETIME lpUserTime);
WINBOOL GetThreadTimes(HANDLE hThread, LPFILETIME lpCreationTime, LPFILETIME lpExitTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime);
//C WINBOOL GetThreadIOPendingFlag(HANDLE hThread,PBOOL lpIOIsPending);
WINBOOL GetThreadIOPendingFlag(HANDLE hThread, PBOOL lpIOIsPending);
//C void ExitThread(DWORD dwExitCode);
void ExitThread(DWORD dwExitCode);
//C WINBOOL TerminateThread(HANDLE hThread,DWORD dwExitCode);
WINBOOL TerminateThread(HANDLE hThread, DWORD dwExitCode);
//C WINBOOL GetExitCodeThread(HANDLE hThread,LPDWORD lpExitCode);
WINBOOL GetExitCodeThread(HANDLE hThread, LPDWORD lpExitCode);
//C WINBOOL GetThreadSelectorEntry(HANDLE hThread,DWORD dwSelector,LPLDT_ENTRY lpSelectorEntry);
WINBOOL GetThreadSelectorEntry(HANDLE hThread, DWORD dwSelector, LPLDT_ENTRY lpSelectorEntry);
//C EXECUTION_STATE SetThreadExecutionState(EXECUTION_STATE esFlags);
EXECUTION_STATE SetThreadExecutionState(EXECUTION_STATE esFlags);
//C DWORD GetLastError(void);
DWORD GetLastError();
//C void SetLastError(DWORD dwErrCode);
void SetLastError(DWORD dwErrCode);
//C WINBOOL GetOverlappedResult(HANDLE hFile,LPOVERLAPPED lpOverlapped,LPDWORD lpNumberOfBytesTransferred,WINBOOL bWait);
WINBOOL GetOverlappedResult(HANDLE hFile, LPOVERLAPPED lpOverlapped, LPDWORD lpNumberOfBytesTransferred, WINBOOL bWait);
//C HANDLE CreateIoCompletionPort(HANDLE FileHandle,HANDLE ExistingCompletionPort,ULONG_PTR CompletionKey,DWORD NumberOfConcurrentThreads);
HANDLE CreateIoCompletionPort(HANDLE FileHandle, HANDLE ExistingCompletionPort, ULONG_PTR CompletionKey, DWORD NumberOfConcurrentThreads);
//C WINBOOL GetQueuedCompletionStatus(HANDLE CompletionPort,LPDWORD lpNumberOfBytesTransferred,PULONG_PTR lpCompletionKey,LPOVERLAPPED *lpOverlapped,DWORD dwMilliseconds);
WINBOOL GetQueuedCompletionStatus(HANDLE CompletionPort, LPDWORD lpNumberOfBytesTransferred, PULONG_PTR lpCompletionKey, LPOVERLAPPED *lpOverlapped, DWORD dwMilliseconds);
//C WINBOOL PostQueuedCompletionStatus(HANDLE CompletionPort,DWORD dwNumberOfBytesTransferred,ULONG_PTR dwCompletionKey,LPOVERLAPPED lpOverlapped);
WINBOOL PostQueuedCompletionStatus(HANDLE CompletionPort, DWORD dwNumberOfBytesTransferred, ULONG_PTR dwCompletionKey, LPOVERLAPPED lpOverlapped);
//C UINT SetErrorMode(UINT uMode);
UINT SetErrorMode(UINT uMode);
//C WINBOOL ReadProcessMemory(HANDLE hProcess,LPCVOID lpBaseAddress,LPVOID lpBuffer,SIZE_T nSize,SIZE_T *lpNumberOfBytesRead);
WINBOOL ReadProcessMemory(HANDLE hProcess, LPCVOID lpBaseAddress, LPVOID lpBuffer, SIZE_T nSize, SIZE_T *lpNumberOfBytesRead);
//C WINBOOL WriteProcessMemory(HANDLE hProcess,LPVOID lpBaseAddress,LPCVOID lpBuffer,SIZE_T nSize,SIZE_T *lpNumberOfBytesWritten);
WINBOOL WriteProcessMemory(HANDLE hProcess, LPVOID lpBaseAddress, LPCVOID lpBuffer, SIZE_T nSize, SIZE_T *lpNumberOfBytesWritten);
//C WINBOOL GetThreadContext(HANDLE hThread,LPCONTEXT lpContext);
WINBOOL GetThreadContext(HANDLE hThread, LPCONTEXT lpContext);
//C WINBOOL SetThreadContext(HANDLE hThread,const CONTEXT *lpContext);
WINBOOL SetThreadContext(HANDLE hThread, CONTEXT *lpContext);
//C DWORD SuspendThread(HANDLE hThread);
DWORD SuspendThread(HANDLE hThread);
//C DWORD ResumeThread(HANDLE hThread);
DWORD ResumeThread(HANDLE hThread);
//C typedef void ( *PAPCFUNC)(ULONG_PTR dwParam);
alias void function(ULONG_PTR dwParam)PAPCFUNC;
//C DWORD QueueUserAPC(PAPCFUNC pfnAPC,HANDLE hThread,ULONG_PTR dwData);
DWORD QueueUserAPC(PAPCFUNC pfnAPC, HANDLE hThread, ULONG_PTR dwData);
//C WINBOOL IsDebuggerPresent(void);
WINBOOL IsDebuggerPresent();
//C WINBOOL CheckRemoteDebuggerPresent(HANDLE hProcess,PBOOL pbDebuggerPresent);
WINBOOL CheckRemoteDebuggerPresent(HANDLE hProcess, PBOOL pbDebuggerPresent);
//C void DebugBreak(void);
void DebugBreak();
//C WINBOOL WaitForDebugEvent(LPDEBUG_EVENT lpDebugEvent,DWORD dwMilliseconds);
WINBOOL WaitForDebugEvent(LPDEBUG_EVENT lpDebugEvent, DWORD dwMilliseconds);
//C WINBOOL ContinueDebugEvent(DWORD dwProcessId,DWORD dwThreadId,DWORD dwContinueStatus);
WINBOOL ContinueDebugEvent(DWORD dwProcessId, DWORD dwThreadId, DWORD dwContinueStatus);
//C WINBOOL DebugActiveProcess(DWORD dwProcessId);
WINBOOL DebugActiveProcess(DWORD dwProcessId);
//C WINBOOL DebugActiveProcessStop(DWORD dwProcessId);
WINBOOL DebugActiveProcessStop(DWORD dwProcessId);
//C WINBOOL DebugSetProcessKillOnExit(WINBOOL KillOnExit);
WINBOOL DebugSetProcessKillOnExit(WINBOOL KillOnExit);
//C WINBOOL DebugBreakProcess(HANDLE Process);
WINBOOL DebugBreakProcess(HANDLE Process);
//C void InitializeCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
void InitializeCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
//C void EnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
void EnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
//C void LeaveCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
void LeaveCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
//C WINBOOL InitializeCriticalSectionAndSpinCount(LPCRITICAL_SECTION lpCriticalSection,DWORD dwSpinCount);
WINBOOL InitializeCriticalSectionAndSpinCount(LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount);
//C DWORD SetCriticalSectionSpinCount(LPCRITICAL_SECTION lpCriticalSection,DWORD dwSpinCount);
DWORD SetCriticalSectionSpinCount(LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount);
//C WINBOOL TryEnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
WINBOOL TryEnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
//C void DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
void DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
//C WINBOOL SetEvent(HANDLE hEvent);
WINBOOL SetEvent(HANDLE hEvent);
//C WINBOOL ResetEvent(HANDLE hEvent);
WINBOOL ResetEvent(HANDLE hEvent);
//C WINBOOL PulseEvent(HANDLE hEvent);
WINBOOL PulseEvent(HANDLE hEvent);
//C WINBOOL ReleaseSemaphore(HANDLE hSemaphore,LONG lReleaseCount,LPLONG lpPreviousCount);
WINBOOL ReleaseSemaphore(HANDLE hSemaphore, LONG lReleaseCount, LPLONG lpPreviousCount);
//C WINBOOL ReleaseMutex(HANDLE hMutex);
WINBOOL ReleaseMutex(HANDLE hMutex);
//C DWORD WaitForSingleObject(HANDLE hHandle,DWORD dwMilliseconds);
DWORD WaitForSingleObject(HANDLE hHandle, DWORD dwMilliseconds);
//C DWORD WaitForMultipleObjects(DWORD nCount,const HANDLE *lpHandles,WINBOOL bWaitAll,DWORD dwMilliseconds);
DWORD WaitForMultipleObjects(DWORD nCount, HANDLE *lpHandles, WINBOOL bWaitAll, DWORD dwMilliseconds);
//C void Sleep(DWORD dwMilliseconds);
void Sleep(DWORD dwMilliseconds);
//C HGLOBAL LoadResource(HMODULE hModule,HRSRC hResInfo);
HGLOBAL LoadResource(HMODULE hModule, HRSRC hResInfo);
//C DWORD SizeofResource(HMODULE hModule,HRSRC hResInfo);
DWORD SizeofResource(HMODULE hModule, HRSRC hResInfo);
//C ATOM GlobalDeleteAtom(ATOM nAtom);
ATOM GlobalDeleteAtom(ATOM nAtom);
//C WINBOOL InitAtomTable(DWORD nSize);
WINBOOL InitAtomTable(DWORD nSize);
//C ATOM DeleteAtom(ATOM nAtom);
ATOM DeleteAtom(ATOM nAtom);
//C UINT SetHandleCount(UINT uNumber);
UINT SetHandleCount(UINT uNumber);
//C DWORD GetLogicalDrives(void);
DWORD GetLogicalDrives();
//C WINBOOL LockFile(HANDLE hFile,DWORD dwFileOffsetLow,DWORD dwFileOffsetHigh,DWORD nNumberOfBytesToLockLow,DWORD nNumberOfBytesToLockHigh);
WINBOOL LockFile(HANDLE hFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh);
//C WINBOOL UnlockFile(HANDLE hFile,DWORD dwFileOffsetLow,DWORD dwFileOffsetHigh,DWORD nNumberOfBytesToUnlockLow,DWORD nNumberOfBytesToUnlockHigh);
WINBOOL UnlockFile(HANDLE hFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh);
//C WINBOOL LockFileEx(HANDLE hFile,DWORD dwFlags,DWORD dwReserved,DWORD nNumberOfBytesToLockLow,DWORD nNumberOfBytesToLockHigh,LPOVERLAPPED lpOverlapped);
WINBOOL LockFileEx(HANDLE hFile, DWORD dwFlags, DWORD dwReserved, DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh, LPOVERLAPPED lpOverlapped);
//C WINBOOL UnlockFileEx(HANDLE hFile,DWORD dwReserved,DWORD nNumberOfBytesToUnlockLow,DWORD nNumberOfBytesToUnlockHigh,LPOVERLAPPED lpOverlapped);
WINBOOL UnlockFileEx(HANDLE hFile, DWORD dwReserved, DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh, LPOVERLAPPED lpOverlapped);
//C typedef struct _BY_HANDLE_FILE_INFORMATION {
//C DWORD dwFileAttributes;
//C FILETIME ftCreationTime;
//C FILETIME ftLastAccessTime;
//C FILETIME ftLastWriteTime;
//C DWORD dwVolumeSerialNumber;
//C DWORD nFileSizeHigh;
//C DWORD nFileSizeLow;
//C DWORD nNumberOfLinks;
//C DWORD nFileIndexHigh;
//C DWORD nFileIndexLow;
//C } BY_HANDLE_FILE_INFORMATION,*PBY_HANDLE_FILE_INFORMATION,*LPBY_HANDLE_FILE_INFORMATION;
struct _BY_HANDLE_FILE_INFORMATION
{
DWORD dwFileAttributes;
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
DWORD dwVolumeSerialNumber;
DWORD nFileSizeHigh;
DWORD nFileSizeLow;
DWORD nNumberOfLinks;
DWORD nFileIndexHigh;
DWORD nFileIndexLow;
}
alias _BY_HANDLE_FILE_INFORMATION BY_HANDLE_FILE_INFORMATION;
alias _BY_HANDLE_FILE_INFORMATION *PBY_HANDLE_FILE_INFORMATION;
alias _BY_HANDLE_FILE_INFORMATION *LPBY_HANDLE_FILE_INFORMATION;
//C WINBOOL GetFileInformationByHandle(HANDLE hFile,LPBY_HANDLE_FILE_INFORMATION lpFileInformation);
WINBOOL GetFileInformationByHandle(HANDLE hFile, LPBY_HANDLE_FILE_INFORMATION lpFileInformation);
//C DWORD GetFileType(HANDLE hFile);
DWORD GetFileType(HANDLE hFile);
//C DWORD GetFileSize(HANDLE hFile,LPDWORD lpFileSizeHigh);
DWORD GetFileSize(HANDLE hFile, LPDWORD lpFileSizeHigh);
//C WINBOOL GetFileSizeEx(HANDLE hFile,PLARGE_INTEGER lpFileSize);
WINBOOL GetFileSizeEx(HANDLE hFile, PLARGE_INTEGER lpFileSize);
//C HANDLE GetStdHandle(DWORD nStdHandle);
HANDLE GetStdHandle(DWORD nStdHandle);
//C WINBOOL SetStdHandle(DWORD nStdHandle,HANDLE hHandle);
WINBOOL SetStdHandle(DWORD nStdHandle, HANDLE hHandle);
//C WINBOOL WriteFile(HANDLE hFile,LPCVOID lpBuffer,DWORD nNumberOfBytesToWrite,LPDWORD lpNumberOfBytesWritten,LPOVERLAPPED lpOverlapped);
WINBOOL WriteFile(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, LPOVERLAPPED lpOverlapped);
//C WINBOOL ReadFile(HANDLE hFile,LPVOID lpBuffer,DWORD nNumberOfBytesToRead,LPDWORD lpNumberOfBytesRead,LPOVERLAPPED lpOverlapped);
WINBOOL ReadFile(HANDLE hFile, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, LPDWORD lpNumberOfBytesRead, LPOVERLAPPED lpOverlapped);
//C WINBOOL FlushFileBuffers(HANDLE hFile);
WINBOOL FlushFileBuffers(HANDLE hFile);
//C WINBOOL DeviceIoControl(HANDLE hDevice,DWORD dwIoControlCode,LPVOID lpInBuffer,DWORD nInBufferSize,LPVOID lpOutBuffer,DWORD nOutBufferSize,LPDWORD lpBytesReturned,LPOVERLAPPED lpOverlapped);
WINBOOL DeviceIoControl(HANDLE hDevice, DWORD dwIoControlCode, LPVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesReturned, LPOVERLAPPED lpOverlapped);
//C WINBOOL RequestDeviceWakeup(HANDLE hDevice);
WINBOOL RequestDeviceWakeup(HANDLE hDevice);
//C WINBOOL CancelDeviceWakeupRequest(HANDLE hDevice);
WINBOOL CancelDeviceWakeupRequest(HANDLE hDevice);
//C WINBOOL GetDevicePowerState(HANDLE hDevice,WINBOOL *pfOn);
WINBOOL GetDevicePowerState(HANDLE hDevice, WINBOOL *pfOn);
//C WINBOOL SetMessageWaitingIndicator(HANDLE hMsgIndicator,ULONG ulMsgCount);
WINBOOL SetMessageWaitingIndicator(HANDLE hMsgIndicator, ULONG ulMsgCount);
//C WINBOOL SetEndOfFile(HANDLE hFile);
WINBOOL SetEndOfFile(HANDLE hFile);
//C DWORD SetFilePointer(HANDLE hFile,LONG lDistanceToMove,PLONG lpDistanceToMoveHigh,DWORD dwMoveMethod);
DWORD SetFilePointer(HANDLE hFile, LONG lDistanceToMove, PLONG lpDistanceToMoveHigh, DWORD dwMoveMethod);
//C WINBOOL SetFilePointerEx(HANDLE hFile,LARGE_INTEGER liDistanceToMove,PLARGE_INTEGER lpNewFilePointer,DWORD dwMoveMethod);
WINBOOL SetFilePointerEx(HANDLE hFile, LARGE_INTEGER liDistanceToMove, PLARGE_INTEGER lpNewFilePointer, DWORD dwMoveMethod);
//C WINBOOL FindClose(HANDLE hFindFile);
WINBOOL FindClose(HANDLE hFindFile);
//C WINBOOL GetFileTime(HANDLE hFile,LPFILETIME lpCreationTime,LPFILETIME lpLastAccessTime,LPFILETIME lpLastWriteTime);
WINBOOL GetFileTime(HANDLE hFile, LPFILETIME lpCreationTime, LPFILETIME lpLastAccessTime, LPFILETIME lpLastWriteTime);
//C WINBOOL SetFileTime(HANDLE hFile,const FILETIME *lpCreationTime,const FILETIME *lpLastAccessTime,const FILETIME *lpLastWriteTime);
WINBOOL SetFileTime(HANDLE hFile, FILETIME *lpCreationTime, FILETIME *lpLastAccessTime, FILETIME *lpLastWriteTime);
//C WINBOOL SetFileValidData(HANDLE hFile,LONGLONG ValidDataLength);
WINBOOL SetFileValidData(HANDLE hFile, LONGLONG ValidDataLength);
//C WINBOOL SetFileShortNameA(HANDLE hFile,LPCSTR lpShortName);
WINBOOL SetFileShortNameA(HANDLE hFile, LPCSTR lpShortName);
//C WINBOOL SetFileShortNameW(HANDLE hFile,LPCWSTR lpShortName);
WINBOOL SetFileShortNameW(HANDLE hFile, LPCWSTR lpShortName);
//C WINBOOL CloseHandle(HANDLE hObject);
WINBOOL CloseHandle(HANDLE hObject);
//C WINBOOL DuplicateHandle(HANDLE hSourceProcessHandle,HANDLE hSourceHandle,HANDLE hTargetProcessHandle,LPHANDLE lpTargetHandle,DWORD dwDesiredAccess,WINBOOL bInheritHandle,DWORD dwOptions);
WINBOOL DuplicateHandle(HANDLE hSourceProcessHandle, HANDLE hSourceHandle, HANDLE hTargetProcessHandle, LPHANDLE lpTargetHandle, DWORD dwDesiredAccess, WINBOOL bInheritHandle, DWORD dwOptions);
//C WINBOOL GetHandleInformation(HANDLE hObject,LPDWORD lpdwFlags);
WINBOOL GetHandleInformation(HANDLE hObject, LPDWORD lpdwFlags);
//C WINBOOL SetHandleInformation(HANDLE hObject,DWORD dwMask,DWORD dwFlags);
WINBOOL SetHandleInformation(HANDLE hObject, DWORD dwMask, DWORD dwFlags);
//C DWORD LoadModule(LPCSTR lpModuleName,LPVOID lpParameterBlock);
DWORD LoadModule(LPCSTR lpModuleName, LPVOID lpParameterBlock);
//C UINT WinExec(LPCSTR lpCmdLine,UINT uCmdShow);
UINT WinExec(LPCSTR lpCmdLine, UINT uCmdShow);
//C WINBOOL ClearCommBreak(HANDLE hFile);
WINBOOL ClearCommBreak(HANDLE hFile);
//C WINBOOL ClearCommError(HANDLE hFile,LPDWORD lpErrors,LPCOMSTAT lpStat);
WINBOOL ClearCommError(HANDLE hFile, LPDWORD lpErrors, LPCOMSTAT lpStat);
//C WINBOOL SetupComm(HANDLE hFile,DWORD dwInQueue,DWORD dwOutQueue);
WINBOOL SetupComm(HANDLE hFile, DWORD dwInQueue, DWORD dwOutQueue);
//C WINBOOL EscapeCommFunction(HANDLE hFile,DWORD dwFunc);
WINBOOL EscapeCommFunction(HANDLE hFile, DWORD dwFunc);
//C WINBOOL GetCommConfig(HANDLE hCommDev,LPCOMMCONFIG lpCC,LPDWORD lpdwSize);
WINBOOL GetCommConfig(HANDLE hCommDev, LPCOMMCONFIG lpCC, LPDWORD lpdwSize);
//C WINBOOL GetCommMask(HANDLE hFile,LPDWORD lpEvtMask);
WINBOOL GetCommMask(HANDLE hFile, LPDWORD lpEvtMask);
//C WINBOOL GetCommProperties(HANDLE hFile,LPCOMMPROP lpCommProp);
WINBOOL GetCommProperties(HANDLE hFile, LPCOMMPROP lpCommProp);
//C WINBOOL GetCommModemStatus(HANDLE hFile,LPDWORD lpModemStat);
WINBOOL GetCommModemStatus(HANDLE hFile, LPDWORD lpModemStat);
//C WINBOOL GetCommState(HANDLE hFile,LPDCB lpDCB);
WINBOOL GetCommState(HANDLE hFile, LPDCB lpDCB);
//C WINBOOL GetCommTimeouts(HANDLE hFile,LPCOMMTIMEOUTS lpCommTimeouts);
WINBOOL GetCommTimeouts(HANDLE hFile, LPCOMMTIMEOUTS lpCommTimeouts);
//C WINBOOL PurgeComm(HANDLE hFile,DWORD dwFlags);
WINBOOL PurgeComm(HANDLE hFile, DWORD dwFlags);
//C WINBOOL SetCommBreak(HANDLE hFile);
WINBOOL SetCommBreak(HANDLE hFile);
//C WINBOOL SetCommConfig(HANDLE hCommDev,LPCOMMCONFIG lpCC,DWORD dwSize);
WINBOOL SetCommConfig(HANDLE hCommDev, LPCOMMCONFIG lpCC, DWORD dwSize);
//C WINBOOL SetCommMask(HANDLE hFile,DWORD dwEvtMask);
WINBOOL SetCommMask(HANDLE hFile, DWORD dwEvtMask);
//C WINBOOL SetCommState(HANDLE hFile,LPDCB lpDCB);
WINBOOL SetCommState(HANDLE hFile, LPDCB lpDCB);
//C WINBOOL SetCommTimeouts(HANDLE hFile,LPCOMMTIMEOUTS lpCommTimeouts);
WINBOOL SetCommTimeouts(HANDLE hFile, LPCOMMTIMEOUTS lpCommTimeouts);
//C WINBOOL TransmitCommChar(HANDLE hFile,char cChar);
WINBOOL TransmitCommChar(HANDLE hFile, char cChar);
//C WINBOOL WaitCommEvent(HANDLE hFile,LPDWORD lpEvtMask,LPOVERLAPPED lpOverlapped);
WINBOOL WaitCommEvent(HANDLE hFile, LPDWORD lpEvtMask, LPOVERLAPPED lpOverlapped);
//C DWORD SetTapePosition(HANDLE hDevice,DWORD dwPositionMethod,DWORD dwPartition,DWORD dwOffsetLow,DWORD dwOffsetHigh,WINBOOL bImmediate);
DWORD SetTapePosition(HANDLE hDevice, DWORD dwPositionMethod, DWORD dwPartition, DWORD dwOffsetLow, DWORD dwOffsetHigh, WINBOOL bImmediate);
//C DWORD GetTapePosition(HANDLE hDevice,DWORD dwPositionType,LPDWORD lpdwPartition,LPDWORD lpdwOffsetLow,LPDWORD lpdwOffsetHigh);
DWORD GetTapePosition(HANDLE hDevice, DWORD dwPositionType, LPDWORD lpdwPartition, LPDWORD lpdwOffsetLow, LPDWORD lpdwOffsetHigh);
//C DWORD PrepareTape(HANDLE hDevice,DWORD dwOperation,WINBOOL bImmediate);
DWORD PrepareTape(HANDLE hDevice, DWORD dwOperation, WINBOOL bImmediate);
//C DWORD EraseTape(HANDLE hDevice,DWORD dwEraseType,WINBOOL bImmediate);
DWORD EraseTape(HANDLE hDevice, DWORD dwEraseType, WINBOOL bImmediate);
//C DWORD CreateTapePartition(HANDLE hDevice,DWORD dwPartitionMethod,DWORD dwCount,DWORD dwSize);
DWORD CreateTapePartition(HANDLE hDevice, DWORD dwPartitionMethod, DWORD dwCount, DWORD dwSize);
//C DWORD WriteTapemark(HANDLE hDevice,DWORD dwTapemarkType,DWORD dwTapemarkCount,WINBOOL bImmediate);
DWORD WriteTapemark(HANDLE hDevice, DWORD dwTapemarkType, DWORD dwTapemarkCount, WINBOOL bImmediate);
//C DWORD GetTapeStatus(HANDLE hDevice);
DWORD GetTapeStatus(HANDLE hDevice);
//C DWORD GetTapeParameters(HANDLE hDevice,DWORD dwOperation,LPDWORD lpdwSize,LPVOID lpTapeInformation);
DWORD GetTapeParameters(HANDLE hDevice, DWORD dwOperation, LPDWORD lpdwSize, LPVOID lpTapeInformation);
//C DWORD SetTapeParameters(HANDLE hDevice,DWORD dwOperation,LPVOID lpTapeInformation);
DWORD SetTapeParameters(HANDLE hDevice, DWORD dwOperation, LPVOID lpTapeInformation);
//C WINBOOL Beep(DWORD dwFreq,DWORD dwDuration);
WINBOOL Beep(DWORD dwFreq, DWORD dwDuration);
//C int MulDiv(int nNumber,int nNumerator,int nDenominator);
int MulDiv(int nNumber, int nNumerator, int nDenominator);
//C void GetSystemTime(LPSYSTEMTIME lpSystemTime);
void GetSystemTime(LPSYSTEMTIME lpSystemTime);
//C void GetSystemTimeAsFileTime(LPFILETIME lpSystemTimeAsFileTime);
void GetSystemTimeAsFileTime(LPFILETIME lpSystemTimeAsFileTime);
//C WINBOOL SetSystemTime(const SYSTEMTIME *lpSystemTime);
WINBOOL SetSystemTime(SYSTEMTIME *lpSystemTime);
//C void GetLocalTime(LPSYSTEMTIME lpSystemTime);
void GetLocalTime(LPSYSTEMTIME lpSystemTime);
//C WINBOOL SetLocalTime(const SYSTEMTIME *lpSystemTime);
WINBOOL SetLocalTime(SYSTEMTIME *lpSystemTime);
//C void GetSystemInfo(LPSYSTEM_INFO lpSystemInfo);
void GetSystemInfo(LPSYSTEM_INFO lpSystemInfo);
//C WINBOOL SetSystemFileCacheSize(SIZE_T MinimumFileCacheSize,SIZE_T MaximumFileCacheSize,DWORD Flags);
WINBOOL SetSystemFileCacheSize(SIZE_T MinimumFileCacheSize, SIZE_T MaximumFileCacheSize, DWORD Flags);
//C WINBOOL GetSystemFileCacheSize(PSIZE_T lpMinimumFileCacheSize,PSIZE_T lpMaximumFileCacheSize,PDWORD lpFlags);
WINBOOL GetSystemFileCacheSize(PSIZE_T lpMinimumFileCacheSize, PSIZE_T lpMaximumFileCacheSize, PDWORD lpFlags);
//C WINBOOL GetSystemRegistryQuota(PDWORD pdwQuotaAllowed,PDWORD pdwQuotaUsed);
WINBOOL GetSystemRegistryQuota(PDWORD pdwQuotaAllowed, PDWORD pdwQuotaUsed);
//C WINBOOL GetSystemTimes(LPFILETIME lpIdleTime,LPFILETIME lpKernelTime,LPFILETIME lpUserTime);
WINBOOL GetSystemTimes(LPFILETIME lpIdleTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime);
//C void GetNativeSystemInfo(LPSYSTEM_INFO lpSystemInfo);
void GetNativeSystemInfo(LPSYSTEM_INFO lpSystemInfo);
//C WINBOOL IsProcessorFeaturePresent(DWORD ProcessorFeature);
WINBOOL IsProcessorFeaturePresent(DWORD ProcessorFeature);
//C typedef struct _TIME_ZONE_INFORMATION {
//C LONG Bias;
//C WCHAR StandardName[32];
//C SYSTEMTIME StandardDate;
//C LONG StandardBias;
//C WCHAR DaylightName[32];
//C SYSTEMTIME DaylightDate;
//C LONG DaylightBias;
//C } TIME_ZONE_INFORMATION,*PTIME_ZONE_INFORMATION,*LPTIME_ZONE_INFORMATION;
struct _TIME_ZONE_INFORMATION
{
LONG Bias;
WCHAR [32]StandardName;
SYSTEMTIME StandardDate;
LONG StandardBias;
WCHAR [32]DaylightName;
SYSTEMTIME DaylightDate;
LONG DaylightBias;
}
alias _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION;
alias _TIME_ZONE_INFORMATION *PTIME_ZONE_INFORMATION;
alias _TIME_ZONE_INFORMATION *LPTIME_ZONE_INFORMATION;
//C WINBOOL SystemTimeToTzSpecificLocalTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation,LPSYSTEMTIME lpUniversalTime,LPSYSTEMTIME lpLocalTime);
WINBOOL SystemTimeToTzSpecificLocalTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation, LPSYSTEMTIME lpUniversalTime, LPSYSTEMTIME lpLocalTime);
//C WINBOOL TzSpecificLocalTimeToSystemTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation,LPSYSTEMTIME lpLocalTime,LPSYSTEMTIME lpUniversalTime);
WINBOOL TzSpecificLocalTimeToSystemTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation, LPSYSTEMTIME lpLocalTime, LPSYSTEMTIME lpUniversalTime);
//C DWORD GetTimeZoneInformation(LPTIME_ZONE_INFORMATION lpTimeZoneInformation);
DWORD GetTimeZoneInformation(LPTIME_ZONE_INFORMATION lpTimeZoneInformation);
//C WINBOOL SetTimeZoneInformation(const TIME_ZONE_INFORMATION *lpTimeZoneInformation);
WINBOOL SetTimeZoneInformation(TIME_ZONE_INFORMATION *lpTimeZoneInformation);
//C WINBOOL SystemTimeToFileTime(const SYSTEMTIME *lpSystemTime,LPFILETIME lpFileTime);
WINBOOL SystemTimeToFileTime(SYSTEMTIME *lpSystemTime, LPFILETIME lpFileTime);
//C WINBOOL FileTimeToLocalFileTime(const FILETIME *lpFileTime,LPFILETIME lpLocalFileTime);
WINBOOL FileTimeToLocalFileTime(FILETIME *lpFileTime, LPFILETIME lpLocalFileTime);
//C WINBOOL LocalFileTimeToFileTime(const FILETIME *lpLocalFileTime,LPFILETIME lpFileTime);
WINBOOL LocalFileTimeToFileTime(FILETIME *lpLocalFileTime, LPFILETIME lpFileTime);
//C WINBOOL FileTimeToSystemTime(const FILETIME *lpFileTime,LPSYSTEMTIME lpSystemTime);
WINBOOL FileTimeToSystemTime(FILETIME *lpFileTime, LPSYSTEMTIME lpSystemTime);
//C LONG CompareFileTime(const FILETIME *lpFileTime1,const FILETIME *lpFileTime2);
LONG CompareFileTime(FILETIME *lpFileTime1, FILETIME *lpFileTime2);
//C WINBOOL FileTimeToDosDateTime(const FILETIME *lpFileTime,LPWORD lpFatDate,LPWORD lpFatTime);
WINBOOL FileTimeToDosDateTime(FILETIME *lpFileTime, LPWORD lpFatDate, LPWORD lpFatTime);
//C WINBOOL DosDateTimeToFileTime(WORD wFatDate,WORD wFatTime,LPFILETIME lpFileTime);
WINBOOL DosDateTimeToFileTime(WORD wFatDate, WORD wFatTime, LPFILETIME lpFileTime);
//C DWORD GetTickCount(void);
DWORD GetTickCount();
//C WINBOOL SetSystemTimeAdjustment(DWORD dwTimeAdjustment,WINBOOL bTimeAdjustmentDisabled);
WINBOOL SetSystemTimeAdjustment(DWORD dwTimeAdjustment, WINBOOL bTimeAdjustmentDisabled);
//C WINBOOL GetSystemTimeAdjustment(PDWORD lpTimeAdjustment,PDWORD lpTimeIncrement,PBOOL lpTimeAdjustmentDisabled);
WINBOOL GetSystemTimeAdjustment(PDWORD lpTimeAdjustment, PDWORD lpTimeIncrement, PBOOL lpTimeAdjustmentDisabled);
//C DWORD FormatMessageA(DWORD dwFlags,LPCVOID lpSource,DWORD dwMessageId,DWORD dwLanguageId,LPSTR lpBuffer,DWORD nSize,va_list *Arguments);
DWORD FormatMessageA(DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, LPSTR lpBuffer, DWORD nSize, va_list *Arguments);
//C DWORD FormatMessageW(DWORD dwFlags,LPCVOID lpSource,DWORD dwMessageId,DWORD dwLanguageId,LPWSTR lpBuffer,DWORD nSize,va_list *Arguments);
DWORD FormatMessageW(DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, LPWSTR lpBuffer, DWORD nSize, va_list *Arguments);
//C WINBOOL CreatePipe(PHANDLE hReadPipe,PHANDLE hWritePipe,LPSECURITY_ATTRIBUTES lpPipeAttributes,DWORD nSize);
WINBOOL CreatePipe(PHANDLE hReadPipe, PHANDLE hWritePipe, LPSECURITY_ATTRIBUTES lpPipeAttributes, DWORD nSize);
//C WINBOOL ConnectNamedPipe(HANDLE hNamedPipe,LPOVERLAPPED lpOverlapped);
WINBOOL ConnectNamedPipe(HANDLE hNamedPipe, LPOVERLAPPED lpOverlapped);
//C WINBOOL DisconnectNamedPipe(HANDLE hNamedPipe);
WINBOOL DisconnectNamedPipe(HANDLE hNamedPipe);
//C WINBOOL SetNamedPipeHandleState(HANDLE hNamedPipe,LPDWORD lpMode,LPDWORD lpMaxCollectionCount,LPDWORD lpCollectDataTimeout);
WINBOOL SetNamedPipeHandleState(HANDLE hNamedPipe, LPDWORD lpMode, LPDWORD lpMaxCollectionCount, LPDWORD lpCollectDataTimeout);
//C WINBOOL GetNamedPipeInfo(HANDLE hNamedPipe,LPDWORD lpFlags,LPDWORD lpOutBufferSize,LPDWORD lpInBufferSize,LPDWORD lpMaxInstances);
WINBOOL GetNamedPipeInfo(HANDLE hNamedPipe, LPDWORD lpFlags, LPDWORD lpOutBufferSize, LPDWORD lpInBufferSize, LPDWORD lpMaxInstances);
//C WINBOOL PeekNamedPipe(HANDLE hNamedPipe,LPVOID lpBuffer,DWORD nBufferSize,LPDWORD lpBytesRead,LPDWORD lpTotalBytesAvail,LPDWORD lpBytesLeftThisMessage);
WINBOOL PeekNamedPipe(HANDLE hNamedPipe, LPVOID lpBuffer, DWORD nBufferSize, LPDWORD lpBytesRead, LPDWORD lpTotalBytesAvail, LPDWORD lpBytesLeftThisMessage);
//C WINBOOL TransactNamedPipe(HANDLE hNamedPipe,LPVOID lpInBuffer,DWORD nInBufferSize,LPVOID lpOutBuffer,DWORD nOutBufferSize,LPDWORD lpBytesRead,LPOVERLAPPED lpOverlapped);
WINBOOL TransactNamedPipe(HANDLE hNamedPipe, LPVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesRead, LPOVERLAPPED lpOverlapped);
//C HANDLE CreateMailslotA(LPCSTR lpName,DWORD nMaxMessageSize,DWORD lReadTimeout,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
HANDLE CreateMailslotA(LPCSTR lpName, DWORD nMaxMessageSize, DWORD lReadTimeout, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C HANDLE CreateMailslotW(LPCWSTR lpName,DWORD nMaxMessageSize,DWORD lReadTimeout,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
HANDLE CreateMailslotW(LPCWSTR lpName, DWORD nMaxMessageSize, DWORD lReadTimeout, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL GetMailslotInfo(HANDLE hMailslot,LPDWORD lpMaxMessageSize,LPDWORD lpNextSize,LPDWORD lpMessageCount,LPDWORD lpReadTimeout);
WINBOOL GetMailslotInfo(HANDLE hMailslot, LPDWORD lpMaxMessageSize, LPDWORD lpNextSize, LPDWORD lpMessageCount, LPDWORD lpReadTimeout);
//C WINBOOL SetMailslotInfo(HANDLE hMailslot,DWORD lReadTimeout);
WINBOOL SetMailslotInfo(HANDLE hMailslot, DWORD lReadTimeout);
//C LPVOID MapViewOfFile(HANDLE hFileMappingObject,DWORD dwDesiredAccess,DWORD dwFileOffsetHigh,DWORD dwFileOffsetLow,SIZE_T dwNumberOfBytesToMap);
LPVOID MapViewOfFile(HANDLE hFileMappingObject, DWORD dwDesiredAccess, DWORD dwFileOffsetHigh, DWORD dwFileOffsetLow, SIZE_T dwNumberOfBytesToMap);
//C WINBOOL FlushViewOfFile(LPCVOID lpBaseAddress,SIZE_T dwNumberOfBytesToFlush);
WINBOOL FlushViewOfFile(LPCVOID lpBaseAddress, SIZE_T dwNumberOfBytesToFlush);
//C WINBOOL UnmapViewOfFile(LPCVOID lpBaseAddress);
WINBOOL UnmapViewOfFile(LPCVOID lpBaseAddress);
//C WINBOOL EncryptFileA(LPCSTR lpFileName);
WINBOOL EncryptFileA(LPCSTR lpFileName);
//C WINBOOL EncryptFileW(LPCWSTR lpFileName);
WINBOOL EncryptFileW(LPCWSTR lpFileName);
//C WINBOOL DecryptFileA(LPCSTR lpFileName,DWORD dwReserved);
WINBOOL DecryptFileA(LPCSTR lpFileName, DWORD dwReserved);
//C WINBOOL DecryptFileW(LPCWSTR lpFileName,DWORD dwReserved);
WINBOOL DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved);
//C WINBOOL FileEncryptionStatusA(LPCSTR lpFileName,LPDWORD lpStatus);
WINBOOL FileEncryptionStatusA(LPCSTR lpFileName, LPDWORD lpStatus);
//C WINBOOL FileEncryptionStatusW(LPCWSTR lpFileName,LPDWORD lpStatus);
WINBOOL FileEncryptionStatusW(LPCWSTR lpFileName, LPDWORD lpStatus);
//C typedef DWORD ( *PFE_EXPORT_FUNC)(PBYTE pbData,PVOID pvCallbackContext,ULONG ulLength);
alias DWORD function(PBYTE pbData, PVOID pvCallbackContext, ULONG ulLength)PFE_EXPORT_FUNC;
//C typedef DWORD ( *PFE_IMPORT_FUNC)(PBYTE pbData,PVOID pvCallbackContext,PULONG ulLength);
alias DWORD function(PBYTE pbData, PVOID pvCallbackContext, PULONG ulLength)PFE_IMPORT_FUNC;
//C DWORD OpenEncryptedFileRawA(LPCSTR lpFileName,ULONG ulFlags,PVOID *pvContext);
DWORD OpenEncryptedFileRawA(LPCSTR lpFileName, ULONG ulFlags, PVOID *pvContext);
//C DWORD OpenEncryptedFileRawW(LPCWSTR lpFileName,ULONG ulFlags,PVOID *pvContext);
DWORD OpenEncryptedFileRawW(LPCWSTR lpFileName, ULONG ulFlags, PVOID *pvContext);
//C DWORD ReadEncryptedFileRaw(PFE_EXPORT_FUNC pfExportCallback,PVOID pvCallbackContext,PVOID pvContext);
DWORD ReadEncryptedFileRaw(PFE_EXPORT_FUNC pfExportCallback, PVOID pvCallbackContext, PVOID pvContext);
//C DWORD WriteEncryptedFileRaw(PFE_IMPORT_FUNC pfImportCallback,PVOID pvCallbackContext,PVOID pvContext);
DWORD WriteEncryptedFileRaw(PFE_IMPORT_FUNC pfImportCallback, PVOID pvCallbackContext, PVOID pvContext);
//C void CloseEncryptedFileRaw(PVOID pvContext);
void CloseEncryptedFileRaw(PVOID pvContext);
//C int lstrcmpA(LPCSTR lpString1,LPCSTR lpString2);
int lstrcmpA(LPCSTR lpString1, LPCSTR lpString2);
//C int lstrcmpW(LPCWSTR lpString1,LPCWSTR lpString2);
int lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2);
//C int lstrcmpiA(LPCSTR lpString1,LPCSTR lpString2);
int lstrcmpiA(LPCSTR lpString1, LPCSTR lpString2);
//C int lstrcmpiW(LPCWSTR lpString1,LPCWSTR lpString2);
int lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2);
//C LPSTR lstrcpynA(LPSTR lpString1,LPCSTR lpString2,int iMaxLength);
LPSTR lstrcpynA(LPSTR lpString1, LPCSTR lpString2, int iMaxLength);
//C LPWSTR lstrcpynW(LPWSTR lpString1,LPCWSTR lpString2,int iMaxLength);
LPWSTR lstrcpynW(LPWSTR lpString1, LPCWSTR lpString2, int iMaxLength);
//C LPSTR lstrcpyA(LPSTR lpString1,LPCSTR lpString2);
LPSTR lstrcpyA(LPSTR lpString1, LPCSTR lpString2);
//C LPWSTR lstrcpyW(LPWSTR lpString1,LPCWSTR lpString2);
LPWSTR lstrcpyW(LPWSTR lpString1, LPCWSTR lpString2);
//C LPSTR lstrcatA(LPSTR lpString1,LPCSTR lpString2);
LPSTR lstrcatA(LPSTR lpString1, LPCSTR lpString2);
//C LPWSTR lstrcatW(LPWSTR lpString1,LPCWSTR lpString2);
LPWSTR lstrcatW(LPWSTR lpString1, LPCWSTR lpString2);
//C int lstrlenA(LPCSTR lpString);
int lstrlenA(LPCSTR lpString);
//C int lstrlenW(LPCWSTR lpString);
int lstrlenW(LPCWSTR lpString);
//C HFILE OpenFile(LPCSTR lpFileName,LPOFSTRUCT lpReOpenBuff,UINT uStyle);
HFILE OpenFile(LPCSTR lpFileName, LPOFSTRUCT lpReOpenBuff, UINT uStyle);
//C HFILE _lopen(LPCSTR lpPathName,int iReadWrite);
HFILE _lopen(LPCSTR lpPathName, int iReadWrite);
//C HFILE _lcreat(LPCSTR lpPathName,int iAttribute);
HFILE _lcreat(LPCSTR lpPathName, int iAttribute);
//C UINT _lread(HFILE hFile,LPVOID lpBuffer,UINT uBytes);
UINT _lread(HFILE hFile, LPVOID lpBuffer, UINT uBytes);
//C UINT _lwrite(HFILE hFile,LPCCH lpBuffer,UINT uBytes);
UINT _lwrite(HFILE hFile, LPCCH lpBuffer, UINT uBytes);
//C long _hread(HFILE hFile,LPVOID lpBuffer,long lBytes);
int _hread(HFILE hFile, LPVOID lpBuffer, int lBytes);
//C long _hwrite(HFILE hFile,LPCCH lpBuffer,long lBytes);
int _hwrite(HFILE hFile, LPCCH lpBuffer, int lBytes);
//C HFILE _lclose(HFILE hFile);
HFILE _lclose(HFILE hFile);
//C LONG _llseek(HFILE hFile,LONG lOffset,int iOrigin);
LONG _llseek(HFILE hFile, LONG lOffset, int iOrigin);
//C WINBOOL IsTextUnicode(const void *lpv,int iSize,LPINT lpiResult);
WINBOOL IsTextUnicode(void *lpv, int iSize, LPINT lpiResult);
//C DWORD FlsAlloc(PFLS_CALLBACK_FUNCTION lpCallback);
DWORD FlsAlloc(PFLS_CALLBACK_FUNCTION lpCallback);
//C PVOID FlsGetValue(DWORD dwFlsIndex);
PVOID FlsGetValue(DWORD dwFlsIndex);
//C WINBOOL FlsSetValue(DWORD dwFlsIndex,PVOID lpFlsData);
WINBOOL FlsSetValue(DWORD dwFlsIndex, PVOID lpFlsData);
//C WINBOOL FlsFree(DWORD dwFlsIndex);
WINBOOL FlsFree(DWORD dwFlsIndex);
//C DWORD TlsAlloc(void);
DWORD TlsAlloc();
//C LPVOID TlsGetValue(DWORD dwTlsIndex);
LPVOID TlsGetValue(DWORD dwTlsIndex);
//C WINBOOL TlsSetValue(DWORD dwTlsIndex,LPVOID lpTlsValue);
WINBOOL TlsSetValue(DWORD dwTlsIndex, LPVOID lpTlsValue);
//C WINBOOL TlsFree(DWORD dwTlsIndex);
WINBOOL TlsFree(DWORD dwTlsIndex);
//C typedef void ( *LPOVERLAPPED_COMPLETION_ROUTINE)(DWORD dwErrorCode,DWORD dwNumberOfBytesTransfered,LPOVERLAPPED lpOverlapped);
alias void function(DWORD dwErrorCode, DWORD dwNumberOfBytesTransfered, LPOVERLAPPED lpOverlapped)LPOVERLAPPED_COMPLETION_ROUTINE;
//C DWORD SleepEx(DWORD dwMilliseconds,WINBOOL bAlertable);
DWORD SleepEx(DWORD dwMilliseconds, WINBOOL bAlertable);
//C DWORD WaitForSingleObjectEx(HANDLE hHandle,DWORD dwMilliseconds,WINBOOL bAlertable);
DWORD WaitForSingleObjectEx(HANDLE hHandle, DWORD dwMilliseconds, WINBOOL bAlertable);
//C DWORD WaitForMultipleObjectsEx(DWORD nCount,const HANDLE *lpHandles,WINBOOL bWaitAll,DWORD dwMilliseconds,WINBOOL bAlertable);
DWORD WaitForMultipleObjectsEx(DWORD nCount, HANDLE *lpHandles, WINBOOL bWaitAll, DWORD dwMilliseconds, WINBOOL bAlertable);
//C DWORD SignalObjectAndWait(HANDLE hObjectToSignal,HANDLE hObjectToWaitOn,DWORD dwMilliseconds,WINBOOL bAlertable);
DWORD SignalObjectAndWait(HANDLE hObjectToSignal, HANDLE hObjectToWaitOn, DWORD dwMilliseconds, WINBOOL bAlertable);
//C WINBOOL ReadFileEx(HANDLE hFile,LPVOID lpBuffer,DWORD nNumberOfBytesToRead,LPOVERLAPPED lpOverlapped,LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
WINBOOL ReadFileEx(HANDLE hFile, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, LPOVERLAPPED lpOverlapped, LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
//C WINBOOL WriteFileEx(HANDLE hFile,LPCVOID lpBuffer,DWORD nNumberOfBytesToWrite,LPOVERLAPPED lpOverlapped,LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
WINBOOL WriteFileEx(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPOVERLAPPED lpOverlapped, LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
//C WINBOOL BackupRead(HANDLE hFile,LPBYTE lpBuffer,DWORD nNumberOfBytesToRead,LPDWORD lpNumberOfBytesRead,WINBOOL bAbort,WINBOOL bProcessSecurity,LPVOID *lpContext);
WINBOOL BackupRead(HANDLE hFile, LPBYTE lpBuffer, DWORD nNumberOfBytesToRead, LPDWORD lpNumberOfBytesRead, WINBOOL bAbort, WINBOOL bProcessSecurity, LPVOID *lpContext);
//C WINBOOL BackupSeek(HANDLE hFile,DWORD dwLowBytesToSeek,DWORD dwHighBytesToSeek,LPDWORD lpdwLowByteSeeked,LPDWORD lpdwHighByteSeeked,LPVOID *lpContext);
WINBOOL BackupSeek(HANDLE hFile, DWORD dwLowBytesToSeek, DWORD dwHighBytesToSeek, LPDWORD lpdwLowByteSeeked, LPDWORD lpdwHighByteSeeked, LPVOID *lpContext);
//C WINBOOL BackupWrite(HANDLE hFile,LPBYTE lpBuffer,DWORD nNumberOfBytesToWrite,LPDWORD lpNumberOfBytesWritten,WINBOOL bAbort,WINBOOL bProcessSecurity,LPVOID *lpContext);
WINBOOL BackupWrite(HANDLE hFile, LPBYTE lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, WINBOOL bAbort, WINBOOL bProcessSecurity, LPVOID *lpContext);
//C typedef struct _WIN32_STREAM_ID {
//C DWORD dwStreamId;
//C DWORD dwStreamAttributes;
//C LARGE_INTEGER Size;
//C DWORD dwStreamNameSize;
//C WCHAR cStreamName[1];
//C } WIN32_STREAM_ID,*LPWIN32_STREAM_ID;
struct _WIN32_STREAM_ID
{
DWORD dwStreamId;
DWORD dwStreamAttributes;
LARGE_INTEGER Size;
DWORD dwStreamNameSize;
WCHAR [1]cStreamName;
}
alias _WIN32_STREAM_ID WIN32_STREAM_ID;
alias _WIN32_STREAM_ID *LPWIN32_STREAM_ID;
//C WINBOOL ReadFileScatter(HANDLE hFile,FILE_SEGMENT_ELEMENT aSegmentArray[],DWORD nNumberOfBytesToRead,LPDWORD lpReserved,LPOVERLAPPED lpOverlapped);
WINBOOL ReadFileScatter(HANDLE hFile, FILE_SEGMENT_ELEMENT *aSegmentArray, DWORD nNumberOfBytesToRead, LPDWORD lpReserved, LPOVERLAPPED lpOverlapped);
//C WINBOOL WriteFileGather(HANDLE hFile,FILE_SEGMENT_ELEMENT aSegmentArray[],DWORD nNumberOfBytesToWrite,LPDWORD lpReserved,LPOVERLAPPED lpOverlapped);
WINBOOL WriteFileGather(HANDLE hFile, FILE_SEGMENT_ELEMENT *aSegmentArray, DWORD nNumberOfBytesToWrite, LPDWORD lpReserved, LPOVERLAPPED lpOverlapped);
//C typedef struct _STARTUPINFOA {
//C DWORD cb;
//C LPSTR lpReserved;
//C LPSTR lpDesktop;
//C LPSTR lpTitle;
//C DWORD dwX;
//C DWORD dwY;
//C DWORD dwXSize;
//C DWORD dwYSize;
//C DWORD dwXCountChars;
//C DWORD dwYCountChars;
//C DWORD dwFillAttribute;
//C DWORD dwFlags;
//C WORD wShowWindow;
//C WORD cbReserved2;
//C LPBYTE lpReserved2;
//C HANDLE hStdInput;
//C HANDLE hStdOutput;
//C HANDLE hStdError;
//C } STARTUPINFOA,*LPSTARTUPINFOA;
struct _STARTUPINFOA
{
DWORD cb;
LPSTR lpReserved;
LPSTR lpDesktop;
LPSTR lpTitle;
DWORD dwX;
DWORD dwY;
DWORD dwXSize;
DWORD dwYSize;
DWORD dwXCountChars;
DWORD dwYCountChars;
DWORD dwFillAttribute;
DWORD dwFlags;
WORD wShowWindow;
WORD cbReserved2;
LPBYTE lpReserved2;
HANDLE hStdInput;
HANDLE hStdOutput;
HANDLE hStdError;
}
alias _STARTUPINFOA STARTUPINFOA;
alias _STARTUPINFOA *LPSTARTUPINFOA;
//C typedef struct _STARTUPINFOW {
//C DWORD cb;
//C LPWSTR lpReserved;
//C LPWSTR lpDesktop;
//C LPWSTR lpTitle;
//C DWORD dwX;
//C DWORD dwY;
//C DWORD dwXSize;
//C DWORD dwYSize;
//C DWORD dwXCountChars;
//C DWORD dwYCountChars;
//C DWORD dwFillAttribute;
//C DWORD dwFlags;
//C WORD wShowWindow;
//C WORD cbReserved2;
//C LPBYTE lpReserved2;
//C HANDLE hStdInput;
//C HANDLE hStdOutput;
//C HANDLE hStdError;
//C } STARTUPINFOW,*LPSTARTUPINFOW;
struct _STARTUPINFOW
{
DWORD cb;
LPWSTR lpReserved;
LPWSTR lpDesktop;
LPWSTR lpTitle;
DWORD dwX;
DWORD dwY;
DWORD dwXSize;
DWORD dwYSize;
DWORD dwXCountChars;
DWORD dwYCountChars;
DWORD dwFillAttribute;
DWORD dwFlags;
WORD wShowWindow;
WORD cbReserved2;
LPBYTE lpReserved2;
HANDLE hStdInput;
HANDLE hStdOutput;
HANDLE hStdError;
}
alias _STARTUPINFOW STARTUPINFOW;
alias _STARTUPINFOW *LPSTARTUPINFOW;
//C typedef STARTUPINFOA STARTUPINFO;
alias STARTUPINFOA STARTUPINFO;
//C typedef LPSTARTUPINFOA LPSTARTUPINFO;
alias LPSTARTUPINFOA LPSTARTUPINFO;
//C typedef struct _WIN32_FIND_DATAA {
//C DWORD dwFileAttributes;
//C FILETIME ftCreationTime;
//C FILETIME ftLastAccessTime;
//C FILETIME ftLastWriteTime;
//C DWORD nFileSizeHigh;
//C DWORD nFileSizeLow;
//C DWORD dwReserved0;
//C DWORD dwReserved1;
//C CHAR cFileName[260];
//C CHAR cAlternateFileName[14];
//C } WIN32_FIND_DATAA,*PWIN32_FIND_DATAA,*LPWIN32_FIND_DATAA;
struct _WIN32_FIND_DATAA
{
DWORD dwFileAttributes;
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
DWORD nFileSizeHigh;
DWORD nFileSizeLow;
DWORD dwReserved0;
DWORD dwReserved1;
CHAR [260]cFileName;
CHAR [14]cAlternateFileName;
}
alias _WIN32_FIND_DATAA WIN32_FIND_DATAA;
alias _WIN32_FIND_DATAA *PWIN32_FIND_DATAA;
alias _WIN32_FIND_DATAA *LPWIN32_FIND_DATAA;
//C typedef struct _WIN32_FIND_DATAW {
//C DWORD dwFileAttributes;
//C FILETIME ftCreationTime;
//C FILETIME ftLastAccessTime;
//C FILETIME ftLastWriteTime;
//C DWORD nFileSizeHigh;
//C DWORD nFileSizeLow;
//C DWORD dwReserved0;
//C DWORD dwReserved1;
//C WCHAR cFileName[260];
//C WCHAR cAlternateFileName[14];
//C } WIN32_FIND_DATAW,*PWIN32_FIND_DATAW,*LPWIN32_FIND_DATAW;
struct _WIN32_FIND_DATAW
{
DWORD dwFileAttributes;
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
DWORD nFileSizeHigh;
DWORD nFileSizeLow;
DWORD dwReserved0;
DWORD dwReserved1;
WCHAR [260]cFileName;
WCHAR [14]cAlternateFileName;
}
alias _WIN32_FIND_DATAW WIN32_FIND_DATAW;
alias _WIN32_FIND_DATAW *PWIN32_FIND_DATAW;
alias _WIN32_FIND_DATAW *LPWIN32_FIND_DATAW;
//C typedef WIN32_FIND_DATAA WIN32_FIND_DATA;
alias WIN32_FIND_DATAA WIN32_FIND_DATA;
//C typedef PWIN32_FIND_DATAA PWIN32_FIND_DATA;
alias PWIN32_FIND_DATAA PWIN32_FIND_DATA;
//C typedef LPWIN32_FIND_DATAA LPWIN32_FIND_DATA;
alias LPWIN32_FIND_DATAA LPWIN32_FIND_DATA;
//C typedef struct _WIN32_FILE_ATTRIBUTE_DATA {
//C DWORD dwFileAttributes;
//C FILETIME ftCreationTime;
//C FILETIME ftLastAccessTime;
//C FILETIME ftLastWriteTime;
//C DWORD nFileSizeHigh;
//C DWORD nFileSizeLow;
//C } WIN32_FILE_ATTRIBUTE_DATA,*LPWIN32_FILE_ATTRIBUTE_DATA;
struct _WIN32_FILE_ATTRIBUTE_DATA
{
DWORD dwFileAttributes;
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
DWORD nFileSizeHigh;
DWORD nFileSizeLow;
}
alias _WIN32_FILE_ATTRIBUTE_DATA WIN32_FILE_ATTRIBUTE_DATA;
alias _WIN32_FILE_ATTRIBUTE_DATA *LPWIN32_FILE_ATTRIBUTE_DATA;
//C HANDLE CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes,WINBOOL bInitialOwner,LPCSTR lpName);
HANDLE CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes, WINBOOL bInitialOwner, LPCSTR lpName);
//C HANDLE CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes,WINBOOL bInitialOwner,LPCWSTR lpName);
HANDLE CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes, WINBOOL bInitialOwner, LPCWSTR lpName);
//C HANDLE OpenMutexA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpName);
HANDLE OpenMutexA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpName);
//C HANDLE OpenMutexW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpName);
HANDLE OpenMutexW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpName);
//C HANDLE CreateEventA(LPSECURITY_ATTRIBUTES lpEventAttributes,WINBOOL bManualReset,WINBOOL bInitialState,LPCSTR lpName);
HANDLE CreateEventA(LPSECURITY_ATTRIBUTES lpEventAttributes, WINBOOL bManualReset, WINBOOL bInitialState, LPCSTR lpName);
//C HANDLE CreateEventW(LPSECURITY_ATTRIBUTES lpEventAttributes,WINBOOL bManualReset,WINBOOL bInitialState,LPCWSTR lpName);
HANDLE CreateEventW(LPSECURITY_ATTRIBUTES lpEventAttributes, WINBOOL bManualReset, WINBOOL bInitialState, LPCWSTR lpName);
//C HANDLE OpenEventA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpName);
HANDLE OpenEventA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpName);
//C HANDLE OpenEventW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpName);
HANDLE OpenEventW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpName);
//C HANDLE CreateSemaphoreA(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,LONG lInitialCount,LONG lMaximumCount,LPCSTR lpName);
HANDLE CreateSemaphoreA(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, LONG lInitialCount, LONG lMaximumCount, LPCSTR lpName);
//C HANDLE CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,LONG lInitialCount,LONG lMaximumCount,LPCWSTR lpName);
HANDLE CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, LONG lInitialCount, LONG lMaximumCount, LPCWSTR lpName);
//C HANDLE OpenSemaphoreA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpName);
HANDLE OpenSemaphoreA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpName);
//C HANDLE OpenSemaphoreW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpName);
HANDLE OpenSemaphoreW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpName);
//C typedef void ( *PTIMERAPCROUTINE)(LPVOID lpArgToCompletionRoutine,DWORD dwTimerLowValue,DWORD dwTimerHighValue);
alias void function(LPVOID lpArgToCompletionRoutine, DWORD dwTimerLowValue, DWORD dwTimerHighValue)PTIMERAPCROUTINE;
//C HANDLE CreateWaitableTimerA(LPSECURITY_ATTRIBUTES lpTimerAttributes,WINBOOL bManualReset,LPCSTR lpTimerName);
HANDLE CreateWaitableTimerA(LPSECURITY_ATTRIBUTES lpTimerAttributes, WINBOOL bManualReset, LPCSTR lpTimerName);
//C HANDLE CreateWaitableTimerW(LPSECURITY_ATTRIBUTES lpTimerAttributes,WINBOOL bManualReset,LPCWSTR lpTimerName);
HANDLE CreateWaitableTimerW(LPSECURITY_ATTRIBUTES lpTimerAttributes, WINBOOL bManualReset, LPCWSTR lpTimerName);
//C HANDLE OpenWaitableTimerA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpTimerName);
HANDLE OpenWaitableTimerA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpTimerName);
//C HANDLE OpenWaitableTimerW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpTimerName);
HANDLE OpenWaitableTimerW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpTimerName);
//C WINBOOL SetWaitableTimer(HANDLE hTimer,const LARGE_INTEGER *lpDueTime,LONG lPeriod,PTIMERAPCROUTINE pfnCompletionRoutine,LPVOID lpArgToCompletionRoutine,WINBOOL fResume);
WINBOOL SetWaitableTimer(HANDLE hTimer, LARGE_INTEGER *lpDueTime, LONG lPeriod, PTIMERAPCROUTINE pfnCompletionRoutine, LPVOID lpArgToCompletionRoutine, WINBOOL fResume);
//C WINBOOL CancelWaitableTimer(HANDLE hTimer);
WINBOOL CancelWaitableTimer(HANDLE hTimer);
//C HANDLE CreateFileMappingA(HANDLE hFile,LPSECURITY_ATTRIBUTES lpFileMappingAttributes,DWORD flProtect,DWORD dwMaximumSizeHigh,DWORD dwMaximumSizeLow,LPCSTR lpName);
HANDLE CreateFileMappingA(HANDLE hFile, LPSECURITY_ATTRIBUTES lpFileMappingAttributes, DWORD flProtect, DWORD dwMaximumSizeHigh, DWORD dwMaximumSizeLow, LPCSTR lpName);
//C HANDLE CreateFileMappingW(HANDLE hFile,LPSECURITY_ATTRIBUTES lpFileMappingAttributes,DWORD flProtect,DWORD dwMaximumSizeHigh,DWORD dwMaximumSizeLow,LPCWSTR lpName);
HANDLE CreateFileMappingW(HANDLE hFile, LPSECURITY_ATTRIBUTES lpFileMappingAttributes, DWORD flProtect, DWORD dwMaximumSizeHigh, DWORD dwMaximumSizeLow, LPCWSTR lpName);
//C HANDLE OpenFileMappingA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpName);
HANDLE OpenFileMappingA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpName);
//C HANDLE OpenFileMappingW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpName);
HANDLE OpenFileMappingW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpName);
//C DWORD GetLogicalDriveStringsA(DWORD nBufferLength,LPSTR lpBuffer);
DWORD GetLogicalDriveStringsA(DWORD nBufferLength, LPSTR lpBuffer);
//C DWORD GetLogicalDriveStringsW(DWORD nBufferLength,LPWSTR lpBuffer);
DWORD GetLogicalDriveStringsW(DWORD nBufferLength, LPWSTR lpBuffer);
//C typedef enum _MEMORY_RESOURCE_NOTIFICATION_TYPE {
//C LowMemoryResourceNotification,HighMemoryResourceNotification
//C } MEMORY_RESOURCE_NOTIFICATION_TYPE;
enum _MEMORY_RESOURCE_NOTIFICATION_TYPE
{
LowMemoryResourceNotification,
HighMemoryResourceNotification,
}
alias _MEMORY_RESOURCE_NOTIFICATION_TYPE MEMORY_RESOURCE_NOTIFICATION_TYPE;
//C HANDLE CreateMemoryResourceNotification(MEMORY_RESOURCE_NOTIFICATION_TYPE NotificationType);
HANDLE CreateMemoryResourceNotification(MEMORY_RESOURCE_NOTIFICATION_TYPE NotificationType);
//C WINBOOL QueryMemoryResourceNotification(HANDLE ResourceNotificationHandle,PBOOL ResourceState);
WINBOOL QueryMemoryResourceNotification(HANDLE ResourceNotificationHandle, PBOOL ResourceState);
//C HMODULE LoadLibraryA(LPCSTR lpLibFileName);
HMODULE LoadLibraryA(LPCSTR lpLibFileName);
//C HMODULE LoadLibraryW(LPCWSTR lpLibFileName);
HMODULE LoadLibraryW(LPCWSTR lpLibFileName);
//C HMODULE LoadLibraryExA(LPCSTR lpLibFileName,HANDLE hFile,DWORD dwFlags);
HMODULE LoadLibraryExA(LPCSTR lpLibFileName, HANDLE hFile, DWORD dwFlags);
//C HMODULE LoadLibraryExW(LPCWSTR lpLibFileName,HANDLE hFile,DWORD dwFlags);
HMODULE LoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags);
//C DWORD GetModuleFileNameA(HMODULE hModule,LPCH lpFilename,DWORD nSize);
DWORD GetModuleFileNameA(HMODULE hModule, LPCH lpFilename, DWORD nSize);
//C DWORD GetModuleFileNameW(HMODULE hModule,LPWCH lpFilename,DWORD nSize);
DWORD GetModuleFileNameW(HMODULE hModule, LPWCH lpFilename, DWORD nSize);
//C HMODULE GetModuleHandleA(LPCSTR lpModuleName);
HMODULE GetModuleHandleA(LPCSTR lpModuleName);
//C HMODULE GetModuleHandleW(LPCWSTR lpModuleName);
HMODULE GetModuleHandleW(LPCWSTR lpModuleName);
//C typedef WINBOOL ( *PGET_MODULE_HANDLE_EXA)(DWORD dwFlags,LPCSTR lpModuleName,HMODULE *phModule);
alias WINBOOL function(DWORD dwFlags, LPCSTR lpModuleName, HMODULE *phModule)PGET_MODULE_HANDLE_EXA;
//C typedef WINBOOL ( *PGET_MODULE_HANDLE_EXW)(DWORD dwFlags,LPCWSTR lpModuleName,HMODULE *phModule);
alias WINBOOL function(DWORD dwFlags, LPCWSTR lpModuleName, HMODULE *phModule)PGET_MODULE_HANDLE_EXW;
//C WINBOOL GetModuleHandleExA(DWORD dwFlags,LPCSTR lpModuleName,HMODULE *phModule);
WINBOOL GetModuleHandleExA(DWORD dwFlags, LPCSTR lpModuleName, HMODULE *phModule);
//C WINBOOL GetModuleHandleExW(DWORD dwFlags,LPCWSTR lpModuleName,HMODULE *phModule);
WINBOOL GetModuleHandleExW(DWORD dwFlags, LPCWSTR lpModuleName, HMODULE *phModule);
//C WINBOOL NeedCurrentDirectoryForExePathA(LPCSTR ExeName);
WINBOOL NeedCurrentDirectoryForExePathA(LPCSTR ExeName);
//C WINBOOL NeedCurrentDirectoryForExePathW(LPCWSTR ExeName);
WINBOOL NeedCurrentDirectoryForExePathW(LPCWSTR ExeName);
//C WINBOOL CreateProcessA(LPCSTR lpApplicationName,LPSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpProcessAttributes,LPSECURITY_ATTRIBUTES lpThreadAttributes,WINBOOL bInheritHandles,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCSTR lpCurrentDirectory,LPSTARTUPINFOA lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessA(LPCSTR lpApplicationName, LPSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, WINBOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCSTR lpCurrentDirectory, LPSTARTUPINFOA lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C WINBOOL CreateProcessW(LPCWSTR lpApplicationName,LPWSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpProcessAttributes,LPSECURITY_ATTRIBUTES lpThreadAttributes,WINBOOL bInheritHandles,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCWSTR lpCurrentDirectory,LPSTARTUPINFOW lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessW(LPCWSTR lpApplicationName, LPWSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, WINBOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCWSTR lpCurrentDirectory, LPSTARTUPINFOW lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C DWORD AddLocalAlternateComputerNameA(LPCSTR lpDnsFQHostname,ULONG ulFlags);
DWORD AddLocalAlternateComputerNameA(LPCSTR lpDnsFQHostname, ULONG ulFlags);
//C DWORD AddLocalAlternateComputerNameW(LPCWSTR lpDnsFQHostname,ULONG ulFlags);
DWORD AddLocalAlternateComputerNameW(LPCWSTR lpDnsFQHostname, ULONG ulFlags);
//C WINBOOL SetProcessShutdownParameters(DWORD dwLevel,DWORD dwFlags);
WINBOOL SetProcessShutdownParameters(DWORD dwLevel, DWORD dwFlags);
//C WINBOOL GetProcessShutdownParameters(LPDWORD lpdwLevel,LPDWORD lpdwFlags);
WINBOOL GetProcessShutdownParameters(LPDWORD lpdwLevel, LPDWORD lpdwFlags);
//C DWORD GetProcessVersion(DWORD ProcessId);
DWORD GetProcessVersion(DWORD ProcessId);
//C void FatalAppExitA(UINT uAction,LPCSTR lpMessageText);
void FatalAppExitA(UINT uAction, LPCSTR lpMessageText);
//C void FatalAppExitW(UINT uAction,LPCWSTR lpMessageText);
void FatalAppExitW(UINT uAction, LPCWSTR lpMessageText);
//C void GetStartupInfoA(LPSTARTUPINFOA lpStartupInfo);
void GetStartupInfoA(LPSTARTUPINFOA lpStartupInfo);
//C void GetStartupInfoW(LPSTARTUPINFOW lpStartupInfo);
void GetStartupInfoW(LPSTARTUPINFOW lpStartupInfo);
//C LPSTR GetCommandLineA(void);
LPSTR GetCommandLineA();
//C LPWSTR GetCommandLineW(void);
LPWSTR GetCommandLineW();
//C DWORD GetEnvironmentVariableA(LPCSTR lpName,LPSTR lpBuffer,DWORD nSize);
DWORD GetEnvironmentVariableA(LPCSTR lpName, LPSTR lpBuffer, DWORD nSize);
//C DWORD GetEnvironmentVariableW(LPCWSTR lpName,LPWSTR lpBuffer,DWORD nSize);
DWORD GetEnvironmentVariableW(LPCWSTR lpName, LPWSTR lpBuffer, DWORD nSize);
//C WINBOOL SetEnvironmentVariableA(LPCSTR lpName,LPCSTR lpValue);
WINBOOL SetEnvironmentVariableA(LPCSTR lpName, LPCSTR lpValue);
//C WINBOOL SetEnvironmentVariableW(LPCWSTR lpName,LPCWSTR lpValue);
WINBOOL SetEnvironmentVariableW(LPCWSTR lpName, LPCWSTR lpValue);
//C DWORD ExpandEnvironmentStringsA(LPCSTR lpSrc,LPSTR lpDst,DWORD nSize);
DWORD ExpandEnvironmentStringsA(LPCSTR lpSrc, LPSTR lpDst, DWORD nSize);
//C DWORD ExpandEnvironmentStringsW(LPCWSTR lpSrc,LPWSTR lpDst,DWORD nSize);
DWORD ExpandEnvironmentStringsW(LPCWSTR lpSrc, LPWSTR lpDst, DWORD nSize);
//C DWORD GetFirmwareEnvironmentVariableA(LPCSTR lpName,LPCSTR lpGuid,PVOID pBuffer,DWORD nSize);
DWORD GetFirmwareEnvironmentVariableA(LPCSTR lpName, LPCSTR lpGuid, PVOID pBuffer, DWORD nSize);
//C DWORD GetFirmwareEnvironmentVariableW(LPCWSTR lpName,LPCWSTR lpGuid,PVOID pBuffer,DWORD nSize);
DWORD GetFirmwareEnvironmentVariableW(LPCWSTR lpName, LPCWSTR lpGuid, PVOID pBuffer, DWORD nSize);
//C WINBOOL SetFirmwareEnvironmentVariableA(LPCSTR lpName,LPCSTR lpGuid,PVOID pValue,DWORD nSize);
WINBOOL SetFirmwareEnvironmentVariableA(LPCSTR lpName, LPCSTR lpGuid, PVOID pValue, DWORD nSize);
//C WINBOOL SetFirmwareEnvironmentVariableW(LPCWSTR lpName,LPCWSTR lpGuid,PVOID pValue,DWORD nSize);
WINBOOL SetFirmwareEnvironmentVariableW(LPCWSTR lpName, LPCWSTR lpGuid, PVOID pValue, DWORD nSize);
//C void OutputDebugStringA(LPCSTR lpOutputString);
void OutputDebugStringA(LPCSTR lpOutputString);
//C void OutputDebugStringW(LPCWSTR lpOutputString);
void OutputDebugStringW(LPCWSTR lpOutputString);
//C HRSRC FindResourceA(HMODULE hModule,LPCSTR lpName,LPCSTR lpType);
HRSRC FindResourceA(HMODULE hModule, LPCSTR lpName, LPCSTR lpType);
//C HRSRC FindResourceW(HMODULE hModule,LPCWSTR lpName,LPCWSTR lpType);
HRSRC FindResourceW(HMODULE hModule, LPCWSTR lpName, LPCWSTR lpType);
//C HRSRC FindResourceExA(HMODULE hModule,LPCSTR lpType,LPCSTR lpName,WORD wLanguage);
HRSRC FindResourceExA(HMODULE hModule, LPCSTR lpType, LPCSTR lpName, WORD wLanguage);
//C HRSRC FindResourceExW(HMODULE hModule,LPCWSTR lpType,LPCWSTR lpName,WORD wLanguage);
HRSRC FindResourceExW(HMODULE hModule, LPCWSTR lpType, LPCWSTR lpName, WORD wLanguage);
//C typedef enum _DEP_SYSTEM_POLICY_TYPE {
//C AlwaysOff = 0,
//C AlwaysOn = 1,
//C OptIn = 2,
//C OptOut = 3
//C } DEP_SYSTEM_POLICY_TYPE;
enum _DEP_SYSTEM_POLICY_TYPE
{
AlwaysOff,
AlwaysOn,
OptIn,
OptOut,
}
alias _DEP_SYSTEM_POLICY_TYPE DEP_SYSTEM_POLICY_TYPE;
//C DEP_SYSTEM_POLICY_TYPE GetSystemDEPPolicy (void);
DEP_SYSTEM_POLICY_TYPE GetSystemDEPPolicy();
//C typedef WINBOOL ( *ENUMRESTYPEPROCA)(HMODULE hModule,LPSTR lpType,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPSTR lpType, LONG_PTR lParam)ENUMRESTYPEPROCA;
//C typedef WINBOOL ( *ENUMRESTYPEPROCW)(HMODULE hModule,LPWSTR lpType,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPWSTR lpType, LONG_PTR lParam)ENUMRESTYPEPROCW;
//C typedef WINBOOL ( *ENUMRESNAMEPROCA)(HMODULE hModule,LPCSTR lpType,LPSTR lpName,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPCSTR lpType, LPSTR lpName, LONG_PTR lParam)ENUMRESNAMEPROCA;
//C typedef WINBOOL ( *ENUMRESNAMEPROCW)(HMODULE hModule,LPCWSTR lpType,LPWSTR lpName,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPCWSTR lpType, LPWSTR lpName, LONG_PTR lParam)ENUMRESNAMEPROCW;
//C typedef WINBOOL ( *ENUMRESLANGPROCA)(HMODULE hModule,LPCSTR lpType,LPCSTR lpName,WORD wLanguage,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPCSTR lpType, LPCSTR lpName, WORD wLanguage, LONG_PTR lParam)ENUMRESLANGPROCA;
//C typedef WINBOOL ( *ENUMRESLANGPROCW)(HMODULE hModule,LPCWSTR lpType,LPCWSTR lpName,WORD wLanguage,LONG_PTR lParam);
alias WINBOOL function(HMODULE hModule, LPCWSTR lpType, LPCWSTR lpName, WORD wLanguage, LONG_PTR lParam)ENUMRESLANGPROCW;
//C WINBOOL EnumResourceTypesA(HMODULE hModule,ENUMRESTYPEPROCA lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceTypesA(HMODULE hModule, ENUMRESTYPEPROCA lpEnumFunc, LONG_PTR lParam);
//C WINBOOL EnumResourceTypesW(HMODULE hModule,ENUMRESTYPEPROCW lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceTypesW(HMODULE hModule, ENUMRESTYPEPROCW lpEnumFunc, LONG_PTR lParam);
//C WINBOOL EnumResourceNamesA(HMODULE hModule,LPCSTR lpType,ENUMRESNAMEPROCA lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceNamesA(HMODULE hModule, LPCSTR lpType, ENUMRESNAMEPROCA lpEnumFunc, LONG_PTR lParam);
//C WINBOOL EnumResourceNamesW(HMODULE hModule,LPCWSTR lpType,ENUMRESNAMEPROCW lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceNamesW(HMODULE hModule, LPCWSTR lpType, ENUMRESNAMEPROCW lpEnumFunc, LONG_PTR lParam);
//C WINBOOL EnumResourceLanguagesA(HMODULE hModule,LPCSTR lpType,LPCSTR lpName,ENUMRESLANGPROCA lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceLanguagesA(HMODULE hModule, LPCSTR lpType, LPCSTR lpName, ENUMRESLANGPROCA lpEnumFunc, LONG_PTR lParam);
//C WINBOOL EnumResourceLanguagesW(HMODULE hModule,LPCWSTR lpType,LPCWSTR lpName,ENUMRESLANGPROCW lpEnumFunc,LONG_PTR lParam);
WINBOOL EnumResourceLanguagesW(HMODULE hModule, LPCWSTR lpType, LPCWSTR lpName, ENUMRESLANGPROCW lpEnumFunc, LONG_PTR lParam);
//C HANDLE BeginUpdateResourceA(LPCSTR pFileName,WINBOOL bDeleteExistingResources);
HANDLE BeginUpdateResourceA(LPCSTR pFileName, WINBOOL bDeleteExistingResources);
//C HANDLE BeginUpdateResourceW(LPCWSTR pFileName,WINBOOL bDeleteExistingResources);
HANDLE BeginUpdateResourceW(LPCWSTR pFileName, WINBOOL bDeleteExistingResources);
//C WINBOOL UpdateResourceA(HANDLE hUpdate,LPCSTR lpType,LPCSTR lpName,WORD wLanguage,LPVOID lpData,DWORD cb);
WINBOOL UpdateResourceA(HANDLE hUpdate, LPCSTR lpType, LPCSTR lpName, WORD wLanguage, LPVOID lpData, DWORD cb);
//C WINBOOL UpdateResourceW(HANDLE hUpdate,LPCWSTR lpType,LPCWSTR lpName,WORD wLanguage,LPVOID lpData,DWORD cb);
WINBOOL UpdateResourceW(HANDLE hUpdate, LPCWSTR lpType, LPCWSTR lpName, WORD wLanguage, LPVOID lpData, DWORD cb);
//C WINBOOL EndUpdateResourceA(HANDLE hUpdate,WINBOOL fDiscard);
WINBOOL EndUpdateResourceA(HANDLE hUpdate, WINBOOL fDiscard);
//C WINBOOL EndUpdateResourceW(HANDLE hUpdate,WINBOOL fDiscard);
WINBOOL EndUpdateResourceW(HANDLE hUpdate, WINBOOL fDiscard);
//C ATOM GlobalAddAtomA(LPCSTR lpString);
ATOM GlobalAddAtomA(LPCSTR lpString);
//C ATOM GlobalAddAtomW(LPCWSTR lpString);
ATOM GlobalAddAtomW(LPCWSTR lpString);
//C ATOM GlobalFindAtomA(LPCSTR lpString);
ATOM GlobalFindAtomA(LPCSTR lpString);
//C ATOM GlobalFindAtomW(LPCWSTR lpString);
ATOM GlobalFindAtomW(LPCWSTR lpString);
//C UINT GlobalGetAtomNameA(ATOM nAtom,LPSTR lpBuffer,int nSize);
UINT GlobalGetAtomNameA(ATOM nAtom, LPSTR lpBuffer, int nSize);
//C UINT GlobalGetAtomNameW(ATOM nAtom,LPWSTR lpBuffer,int nSize);
UINT GlobalGetAtomNameW(ATOM nAtom, LPWSTR lpBuffer, int nSize);
//C ATOM AddAtomA(LPCSTR lpString);
ATOM AddAtomA(LPCSTR lpString);
//C ATOM AddAtomW(LPCWSTR lpString);
ATOM AddAtomW(LPCWSTR lpString);
//C ATOM FindAtomA(LPCSTR lpString);
ATOM FindAtomA(LPCSTR lpString);
//C ATOM FindAtomW(LPCWSTR lpString);
ATOM FindAtomW(LPCWSTR lpString);
//C UINT GetAtomNameA(ATOM nAtom,LPSTR lpBuffer,int nSize);
UINT GetAtomNameA(ATOM nAtom, LPSTR lpBuffer, int nSize);
//C UINT GetAtomNameW(ATOM nAtom,LPWSTR lpBuffer,int nSize);
UINT GetAtomNameW(ATOM nAtom, LPWSTR lpBuffer, int nSize);
//C UINT GetProfileIntA(LPCSTR lpAppName,LPCSTR lpKeyName,INT nDefault);
UINT GetProfileIntA(LPCSTR lpAppName, LPCSTR lpKeyName, INT nDefault);
//C UINT GetProfileIntW(LPCWSTR lpAppName,LPCWSTR lpKeyName,INT nDefault);
UINT GetProfileIntW(LPCWSTR lpAppName, LPCWSTR lpKeyName, INT nDefault);
//C DWORD GetProfileStringA(LPCSTR lpAppName,LPCSTR lpKeyName,LPCSTR lpDefault,LPSTR lpReturnedString,DWORD nSize);
DWORD GetProfileStringA(LPCSTR lpAppName, LPCSTR lpKeyName, LPCSTR lpDefault, LPSTR lpReturnedString, DWORD nSize);
//C DWORD GetProfileStringW(LPCWSTR lpAppName,LPCWSTR lpKeyName,LPCWSTR lpDefault,LPWSTR lpReturnedString,DWORD nSize);
DWORD GetProfileStringW(LPCWSTR lpAppName, LPCWSTR lpKeyName, LPCWSTR lpDefault, LPWSTR lpReturnedString, DWORD nSize);
//C WINBOOL WriteProfileStringA(LPCSTR lpAppName,LPCSTR lpKeyName,LPCSTR lpString);
WINBOOL WriteProfileStringA(LPCSTR lpAppName, LPCSTR lpKeyName, LPCSTR lpString);
//C WINBOOL WriteProfileStringW(LPCWSTR lpAppName,LPCWSTR lpKeyName,LPCWSTR lpString);
WINBOOL WriteProfileStringW(LPCWSTR lpAppName, LPCWSTR lpKeyName, LPCWSTR lpString);
//C DWORD GetProfileSectionA(LPCSTR lpAppName,LPSTR lpReturnedString,DWORD nSize);
DWORD GetProfileSectionA(LPCSTR lpAppName, LPSTR lpReturnedString, DWORD nSize);
//C DWORD GetProfileSectionW(LPCWSTR lpAppName,LPWSTR lpReturnedString,DWORD nSize);
DWORD GetProfileSectionW(LPCWSTR lpAppName, LPWSTR lpReturnedString, DWORD nSize);
//C WINBOOL WriteProfileSectionA(LPCSTR lpAppName,LPCSTR lpString);
WINBOOL WriteProfileSectionA(LPCSTR lpAppName, LPCSTR lpString);
//C WINBOOL WriteProfileSectionW(LPCWSTR lpAppName,LPCWSTR lpString);
WINBOOL WriteProfileSectionW(LPCWSTR lpAppName, LPCWSTR lpString);
//C UINT GetPrivateProfileIntA(LPCSTR lpAppName,LPCSTR lpKeyName,INT nDefault,LPCSTR lpFileName);
UINT GetPrivateProfileIntA(LPCSTR lpAppName, LPCSTR lpKeyName, INT nDefault, LPCSTR lpFileName);
//C UINT GetPrivateProfileIntW(LPCWSTR lpAppName,LPCWSTR lpKeyName,INT nDefault,LPCWSTR lpFileName);
UINT GetPrivateProfileIntW(LPCWSTR lpAppName, LPCWSTR lpKeyName, INT nDefault, LPCWSTR lpFileName);
//C DWORD GetPrivateProfileStringA(LPCSTR lpAppName,LPCSTR lpKeyName,LPCSTR lpDefault,LPSTR lpReturnedString,DWORD nSize,LPCSTR lpFileName);
DWORD GetPrivateProfileStringA(LPCSTR lpAppName, LPCSTR lpKeyName, LPCSTR lpDefault, LPSTR lpReturnedString, DWORD nSize, LPCSTR lpFileName);
//C DWORD GetPrivateProfileStringW(LPCWSTR lpAppName,LPCWSTR lpKeyName,LPCWSTR lpDefault,LPWSTR lpReturnedString,DWORD nSize,LPCWSTR lpFileName);
DWORD GetPrivateProfileStringW(LPCWSTR lpAppName, LPCWSTR lpKeyName, LPCWSTR lpDefault, LPWSTR lpReturnedString, DWORD nSize, LPCWSTR lpFileName);
//C WINBOOL WritePrivateProfileStringA(LPCSTR lpAppName,LPCSTR lpKeyName,LPCSTR lpString,LPCSTR lpFileName);
WINBOOL WritePrivateProfileStringA(LPCSTR lpAppName, LPCSTR lpKeyName, LPCSTR lpString, LPCSTR lpFileName);
//C WINBOOL WritePrivateProfileStringW(LPCWSTR lpAppName,LPCWSTR lpKeyName,LPCWSTR lpString,LPCWSTR lpFileName);
WINBOOL WritePrivateProfileStringW(LPCWSTR lpAppName, LPCWSTR lpKeyName, LPCWSTR lpString, LPCWSTR lpFileName);
//C DWORD GetPrivateProfileSectionA(LPCSTR lpAppName,LPSTR lpReturnedString,DWORD nSize,LPCSTR lpFileName);
DWORD GetPrivateProfileSectionA(LPCSTR lpAppName, LPSTR lpReturnedString, DWORD nSize, LPCSTR lpFileName);
//C DWORD GetPrivateProfileSectionW(LPCWSTR lpAppName,LPWSTR lpReturnedString,DWORD nSize,LPCWSTR lpFileName);
DWORD GetPrivateProfileSectionW(LPCWSTR lpAppName, LPWSTR lpReturnedString, DWORD nSize, LPCWSTR lpFileName);
//C WINBOOL WritePrivateProfileSectionA(LPCSTR lpAppName,LPCSTR lpString,LPCSTR lpFileName);
WINBOOL WritePrivateProfileSectionA(LPCSTR lpAppName, LPCSTR lpString, LPCSTR lpFileName);
//C WINBOOL WritePrivateProfileSectionW(LPCWSTR lpAppName,LPCWSTR lpString,LPCWSTR lpFileName);
WINBOOL WritePrivateProfileSectionW(LPCWSTR lpAppName, LPCWSTR lpString, LPCWSTR lpFileName);
//C DWORD GetPrivateProfileSectionNamesA(LPSTR lpszReturnBuffer,DWORD nSize,LPCSTR lpFileName);
DWORD GetPrivateProfileSectionNamesA(LPSTR lpszReturnBuffer, DWORD nSize, LPCSTR lpFileName);
//C DWORD GetPrivateProfileSectionNamesW(LPWSTR lpszReturnBuffer,DWORD nSize,LPCWSTR lpFileName);
DWORD GetPrivateProfileSectionNamesW(LPWSTR lpszReturnBuffer, DWORD nSize, LPCWSTR lpFileName);
//C WINBOOL GetPrivateProfileStructA(LPCSTR lpszSection,LPCSTR lpszKey,LPVOID lpStruct,UINT uSizeStruct,LPCSTR szFile);
WINBOOL GetPrivateProfileStructA(LPCSTR lpszSection, LPCSTR lpszKey, LPVOID lpStruct, UINT uSizeStruct, LPCSTR szFile);
//C WINBOOL GetPrivateProfileStructW(LPCWSTR lpszSection,LPCWSTR lpszKey,LPVOID lpStruct,UINT uSizeStruct,LPCWSTR szFile);
WINBOOL GetPrivateProfileStructW(LPCWSTR lpszSection, LPCWSTR lpszKey, LPVOID lpStruct, UINT uSizeStruct, LPCWSTR szFile);
//C WINBOOL WritePrivateProfileStructA(LPCSTR lpszSection,LPCSTR lpszKey,LPVOID lpStruct,UINT uSizeStruct,LPCSTR szFile);
WINBOOL WritePrivateProfileStructA(LPCSTR lpszSection, LPCSTR lpszKey, LPVOID lpStruct, UINT uSizeStruct, LPCSTR szFile);
//C WINBOOL WritePrivateProfileStructW(LPCWSTR lpszSection,LPCWSTR lpszKey,LPVOID lpStruct,UINT uSizeStruct,LPCWSTR szFile);
WINBOOL WritePrivateProfileStructW(LPCWSTR lpszSection, LPCWSTR lpszKey, LPVOID lpStruct, UINT uSizeStruct, LPCWSTR szFile);
//C UINT GetDriveTypeA(LPCSTR lpRootPathName);
UINT GetDriveTypeA(LPCSTR lpRootPathName);
//C UINT GetDriveTypeW(LPCWSTR lpRootPathName);
UINT GetDriveTypeW(LPCWSTR lpRootPathName);
//C UINT GetSystemDirectoryA(LPSTR lpBuffer,UINT uSize);
UINT GetSystemDirectoryA(LPSTR lpBuffer, UINT uSize);
//C UINT GetSystemDirectoryW(LPWSTR lpBuffer,UINT uSize);
UINT GetSystemDirectoryW(LPWSTR lpBuffer, UINT uSize);
//C DWORD GetTempPathA(DWORD nBufferLength,LPSTR lpBuffer);
DWORD GetTempPathA(DWORD nBufferLength, LPSTR lpBuffer);
//C DWORD GetTempPathW(DWORD nBufferLength,LPWSTR lpBuffer);
DWORD GetTempPathW(DWORD nBufferLength, LPWSTR lpBuffer);
//C UINT GetTempFileNameA(LPCSTR lpPathName,LPCSTR lpPrefixString,UINT uUnique,LPSTR lpTempFileName);
UINT GetTempFileNameA(LPCSTR lpPathName, LPCSTR lpPrefixString, UINT uUnique, LPSTR lpTempFileName);
//C UINT GetTempFileNameW(LPCWSTR lpPathName,LPCWSTR lpPrefixString,UINT uUnique,LPWSTR lpTempFileName);
UINT GetTempFileNameW(LPCWSTR lpPathName, LPCWSTR lpPrefixString, UINT uUnique, LPWSTR lpTempFileName);
//C UINT GetWindowsDirectoryA(LPSTR lpBuffer,UINT uSize);
UINT GetWindowsDirectoryA(LPSTR lpBuffer, UINT uSize);
//C UINT GetWindowsDirectoryW(LPWSTR lpBuffer,UINT uSize);
UINT GetWindowsDirectoryW(LPWSTR lpBuffer, UINT uSize);
//C UINT GetSystemWindowsDirectoryA(LPSTR lpBuffer,UINT uSize);
UINT GetSystemWindowsDirectoryA(LPSTR lpBuffer, UINT uSize);
//C UINT GetSystemWindowsDirectoryW(LPWSTR lpBuffer,UINT uSize);
UINT GetSystemWindowsDirectoryW(LPWSTR lpBuffer, UINT uSize);
//C UINT GetSystemWow64DirectoryA(LPSTR lpBuffer,UINT uSize);
UINT GetSystemWow64DirectoryA(LPSTR lpBuffer, UINT uSize);
//C UINT GetSystemWow64DirectoryW(LPWSTR lpBuffer,UINT uSize);
UINT GetSystemWow64DirectoryW(LPWSTR lpBuffer, UINT uSize);
//C BOOLEAN Wow64EnableWow64FsRedirection(BOOLEAN Wow64FsEnableRedirection);
BOOLEAN Wow64EnableWow64FsRedirection(BOOLEAN Wow64FsEnableRedirection);
//C WINBOOL Wow64DisableWow64FsRedirection(PVOID *OldValue);
WINBOOL Wow64DisableWow64FsRedirection(PVOID *OldValue);
//C WINBOOL Wow64RevertWow64FsRedirection(PVOID OlValue);
WINBOOL Wow64RevertWow64FsRedirection(PVOID OlValue);
//C typedef UINT ( *PGET_SYSTEM_WOW64_DIRECTORY_A)(LPSTR lpBuffer,UINT uSize);
alias UINT function(LPSTR lpBuffer, UINT uSize)PGET_SYSTEM_WOW64_DIRECTORY_A;
//C typedef UINT ( *PGET_SYSTEM_WOW64_DIRECTORY_W)(LPWSTR lpBuffer,UINT uSize);
alias UINT function(LPWSTR lpBuffer, UINT uSize)PGET_SYSTEM_WOW64_DIRECTORY_W;
//C WINBOOL SetCurrentDirectoryA(LPCSTR lpPathName);
WINBOOL SetCurrentDirectoryA(LPCSTR lpPathName);
//C WINBOOL SetCurrentDirectoryW(LPCWSTR lpPathName);
WINBOOL SetCurrentDirectoryW(LPCWSTR lpPathName);
//C DWORD GetCurrentDirectoryA(DWORD nBufferLength,LPSTR lpBuffer);
DWORD GetCurrentDirectoryA(DWORD nBufferLength, LPSTR lpBuffer);
//C DWORD GetCurrentDirectoryW(DWORD nBufferLength,LPWSTR lpBuffer);
DWORD GetCurrentDirectoryW(DWORD nBufferLength, LPWSTR lpBuffer);
//C WINBOOL SetDllDirectoryA(LPCSTR lpPathName);
WINBOOL SetDllDirectoryA(LPCSTR lpPathName);
//C WINBOOL SetDllDirectoryW(LPCWSTR lpPathName);
WINBOOL SetDllDirectoryW(LPCWSTR lpPathName);
//C DWORD GetDllDirectoryA(DWORD nBufferLength,LPSTR lpBuffer);
DWORD GetDllDirectoryA(DWORD nBufferLength, LPSTR lpBuffer);
//C DWORD GetDllDirectoryW(DWORD nBufferLength,LPWSTR lpBuffer);
DWORD GetDllDirectoryW(DWORD nBufferLength, LPWSTR lpBuffer);
//C WINBOOL GetDiskFreeSpaceA(LPCSTR lpRootPathName,LPDWORD lpSectorsPerCluster,LPDWORD lpBytesPerSector,LPDWORD lpNumberOfFreeClusters,LPDWORD lpTotalNumberOfClusters);
WINBOOL GetDiskFreeSpaceA(LPCSTR lpRootPathName, LPDWORD lpSectorsPerCluster, LPDWORD lpBytesPerSector, LPDWORD lpNumberOfFreeClusters, LPDWORD lpTotalNumberOfClusters);
//C WINBOOL GetDiskFreeSpaceW(LPCWSTR lpRootPathName,LPDWORD lpSectorsPerCluster,LPDWORD lpBytesPerSector,LPDWORD lpNumberOfFreeClusters,LPDWORD lpTotalNumberOfClusters);
WINBOOL GetDiskFreeSpaceW(LPCWSTR lpRootPathName, LPDWORD lpSectorsPerCluster, LPDWORD lpBytesPerSector, LPDWORD lpNumberOfFreeClusters, LPDWORD lpTotalNumberOfClusters);
//C WINBOOL GetDiskFreeSpaceExA(LPCSTR lpDirectoryName,PULARGE_INTEGER lpFreeBytesAvailableToCaller,PULARGE_INTEGER lpTotalNumberOfBytes,PULARGE_INTEGER lpTotalNumberOfFreeBytes);
WINBOOL GetDiskFreeSpaceExA(LPCSTR lpDirectoryName, PULARGE_INTEGER lpFreeBytesAvailableToCaller, PULARGE_INTEGER lpTotalNumberOfBytes, PULARGE_INTEGER lpTotalNumberOfFreeBytes);
//C WINBOOL GetDiskFreeSpaceExW(LPCWSTR lpDirectoryName,PULARGE_INTEGER lpFreeBytesAvailableToCaller,PULARGE_INTEGER lpTotalNumberOfBytes,PULARGE_INTEGER lpTotalNumberOfFreeBytes);
WINBOOL GetDiskFreeSpaceExW(LPCWSTR lpDirectoryName, PULARGE_INTEGER lpFreeBytesAvailableToCaller, PULARGE_INTEGER lpTotalNumberOfBytes, PULARGE_INTEGER lpTotalNumberOfFreeBytes);
//C WINBOOL CreateDirectoryA(LPCSTR lpPathName,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateDirectoryA(LPCSTR lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL CreateDirectoryW(LPCWSTR lpPathName,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateDirectoryW(LPCWSTR lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL CreateDirectoryExA(LPCSTR lpTemplateDirectory,LPCSTR lpNewDirectory,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateDirectoryExA(LPCSTR lpTemplateDirectory, LPCSTR lpNewDirectory, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL CreateDirectoryExW(LPCWSTR lpTemplateDirectory,LPCWSTR lpNewDirectory,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateDirectoryExW(LPCWSTR lpTemplateDirectory, LPCWSTR lpNewDirectory, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL RemoveDirectoryA(LPCSTR lpPathName);
WINBOOL RemoveDirectoryA(LPCSTR lpPathName);
//C WINBOOL RemoveDirectoryW(LPCWSTR lpPathName);
WINBOOL RemoveDirectoryW(LPCWSTR lpPathName);
//C DWORD GetFullPathNameA(LPCSTR lpFileName,DWORD nBufferLength,LPSTR lpBuffer,LPSTR *lpFilePart);
DWORD GetFullPathNameA(LPCSTR lpFileName, DWORD nBufferLength, LPSTR lpBuffer, LPSTR *lpFilePart);
//C DWORD GetFullPathNameW(LPCWSTR lpFileName,DWORD nBufferLength,LPWSTR lpBuffer,LPWSTR *lpFilePart);
DWORD GetFullPathNameW(LPCWSTR lpFileName, DWORD nBufferLength, LPWSTR lpBuffer, LPWSTR *lpFilePart);
//C WINBOOL DefineDosDeviceA(DWORD dwFlags,LPCSTR lpDeviceName,LPCSTR lpTargetPath);
WINBOOL DefineDosDeviceA(DWORD dwFlags, LPCSTR lpDeviceName, LPCSTR lpTargetPath);
//C WINBOOL DefineDosDeviceW(DWORD dwFlags,LPCWSTR lpDeviceName,LPCWSTR lpTargetPath);
WINBOOL DefineDosDeviceW(DWORD dwFlags, LPCWSTR lpDeviceName, LPCWSTR lpTargetPath);
//C DWORD QueryDosDeviceA(LPCSTR lpDeviceName,LPSTR lpTargetPath,DWORD ucchMax);
DWORD QueryDosDeviceA(LPCSTR lpDeviceName, LPSTR lpTargetPath, DWORD ucchMax);
//C DWORD QueryDosDeviceW(LPCWSTR lpDeviceName,LPWSTR lpTargetPath,DWORD ucchMax);
DWORD QueryDosDeviceW(LPCWSTR lpDeviceName, LPWSTR lpTargetPath, DWORD ucchMax);
//C HANDLE CreateFileA(LPCSTR lpFileName,DWORD dwDesiredAccess,DWORD dwShareMode,LPSECURITY_ATTRIBUTES lpSecurityAttributes,DWORD dwCreationDisposition,DWORD dwFlagsAndAttributes,HANDLE hTemplateFile);
HANDLE CreateFileA(LPCSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile);
//C HANDLE CreateFileW(LPCWSTR lpFileName,DWORD dwDesiredAccess,DWORD dwShareMode,LPSECURITY_ATTRIBUTES lpSecurityAttributes,DWORD dwCreationDisposition,DWORD dwFlagsAndAttributes,HANDLE hTemplateFile);
HANDLE CreateFileW(LPCWSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile);
//C HANDLE ReOpenFile(HANDLE hOriginalFile,DWORD dwDesiredAccess,DWORD dwShareMode,DWORD dwFlagsAndAttributes);
HANDLE ReOpenFile(HANDLE hOriginalFile, DWORD dwDesiredAccess, DWORD dwShareMode, DWORD dwFlagsAndAttributes);
//C WINBOOL SetFileAttributesA(LPCSTR lpFileName,DWORD dwFileAttributes);
WINBOOL SetFileAttributesA(LPCSTR lpFileName, DWORD dwFileAttributes);
//C WINBOOL SetFileAttributesW(LPCWSTR lpFileName,DWORD dwFileAttributes);
WINBOOL SetFileAttributesW(LPCWSTR lpFileName, DWORD dwFileAttributes);
//C DWORD GetFileAttributesA(LPCSTR lpFileName);
DWORD GetFileAttributesA(LPCSTR lpFileName);
//C DWORD GetFileAttributesW(LPCWSTR lpFileName);
DWORD GetFileAttributesW(LPCWSTR lpFileName);
//C typedef enum _GET_FILEEX_INFO_LEVELS {
//C GetFileExInfoStandard,GetFileExMaxInfoLevel
//C } GET_FILEEX_INFO_LEVELS;
enum _GET_FILEEX_INFO_LEVELS
{
GetFileExInfoStandard,
GetFileExMaxInfoLevel,
}
alias _GET_FILEEX_INFO_LEVELS GET_FILEEX_INFO_LEVELS;
//C WINBOOL GetFileAttributesExA(LPCSTR lpFileName,GET_FILEEX_INFO_LEVELS fInfoLevelId,LPVOID lpFileInformation);
WINBOOL GetFileAttributesExA(LPCSTR lpFileName, GET_FILEEX_INFO_LEVELS fInfoLevelId, LPVOID lpFileInformation);
//C WINBOOL GetFileAttributesExW(LPCWSTR lpFileName,GET_FILEEX_INFO_LEVELS fInfoLevelId,LPVOID lpFileInformation);
WINBOOL GetFileAttributesExW(LPCWSTR lpFileName, GET_FILEEX_INFO_LEVELS fInfoLevelId, LPVOID lpFileInformation);
//C DWORD GetCompressedFileSizeA(LPCSTR lpFileName,LPDWORD lpFileSizeHigh);
DWORD GetCompressedFileSizeA(LPCSTR lpFileName, LPDWORD lpFileSizeHigh);
//C DWORD GetCompressedFileSizeW(LPCWSTR lpFileName,LPDWORD lpFileSizeHigh);
DWORD GetCompressedFileSizeW(LPCWSTR lpFileName, LPDWORD lpFileSizeHigh);
//C WINBOOL DeleteFileA(LPCSTR lpFileName);
WINBOOL DeleteFileA(LPCSTR lpFileName);
//C WINBOOL DeleteFileW(LPCWSTR lpFileName);
WINBOOL DeleteFileW(LPCWSTR lpFileName);
//C WINBOOL CheckNameLegalDOS8Dot3A(LPCSTR lpName,LPSTR lpOemName,DWORD OemNameSize,PBOOL pbNameContainsSpaces,PBOOL pbNameLegal);
WINBOOL CheckNameLegalDOS8Dot3A(LPCSTR lpName, LPSTR lpOemName, DWORD OemNameSize, PBOOL pbNameContainsSpaces, PBOOL pbNameLegal);
//C WINBOOL CheckNameLegalDOS8Dot3W(LPCWSTR lpName,LPSTR lpOemName,DWORD OemNameSize,PBOOL pbNameContainsSpaces,PBOOL pbNameLegal);
WINBOOL CheckNameLegalDOS8Dot3W(LPCWSTR lpName, LPSTR lpOemName, DWORD OemNameSize, PBOOL pbNameContainsSpaces, PBOOL pbNameLegal);
//C typedef enum _FINDEX_INFO_LEVELS {
//C FindExInfoStandard,FindExInfoMaxInfoLevel
//C } FINDEX_INFO_LEVELS;
enum _FINDEX_INFO_LEVELS
{
FindExInfoStandard,
FindExInfoMaxInfoLevel,
}
alias _FINDEX_INFO_LEVELS FINDEX_INFO_LEVELS;
//C typedef enum _FINDEX_SEARCH_OPS {
//C FindExSearchNameMatch,FindExSearchLimitToDirectories,FindExSearchLimitToDevices,FindExSearchMaxSearchOp
//C } FINDEX_SEARCH_OPS;
enum _FINDEX_SEARCH_OPS
{
FindExSearchNameMatch,
FindExSearchLimitToDirectories,
FindExSearchLimitToDevices,
FindExSearchMaxSearchOp,
}
alias _FINDEX_SEARCH_OPS FINDEX_SEARCH_OPS;
//C HANDLE FindFirstFileExA(LPCSTR lpFileName,FINDEX_INFO_LEVELS fInfoLevelId,LPVOID lpFindFileData,FINDEX_SEARCH_OPS fSearchOp,LPVOID lpSearchFilter,DWORD dwAdditionalFlags);
HANDLE FindFirstFileExA(LPCSTR lpFileName, FINDEX_INFO_LEVELS fInfoLevelId, LPVOID lpFindFileData, FINDEX_SEARCH_OPS fSearchOp, LPVOID lpSearchFilter, DWORD dwAdditionalFlags);
//C HANDLE FindFirstFileExW(LPCWSTR lpFileName,FINDEX_INFO_LEVELS fInfoLevelId,LPVOID lpFindFileData,FINDEX_SEARCH_OPS fSearchOp,LPVOID lpSearchFilter,DWORD dwAdditionalFlags);
HANDLE FindFirstFileExW(LPCWSTR lpFileName, FINDEX_INFO_LEVELS fInfoLevelId, LPVOID lpFindFileData, FINDEX_SEARCH_OPS fSearchOp, LPVOID lpSearchFilter, DWORD dwAdditionalFlags);
//C HANDLE FindFirstFileA(LPCSTR lpFileName,LPWIN32_FIND_DATAA lpFindFileData);
HANDLE FindFirstFileA(LPCSTR lpFileName, LPWIN32_FIND_DATAA lpFindFileData);
//C HANDLE FindFirstFileW(LPCWSTR lpFileName,LPWIN32_FIND_DATAW lpFindFileData);
HANDLE FindFirstFileW(LPCWSTR lpFileName, LPWIN32_FIND_DATAW lpFindFileData);
//C WINBOOL FindNextFileA(HANDLE hFindFile,LPWIN32_FIND_DATAA lpFindFileData);
WINBOOL FindNextFileA(HANDLE hFindFile, LPWIN32_FIND_DATAA lpFindFileData);
//C WINBOOL FindNextFileW(HANDLE hFindFile,LPWIN32_FIND_DATAW lpFindFileData);
WINBOOL FindNextFileW(HANDLE hFindFile, LPWIN32_FIND_DATAW lpFindFileData);
//C DWORD SearchPathA(LPCSTR lpPath,LPCSTR lpFileName,LPCSTR lpExtension,DWORD nBufferLength,LPSTR lpBuffer,LPSTR *lpFilePart);
DWORD SearchPathA(LPCSTR lpPath, LPCSTR lpFileName, LPCSTR lpExtension, DWORD nBufferLength, LPSTR lpBuffer, LPSTR *lpFilePart);
//C DWORD SearchPathW(LPCWSTR lpPath,LPCWSTR lpFileName,LPCWSTR lpExtension,DWORD nBufferLength,LPWSTR lpBuffer,LPWSTR *lpFilePart);
DWORD SearchPathW(LPCWSTR lpPath, LPCWSTR lpFileName, LPCWSTR lpExtension, DWORD nBufferLength, LPWSTR lpBuffer, LPWSTR *lpFilePart);
//C WINBOOL CopyFileA(LPCSTR lpExistingFileName,LPCSTR lpNewFileName,WINBOOL bFailIfExists);
WINBOOL CopyFileA(LPCSTR lpExistingFileName, LPCSTR lpNewFileName, WINBOOL bFailIfExists);
//C WINBOOL CopyFileW(LPCWSTR lpExistingFileName,LPCWSTR lpNewFileName,WINBOOL bFailIfExists);
WINBOOL CopyFileW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName, WINBOOL bFailIfExists);
//C typedef DWORD ( *LPPROGRESS_ROUTINE)(LARGE_INTEGER TotalFileSize,LARGE_INTEGER TotalBytesTransferred,LARGE_INTEGER StreamSize,LARGE_INTEGER StreamBytesTransferred,DWORD dwStreamNumber,DWORD dwCallbackReason,HANDLE hSourceFile,HANDLE hDestinationFile,LPVOID lpData);
alias DWORD function(LARGE_INTEGER TotalFileSize, LARGE_INTEGER TotalBytesTransferred, LARGE_INTEGER StreamSize, LARGE_INTEGER StreamBytesTransferred, DWORD dwStreamNumber, DWORD dwCallbackReason, HANDLE hSourceFile, HANDLE hDestinationFile, LPVOID lpData)LPPROGRESS_ROUTINE;
//C WINBOOL CopyFileExA(LPCSTR lpExistingFileName,LPCSTR lpNewFileName,LPPROGRESS_ROUTINE lpProgressRoutine,LPVOID lpData,LPBOOL pbCancel,DWORD dwCopyFlags);
WINBOOL CopyFileExA(LPCSTR lpExistingFileName, LPCSTR lpNewFileName, LPPROGRESS_ROUTINE lpProgressRoutine, LPVOID lpData, LPBOOL pbCancel, DWORD dwCopyFlags);
//C WINBOOL CopyFileExW(LPCWSTR lpExistingFileName,LPCWSTR lpNewFileName,LPPROGRESS_ROUTINE lpProgressRoutine,LPVOID lpData,LPBOOL pbCancel,DWORD dwCopyFlags);
WINBOOL CopyFileExW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName, LPPROGRESS_ROUTINE lpProgressRoutine, LPVOID lpData, LPBOOL pbCancel, DWORD dwCopyFlags);
//C WINBOOL MoveFileA(LPCSTR lpExistingFileName,LPCSTR lpNewFileName);
WINBOOL MoveFileA(LPCSTR lpExistingFileName, LPCSTR lpNewFileName);
//C WINBOOL MoveFileW(LPCWSTR lpExistingFileName,LPCWSTR lpNewFileName);
WINBOOL MoveFileW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName);
//C WINBOOL MoveFileExA(LPCSTR lpExistingFileName,LPCSTR lpNewFileName,DWORD dwFlags);
WINBOOL MoveFileExA(LPCSTR lpExistingFileName, LPCSTR lpNewFileName, DWORD dwFlags);
//C WINBOOL MoveFileExW(LPCWSTR lpExistingFileName,LPCWSTR lpNewFileName,DWORD dwFlags);
WINBOOL MoveFileExW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName, DWORD dwFlags);
//C WINBOOL MoveFileWithProgressA(LPCSTR lpExistingFileName,LPCSTR lpNewFileName,LPPROGRESS_ROUTINE lpProgressRoutine,LPVOID lpData,DWORD dwFlags);
WINBOOL MoveFileWithProgressA(LPCSTR lpExistingFileName, LPCSTR lpNewFileName, LPPROGRESS_ROUTINE lpProgressRoutine, LPVOID lpData, DWORD dwFlags);
//C WINBOOL MoveFileWithProgressW(LPCWSTR lpExistingFileName,LPCWSTR lpNewFileName,LPPROGRESS_ROUTINE lpProgressRoutine,LPVOID lpData,DWORD dwFlags);
WINBOOL MoveFileWithProgressW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName, LPPROGRESS_ROUTINE lpProgressRoutine, LPVOID lpData, DWORD dwFlags);
//C WINBOOL ReplaceFileA(LPCSTR lpReplacedFileName,LPCSTR lpReplacementFileName,LPCSTR lpBackupFileName,DWORD dwReplaceFlags,LPVOID lpExclude,LPVOID lpReserved);
WINBOOL ReplaceFileA(LPCSTR lpReplacedFileName, LPCSTR lpReplacementFileName, LPCSTR lpBackupFileName, DWORD dwReplaceFlags, LPVOID lpExclude, LPVOID lpReserved);
//C WINBOOL ReplaceFileW(LPCWSTR lpReplacedFileName,LPCWSTR lpReplacementFileName,LPCWSTR lpBackupFileName,DWORD dwReplaceFlags,LPVOID lpExclude,LPVOID lpReserved);
WINBOOL ReplaceFileW(LPCWSTR lpReplacedFileName, LPCWSTR lpReplacementFileName, LPCWSTR lpBackupFileName, DWORD dwReplaceFlags, LPVOID lpExclude, LPVOID lpReserved);
//C WINBOOL CreateHardLinkA(LPCSTR lpFileName,LPCSTR lpExistingFileName,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateHardLinkA(LPCSTR lpFileName, LPCSTR lpExistingFileName, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL CreateHardLinkW(LPCWSTR lpFileName,LPCWSTR lpExistingFileName,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
WINBOOL CreateHardLinkW(LPCWSTR lpFileName, LPCWSTR lpExistingFileName, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C typedef enum _STREAM_INFO_LEVELS {
//C FindStreamInfoStandard,FindStreamInfoMaxInfoLevel
//C } STREAM_INFO_LEVELS;
enum _STREAM_INFO_LEVELS
{
FindStreamInfoStandard,
FindStreamInfoMaxInfoLevel,
}
alias _STREAM_INFO_LEVELS STREAM_INFO_LEVELS;
//C typedef struct _WIN32_FIND_STREAM_DATA {
//C LARGE_INTEGER StreamSize;
//C WCHAR cStreamName[260 + 36];
//C } WIN32_FIND_STREAM_DATA,*PWIN32_FIND_STREAM_DATA;
struct _WIN32_FIND_STREAM_DATA
{
LARGE_INTEGER StreamSize;
WCHAR [296]cStreamName;
}
alias _WIN32_FIND_STREAM_DATA WIN32_FIND_STREAM_DATA;
alias _WIN32_FIND_STREAM_DATA *PWIN32_FIND_STREAM_DATA;
//C HANDLE FindFirstStreamW(LPCWSTR lpFileName,STREAM_INFO_LEVELS InfoLevel,LPVOID lpFindStreamData,DWORD dwFlags);
HANDLE FindFirstStreamW(LPCWSTR lpFileName, STREAM_INFO_LEVELS InfoLevel, LPVOID lpFindStreamData, DWORD dwFlags);
//C WINBOOL FindNextStreamW(HANDLE hFindStream,LPVOID lpFindStreamData);
WINBOOL FindNextStreamW(HANDLE hFindStream, LPVOID lpFindStreamData);
//C HANDLE CreateNamedPipeA(LPCSTR lpName,DWORD dwOpenMode,DWORD dwPipeMode,DWORD nMaxInstances,DWORD nOutBufferSize,DWORD nInBufferSize,DWORD nDefaultTimeOut,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
HANDLE CreateNamedPipeA(LPCSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode, DWORD nMaxInstances, DWORD nOutBufferSize, DWORD nInBufferSize, DWORD nDefaultTimeOut, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C HANDLE CreateNamedPipeW(LPCWSTR lpName,DWORD dwOpenMode,DWORD dwPipeMode,DWORD nMaxInstances,DWORD nOutBufferSize,DWORD nInBufferSize,DWORD nDefaultTimeOut,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
HANDLE CreateNamedPipeW(LPCWSTR lpName, DWORD dwOpenMode, DWORD dwPipeMode, DWORD nMaxInstances, DWORD nOutBufferSize, DWORD nInBufferSize, DWORD nDefaultTimeOut, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C WINBOOL GetNamedPipeHandleStateA(HANDLE hNamedPipe,LPDWORD lpState,LPDWORD lpCurInstances,LPDWORD lpMaxCollectionCount,LPDWORD lpCollectDataTimeout,LPSTR lpUserName,DWORD nMaxUserNameSize);
WINBOOL GetNamedPipeHandleStateA(HANDLE hNamedPipe, LPDWORD lpState, LPDWORD lpCurInstances, LPDWORD lpMaxCollectionCount, LPDWORD lpCollectDataTimeout, LPSTR lpUserName, DWORD nMaxUserNameSize);
//C WINBOOL GetNamedPipeHandleStateW(HANDLE hNamedPipe,LPDWORD lpState,LPDWORD lpCurInstances,LPDWORD lpMaxCollectionCount,LPDWORD lpCollectDataTimeout,LPWSTR lpUserName,DWORD nMaxUserNameSize);
WINBOOL GetNamedPipeHandleStateW(HANDLE hNamedPipe, LPDWORD lpState, LPDWORD lpCurInstances, LPDWORD lpMaxCollectionCount, LPDWORD lpCollectDataTimeout, LPWSTR lpUserName, DWORD nMaxUserNameSize);
//C WINBOOL CallNamedPipeA(LPCSTR lpNamedPipeName,LPVOID lpInBuffer,DWORD nInBufferSize,LPVOID lpOutBuffer,DWORD nOutBufferSize,LPDWORD lpBytesRead,DWORD nTimeOut);
WINBOOL CallNamedPipeA(LPCSTR lpNamedPipeName, LPVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesRead, DWORD nTimeOut);
//C WINBOOL CallNamedPipeW(LPCWSTR lpNamedPipeName,LPVOID lpInBuffer,DWORD nInBufferSize,LPVOID lpOutBuffer,DWORD nOutBufferSize,LPDWORD lpBytesRead,DWORD nTimeOut);
WINBOOL CallNamedPipeW(LPCWSTR lpNamedPipeName, LPVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesRead, DWORD nTimeOut);
//C WINBOOL WaitNamedPipeA(LPCSTR lpNamedPipeName,DWORD nTimeOut);
WINBOOL WaitNamedPipeA(LPCSTR lpNamedPipeName, DWORD nTimeOut);
//C WINBOOL WaitNamedPipeW(LPCWSTR lpNamedPipeName,DWORD nTimeOut);
WINBOOL WaitNamedPipeW(LPCWSTR lpNamedPipeName, DWORD nTimeOut);
//C WINBOOL SetVolumeLabelA(LPCSTR lpRootPathName,LPCSTR lpVolumeName);
WINBOOL SetVolumeLabelA(LPCSTR lpRootPathName, LPCSTR lpVolumeName);
//C WINBOOL SetVolumeLabelW(LPCWSTR lpRootPathName,LPCWSTR lpVolumeName);
WINBOOL SetVolumeLabelW(LPCWSTR lpRootPathName, LPCWSTR lpVolumeName);
//C void SetFileApisToOEM(void);
void SetFileApisToOEM();
//C void SetFileApisToANSI(void);
void SetFileApisToANSI();
//C WINBOOL AreFileApisANSI(void);
WINBOOL AreFileApisANSI();
//C WINBOOL GetVolumeInformationA(LPCSTR lpRootPathName,LPSTR lpVolumeNameBuffer,DWORD nVolumeNameSize,LPDWORD lpVolumeSerialNumber,LPDWORD lpMaximumComponentLength,LPDWORD lpFileSystemFlags,LPSTR lpFileSystemNameBuffer,DWORD nFileSystemNameSize);
WINBOOL GetVolumeInformationA(LPCSTR lpRootPathName, LPSTR lpVolumeNameBuffer, DWORD nVolumeNameSize, LPDWORD lpVolumeSerialNumber, LPDWORD lpMaximumComponentLength, LPDWORD lpFileSystemFlags, LPSTR lpFileSystemNameBuffer, DWORD nFileSystemNameSize);
//C WINBOOL GetVolumeInformationW(LPCWSTR lpRootPathName,LPWSTR lpVolumeNameBuffer,DWORD nVolumeNameSize,LPDWORD lpVolumeSerialNumber,LPDWORD lpMaximumComponentLength,LPDWORD lpFileSystemFlags,LPWSTR lpFileSystemNameBuffer,DWORD nFileSystemNameSize);
WINBOOL GetVolumeInformationW(LPCWSTR lpRootPathName, LPWSTR lpVolumeNameBuffer, DWORD nVolumeNameSize, LPDWORD lpVolumeSerialNumber, LPDWORD lpMaximumComponentLength, LPDWORD lpFileSystemFlags, LPWSTR lpFileSystemNameBuffer, DWORD nFileSystemNameSize);
//C WINBOOL CancelIo(HANDLE hFile);
WINBOOL CancelIo(HANDLE hFile);
//C WINBOOL ClearEventLogA(HANDLE hEventLog,LPCSTR lpBackupFileName);
WINBOOL ClearEventLogA(HANDLE hEventLog, LPCSTR lpBackupFileName);
//C WINBOOL ClearEventLogW(HANDLE hEventLog,LPCWSTR lpBackupFileName);
WINBOOL ClearEventLogW(HANDLE hEventLog, LPCWSTR lpBackupFileName);
//C WINBOOL BackupEventLogA(HANDLE hEventLog,LPCSTR lpBackupFileName);
WINBOOL BackupEventLogA(HANDLE hEventLog, LPCSTR lpBackupFileName);
//C WINBOOL BackupEventLogW(HANDLE hEventLog,LPCWSTR lpBackupFileName);
WINBOOL BackupEventLogW(HANDLE hEventLog, LPCWSTR lpBackupFileName);
//C WINBOOL CloseEventLog(HANDLE hEventLog);
WINBOOL CloseEventLog(HANDLE hEventLog);
//C WINBOOL DeregisterEventSource(HANDLE hEventLog);
WINBOOL DeregisterEventSource(HANDLE hEventLog);
//C WINBOOL NotifyChangeEventLog(HANDLE hEventLog,HANDLE hEvent);
WINBOOL NotifyChangeEventLog(HANDLE hEventLog, HANDLE hEvent);
//C WINBOOL GetNumberOfEventLogRecords(HANDLE hEventLog,PDWORD NumberOfRecords);
WINBOOL GetNumberOfEventLogRecords(HANDLE hEventLog, PDWORD NumberOfRecords);
//C WINBOOL GetOldestEventLogRecord(HANDLE hEventLog,PDWORD OldestRecord);
WINBOOL GetOldestEventLogRecord(HANDLE hEventLog, PDWORD OldestRecord);
//C HANDLE OpenEventLogA(LPCSTR lpUNCServerName,LPCSTR lpSourceName);
HANDLE OpenEventLogA(LPCSTR lpUNCServerName, LPCSTR lpSourceName);
//C HANDLE OpenEventLogW(LPCWSTR lpUNCServerName,LPCWSTR lpSourceName);
HANDLE OpenEventLogW(LPCWSTR lpUNCServerName, LPCWSTR lpSourceName);
//C HANDLE RegisterEventSourceA(LPCSTR lpUNCServerName,LPCSTR lpSourceName);
HANDLE RegisterEventSourceA(LPCSTR lpUNCServerName, LPCSTR lpSourceName);
//C HANDLE RegisterEventSourceW(LPCWSTR lpUNCServerName,LPCWSTR lpSourceName);
HANDLE RegisterEventSourceW(LPCWSTR lpUNCServerName, LPCWSTR lpSourceName);
//C HANDLE OpenBackupEventLogA(LPCSTR lpUNCServerName,LPCSTR lpFileName);
HANDLE OpenBackupEventLogA(LPCSTR lpUNCServerName, LPCSTR lpFileName);
//C HANDLE OpenBackupEventLogW(LPCWSTR lpUNCServerName,LPCWSTR lpFileName);
HANDLE OpenBackupEventLogW(LPCWSTR lpUNCServerName, LPCWSTR lpFileName);
//C WINBOOL ReadEventLogA(HANDLE hEventLog,DWORD dwReadFlags,DWORD dwRecordOffset,LPVOID lpBuffer,DWORD nNumberOfBytesToRead,DWORD *pnBytesRead,DWORD *pnMinNumberOfBytesNeeded);
WINBOOL ReadEventLogA(HANDLE hEventLog, DWORD dwReadFlags, DWORD dwRecordOffset, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, DWORD *pnBytesRead, DWORD *pnMinNumberOfBytesNeeded);
//C WINBOOL ReadEventLogW(HANDLE hEventLog,DWORD dwReadFlags,DWORD dwRecordOffset,LPVOID lpBuffer,DWORD nNumberOfBytesToRead,DWORD *pnBytesRead,DWORD *pnMinNumberOfBytesNeeded);
WINBOOL ReadEventLogW(HANDLE hEventLog, DWORD dwReadFlags, DWORD dwRecordOffset, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, DWORD *pnBytesRead, DWORD *pnMinNumberOfBytesNeeded);
//C WINBOOL ReportEventA(HANDLE hEventLog,WORD wType,WORD wCategory,DWORD dwEventID,PSID lpUserSid,WORD wNumStrings,DWORD dwDataSize,LPCSTR *lpStrings,LPVOID lpRawData);
WINBOOL ReportEventA(HANDLE hEventLog, WORD wType, WORD wCategory, DWORD dwEventID, PSID lpUserSid, WORD wNumStrings, DWORD dwDataSize, LPCSTR *lpStrings, LPVOID lpRawData);
//C WINBOOL ReportEventW(HANDLE hEventLog,WORD wType,WORD wCategory,DWORD dwEventID,PSID lpUserSid,WORD wNumStrings,DWORD dwDataSize,LPCWSTR *lpStrings,LPVOID lpRawData);
WINBOOL ReportEventW(HANDLE hEventLog, WORD wType, WORD wCategory, DWORD dwEventID, PSID lpUserSid, WORD wNumStrings, DWORD dwDataSize, LPCWSTR *lpStrings, LPVOID lpRawData);
//C typedef struct _EVENTLOG_FULL_INFORMATION {
//C DWORD dwFull;
//C } EVENTLOG_FULL_INFORMATION,*LPEVENTLOG_FULL_INFORMATION;
struct _EVENTLOG_FULL_INFORMATION
{
DWORD dwFull;
}
alias _EVENTLOG_FULL_INFORMATION EVENTLOG_FULL_INFORMATION;
alias _EVENTLOG_FULL_INFORMATION *LPEVENTLOG_FULL_INFORMATION;
//C WINBOOL GetEventLogInformation(HANDLE hEventLog,DWORD dwInfoLevel,LPVOID lpBuffer,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL GetEventLogInformation(HANDLE hEventLog, DWORD dwInfoLevel, LPVOID lpBuffer, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL DuplicateToken(HANDLE ExistingTokenHandle,SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,PHANDLE DuplicateTokenHandle);
WINBOOL DuplicateToken(HANDLE ExistingTokenHandle, SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, PHANDLE DuplicateTokenHandle);
//C WINBOOL GetKernelObjectSecurity(HANDLE Handle,SECURITY_INFORMATION RequestedInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetKernelObjectSecurity(HANDLE Handle, SECURITY_INFORMATION RequestedInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD nLength, LPDWORD lpnLengthNeeded);
//C WINBOOL ImpersonateNamedPipeClient(HANDLE hNamedPipe);
WINBOOL ImpersonateNamedPipeClient(HANDLE hNamedPipe);
//C WINBOOL ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel);
WINBOOL ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel);
//C WINBOOL RevertToSelf(void);
WINBOOL RevertToSelf();
//C WINBOOL SetThreadToken (PHANDLE Thread,HANDLE Token);
WINBOOL SetThreadToken(PHANDLE Thread, HANDLE Token);
//C WINBOOL AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor,HANDLE ClientToken,DWORD DesiredAccess,PGENERIC_MAPPING GenericMapping,PPRIVILEGE_SET PrivilegeSet,LPDWORD PrivilegeSetLength,LPDWORD GrantedAccess,LPBOOL AccessStatus);
WINBOOL AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess, PGENERIC_MAPPING GenericMapping, PPRIVILEGE_SET PrivilegeSet, LPDWORD PrivilegeSetLength, LPDWORD GrantedAccess, LPBOOL AccessStatus);
//C WINBOOL AccessCheckByType(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID PrincipalSelfSid,HANDLE ClientToken,DWORD DesiredAccess,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,PPRIVILEGE_SET PrivilegeSet,LPDWORD PrivilegeSetLength,LPDWORD GrantedAccess,LPBOOL AccessStatus);
WINBOOL AccessCheckByType(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID PrincipalSelfSid, HANDLE ClientToken, DWORD DesiredAccess, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, PPRIVILEGE_SET PrivilegeSet, LPDWORD PrivilegeSetLength, LPDWORD GrantedAccess, LPBOOL AccessStatus);
//C WINBOOL AccessCheckByTypeResultList(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID PrincipalSelfSid,HANDLE ClientToken,DWORD DesiredAccess,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,PPRIVILEGE_SET PrivilegeSet,LPDWORD PrivilegeSetLength,LPDWORD GrantedAccessList,LPDWORD AccessStatusList);
WINBOOL AccessCheckByTypeResultList(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID PrincipalSelfSid, HANDLE ClientToken, DWORD DesiredAccess, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, PPRIVILEGE_SET PrivilegeSet, LPDWORD PrivilegeSetLength, LPDWORD GrantedAccessList, LPDWORD AccessStatusList);
//C WINBOOL OpenProcessToken(HANDLE ProcessHandle,DWORD DesiredAccess,PHANDLE TokenHandle);
WINBOOL OpenProcessToken(HANDLE ProcessHandle, DWORD DesiredAccess, PHANDLE TokenHandle);
//C WINBOOL OpenThreadToken(HANDLE ThreadHandle,DWORD DesiredAccess,WINBOOL OpenAsSelf,PHANDLE TokenHandle);
WINBOOL OpenThreadToken(HANDLE ThreadHandle, DWORD DesiredAccess, WINBOOL OpenAsSelf, PHANDLE TokenHandle);
//C WINBOOL GetTokenInformation(HANDLE TokenHandle,TOKEN_INFORMATION_CLASS TokenInformationClass,LPVOID TokenInformation,DWORD TokenInformationLength,PDWORD ReturnLength);
WINBOOL GetTokenInformation(HANDLE TokenHandle, TOKEN_INFORMATION_CLASS TokenInformationClass, LPVOID TokenInformation, DWORD TokenInformationLength, PDWORD ReturnLength);
//C WINBOOL SetTokenInformation(HANDLE TokenHandle,TOKEN_INFORMATION_CLASS TokenInformationClass,LPVOID TokenInformation,DWORD TokenInformationLength);
WINBOOL SetTokenInformation(HANDLE TokenHandle, TOKEN_INFORMATION_CLASS TokenInformationClass, LPVOID TokenInformation, DWORD TokenInformationLength);
//C WINBOOL AdjustTokenPrivileges(HANDLE TokenHandle,WINBOOL DisableAllPrivileges,PTOKEN_PRIVILEGES NewState,DWORD BufferLength,PTOKEN_PRIVILEGES PreviousState,PDWORD ReturnLength);
WINBOOL AdjustTokenPrivileges(HANDLE TokenHandle, WINBOOL DisableAllPrivileges, PTOKEN_PRIVILEGES NewState, DWORD BufferLength, PTOKEN_PRIVILEGES PreviousState, PDWORD ReturnLength);
//C WINBOOL AdjustTokenGroups(HANDLE TokenHandle,WINBOOL ResetToDefault,PTOKEN_GROUPS NewState,DWORD BufferLength,PTOKEN_GROUPS PreviousState,PDWORD ReturnLength);
WINBOOL AdjustTokenGroups(HANDLE TokenHandle, WINBOOL ResetToDefault, PTOKEN_GROUPS NewState, DWORD BufferLength, PTOKEN_GROUPS PreviousState, PDWORD ReturnLength);
//C WINBOOL PrivilegeCheck(HANDLE ClientToken,PPRIVILEGE_SET RequiredPrivileges,LPBOOL pfResult);
WINBOOL PrivilegeCheck(HANDLE ClientToken, PPRIVILEGE_SET RequiredPrivileges, LPBOOL pfResult);
//C WINBOOL AccessCheckAndAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,LPSTR ObjectTypeName,LPSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,DWORD DesiredAccess,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPBOOL AccessStatus,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckAndAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPSTR ObjectTypeName, LPSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPBOOL AccessStatus, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckAndAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,LPWSTR ObjectTypeName,LPWSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,DWORD DesiredAccess,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPBOOL AccessStatus,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckAndAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPWSTR ObjectTypeName, LPWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPBOOL AccessStatus, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeAndAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,LPCSTR ObjectTypeName,LPCSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPBOOL AccessStatus,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeAndAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPCSTR ObjectTypeName, LPCSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPBOOL AccessStatus, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeAndAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,LPCWSTR ObjectTypeName,LPCWSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPBOOL AccessStatus,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeAndAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPCWSTR ObjectTypeName, LPCWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPBOOL AccessStatus, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeResultListAndAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,LPCSTR ObjectTypeName,LPCSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPDWORD AccessStatusList,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeResultListAndAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPCSTR ObjectTypeName, LPCSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPDWORD AccessStatusList, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeResultListAndAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,LPCWSTR ObjectTypeName,LPCWSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPDWORD AccessStatusList,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeResultListAndAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPCWSTR ObjectTypeName, LPCWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPDWORD AccessStatusList, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeResultListAndAuditAlarmByHandleA(LPCSTR SubsystemName,LPVOID HandleId,HANDLE ClientToken,LPCSTR ObjectTypeName,LPCSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPDWORD AccessStatusList,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeResultListAndAuditAlarmByHandleA(LPCSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken, LPCSTR ObjectTypeName, LPCSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPDWORD AccessStatusList, LPBOOL pfGenerateOnClose);
//C WINBOOL AccessCheckByTypeResultListAndAuditAlarmByHandleW(LPCWSTR SubsystemName,LPVOID HandleId,HANDLE ClientToken,LPCWSTR ObjectTypeName,LPCWSTR ObjectName,PSECURITY_DESCRIPTOR SecurityDescriptor,PSID PrincipalSelfSid,DWORD DesiredAccess,AUDIT_EVENT_TYPE AuditType,DWORD Flags,POBJECT_TYPE_LIST ObjectTypeList,DWORD ObjectTypeListLength,PGENERIC_MAPPING GenericMapping,WINBOOL ObjectCreation,LPDWORD GrantedAccess,LPDWORD AccessStatusList,LPBOOL pfGenerateOnClose);
WINBOOL AccessCheckByTypeResultListAndAuditAlarmByHandleW(LPCWSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken, LPCWSTR ObjectTypeName, LPCWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, PSID PrincipalSelfSid, DWORD DesiredAccess, AUDIT_EVENT_TYPE AuditType, DWORD Flags, POBJECT_TYPE_LIST ObjectTypeList, DWORD ObjectTypeListLength, PGENERIC_MAPPING GenericMapping, WINBOOL ObjectCreation, LPDWORD GrantedAccess, LPDWORD AccessStatusList, LPBOOL pfGenerateOnClose);
//C WINBOOL ObjectOpenAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,LPSTR ObjectTypeName,LPSTR ObjectName,PSECURITY_DESCRIPTOR pSecurityDescriptor,HANDLE ClientToken,DWORD DesiredAccess,DWORD GrantedAccess,PPRIVILEGE_SET Privileges,WINBOOL ObjectCreation,WINBOOL AccessGranted,LPBOOL GenerateOnClose);
WINBOOL ObjectOpenAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPSTR ObjectTypeName, LPSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess, DWORD GrantedAccess, PPRIVILEGE_SET Privileges, WINBOOL ObjectCreation, WINBOOL AccessGranted, LPBOOL GenerateOnClose);
//C WINBOOL ObjectOpenAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,LPWSTR ObjectTypeName,LPWSTR ObjectName,PSECURITY_DESCRIPTOR pSecurityDescriptor,HANDLE ClientToken,DWORD DesiredAccess,DWORD GrantedAccess,PPRIVILEGE_SET Privileges,WINBOOL ObjectCreation,WINBOOL AccessGranted,LPBOOL GenerateOnClose);
WINBOOL ObjectOpenAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPWSTR ObjectTypeName, LPWSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess, DWORD GrantedAccess, PPRIVILEGE_SET Privileges, WINBOOL ObjectCreation, WINBOOL AccessGranted, LPBOOL GenerateOnClose);
//C WINBOOL ObjectPrivilegeAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,HANDLE ClientToken,DWORD DesiredAccess,PPRIVILEGE_SET Privileges,WINBOOL AccessGranted);
WINBOOL ObjectPrivilegeAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken, DWORD DesiredAccess, PPRIVILEGE_SET Privileges, WINBOOL AccessGranted);
//C WINBOOL ObjectPrivilegeAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,HANDLE ClientToken,DWORD DesiredAccess,PPRIVILEGE_SET Privileges,WINBOOL AccessGranted);
WINBOOL ObjectPrivilegeAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken, DWORD DesiredAccess, PPRIVILEGE_SET Privileges, WINBOOL AccessGranted);
//C WINBOOL ObjectCloseAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,WINBOOL GenerateOnClose);
WINBOOL ObjectCloseAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, WINBOOL GenerateOnClose);
//C WINBOOL ObjectCloseAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,WINBOOL GenerateOnClose);
WINBOOL ObjectCloseAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, WINBOOL GenerateOnClose);
//C WINBOOL ObjectDeleteAuditAlarmA(LPCSTR SubsystemName,LPVOID HandleId,WINBOOL GenerateOnClose);
WINBOOL ObjectDeleteAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, WINBOOL GenerateOnClose);
//C WINBOOL ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName,LPVOID HandleId,WINBOOL GenerateOnClose);
WINBOOL ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, WINBOOL GenerateOnClose);
//C WINBOOL PrivilegedServiceAuditAlarmA(LPCSTR SubsystemName,LPCSTR ServiceName,HANDLE ClientToken,PPRIVILEGE_SET Privileges,WINBOOL AccessGranted);
WINBOOL PrivilegedServiceAuditAlarmA(LPCSTR SubsystemName, LPCSTR ServiceName, HANDLE ClientToken, PPRIVILEGE_SET Privileges, WINBOOL AccessGranted);
//C WINBOOL PrivilegedServiceAuditAlarmW(LPCWSTR SubsystemName,LPCWSTR ServiceName,HANDLE ClientToken,PPRIVILEGE_SET Privileges,WINBOOL AccessGranted);
WINBOOL PrivilegedServiceAuditAlarmW(LPCWSTR SubsystemName, LPCWSTR ServiceName, HANDLE ClientToken, PPRIVILEGE_SET Privileges, WINBOOL AccessGranted);
//C WINBOOL IsWellKnownSid(PSID pSid,WELL_KNOWN_SID_TYPE WellKnownSidType);
WINBOOL IsWellKnownSid(PSID pSid, WELL_KNOWN_SID_TYPE WellKnownSidType);
//C WINBOOL CreateWellKnownSid(WELL_KNOWN_SID_TYPE WellKnownSidType,PSID DomainSid,PSID pSid,DWORD *cbSid);
WINBOOL CreateWellKnownSid(WELL_KNOWN_SID_TYPE WellKnownSidType, PSID DomainSid, PSID pSid, DWORD *cbSid);
//C WINBOOL EqualDomainSid(PSID pSid1,PSID pSid2,WINBOOL *pfEqual);
WINBOOL EqualDomainSid(PSID pSid1, PSID pSid2, WINBOOL *pfEqual);
//C WINBOOL GetWindowsAccountDomainSid(PSID pSid,PSID pDomainSid,DWORD *cbDomainSid);
WINBOOL GetWindowsAccountDomainSid(PSID pSid, PSID pDomainSid, DWORD *cbDomainSid);
//C WINBOOL IsValidSid(PSID pSid);
WINBOOL IsValidSid(PSID pSid);
//C WINBOOL EqualSid(PSID pSid1,PSID pSid2);
WINBOOL EqualSid(PSID pSid1, PSID pSid2);
//C WINBOOL EqualPrefixSid(PSID pSid1,PSID pSid2);
WINBOOL EqualPrefixSid(PSID pSid1, PSID pSid2);
//C DWORD GetSidLengthRequired (UCHAR nSubAuthorityCount);
DWORD GetSidLengthRequired(UCHAR nSubAuthorityCount);
//C WINBOOL AllocateAndInitializeSid(PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,BYTE nSubAuthorityCount,DWORD nSubAuthority0,DWORD nSubAuthority1,DWORD nSubAuthority2,DWORD nSubAuthority3,DWORD nSubAuthority4,DWORD nSubAuthority5,DWORD nSubAuthority6,DWORD nSubAuthority7,PSID *pSid);
WINBOOL AllocateAndInitializeSid(PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority, BYTE nSubAuthorityCount, DWORD nSubAuthority0, DWORD nSubAuthority1, DWORD nSubAuthority2, DWORD nSubAuthority3, DWORD nSubAuthority4, DWORD nSubAuthority5, DWORD nSubAuthority6, DWORD nSubAuthority7, PSID *pSid);
//C PVOID FreeSid(PSID pSid);
PVOID FreeSid(PSID pSid);
//C WINBOOL InitializeSid(PSID Sid,PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,BYTE nSubAuthorityCount);
WINBOOL InitializeSid(PSID Sid, PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority, BYTE nSubAuthorityCount);
//C PSID_IDENTIFIER_AUTHORITY GetSidIdentifierAuthority(PSID pSid);
PSID_IDENTIFIER_AUTHORITY GetSidIdentifierAuthority(PSID pSid);
//C PDWORD GetSidSubAuthority(PSID pSid,DWORD nSubAuthority);
PDWORD GetSidSubAuthority(PSID pSid, DWORD nSubAuthority);
//C PUCHAR GetSidSubAuthorityCount(PSID pSid);
PUCHAR GetSidSubAuthorityCount(PSID pSid);
//C DWORD GetLengthSid(PSID pSid);
DWORD GetLengthSid(PSID pSid);
//C WINBOOL CopySid(DWORD nDestinationSidLength,PSID pDestinationSid,PSID pSourceSid);
WINBOOL CopySid(DWORD nDestinationSidLength, PSID pDestinationSid, PSID pSourceSid);
//C WINBOOL AreAllAccessesGranted(DWORD GrantedAccess,DWORD DesiredAccess);
WINBOOL AreAllAccessesGranted(DWORD GrantedAccess, DWORD DesiredAccess);
//C WINBOOL AreAnyAccessesGranted(DWORD GrantedAccess,DWORD DesiredAccess);
WINBOOL AreAnyAccessesGranted(DWORD GrantedAccess, DWORD DesiredAccess);
//C void MapGenericMask(PDWORD AccessMask,PGENERIC_MAPPING GenericMapping);
void MapGenericMask(PDWORD AccessMask, PGENERIC_MAPPING GenericMapping);
//C WINBOOL IsValidAcl(PACL pAcl);
WINBOOL IsValidAcl(PACL pAcl);
//C WINBOOL InitializeAcl(PACL pAcl,DWORD nAclLength,DWORD dwAclRevision);
WINBOOL InitializeAcl(PACL pAcl, DWORD nAclLength, DWORD dwAclRevision);
//C WINBOOL GetAclInformation(PACL pAcl,LPVOID pAclInformation,DWORD nAclInformationLength,ACL_INFORMATION_CLASS dwAclInformationClass);
WINBOOL GetAclInformation(PACL pAcl, LPVOID pAclInformation, DWORD nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
//C WINBOOL SetAclInformation(PACL pAcl,LPVOID pAclInformation,DWORD nAclInformationLength,ACL_INFORMATION_CLASS dwAclInformationClass);
WINBOOL SetAclInformation(PACL pAcl, LPVOID pAclInformation, DWORD nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
//C WINBOOL AddAce(PACL pAcl,DWORD dwAceRevision,DWORD dwStartingAceIndex,LPVOID pAceList,DWORD nAceListLength);
WINBOOL AddAce(PACL pAcl, DWORD dwAceRevision, DWORD dwStartingAceIndex, LPVOID pAceList, DWORD nAceListLength);
//C WINBOOL DeleteAce(PACL pAcl,DWORD dwAceIndex);
WINBOOL DeleteAce(PACL pAcl, DWORD dwAceIndex);
//C WINBOOL GetAce(PACL pAcl,DWORD dwAceIndex,LPVOID *pAce);
WINBOOL GetAce(PACL pAcl, DWORD dwAceIndex, LPVOID *pAce);
//C WINBOOL AddAccessAllowedAce(PACL pAcl,DWORD dwAceRevision,DWORD AccessMask,PSID pSid);
WINBOOL AddAccessAllowedAce(PACL pAcl, DWORD dwAceRevision, DWORD AccessMask, PSID pSid);
//C WINBOOL AddAccessAllowedAceEx(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD AccessMask,PSID pSid);
WINBOOL AddAccessAllowedAceEx(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD AccessMask, PSID pSid);
//C WINBOOL AddAccessDeniedAce(PACL pAcl,DWORD dwAceRevision,DWORD AccessMask,PSID pSid);
WINBOOL AddAccessDeniedAce(PACL pAcl, DWORD dwAceRevision, DWORD AccessMask, PSID pSid);
//C WINBOOL AddAccessDeniedAceEx(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD AccessMask,PSID pSid);
WINBOOL AddAccessDeniedAceEx(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD AccessMask, PSID pSid);
//C WINBOOL AddAuditAccessAce(PACL pAcl,DWORD dwAceRevision,DWORD dwAccessMask,PSID pSid,WINBOOL bAuditSuccess,WINBOOL bAuditFailure);
WINBOOL AddAuditAccessAce(PACL pAcl, DWORD dwAceRevision, DWORD dwAccessMask, PSID pSid, WINBOOL bAuditSuccess, WINBOOL bAuditFailure);
//C WINBOOL AddAuditAccessAceEx(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD dwAccessMask,PSID pSid,WINBOOL bAuditSuccess,WINBOOL bAuditFailure);
WINBOOL AddAuditAccessAceEx(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD dwAccessMask, PSID pSid, WINBOOL bAuditSuccess, WINBOOL bAuditFailure);
//C WINBOOL AddAccessAllowedObjectAce(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD AccessMask,GUID *ObjectTypeGuid,GUID *InheritedObjectTypeGuid,PSID pSid);
WINBOOL AddAccessAllowedObjectAce(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD AccessMask, GUID *ObjectTypeGuid, GUID *InheritedObjectTypeGuid, PSID pSid);
//C WINBOOL AddAccessDeniedObjectAce(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD AccessMask,GUID *ObjectTypeGuid,GUID *InheritedObjectTypeGuid,PSID pSid);
WINBOOL AddAccessDeniedObjectAce(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD AccessMask, GUID *ObjectTypeGuid, GUID *InheritedObjectTypeGuid, PSID pSid);
//C WINBOOL AddAuditAccessObjectAce(PACL pAcl,DWORD dwAceRevision,DWORD AceFlags,DWORD AccessMask,GUID *ObjectTypeGuid,GUID *InheritedObjectTypeGuid,PSID pSid,WINBOOL bAuditSuccess,WINBOOL bAuditFailure);
WINBOOL AddAuditAccessObjectAce(PACL pAcl, DWORD dwAceRevision, DWORD AceFlags, DWORD AccessMask, GUID *ObjectTypeGuid, GUID *InheritedObjectTypeGuid, PSID pSid, WINBOOL bAuditSuccess, WINBOOL bAuditFailure);
//C WINBOOL FindFirstFreeAce(PACL pAcl,LPVOID *pAce);
WINBOOL FindFirstFreeAce(PACL pAcl, LPVOID *pAce);
//C WINBOOL InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor,DWORD dwRevision);
WINBOOL InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD dwRevision);
//C WINBOOL IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor);
WINBOOL IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor);
//C DWORD GetSecurityDescriptorLength(PSECURITY_DESCRIPTOR pSecurityDescriptor);
DWORD GetSecurityDescriptorLength(PSECURITY_DESCRIPTOR pSecurityDescriptor);
//C WINBOOL GetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSECURITY_DESCRIPTOR_CONTROL pControl,LPDWORD lpdwRevision);
WINBOOL GetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSECURITY_DESCRIPTOR_CONTROL pControl, LPDWORD lpdwRevision);
//C WINBOOL SetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor,SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest,SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet);
WINBOOL SetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor, SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest, SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet);
//C WINBOOL SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor,WINBOOL bDaclPresent,PACL pDacl,WINBOOL bDaclDefaulted);
WINBOOL SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, WINBOOL bDaclPresent, PACL pDacl, WINBOOL bDaclDefaulted);
//C WINBOOL GetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor,LPBOOL lpbDaclPresent,PACL *pDacl,LPBOOL lpbDaclDefaulted);
WINBOOL GetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, LPBOOL lpbDaclPresent, PACL *pDacl, LPBOOL lpbDaclDefaulted);
//C WINBOOL SetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor,WINBOOL bSaclPresent,PACL pSacl,WINBOOL bSaclDefaulted);
WINBOOL SetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, WINBOOL bSaclPresent, PACL pSacl, WINBOOL bSaclDefaulted);
//C WINBOOL GetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor,LPBOOL lpbSaclPresent,PACL *pSacl,LPBOOL lpbSaclDefaulted);
WINBOOL GetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, LPBOOL lpbSaclPresent, PACL *pSacl, LPBOOL lpbSaclDefaulted);
//C WINBOOL SetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID pOwner,WINBOOL bOwnerDefaulted);
WINBOOL SetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID pOwner, WINBOOL bOwnerDefaulted);
//C WINBOOL GetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID *pOwner,LPBOOL lpbOwnerDefaulted);
WINBOOL GetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID *pOwner, LPBOOL lpbOwnerDefaulted);
//C WINBOOL SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID pGroup,WINBOOL bGroupDefaulted);
WINBOOL SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID pGroup, WINBOOL bGroupDefaulted);
//C WINBOOL GetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor,PSID *pGroup,LPBOOL lpbGroupDefaulted);
WINBOOL GetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID *pGroup, LPBOOL lpbGroupDefaulted);
//C DWORD SetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor,PUCHAR RMControl);
DWORD SetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor, PUCHAR RMControl);
//C DWORD GetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor,PUCHAR RMControl);
DWORD GetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor, PUCHAR RMControl);
//C WINBOOL CreatePrivateObjectSecurity(PSECURITY_DESCRIPTOR ParentDescriptor,PSECURITY_DESCRIPTOR CreatorDescriptor,PSECURITY_DESCRIPTOR *NewDescriptor,WINBOOL IsDirectoryObject,HANDLE Token,PGENERIC_MAPPING GenericMapping);
WINBOOL CreatePrivateObjectSecurity(PSECURITY_DESCRIPTOR ParentDescriptor, PSECURITY_DESCRIPTOR CreatorDescriptor, PSECURITY_DESCRIPTOR *NewDescriptor, WINBOOL IsDirectoryObject, HANDLE Token, PGENERIC_MAPPING GenericMapping);
//C WINBOOL ConvertToAutoInheritPrivateObjectSecurity(PSECURITY_DESCRIPTOR ParentDescriptor,PSECURITY_DESCRIPTOR CurrentSecurityDescriptor,PSECURITY_DESCRIPTOR *NewSecurityDescriptor,GUID *ObjectType,BOOLEAN IsDirectoryObject,PGENERIC_MAPPING GenericMapping);
WINBOOL ConvertToAutoInheritPrivateObjectSecurity(PSECURITY_DESCRIPTOR ParentDescriptor, PSECURITY_DESCRIPTOR CurrentSecurityDescriptor, PSECURITY_DESCRIPTOR *NewSecurityDescriptor, GUID *ObjectType, BOOLEAN IsDirectoryObject, PGENERIC_MAPPING GenericMapping);
//C WINBOOL CreatePrivateObjectSecurityEx(PSECURITY_DESCRIPTOR ParentDescriptor,PSECURITY_DESCRIPTOR CreatorDescriptor,PSECURITY_DESCRIPTOR *NewDescriptor,GUID *ObjectType,WINBOOL IsContainerObject,ULONG AutoInheritFlags,HANDLE Token,PGENERIC_MAPPING GenericMapping);
WINBOOL CreatePrivateObjectSecurityEx(PSECURITY_DESCRIPTOR ParentDescriptor, PSECURITY_DESCRIPTOR CreatorDescriptor, PSECURITY_DESCRIPTOR *NewDescriptor, GUID *ObjectType, WINBOOL IsContainerObject, ULONG AutoInheritFlags, HANDLE Token, PGENERIC_MAPPING GenericMapping);
//C WINBOOL CreatePrivateObjectSecurityWithMultipleInheritance(PSECURITY_DESCRIPTOR ParentDescriptor,PSECURITY_DESCRIPTOR CreatorDescriptor,PSECURITY_DESCRIPTOR *NewDescriptor,GUID **ObjectTypes,ULONG GuidCount,WINBOOL IsContainerObject,ULONG AutoInheritFlags,HANDLE Token,PGENERIC_MAPPING GenericMapping);
WINBOOL CreatePrivateObjectSecurityWithMultipleInheritance(PSECURITY_DESCRIPTOR ParentDescriptor, PSECURITY_DESCRIPTOR CreatorDescriptor, PSECURITY_DESCRIPTOR *NewDescriptor, GUID **ObjectTypes, ULONG GuidCount, WINBOOL IsContainerObject, ULONG AutoInheritFlags, HANDLE Token, PGENERIC_MAPPING GenericMapping);
//C WINBOOL SetPrivateObjectSecurity (SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR ModificationDescriptor,PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor,PGENERIC_MAPPING GenericMapping,HANDLE Token);
WINBOOL SetPrivateObjectSecurity(SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR ModificationDescriptor, PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor, PGENERIC_MAPPING GenericMapping, HANDLE Token);
//C WINBOOL SetPrivateObjectSecurityEx (SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR ModificationDescriptor,PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor,ULONG AutoInheritFlags,PGENERIC_MAPPING GenericMapping,HANDLE Token);
WINBOOL SetPrivateObjectSecurityEx(SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR ModificationDescriptor, PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor, ULONG AutoInheritFlags, PGENERIC_MAPPING GenericMapping, HANDLE Token);
//C WINBOOL GetPrivateObjectSecurity(PSECURITY_DESCRIPTOR ObjectDescriptor,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR ResultantDescriptor,DWORD DescriptorLength,PDWORD ReturnLength);
WINBOOL GetPrivateObjectSecurity(PSECURITY_DESCRIPTOR ObjectDescriptor, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR ResultantDescriptor, DWORD DescriptorLength, PDWORD ReturnLength);
//C WINBOOL DestroyPrivateObjectSecurity(PSECURITY_DESCRIPTOR *ObjectDescriptor);
WINBOOL DestroyPrivateObjectSecurity(PSECURITY_DESCRIPTOR *ObjectDescriptor);
//C WINBOOL MakeSelfRelativeSD(PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,LPDWORD lpdwBufferLength);
WINBOOL MakeSelfRelativeSD(PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor, PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor, LPDWORD lpdwBufferLength);
//C WINBOOL MakeAbsoluteSD(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,LPDWORD lpdwAbsoluteSecurityDescriptorSize,PACL pDacl,LPDWORD lpdwDaclSize,PACL pSacl,LPDWORD lpdwSaclSize,PSID pOwner,LPDWORD lpdwOwnerSize,PSID pPrimaryGroup,LPDWORD lpdwPrimaryGroupSize);
WINBOOL MakeAbsoluteSD(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor, PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor, LPDWORD lpdwAbsoluteSecurityDescriptorSize, PACL pDacl, LPDWORD lpdwDaclSize, PACL pSacl, LPDWORD lpdwSaclSize, PSID pOwner, LPDWORD lpdwOwnerSize, PSID pPrimaryGroup, LPDWORD lpdwPrimaryGroupSize);
//C WINBOOL MakeAbsoluteSD2(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,LPDWORD lpdwBufferSize);
WINBOOL MakeAbsoluteSD2(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor, LPDWORD lpdwBufferSize);
//C WINBOOL SetFileSecurityA(LPCSTR lpFileName,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor);
WINBOOL SetFileSecurityA(LPCSTR lpFileName, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor);
//C WINBOOL SetFileSecurityW(LPCWSTR lpFileName,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor);
WINBOOL SetFileSecurityW(LPCWSTR lpFileName, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor);
//C WINBOOL GetFileSecurityA(LPCSTR lpFileName,SECURITY_INFORMATION RequestedInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetFileSecurityA(LPCSTR lpFileName, SECURITY_INFORMATION RequestedInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD nLength, LPDWORD lpnLengthNeeded);
//C WINBOOL GetFileSecurityW(LPCWSTR lpFileName,SECURITY_INFORMATION RequestedInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetFileSecurityW(LPCWSTR lpFileName, SECURITY_INFORMATION RequestedInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD nLength, LPDWORD lpnLengthNeeded);
//C WINBOOL SetKernelObjectSecurity(HANDLE Handle,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR SecurityDescriptor);
WINBOOL SetKernelObjectSecurity(HANDLE Handle, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR SecurityDescriptor);
//C HANDLE FindFirstChangeNotificationA(LPCSTR lpPathName,WINBOOL bWatchSubtree,DWORD dwNotifyFilter);
HANDLE FindFirstChangeNotificationA(LPCSTR lpPathName, WINBOOL bWatchSubtree, DWORD dwNotifyFilter);
//C HANDLE FindFirstChangeNotificationW(LPCWSTR lpPathName,WINBOOL bWatchSubtree,DWORD dwNotifyFilter);
HANDLE FindFirstChangeNotificationW(LPCWSTR lpPathName, WINBOOL bWatchSubtree, DWORD dwNotifyFilter);
//C WINBOOL FindNextChangeNotification(HANDLE hChangeHandle);
WINBOOL FindNextChangeNotification(HANDLE hChangeHandle);
//C WINBOOL FindCloseChangeNotification(HANDLE hChangeHandle);
WINBOOL FindCloseChangeNotification(HANDLE hChangeHandle);
//C WINBOOL ReadDirectoryChangesW(HANDLE hDirectory,LPVOID lpBuffer,DWORD nBufferLength,WINBOOL bWatchSubtree,DWORD dwNotifyFilter,LPDWORD lpBytesReturned,LPOVERLAPPED lpOverlapped,LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
WINBOOL ReadDirectoryChangesW(HANDLE hDirectory, LPVOID lpBuffer, DWORD nBufferLength, WINBOOL bWatchSubtree, DWORD dwNotifyFilter, LPDWORD lpBytesReturned, LPOVERLAPPED lpOverlapped, LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
//C WINBOOL VirtualLock(LPVOID lpAddress,SIZE_T dwSize);
WINBOOL VirtualLock(LPVOID lpAddress, SIZE_T dwSize);
//C WINBOOL VirtualUnlock(LPVOID lpAddress,SIZE_T dwSize);
WINBOOL VirtualUnlock(LPVOID lpAddress, SIZE_T dwSize);
//C LPVOID MapViewOfFileEx(HANDLE hFileMappingObject,DWORD dwDesiredAccess,DWORD dwFileOffsetHigh,DWORD dwFileOffsetLow,SIZE_T dwNumberOfBytesToMap,LPVOID lpBaseAddress);
LPVOID MapViewOfFileEx(HANDLE hFileMappingObject, DWORD dwDesiredAccess, DWORD dwFileOffsetHigh, DWORD dwFileOffsetLow, SIZE_T dwNumberOfBytesToMap, LPVOID lpBaseAddress);
//C WINBOOL SetPriorityClass(HANDLE hProcess,DWORD dwPriorityClass);
WINBOOL SetPriorityClass(HANDLE hProcess, DWORD dwPriorityClass);
//C DWORD GetPriorityClass(HANDLE hProcess);
DWORD GetPriorityClass(HANDLE hProcess);
//C WINBOOL IsBadReadPtr(const void *lp,UINT_PTR ucb);
WINBOOL IsBadReadPtr(void *lp, UINT_PTR ucb);
//C WINBOOL IsBadWritePtr(LPVOID lp,UINT_PTR ucb);
WINBOOL IsBadWritePtr(LPVOID lp, UINT_PTR ucb);
//C WINBOOL IsBadHugeReadPtr(const void *lp,UINT_PTR ucb);
WINBOOL IsBadHugeReadPtr(void *lp, UINT_PTR ucb);
//C WINBOOL IsBadHugeWritePtr(LPVOID lp,UINT_PTR ucb);
WINBOOL IsBadHugeWritePtr(LPVOID lp, UINT_PTR ucb);
//C WINBOOL IsBadCodePtr(FARPROC lpfn);
WINBOOL IsBadCodePtr(FARPROC lpfn);
//C WINBOOL IsBadStringPtrA(LPCSTR lpsz,UINT_PTR ucchMax);
WINBOOL IsBadStringPtrA(LPCSTR lpsz, UINT_PTR ucchMax);
//C WINBOOL IsBadStringPtrW(LPCWSTR lpsz,UINT_PTR ucchMax);
WINBOOL IsBadStringPtrW(LPCWSTR lpsz, UINT_PTR ucchMax);
//C WINBOOL LookupAccountSidA(LPCSTR lpSystemName,PSID Sid,LPSTR Name,LPDWORD cchName,LPSTR ReferencedDomainName,LPDWORD cchReferencedDomainName,PSID_NAME_USE peUse);
WINBOOL LookupAccountSidA(LPCSTR lpSystemName, PSID Sid, LPSTR Name, LPDWORD cchName, LPSTR ReferencedDomainName, LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse);
//C WINBOOL LookupAccountSidW(LPCWSTR lpSystemName,PSID Sid,LPWSTR Name,LPDWORD cchName,LPWSTR ReferencedDomainName,LPDWORD cchReferencedDomainName,PSID_NAME_USE peUse);
WINBOOL LookupAccountSidW(LPCWSTR lpSystemName, PSID Sid, LPWSTR Name, LPDWORD cchName, LPWSTR ReferencedDomainName, LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse);
//C WINBOOL LookupAccountNameA(LPCSTR lpSystemName,LPCSTR lpAccountName,PSID Sid,LPDWORD cbSid,LPSTR ReferencedDomainName,LPDWORD cchReferencedDomainName,PSID_NAME_USE peUse);
WINBOOL LookupAccountNameA(LPCSTR lpSystemName, LPCSTR lpAccountName, PSID Sid, LPDWORD cbSid, LPSTR ReferencedDomainName, LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse);
//C WINBOOL LookupAccountNameW(LPCWSTR lpSystemName,LPCWSTR lpAccountName,PSID Sid,LPDWORD cbSid,LPWSTR ReferencedDomainName,LPDWORD cchReferencedDomainName,PSID_NAME_USE peUse);
WINBOOL LookupAccountNameW(LPCWSTR lpSystemName, LPCWSTR lpAccountName, PSID Sid, LPDWORD cbSid, LPWSTR ReferencedDomainName, LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse);
//C WINBOOL LookupPrivilegeValueA(LPCSTR lpSystemName,LPCSTR lpName,PLUID lpLuid);
WINBOOL LookupPrivilegeValueA(LPCSTR lpSystemName, LPCSTR lpName, PLUID lpLuid);
//C WINBOOL LookupPrivilegeValueW(LPCWSTR lpSystemName,LPCWSTR lpName,PLUID lpLuid);
WINBOOL LookupPrivilegeValueW(LPCWSTR lpSystemName, LPCWSTR lpName, PLUID lpLuid);
//C WINBOOL LookupPrivilegeNameA(LPCSTR lpSystemName,PLUID lpLuid,LPSTR lpName,LPDWORD cchName);
WINBOOL LookupPrivilegeNameA(LPCSTR lpSystemName, PLUID lpLuid, LPSTR lpName, LPDWORD cchName);
//C WINBOOL LookupPrivilegeNameW(LPCWSTR lpSystemName,PLUID lpLuid,LPWSTR lpName,LPDWORD cchName);
WINBOOL LookupPrivilegeNameW(LPCWSTR lpSystemName, PLUID lpLuid, LPWSTR lpName, LPDWORD cchName);
//C WINBOOL LookupPrivilegeDisplayNameA(LPCSTR lpSystemName,LPCSTR lpName,LPSTR lpDisplayName,LPDWORD cchDisplayName,LPDWORD lpLanguageId);
WINBOOL LookupPrivilegeDisplayNameA(LPCSTR lpSystemName, LPCSTR lpName, LPSTR lpDisplayName, LPDWORD cchDisplayName, LPDWORD lpLanguageId);
//C WINBOOL LookupPrivilegeDisplayNameW(LPCWSTR lpSystemName,LPCWSTR lpName,LPWSTR lpDisplayName,LPDWORD cchDisplayName,LPDWORD lpLanguageId);
WINBOOL LookupPrivilegeDisplayNameW(LPCWSTR lpSystemName, LPCWSTR lpName, LPWSTR lpDisplayName, LPDWORD cchDisplayName, LPDWORD lpLanguageId);
//C WINBOOL AllocateLocallyUniqueId(PLUID Luid);
WINBOOL AllocateLocallyUniqueId(PLUID Luid);
//C WINBOOL BuildCommDCBA(LPCSTR lpDef,LPDCB lpDCB);
WINBOOL BuildCommDCBA(LPCSTR lpDef, LPDCB lpDCB);
//C WINBOOL BuildCommDCBW(LPCWSTR lpDef,LPDCB lpDCB);
WINBOOL BuildCommDCBW(LPCWSTR lpDef, LPDCB lpDCB);
//C WINBOOL BuildCommDCBAndTimeoutsA(LPCSTR lpDef,LPDCB lpDCB,LPCOMMTIMEOUTS lpCommTimeouts);
WINBOOL BuildCommDCBAndTimeoutsA(LPCSTR lpDef, LPDCB lpDCB, LPCOMMTIMEOUTS lpCommTimeouts);
//C WINBOOL BuildCommDCBAndTimeoutsW(LPCWSTR lpDef,LPDCB lpDCB,LPCOMMTIMEOUTS lpCommTimeouts);
WINBOOL BuildCommDCBAndTimeoutsW(LPCWSTR lpDef, LPDCB lpDCB, LPCOMMTIMEOUTS lpCommTimeouts);
//C WINBOOL CommConfigDialogA(LPCSTR lpszName,HWND hWnd,LPCOMMCONFIG lpCC);
WINBOOL CommConfigDialogA(LPCSTR lpszName, HWND hWnd, LPCOMMCONFIG lpCC);
//C WINBOOL CommConfigDialogW(LPCWSTR lpszName,HWND hWnd,LPCOMMCONFIG lpCC);
WINBOOL CommConfigDialogW(LPCWSTR lpszName, HWND hWnd, LPCOMMCONFIG lpCC);
//C WINBOOL GetDefaultCommConfigA(LPCSTR lpszName,LPCOMMCONFIG lpCC,LPDWORD lpdwSize);
WINBOOL GetDefaultCommConfigA(LPCSTR lpszName, LPCOMMCONFIG lpCC, LPDWORD lpdwSize);
//C WINBOOL GetDefaultCommConfigW(LPCWSTR lpszName,LPCOMMCONFIG lpCC,LPDWORD lpdwSize);
WINBOOL GetDefaultCommConfigW(LPCWSTR lpszName, LPCOMMCONFIG lpCC, LPDWORD lpdwSize);
//C WINBOOL SetDefaultCommConfigA(LPCSTR lpszName,LPCOMMCONFIG lpCC,DWORD dwSize);
WINBOOL SetDefaultCommConfigA(LPCSTR lpszName, LPCOMMCONFIG lpCC, DWORD dwSize);
//C WINBOOL SetDefaultCommConfigW(LPCWSTR lpszName,LPCOMMCONFIG lpCC,DWORD dwSize);
WINBOOL SetDefaultCommConfigW(LPCWSTR lpszName, LPCOMMCONFIG lpCC, DWORD dwSize);
//C WINBOOL GetComputerNameA(LPSTR lpBuffer,LPDWORD nSize);
WINBOOL GetComputerNameA(LPSTR lpBuffer, LPDWORD nSize);
//C WINBOOL GetComputerNameW(LPWSTR lpBuffer,LPDWORD nSize);
WINBOOL GetComputerNameW(LPWSTR lpBuffer, LPDWORD nSize);
//C WINBOOL SetComputerNameA(LPCSTR lpComputerName);
WINBOOL SetComputerNameA(LPCSTR lpComputerName);
//C WINBOOL SetComputerNameW(LPCWSTR lpComputerName);
WINBOOL SetComputerNameW(LPCWSTR lpComputerName);
//C typedef enum _COMPUTER_NAME_FORMAT {
//C ComputerNameNetBIOS,ComputerNameDnsHostname,ComputerNameDnsDomain,ComputerNameDnsFullyQualified,ComputerNamePhysicalNetBIOS,ComputerNamePhysicalDnsHostname,ComputerNamePhysicalDnsDomain,ComputerNamePhysicalDnsFullyQualified,ComputerNameMax
//C } COMPUTER_NAME_FORMAT;
enum _COMPUTER_NAME_FORMAT
{
ComputerNameNetBIOS,
ComputerNameDnsHostname,
ComputerNameDnsDomain,
ComputerNameDnsFullyQualified,
ComputerNamePhysicalNetBIOS,
ComputerNamePhysicalDnsHostname,
ComputerNamePhysicalDnsDomain,
ComputerNamePhysicalDnsFullyQualified,
ComputerNameMax,
}
alias _COMPUTER_NAME_FORMAT COMPUTER_NAME_FORMAT;
//C WINBOOL GetComputerNameExA(COMPUTER_NAME_FORMAT NameType,LPSTR lpBuffer,LPDWORD nSize);
WINBOOL GetComputerNameExA(COMPUTER_NAME_FORMAT NameType, LPSTR lpBuffer, LPDWORD nSize);
//C WINBOOL GetComputerNameExW(COMPUTER_NAME_FORMAT NameType,LPWSTR lpBuffer,LPDWORD nSize);
WINBOOL GetComputerNameExW(COMPUTER_NAME_FORMAT NameType, LPWSTR lpBuffer, LPDWORD nSize);
//C WINBOOL SetComputerNameExA(COMPUTER_NAME_FORMAT NameType,LPCSTR lpBuffer);
WINBOOL SetComputerNameExA(COMPUTER_NAME_FORMAT NameType, LPCSTR lpBuffer);
//C WINBOOL SetComputerNameExW(COMPUTER_NAME_FORMAT NameType,LPCWSTR lpBuffer);
WINBOOL SetComputerNameExW(COMPUTER_NAME_FORMAT NameType, LPCWSTR lpBuffer);
//C WINBOOL DnsHostnameToComputerNameA(LPCSTR Hostname,LPSTR ComputerName,LPDWORD nSize);
WINBOOL DnsHostnameToComputerNameA(LPCSTR Hostname, LPSTR ComputerName, LPDWORD nSize);
//C WINBOOL DnsHostnameToComputerNameW(LPCWSTR Hostname,LPWSTR ComputerName,LPDWORD nSize);
WINBOOL DnsHostnameToComputerNameW(LPCWSTR Hostname, LPWSTR ComputerName, LPDWORD nSize);
//C WINBOOL GetUserNameA(LPSTR lpBuffer,LPDWORD pcbBuffer);
WINBOOL GetUserNameA(LPSTR lpBuffer, LPDWORD pcbBuffer);
//C WINBOOL GetUserNameW(LPWSTR lpBuffer,LPDWORD pcbBuffer);
WINBOOL GetUserNameW(LPWSTR lpBuffer, LPDWORD pcbBuffer);
//C WINBOOL LogonUserA(LPCSTR lpszUsername,LPCSTR lpszDomain,LPCSTR lpszPassword,DWORD dwLogonType,DWORD dwLogonProvider,PHANDLE phToken);
WINBOOL LogonUserA(LPCSTR lpszUsername, LPCSTR lpszDomain, LPCSTR lpszPassword, DWORD dwLogonType, DWORD dwLogonProvider, PHANDLE phToken);
//C WINBOOL LogonUserW(LPCWSTR lpszUsername,LPCWSTR lpszDomain,LPCWSTR lpszPassword,DWORD dwLogonType,DWORD dwLogonProvider,PHANDLE phToken);
WINBOOL LogonUserW(LPCWSTR lpszUsername, LPCWSTR lpszDomain, LPCWSTR lpszPassword, DWORD dwLogonType, DWORD dwLogonProvider, PHANDLE phToken);
//C WINBOOL LogonUserExA(LPCSTR lpszUsername,LPCSTR lpszDomain,LPCSTR lpszPassword,DWORD dwLogonType,DWORD dwLogonProvider,PHANDLE phToken,PSID *ppLogonSid,PVOID *ppProfileBuffer,LPDWORD pdwProfileLength,PQUOTA_LIMITS pQuotaLimits);
WINBOOL LogonUserExA(LPCSTR lpszUsername, LPCSTR lpszDomain, LPCSTR lpszPassword, DWORD dwLogonType, DWORD dwLogonProvider, PHANDLE phToken, PSID *ppLogonSid, PVOID *ppProfileBuffer, LPDWORD pdwProfileLength, PQUOTA_LIMITS pQuotaLimits);
//C WINBOOL LogonUserExW(LPCWSTR lpszUsername,LPCWSTR lpszDomain,LPCWSTR lpszPassword,DWORD dwLogonType,DWORD dwLogonProvider,PHANDLE phToken,PSID *ppLogonSid,PVOID *ppProfileBuffer,LPDWORD pdwProfileLength,PQUOTA_LIMITS pQuotaLimits);
WINBOOL LogonUserExW(LPCWSTR lpszUsername, LPCWSTR lpszDomain, LPCWSTR lpszPassword, DWORD dwLogonType, DWORD dwLogonProvider, PHANDLE phToken, PSID *ppLogonSid, PVOID *ppProfileBuffer, LPDWORD pdwProfileLength, PQUOTA_LIMITS pQuotaLimits);
//C WINBOOL ImpersonateLoggedOnUser(HANDLE hToken);
WINBOOL ImpersonateLoggedOnUser(HANDLE hToken);
//C WINBOOL CreateProcessAsUserA(HANDLE hToken,LPCSTR lpApplicationName,LPSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpProcessAttributes,LPSECURITY_ATTRIBUTES lpThreadAttributes,WINBOOL bInheritHandles,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCSTR lpCurrentDirectory,LPSTARTUPINFOA lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessAsUserA(HANDLE hToken, LPCSTR lpApplicationName, LPSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, WINBOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCSTR lpCurrentDirectory, LPSTARTUPINFOA lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C WINBOOL CreateProcessAsUserW(HANDLE hToken,LPCWSTR lpApplicationName,LPWSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpProcessAttributes,LPSECURITY_ATTRIBUTES lpThreadAttributes,WINBOOL bInheritHandles,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCWSTR lpCurrentDirectory,LPSTARTUPINFOW lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessAsUserW(HANDLE hToken, LPCWSTR lpApplicationName, LPWSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, WINBOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCWSTR lpCurrentDirectory, LPSTARTUPINFOW lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C WINBOOL CreateProcessWithLogonW(LPCWSTR lpUsername,LPCWSTR lpDomain,LPCWSTR lpPassword,DWORD dwLogonFlags,LPCWSTR lpApplicationName,LPWSTR lpCommandLine,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCWSTR lpCurrentDirectory,LPSTARTUPINFOW lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessWithLogonW(LPCWSTR lpUsername, LPCWSTR lpDomain, LPCWSTR lpPassword, DWORD dwLogonFlags, LPCWSTR lpApplicationName, LPWSTR lpCommandLine, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCWSTR lpCurrentDirectory, LPSTARTUPINFOW lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C WINBOOL CreateProcessWithTokenW(HANDLE hToken,DWORD dwLogonFlags,LPCWSTR lpApplicationName,LPWSTR lpCommandLine,DWORD dwCreationFlags,LPVOID lpEnvironment,LPCWSTR lpCurrentDirectory,LPSTARTUPINFOW lpStartupInfo,LPPROCESS_INFORMATION lpProcessInformation);
WINBOOL CreateProcessWithTokenW(HANDLE hToken, DWORD dwLogonFlags, LPCWSTR lpApplicationName, LPWSTR lpCommandLine, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCWSTR lpCurrentDirectory, LPSTARTUPINFOW lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation);
//C WINBOOL ImpersonateAnonymousToken(HANDLE ThreadHandle);
WINBOOL ImpersonateAnonymousToken(HANDLE ThreadHandle);
//C WINBOOL DuplicateTokenEx(HANDLE hExistingToken,DWORD dwDesiredAccess,LPSECURITY_ATTRIBUTES lpTokenAttributes,SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,TOKEN_TYPE TokenType,PHANDLE phNewToken);
WINBOOL DuplicateTokenEx(HANDLE hExistingToken, DWORD dwDesiredAccess, LPSECURITY_ATTRIBUTES lpTokenAttributes, SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, TOKEN_TYPE TokenType, PHANDLE phNewToken);
//C WINBOOL CreateRestrictedToken(HANDLE ExistingTokenHandle,DWORD Flags,DWORD DisableSidCount,PSID_AND_ATTRIBUTES SidsToDisable,DWORD DeletePrivilegeCount,PLUID_AND_ATTRIBUTES PrivilegesToDelete,DWORD RestrictedSidCount,PSID_AND_ATTRIBUTES SidsToRestrict,PHANDLE NewTokenHandle);
WINBOOL CreateRestrictedToken(HANDLE ExistingTokenHandle, DWORD Flags, DWORD DisableSidCount, PSID_AND_ATTRIBUTES SidsToDisable, DWORD DeletePrivilegeCount, PLUID_AND_ATTRIBUTES PrivilegesToDelete, DWORD RestrictedSidCount, PSID_AND_ATTRIBUTES SidsToRestrict, PHANDLE NewTokenHandle);
//C WINBOOL IsTokenRestricted(HANDLE TokenHandle);
WINBOOL IsTokenRestricted(HANDLE TokenHandle);
//C WINBOOL IsTokenUntrusted(HANDLE TokenHandle);
WINBOOL IsTokenUntrusted(HANDLE TokenHandle);
//C WINBOOL CheckTokenMembership(HANDLE TokenHandle,PSID SidToCheck,PBOOL IsMember);
WINBOOL CheckTokenMembership(HANDLE TokenHandle, PSID SidToCheck, PBOOL IsMember);
//C typedef WAITORTIMERCALLBACKFUNC WAITORTIMERCALLBACK;
alias WAITORTIMERCALLBACKFUNC WAITORTIMERCALLBACK;
//C WINBOOL RegisterWaitForSingleObject(PHANDLE phNewWaitObject,HANDLE hObject,WAITORTIMERCALLBACK Callback,PVOID Context,ULONG dwMilliseconds,ULONG dwFlags);
WINBOOL RegisterWaitForSingleObject(PHANDLE phNewWaitObject, HANDLE hObject, WAITORTIMERCALLBACK Callback, PVOID Context, ULONG dwMilliseconds, ULONG dwFlags);
//C HANDLE RegisterWaitForSingleObjectEx(HANDLE hObject,WAITORTIMERCALLBACK Callback,PVOID Context,ULONG dwMilliseconds,ULONG dwFlags);
HANDLE RegisterWaitForSingleObjectEx(HANDLE hObject, WAITORTIMERCALLBACK Callback, PVOID Context, ULONG dwMilliseconds, ULONG dwFlags);
//C WINBOOL UnregisterWait(HANDLE WaitHandle);
WINBOOL UnregisterWait(HANDLE WaitHandle);
//C WINBOOL UnregisterWaitEx(HANDLE WaitHandle,HANDLE CompletionEvent);
WINBOOL UnregisterWaitEx(HANDLE WaitHandle, HANDLE CompletionEvent);
//C WINBOOL QueueUserWorkItem(LPTHREAD_START_ROUTINE Function,PVOID Context,ULONG Flags);
WINBOOL QueueUserWorkItem(LPTHREAD_START_ROUTINE Function, PVOID Context, ULONG Flags);
//C WINBOOL BindIoCompletionCallback(HANDLE FileHandle,LPOVERLAPPED_COMPLETION_ROUTINE Function,ULONG Flags);
WINBOOL BindIoCompletionCallback(HANDLE FileHandle, LPOVERLAPPED_COMPLETION_ROUTINE Function, ULONG Flags);
//C HANDLE CreateTimerQueue(void);
HANDLE CreateTimerQueue();
//C WINBOOL CreateTimerQueueTimer(PHANDLE phNewTimer,HANDLE TimerQueue,WAITORTIMERCALLBACK Callback,PVOID Parameter,DWORD DueTime,DWORD Period,ULONG Flags);
WINBOOL CreateTimerQueueTimer(PHANDLE phNewTimer, HANDLE TimerQueue, WAITORTIMERCALLBACK Callback, PVOID Parameter, DWORD DueTime, DWORD Period, ULONG Flags);
//C WINBOOL ChangeTimerQueueTimer(HANDLE TimerQueue,HANDLE Timer,ULONG DueTime,ULONG Period);
WINBOOL ChangeTimerQueueTimer(HANDLE TimerQueue, HANDLE Timer, ULONG DueTime, ULONG Period);
//C WINBOOL DeleteTimerQueueTimer(HANDLE TimerQueue,HANDLE Timer,HANDLE CompletionEvent);
WINBOOL DeleteTimerQueueTimer(HANDLE TimerQueue, HANDLE Timer, HANDLE CompletionEvent);
//C WINBOOL DeleteTimerQueueEx(HANDLE TimerQueue,HANDLE CompletionEvent);
WINBOOL DeleteTimerQueueEx(HANDLE TimerQueue, HANDLE CompletionEvent);
//C HANDLE SetTimerQueueTimer(HANDLE TimerQueue,WAITORTIMERCALLBACK Callback,PVOID Parameter,DWORD DueTime,DWORD Period,WINBOOL PreferIo);
HANDLE SetTimerQueueTimer(HANDLE TimerQueue, WAITORTIMERCALLBACK Callback, PVOID Parameter, DWORD DueTime, DWORD Period, WINBOOL PreferIo);
//C WINBOOL CancelTimerQueueTimer(HANDLE TimerQueue,HANDLE Timer);
WINBOOL CancelTimerQueueTimer(HANDLE TimerQueue, HANDLE Timer);
//C WINBOOL DeleteTimerQueue(HANDLE TimerQueue);
WINBOOL DeleteTimerQueue(HANDLE TimerQueue);
//C typedef struct tagHW_PROFILE_INFOA {
//C DWORD dwDockInfo;
//C CHAR szHwProfileGuid[39];
//C CHAR szHwProfileName[80];
//C } HW_PROFILE_INFOA,*LPHW_PROFILE_INFOA;
struct tagHW_PROFILE_INFOA
{
DWORD dwDockInfo;
CHAR [39]szHwProfileGuid;
CHAR [80]szHwProfileName;
}
alias tagHW_PROFILE_INFOA HW_PROFILE_INFOA;
alias tagHW_PROFILE_INFOA *LPHW_PROFILE_INFOA;
//C typedef struct tagHW_PROFILE_INFOW {
//C DWORD dwDockInfo;
//C WCHAR szHwProfileGuid[39];
//C WCHAR szHwProfileName[80];
//C } HW_PROFILE_INFOW,*LPHW_PROFILE_INFOW;
struct tagHW_PROFILE_INFOW
{
DWORD dwDockInfo;
WCHAR [39]szHwProfileGuid;
WCHAR [80]szHwProfileName;
}
alias tagHW_PROFILE_INFOW HW_PROFILE_INFOW;
alias tagHW_PROFILE_INFOW *LPHW_PROFILE_INFOW;
//C typedef HW_PROFILE_INFOA HW_PROFILE_INFO;
alias HW_PROFILE_INFOA HW_PROFILE_INFO;
//C typedef LPHW_PROFILE_INFOA LPHW_PROFILE_INFO;
alias LPHW_PROFILE_INFOA LPHW_PROFILE_INFO;
//C WINBOOL GetCurrentHwProfileA (LPHW_PROFILE_INFOA lpHwProfileInfo);
WINBOOL GetCurrentHwProfileA(LPHW_PROFILE_INFOA lpHwProfileInfo);
//C WINBOOL GetCurrentHwProfileW (LPHW_PROFILE_INFOW lpHwProfileInfo);
WINBOOL GetCurrentHwProfileW(LPHW_PROFILE_INFOW lpHwProfileInfo);
//C WINBOOL QueryPerformanceCounter(LARGE_INTEGER *lpPerformanceCount);
WINBOOL QueryPerformanceCounter(LARGE_INTEGER *lpPerformanceCount);
//C WINBOOL QueryPerformanceFrequency(LARGE_INTEGER *lpFrequency);
WINBOOL QueryPerformanceFrequency(LARGE_INTEGER *lpFrequency);
//C WINBOOL GetVersionExA(LPOSVERSIONINFOA lpVersionInformation);
WINBOOL GetVersionExA(LPOSVERSIONINFOA lpVersionInformation);
//C WINBOOL GetVersionExW(LPOSVERSIONINFOW lpVersionInformation);
WINBOOL GetVersionExW(LPOSVERSIONINFOW lpVersionInformation);
//C WINBOOL VerifyVersionInfoA(LPOSVERSIONINFOEXA lpVersionInformation,DWORD dwTypeMask,DWORDLONG dwlConditionMask);
WINBOOL VerifyVersionInfoA(LPOSVERSIONINFOEXA lpVersionInformation, DWORD dwTypeMask, DWORDLONG dwlConditionMask);
//C WINBOOL VerifyVersionInfoW(LPOSVERSIONINFOEXW lpVersionInformation,DWORD dwTypeMask,DWORDLONG dwlConditionMask);
WINBOOL VerifyVersionInfoW(LPOSVERSIONINFOEXW lpVersionInformation, DWORD dwTypeMask, DWORDLONG dwlConditionMask);
//C typedef struct _SYSTEM_POWER_STATUS {
//C BYTE ACLineStatus;
//C BYTE BatteryFlag;
//C BYTE BatteryLifePercent;
//C BYTE Reserved1;
//C DWORD BatteryLifeTime;
//C DWORD BatteryFullLifeTime;
//C } SYSTEM_POWER_STATUS,*LPSYSTEM_POWER_STATUS;
struct _SYSTEM_POWER_STATUS
{
BYTE ACLineStatus;
BYTE BatteryFlag;
BYTE BatteryLifePercent;
BYTE Reserved1;
DWORD BatteryLifeTime;
DWORD BatteryFullLifeTime;
}
alias _SYSTEM_POWER_STATUS SYSTEM_POWER_STATUS;
alias _SYSTEM_POWER_STATUS *LPSYSTEM_POWER_STATUS;
//C WINBOOL GetSystemPowerStatus(LPSYSTEM_POWER_STATUS lpSystemPowerStatus);
WINBOOL GetSystemPowerStatus(LPSYSTEM_POWER_STATUS lpSystemPowerStatus);
//C WINBOOL SetSystemPowerState(WINBOOL fSuspend,WINBOOL fForce);
WINBOOL SetSystemPowerState(WINBOOL fSuspend, WINBOOL fForce);
//C WINBOOL AllocateUserPhysicalPages(HANDLE hProcess,PULONG_PTR NumberOfPages,PULONG_PTR PageArray);
WINBOOL AllocateUserPhysicalPages(HANDLE hProcess, PULONG_PTR NumberOfPages, PULONG_PTR PageArray);
//C WINBOOL FreeUserPhysicalPages(HANDLE hProcess,PULONG_PTR NumberOfPages,PULONG_PTR PageArray);
WINBOOL FreeUserPhysicalPages(HANDLE hProcess, PULONG_PTR NumberOfPages, PULONG_PTR PageArray);
//C WINBOOL MapUserPhysicalPages(PVOID VirtualAddress,ULONG_PTR NumberOfPages,PULONG_PTR PageArray);
WINBOOL MapUserPhysicalPages(PVOID VirtualAddress, ULONG_PTR NumberOfPages, PULONG_PTR PageArray);
//C WINBOOL MapUserPhysicalPagesScatter(PVOID *VirtualAddresses,ULONG_PTR NumberOfPages,PULONG_PTR PageArray);
WINBOOL MapUserPhysicalPagesScatter(PVOID *VirtualAddresses, ULONG_PTR NumberOfPages, PULONG_PTR PageArray);
//C HANDLE CreateJobObjectA(LPSECURITY_ATTRIBUTES lpJobAttributes,LPCSTR lpName);
HANDLE CreateJobObjectA(LPSECURITY_ATTRIBUTES lpJobAttributes, LPCSTR lpName);
//C HANDLE CreateJobObjectW(LPSECURITY_ATTRIBUTES lpJobAttributes,LPCWSTR lpName);
HANDLE CreateJobObjectW(LPSECURITY_ATTRIBUTES lpJobAttributes, LPCWSTR lpName);
//C HANDLE OpenJobObjectA(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCSTR lpName);
HANDLE OpenJobObjectA(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCSTR lpName);
//C HANDLE OpenJobObjectW(DWORD dwDesiredAccess,WINBOOL bInheritHandle,LPCWSTR lpName);
HANDLE OpenJobObjectW(DWORD dwDesiredAccess, WINBOOL bInheritHandle, LPCWSTR lpName);
//C WINBOOL AssignProcessToJobObject(HANDLE hJob,HANDLE hProcess);
WINBOOL AssignProcessToJobObject(HANDLE hJob, HANDLE hProcess);
//C WINBOOL TerminateJobObject(HANDLE hJob,UINT uExitCode);
WINBOOL TerminateJobObject(HANDLE hJob, UINT uExitCode);
//C WINBOOL QueryInformationJobObject(HANDLE hJob,JOBOBJECTINFOCLASS JobObjectInformationClass,LPVOID lpJobObjectInformation,DWORD cbJobObjectInformationLength,LPDWORD lpReturnLength);
WINBOOL QueryInformationJobObject(HANDLE hJob, JOBOBJECTINFOCLASS JobObjectInformationClass, LPVOID lpJobObjectInformation, DWORD cbJobObjectInformationLength, LPDWORD lpReturnLength);
//C WINBOOL SetInformationJobObject(HANDLE hJob,JOBOBJECTINFOCLASS JobObjectInformationClass,LPVOID lpJobObjectInformation,DWORD cbJobObjectInformationLength);
WINBOOL SetInformationJobObject(HANDLE hJob, JOBOBJECTINFOCLASS JobObjectInformationClass, LPVOID lpJobObjectInformation, DWORD cbJobObjectInformationLength);
//C WINBOOL IsProcessInJob(HANDLE ProcessHandle,HANDLE JobHandle,PBOOL Result);
WINBOOL IsProcessInJob(HANDLE ProcessHandle, HANDLE JobHandle, PBOOL Result);
//C WINBOOL CreateJobSet(ULONG NumJob,PJOB_SET_ARRAY UserJobSet,ULONG Flags);
WINBOOL CreateJobSet(ULONG NumJob, PJOB_SET_ARRAY UserJobSet, ULONG Flags);
//C PVOID AddVectoredExceptionHandler (ULONG First,PVECTORED_EXCEPTION_HANDLER Handler);
PVOID AddVectoredExceptionHandler(ULONG First, PVECTORED_EXCEPTION_HANDLER Handler);
//C ULONG RemoveVectoredExceptionHandler(PVOID Handle);
ULONG RemoveVectoredExceptionHandler(PVOID Handle);
//C PVOID AddVectoredContinueHandler (ULONG First,PVECTORED_EXCEPTION_HANDLER Handler);
PVOID AddVectoredContinueHandler(ULONG First, PVECTORED_EXCEPTION_HANDLER Handler);
//C ULONG RemoveVectoredContinueHandler(PVOID Handle);
ULONG RemoveVectoredContinueHandler(PVOID Handle);
//C HANDLE FindFirstVolumeA(LPSTR lpszVolumeName,DWORD cchBufferLength);
HANDLE FindFirstVolumeA(LPSTR lpszVolumeName, DWORD cchBufferLength);
//C HANDLE FindFirstVolumeW(LPWSTR lpszVolumeName,DWORD cchBufferLength);
HANDLE FindFirstVolumeW(LPWSTR lpszVolumeName, DWORD cchBufferLength);
//C WINBOOL FindNextVolumeA(HANDLE hFindVolume,LPSTR lpszVolumeName,DWORD cchBufferLength);
WINBOOL FindNextVolumeA(HANDLE hFindVolume, LPSTR lpszVolumeName, DWORD cchBufferLength);
//C WINBOOL FindNextVolumeW(HANDLE hFindVolume,LPWSTR lpszVolumeName,DWORD cchBufferLength);
WINBOOL FindNextVolumeW(HANDLE hFindVolume, LPWSTR lpszVolumeName, DWORD cchBufferLength);
//C WINBOOL FindVolumeClose(HANDLE hFindVolume);
WINBOOL FindVolumeClose(HANDLE hFindVolume);
//C HANDLE FindFirstVolumeMountPointA(LPCSTR lpszRootPathName,LPSTR lpszVolumeMountPoint,DWORD cchBufferLength);
HANDLE FindFirstVolumeMountPointA(LPCSTR lpszRootPathName, LPSTR lpszVolumeMountPoint, DWORD cchBufferLength);
//C HANDLE FindFirstVolumeMountPointW(LPCWSTR lpszRootPathName,LPWSTR lpszVolumeMountPoint,DWORD cchBufferLength);
HANDLE FindFirstVolumeMountPointW(LPCWSTR lpszRootPathName, LPWSTR lpszVolumeMountPoint, DWORD cchBufferLength);
//C WINBOOL FindNextVolumeMountPointA(HANDLE hFindVolumeMountPoint,LPSTR lpszVolumeMountPoint,DWORD cchBufferLength);
WINBOOL FindNextVolumeMountPointA(HANDLE hFindVolumeMountPoint, LPSTR lpszVolumeMountPoint, DWORD cchBufferLength);
//C WINBOOL FindNextVolumeMountPointW(HANDLE hFindVolumeMountPoint,LPWSTR lpszVolumeMountPoint,DWORD cchBufferLength);
WINBOOL FindNextVolumeMountPointW(HANDLE hFindVolumeMountPoint, LPWSTR lpszVolumeMountPoint, DWORD cchBufferLength);
//C WINBOOL FindVolumeMountPointClose(HANDLE hFindVolumeMountPoint);
WINBOOL FindVolumeMountPointClose(HANDLE hFindVolumeMountPoint);
//C WINBOOL SetVolumeMountPointA(LPCSTR lpszVolumeMountPoint,LPCSTR lpszVolumeName);
WINBOOL SetVolumeMountPointA(LPCSTR lpszVolumeMountPoint, LPCSTR lpszVolumeName);
//C WINBOOL SetVolumeMountPointW(LPCWSTR lpszVolumeMountPoint,LPCWSTR lpszVolumeName);
WINBOOL SetVolumeMountPointW(LPCWSTR lpszVolumeMountPoint, LPCWSTR lpszVolumeName);
//C WINBOOL DeleteVolumeMountPointA(LPCSTR lpszVolumeMountPoint);
WINBOOL DeleteVolumeMountPointA(LPCSTR lpszVolumeMountPoint);
//C WINBOOL DeleteVolumeMountPointW(LPCWSTR lpszVolumeMountPoint);
WINBOOL DeleteVolumeMountPointW(LPCWSTR lpszVolumeMountPoint);
//C WINBOOL GetVolumeNameForVolumeMountPointA(LPCSTR lpszVolumeMountPoint,LPSTR lpszVolumeName,DWORD cchBufferLength);
WINBOOL GetVolumeNameForVolumeMountPointA(LPCSTR lpszVolumeMountPoint, LPSTR lpszVolumeName, DWORD cchBufferLength);
//C WINBOOL GetVolumeNameForVolumeMountPointW(LPCWSTR lpszVolumeMountPoint,LPWSTR lpszVolumeName,DWORD cchBufferLength);
WINBOOL GetVolumeNameForVolumeMountPointW(LPCWSTR lpszVolumeMountPoint, LPWSTR lpszVolumeName, DWORD cchBufferLength);
//C WINBOOL GetVolumePathNameA(LPCSTR lpszFileName,LPSTR lpszVolumePathName,DWORD cchBufferLength);
WINBOOL GetVolumePathNameA(LPCSTR lpszFileName, LPSTR lpszVolumePathName, DWORD cchBufferLength);
//C WINBOOL GetVolumePathNameW(LPCWSTR lpszFileName,LPWSTR lpszVolumePathName,DWORD cchBufferLength);
WINBOOL GetVolumePathNameW(LPCWSTR lpszFileName, LPWSTR lpszVolumePathName, DWORD cchBufferLength);
//C WINBOOL GetVolumePathNamesForVolumeNameA(LPCSTR lpszVolumeName,LPCH lpszVolumePathNames,DWORD cchBufferLength,PDWORD lpcchReturnLength);
WINBOOL GetVolumePathNamesForVolumeNameA(LPCSTR lpszVolumeName, LPCH lpszVolumePathNames, DWORD cchBufferLength, PDWORD lpcchReturnLength);
//C WINBOOL GetVolumePathNamesForVolumeNameW(LPCWSTR lpszVolumeName,LPWCH lpszVolumePathNames,DWORD cchBufferLength,PDWORD lpcchReturnLength);
WINBOOL GetVolumePathNamesForVolumeNameW(LPCWSTR lpszVolumeName, LPWCH lpszVolumePathNames, DWORD cchBufferLength, PDWORD lpcchReturnLength);
//C typedef struct tagACTCTXA {
//C ULONG cbSize;
//C DWORD dwFlags;
//C LPCSTR lpSource;
//C USHORT wProcessorArchitecture;
//C LANGID wLangId;
//C LPCSTR lpAssemblyDirectory;
//C LPCSTR lpResourceName;
//C LPCSTR lpApplicationName;
//C HMODULE hModule;
//C } ACTCTXA,*PACTCTXA;
struct tagACTCTXA
{
ULONG cbSize;
DWORD dwFlags;
LPCSTR lpSource;
USHORT wProcessorArchitecture;
LANGID wLangId;
LPCSTR lpAssemblyDirectory;
LPCSTR lpResourceName;
LPCSTR lpApplicationName;
HMODULE hModule;
}
alias tagACTCTXA ACTCTXA;
alias tagACTCTXA *PACTCTXA;
//C typedef struct tagACTCTXW {
//C ULONG cbSize;
//C DWORD dwFlags;
//C LPCWSTR lpSource;
//C USHORT wProcessorArchitecture;
//C LANGID wLangId;
//C LPCWSTR lpAssemblyDirectory;
//C LPCWSTR lpResourceName;
//C LPCWSTR lpApplicationName;
//C HMODULE hModule;
//C } ACTCTXW,*PACTCTXW;
struct tagACTCTXW
{
ULONG cbSize;
DWORD dwFlags;
LPCWSTR lpSource;
USHORT wProcessorArchitecture;
LANGID wLangId;
LPCWSTR lpAssemblyDirectory;
LPCWSTR lpResourceName;
LPCWSTR lpApplicationName;
HMODULE hModule;
}
alias tagACTCTXW ACTCTXW;
alias tagACTCTXW *PACTCTXW;
//C typedef const ACTCTXA *PCACTCTXA;
alias ACTCTXA *PCACTCTXA;
//C typedef const ACTCTXW *PCACTCTXW;
alias ACTCTXW *PCACTCTXW;
//C typedef ACTCTXA ACTCTX;
alias ACTCTXA ACTCTX;
//C typedef PACTCTXA PACTCTX;
alias PACTCTXA PACTCTX;
//C typedef PCACTCTXA PCACTCTX;
alias PCACTCTXA PCACTCTX;
//C HANDLE CreateActCtxA(PCACTCTXA pActCtx);
HANDLE CreateActCtxA(PCACTCTXA pActCtx);
//C HANDLE CreateActCtxW(PCACTCTXW pActCtx);
HANDLE CreateActCtxW(PCACTCTXW pActCtx);
//C void AddRefActCtx(HANDLE hActCtx);
void AddRefActCtx(HANDLE hActCtx);
//C void ReleaseActCtx(HANDLE hActCtx);
void ReleaseActCtx(HANDLE hActCtx);
//C WINBOOL ZombifyActCtx(HANDLE hActCtx);
WINBOOL ZombifyActCtx(HANDLE hActCtx);
//C WINBOOL ActivateActCtx(HANDLE hActCtx,ULONG_PTR *lpCookie);
WINBOOL ActivateActCtx(HANDLE hActCtx, ULONG_PTR *lpCookie);
//C WINBOOL DeactivateActCtx(DWORD dwFlags,ULONG_PTR ulCookie);
WINBOOL DeactivateActCtx(DWORD dwFlags, ULONG_PTR ulCookie);
//C WINBOOL GetCurrentActCtx(HANDLE *lphActCtx);
WINBOOL GetCurrentActCtx(HANDLE *lphActCtx);
//C typedef struct tagACTCTX_SECTION_KEYED_DATA_2600 {
//C ULONG cbSize;
//C ULONG ulDataFormatVersion;
//C PVOID lpData;
//C ULONG ulLength;
//C PVOID lpSectionGlobalData;
//C ULONG ulSectionGlobalDataLength;
//C PVOID lpSectionBase;
//C ULONG ulSectionTotalLength;
//C HANDLE hActCtx;
//C ULONG ulAssemblyRosterIndex;
//C } ACTCTX_SECTION_KEYED_DATA_2600,*PACTCTX_SECTION_KEYED_DATA_2600;
struct tagACTCTX_SECTION_KEYED_DATA_2600
{
ULONG cbSize;
ULONG ulDataFormatVersion;
PVOID lpData;
ULONG ulLength;
PVOID lpSectionGlobalData;
ULONG ulSectionGlobalDataLength;
PVOID lpSectionBase;
ULONG ulSectionTotalLength;
HANDLE hActCtx;
ULONG ulAssemblyRosterIndex;
}
alias tagACTCTX_SECTION_KEYED_DATA_2600 ACTCTX_SECTION_KEYED_DATA_2600;
alias tagACTCTX_SECTION_KEYED_DATA_2600 *PACTCTX_SECTION_KEYED_DATA_2600;
//C typedef const ACTCTX_SECTION_KEYED_DATA_2600 *PCACTCTX_SECTION_KEYED_DATA_2600;
alias ACTCTX_SECTION_KEYED_DATA_2600 *PCACTCTX_SECTION_KEYED_DATA_2600;
//C typedef struct tagACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA {
//C PVOID lpInformation;
//C PVOID lpSectionBase;
//C ULONG ulSectionLength;
//C PVOID lpSectionGlobalDataBase;
//C ULONG ulSectionGlobalDataLength;
//C } ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA,*PACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA;
struct tagACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA
{
PVOID lpInformation;
PVOID lpSectionBase;
ULONG ulSectionLength;
PVOID lpSectionGlobalDataBase;
ULONG ulSectionGlobalDataLength;
}
alias tagACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA;
alias tagACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA *PACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA;
//C typedef const ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA *PCACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA;
alias ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA *PCACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA;
//C typedef struct tagACTCTX_SECTION_KEYED_DATA {
//C ULONG cbSize;
//C ULONG ulDataFormatVersion;
//C PVOID lpData;
//C ULONG ulLength;
//C PVOID lpSectionGlobalData;
//C ULONG ulSectionGlobalDataLength;
//C PVOID lpSectionBase;
//C ULONG ulSectionTotalLength;
//C HANDLE hActCtx;
//C ULONG ulAssemblyRosterIndex;
//C ULONG ulFlags;
//C ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA AssemblyMetadata;
//C } ACTCTX_SECTION_KEYED_DATA,*PACTCTX_SECTION_KEYED_DATA;
struct tagACTCTX_SECTION_KEYED_DATA
{
ULONG cbSize;
ULONG ulDataFormatVersion;
PVOID lpData;
ULONG ulLength;
PVOID lpSectionGlobalData;
ULONG ulSectionGlobalDataLength;
PVOID lpSectionBase;
ULONG ulSectionTotalLength;
HANDLE hActCtx;
ULONG ulAssemblyRosterIndex;
ULONG ulFlags;
ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA AssemblyMetadata;
}
alias tagACTCTX_SECTION_KEYED_DATA ACTCTX_SECTION_KEYED_DATA;
alias tagACTCTX_SECTION_KEYED_DATA *PACTCTX_SECTION_KEYED_DATA;
//C typedef const ACTCTX_SECTION_KEYED_DATA *PCACTCTX_SECTION_KEYED_DATA;
alias ACTCTX_SECTION_KEYED_DATA *PCACTCTX_SECTION_KEYED_DATA;
//C WINBOOL FindActCtxSectionStringA(DWORD dwFlags,const GUID *lpExtensionGuid,ULONG ulSectionId,LPCSTR lpStringToFind,PACTCTX_SECTION_KEYED_DATA ReturnedData);
WINBOOL FindActCtxSectionStringA(DWORD dwFlags, GUID *lpExtensionGuid, ULONG ulSectionId, LPCSTR lpStringToFind, PACTCTX_SECTION_KEYED_DATA ReturnedData);
//C WINBOOL FindActCtxSectionStringW(DWORD dwFlags,const GUID *lpExtensionGuid,ULONG ulSectionId,LPCWSTR lpStringToFind,PACTCTX_SECTION_KEYED_DATA ReturnedData);
WINBOOL FindActCtxSectionStringW(DWORD dwFlags, GUID *lpExtensionGuid, ULONG ulSectionId, LPCWSTR lpStringToFind, PACTCTX_SECTION_KEYED_DATA ReturnedData);
//C WINBOOL FindActCtxSectionGuid(DWORD dwFlags,const GUID *lpExtensionGuid,ULONG ulSectionId,const GUID *lpGuidToFind,PACTCTX_SECTION_KEYED_DATA ReturnedData);
WINBOOL FindActCtxSectionGuid(DWORD dwFlags, GUID *lpExtensionGuid, ULONG ulSectionId, GUID *lpGuidToFind, PACTCTX_SECTION_KEYED_DATA ReturnedData);
//C typedef struct _ACTIVATION_CONTEXT_BASIC_INFORMATION {
//C HANDLE hActCtx;
//C DWORD dwFlags;
//C } ACTIVATION_CONTEXT_BASIC_INFORMATION,*PACTIVATION_CONTEXT_BASIC_INFORMATION;
struct _ACTIVATION_CONTEXT_BASIC_INFORMATION
{
HANDLE hActCtx;
DWORD dwFlags;
}
alias _ACTIVATION_CONTEXT_BASIC_INFORMATION ACTIVATION_CONTEXT_BASIC_INFORMATION;
alias _ACTIVATION_CONTEXT_BASIC_INFORMATION *PACTIVATION_CONTEXT_BASIC_INFORMATION;
//C typedef const struct _ACTIVATION_CONTEXT_BASIC_INFORMATION *PCACTIVATION_CONTEXT_BASIC_INFORMATION;
alias _ACTIVATION_CONTEXT_BASIC_INFORMATION *PCACTIVATION_CONTEXT_BASIC_INFORMATION;
//C WINBOOL QueryActCtxW(DWORD dwFlags,HANDLE hActCtx,PVOID pvSubInstance,ULONG ulInfoClass,PVOID pvBuffer,SIZE_T cbBuffer,SIZE_T *pcbWrittenOrRequired);
WINBOOL QueryActCtxW(DWORD dwFlags, HANDLE hActCtx, PVOID pvSubInstance, ULONG ulInfoClass, PVOID pvBuffer, SIZE_T cbBuffer, SIZE_T *pcbWrittenOrRequired);
//C typedef WINBOOL ( *PQUERYACTCTXW_FUNC)(DWORD dwFlags,HANDLE hActCtx,PVOID pvSubInstance,ULONG ulInfoClass,PVOID pvBuffer,SIZE_T cbBuffer,SIZE_T *pcbWrittenOrRequired);
alias WINBOOL function(DWORD dwFlags, HANDLE hActCtx, PVOID pvSubInstance, ULONG ulInfoClass, PVOID pvBuffer, SIZE_T cbBuffer, SIZE_T *pcbWrittenOrRequired)PQUERYACTCTXW_FUNC;
//C WINBOOL ProcessIdToSessionId(DWORD dwProcessId,DWORD *pSessionId);
WINBOOL ProcessIdToSessionId(DWORD dwProcessId, DWORD *pSessionId);
//C DWORD WTSGetActiveConsoleSessionId();
DWORD WTSGetActiveConsoleSessionId();
//C WINBOOL IsWow64Process(HANDLE hProcess,PBOOL Wow64Process);
WINBOOL IsWow64Process(HANDLE hProcess, PBOOL Wow64Process);
//C WINBOOL GetLogicalProcessorInformation(PSYSTEM_LOGICAL_PROCESSOR_INFORMATION Buffer,PDWORD ReturnedLength);
WINBOOL GetLogicalProcessorInformation(PSYSTEM_LOGICAL_PROCESSOR_INFORMATION Buffer, PDWORD ReturnedLength);
//C WINBOOL GetNumaHighestNodeNumber(PULONG HighestNodeNumber);
WINBOOL GetNumaHighestNodeNumber(PULONG HighestNodeNumber);
//C WINBOOL GetNumaProcessorNode(UCHAR Processor,PUCHAR NodeNumber);
WINBOOL GetNumaProcessorNode(UCHAR Processor, PUCHAR NodeNumber);
//C WINBOOL GetNumaNodeProcessorMask(UCHAR Node,PULONGLONG ProcessorMask);
WINBOOL GetNumaNodeProcessorMask(UCHAR Node, PULONGLONG ProcessorMask);
//C WINBOOL GetNumaAvailableMemoryNode(UCHAR Node,PULONGLONG AvailableBytes);
WINBOOL GetNumaAvailableMemoryNode(UCHAR Node, PULONGLONG AvailableBytes);
//C typedef struct _DRAWPATRECT {
//C POINT ptPosition;
//C POINT ptSize;
//C WORD wStyle;
//C WORD wPattern;
//C } DRAWPATRECT,*PDRAWPATRECT;
struct _DRAWPATRECT
{
POINT ptPosition;
POINT ptSize;
WORD wStyle;
WORD wPattern;
}
alias _DRAWPATRECT DRAWPATRECT;
alias _DRAWPATRECT *PDRAWPATRECT;
//C typedef struct _PSINJECTDATA {
//C DWORD DataBytes;
//C WORD InjectionPoint;
//C WORD PageNumber;
//C } PSINJECTDATA,*PPSINJECTDATA;
struct _PSINJECTDATA
{
DWORD DataBytes;
WORD InjectionPoint;
WORD PageNumber;
}
alias _PSINJECTDATA PSINJECTDATA;
alias _PSINJECTDATA *PPSINJECTDATA;
//C typedef struct _PSFEATURE_OUTPUT {
//C WINBOOL bPageIndependent;
//C WINBOOL bSetPageDevice;
//C } PSFEATURE_OUTPUT,*PPSFEATURE_OUTPUT;
struct _PSFEATURE_OUTPUT
{
WINBOOL bPageIndependent;
WINBOOL bSetPageDevice;
}
alias _PSFEATURE_OUTPUT PSFEATURE_OUTPUT;
alias _PSFEATURE_OUTPUT *PPSFEATURE_OUTPUT;
//C typedef struct _PSFEATURE_CUSTPAPER {
//C LONG lOrientation;
//C LONG lWidth;
//C LONG lHeight;
//C LONG lWidthOffset;
//C LONG lHeightOffset;
//C } PSFEATURE_CUSTPAPER,*PPSFEATURE_CUSTPAPER;
struct _PSFEATURE_CUSTPAPER
{
LONG lOrientation;
LONG lWidth;
LONG lHeight;
LONG lWidthOffset;
LONG lHeightOffset;
}
alias _PSFEATURE_CUSTPAPER PSFEATURE_CUSTPAPER;
alias _PSFEATURE_CUSTPAPER *PPSFEATURE_CUSTPAPER;
//C typedef struct tagXFORM {
//C FLOAT eM11;
//C FLOAT eM12;
//C FLOAT eM21;
//C FLOAT eM22;
//C FLOAT eDx;
//C FLOAT eDy;
//C } XFORM,*PXFORM,*LPXFORM;
struct tagXFORM
{
FLOAT eM11;
FLOAT eM12;
FLOAT eM21;
FLOAT eM22;
FLOAT eDx;
FLOAT eDy;
}
alias tagXFORM XFORM;
alias tagXFORM *PXFORM;
alias tagXFORM *LPXFORM;
//C typedef struct tagBITMAP {
//C LONG bmType;
//C LONG bmWidth;
//C LONG bmHeight;
//C LONG bmWidthBytes;
//C WORD bmPlanes;
//C WORD bmBitsPixel;
//C LPVOID bmBits;
//C } BITMAP,*PBITMAP,*NPBITMAP,*LPBITMAP;
struct tagBITMAP
{
LONG bmType;
LONG bmWidth;
LONG bmHeight;
LONG bmWidthBytes;
WORD bmPlanes;
WORD bmBitsPixel;
LPVOID bmBits;
}
alias tagBITMAP BITMAP;
alias tagBITMAP *PBITMAP;
alias tagBITMAP *NPBITMAP;
alias tagBITMAP *LPBITMAP;
//C typedef struct tagRGBTRIPLE {
//C BYTE rgbtBlue;
//C BYTE rgbtGreen;
//C BYTE rgbtRed;
//C } RGBTRIPLE;
struct tagRGBTRIPLE
{
BYTE rgbtBlue;
BYTE rgbtGreen;
BYTE rgbtRed;
}
alias tagRGBTRIPLE RGBTRIPLE;
//C typedef struct tagRGBQUAD {
//C BYTE rgbBlue;
//C BYTE rgbGreen;
//C BYTE rgbRed;
//C BYTE rgbReserved;
//C } RGBQUAD;
struct tagRGBQUAD
{
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
}
alias tagRGBQUAD RGBQUAD;
//C typedef RGBQUAD *LPRGBQUAD;
alias RGBQUAD *LPRGBQUAD;
//C typedef LONG LCSCSTYPE;
alias LONG LCSCSTYPE;
//C typedef LONG LCSGAMUTMATCH;
alias LONG LCSGAMUTMATCH;
//C typedef long FXPT16DOT16,*LPFXPT16DOT16;
alias int FXPT16DOT16;
alias int *LPFXPT16DOT16;
//C typedef long FXPT2DOT30,*LPFXPT2DOT30;
alias int FXPT2DOT30;
alias int *LPFXPT2DOT30;
//C typedef struct tagCIEXYZ {
//C FXPT2DOT30 ciexyzX;
//C FXPT2DOT30 ciexyzY;
//C FXPT2DOT30 ciexyzZ;
//C } CIEXYZ;
struct tagCIEXYZ
{
FXPT2DOT30 ciexyzX;
FXPT2DOT30 ciexyzY;
FXPT2DOT30 ciexyzZ;
}
alias tagCIEXYZ CIEXYZ;
//C typedef CIEXYZ *LPCIEXYZ;
alias CIEXYZ *LPCIEXYZ;
//C typedef struct tagICEXYZTRIPLE {
//C CIEXYZ ciexyzRed;
//C CIEXYZ ciexyzGreen;
//C CIEXYZ ciexyzBlue;
//C } CIEXYZTRIPLE;
struct tagICEXYZTRIPLE
{
CIEXYZ ciexyzRed;
CIEXYZ ciexyzGreen;
CIEXYZ ciexyzBlue;
}
alias tagICEXYZTRIPLE CIEXYZTRIPLE;
//C typedef CIEXYZTRIPLE *LPCIEXYZTRIPLE;
alias CIEXYZTRIPLE *LPCIEXYZTRIPLE;
//C typedef struct tagLOGCOLORSPACEA {
//C DWORD lcsSignature;
//C DWORD lcsVersion;
//C DWORD lcsSize;
//C LCSCSTYPE lcsCSType;
//C LCSGAMUTMATCH lcsIntent;
//C CIEXYZTRIPLE lcsEndpoints;
//C DWORD lcsGammaRed;
//C DWORD lcsGammaGreen;
//C DWORD lcsGammaBlue;
//C CHAR lcsFilename[260];
//C } LOGCOLORSPACEA,*LPLOGCOLORSPACEA;
struct tagLOGCOLORSPACEA
{
DWORD lcsSignature;
DWORD lcsVersion;
DWORD lcsSize;
LCSCSTYPE lcsCSType;
LCSGAMUTMATCH lcsIntent;
CIEXYZTRIPLE lcsEndpoints;
DWORD lcsGammaRed;
DWORD lcsGammaGreen;
DWORD lcsGammaBlue;
CHAR [260]lcsFilename;
}
alias tagLOGCOLORSPACEA LOGCOLORSPACEA;
alias tagLOGCOLORSPACEA *LPLOGCOLORSPACEA;
//C typedef struct tagLOGCOLORSPACEW {
//C DWORD lcsSignature;
//C DWORD lcsVersion;
//C DWORD lcsSize;
//C LCSCSTYPE lcsCSType;
//C LCSGAMUTMATCH lcsIntent;
//C CIEXYZTRIPLE lcsEndpoints;
//C DWORD lcsGammaRed;
//C DWORD lcsGammaGreen;
//C DWORD lcsGammaBlue;
//C WCHAR lcsFilename[260];
//C } LOGCOLORSPACEW,*LPLOGCOLORSPACEW;
struct tagLOGCOLORSPACEW
{
DWORD lcsSignature;
DWORD lcsVersion;
DWORD lcsSize;
LCSCSTYPE lcsCSType;
LCSGAMUTMATCH lcsIntent;
CIEXYZTRIPLE lcsEndpoints;
DWORD lcsGammaRed;
DWORD lcsGammaGreen;
DWORD lcsGammaBlue;
WCHAR [260]lcsFilename;
}
alias tagLOGCOLORSPACEW LOGCOLORSPACEW;
alias tagLOGCOLORSPACEW *LPLOGCOLORSPACEW;
//C typedef LOGCOLORSPACEA LOGCOLORSPACE;
alias LOGCOLORSPACEA LOGCOLORSPACE;
//C typedef LPLOGCOLORSPACEA LPLOGCOLORSPACE;
alias LPLOGCOLORSPACEA LPLOGCOLORSPACE;
//C typedef struct tagBITMAPCOREHEADER {
//C DWORD bcSize;
//C WORD bcWidth;
//C WORD bcHeight;
//C WORD bcPlanes;
//C WORD bcBitCount;
//C } BITMAPCOREHEADER,*LPBITMAPCOREHEADER,*PBITMAPCOREHEADER;
struct tagBITMAPCOREHEADER
{
DWORD bcSize;
WORD bcWidth;
WORD bcHeight;
WORD bcPlanes;
WORD bcBitCount;
}
alias tagBITMAPCOREHEADER BITMAPCOREHEADER;
alias tagBITMAPCOREHEADER *LPBITMAPCOREHEADER;
alias tagBITMAPCOREHEADER *PBITMAPCOREHEADER;
//C typedef struct tagBITMAPINFOHEADER {
//C DWORD biSize;
//C LONG biWidth;
//C LONG biHeight;
//C WORD biPlanes;
//C WORD biBitCount;
//C DWORD biCompression;
//C DWORD biSizeImage;
//C LONG biXPelsPerMeter;
//C LONG biYPelsPerMeter;
//C DWORD biClrUsed;
//C DWORD biClrImportant;
//C } BITMAPINFOHEADER,*LPBITMAPINFOHEADER,*PBITMAPINFOHEADER;
struct tagBITMAPINFOHEADER
{
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
}
alias tagBITMAPINFOHEADER BITMAPINFOHEADER;
alias tagBITMAPINFOHEADER *LPBITMAPINFOHEADER;
alias tagBITMAPINFOHEADER *PBITMAPINFOHEADER;
//C typedef struct {
//C DWORD bV4Size;
//C LONG bV4Width;
//C LONG bV4Height;
//C WORD bV4Planes;
//C WORD bV4BitCount;
//C DWORD bV4V4Compression;
//C DWORD bV4SizeImage;
//C LONG bV4XPelsPerMeter;
//C LONG bV4YPelsPerMeter;
//C DWORD bV4ClrUsed;
//C DWORD bV4ClrImportant;
//C DWORD bV4RedMask;
//C DWORD bV4GreenMask;
//C DWORD bV4BlueMask;
//C DWORD bV4AlphaMask;
//C DWORD bV4CSType;
//C CIEXYZTRIPLE bV4Endpoints;
//C DWORD bV4GammaRed;
//C DWORD bV4GammaGreen;
//C DWORD bV4GammaBlue;
//C } BITMAPV4HEADER,*LPBITMAPV4HEADER,*PBITMAPV4HEADER;
struct _N60
{
DWORD bV4Size;
LONG bV4Width;
LONG bV4Height;
WORD bV4Planes;
WORD bV4BitCount;
DWORD bV4V4Compression;
DWORD bV4SizeImage;
LONG bV4XPelsPerMeter;
LONG bV4YPelsPerMeter;
DWORD bV4ClrUsed;
DWORD bV4ClrImportant;
DWORD bV4RedMask;
DWORD bV4GreenMask;
DWORD bV4BlueMask;
DWORD bV4AlphaMask;
DWORD bV4CSType;
CIEXYZTRIPLE bV4Endpoints;
DWORD bV4GammaRed;
DWORD bV4GammaGreen;
DWORD bV4GammaBlue;
}
alias _N60 BITMAPV4HEADER;
alias _N60 *LPBITMAPV4HEADER;
alias _N60 *PBITMAPV4HEADER;
//C typedef struct {
//C DWORD bV5Size;
//C LONG bV5Width;
//C LONG bV5Height;
//C WORD bV5Planes;
//C WORD bV5BitCount;
//C DWORD bV5Compression;
//C DWORD bV5SizeImage;
//C LONG bV5XPelsPerMeter;
//C LONG bV5YPelsPerMeter;
//C DWORD bV5ClrUsed;
//C DWORD bV5ClrImportant;
//C DWORD bV5RedMask;
//C DWORD bV5GreenMask;
//C DWORD bV5BlueMask;
//C DWORD bV5AlphaMask;
//C DWORD bV5CSType;
//C CIEXYZTRIPLE bV5Endpoints;
//C DWORD bV5GammaRed;
//C DWORD bV5GammaGreen;
//C DWORD bV5GammaBlue;
//C DWORD bV5Intent;
//C DWORD bV5ProfileData;
//C DWORD bV5ProfileSize;
//C DWORD bV5Reserved;
//C } BITMAPV5HEADER,*LPBITMAPV5HEADER,*PBITMAPV5HEADER;
struct _N61
{
DWORD bV5Size;
LONG bV5Width;
LONG bV5Height;
WORD bV5Planes;
WORD bV5BitCount;
DWORD bV5Compression;
DWORD bV5SizeImage;
LONG bV5XPelsPerMeter;
LONG bV5YPelsPerMeter;
DWORD bV5ClrUsed;
DWORD bV5ClrImportant;
DWORD bV5RedMask;
DWORD bV5GreenMask;
DWORD bV5BlueMask;
DWORD bV5AlphaMask;
DWORD bV5CSType;
CIEXYZTRIPLE bV5Endpoints;
DWORD bV5GammaRed;
DWORD bV5GammaGreen;
DWORD bV5GammaBlue;
DWORD bV5Intent;
DWORD bV5ProfileData;
DWORD bV5ProfileSize;
DWORD bV5Reserved;
}
alias _N61 BITMAPV5HEADER;
alias _N61 *LPBITMAPV5HEADER;
alias _N61 *PBITMAPV5HEADER;
//C typedef struct tagBITMAPINFO {
//C BITMAPINFOHEADER bmiHeader;
//C RGBQUAD bmiColors[1];
//C } BITMAPINFO,*LPBITMAPINFO,*PBITMAPINFO;
struct tagBITMAPINFO
{
BITMAPINFOHEADER bmiHeader;
RGBQUAD [1]bmiColors;
}
alias tagBITMAPINFO BITMAPINFO;
alias tagBITMAPINFO *LPBITMAPINFO;
alias tagBITMAPINFO *PBITMAPINFO;
//C typedef struct tagBITMAPCOREINFO {
//C BITMAPCOREHEADER bmciHeader;
//C RGBTRIPLE bmciColors[1];
//C } BITMAPCOREINFO,*LPBITMAPCOREINFO,*PBITMAPCOREINFO;
struct tagBITMAPCOREINFO
{
BITMAPCOREHEADER bmciHeader;
RGBTRIPLE [1]bmciColors;
}
alias tagBITMAPCOREINFO BITMAPCOREINFO;
alias tagBITMAPCOREINFO *LPBITMAPCOREINFO;
alias tagBITMAPCOREINFO *PBITMAPCOREINFO;
//C typedef struct tagBITMAPFILEHEADER {
//C WORD bfType;
//C DWORD bfSize;
//C WORD bfReserved1;
//C WORD bfReserved2;
//C DWORD bfOffBits;
//C } BITMAPFILEHEADER,*LPBITMAPFILEHEADER,*PBITMAPFILEHEADER;
struct tagBITMAPFILEHEADER
{
WORD bfType;
DWORD bfSize;
WORD bfReserved1;
WORD bfReserved2;
DWORD bfOffBits;
}
alias tagBITMAPFILEHEADER BITMAPFILEHEADER;
alias tagBITMAPFILEHEADER *LPBITMAPFILEHEADER;
alias tagBITMAPFILEHEADER *PBITMAPFILEHEADER;
//C typedef struct tagFONTSIGNATURE {
//C DWORD fsUsb[4];
//C DWORD fsCsb[2];
//C } FONTSIGNATURE,*PFONTSIGNATURE,*LPFONTSIGNATURE;
struct tagFONTSIGNATURE
{
DWORD [4]fsUsb;
DWORD [2]fsCsb;
}
alias tagFONTSIGNATURE FONTSIGNATURE;
alias tagFONTSIGNATURE *PFONTSIGNATURE;
alias tagFONTSIGNATURE *LPFONTSIGNATURE;
//C typedef struct tagCHARSETINFO {
//C UINT ciCharset;
//C UINT ciACP;
//C FONTSIGNATURE fs;
//C } CHARSETINFO,*PCHARSETINFO,*NPCHARSETINFO,*LPCHARSETINFO;
struct tagCHARSETINFO
{
UINT ciCharset;
UINT ciACP;
FONTSIGNATURE fs;
}
alias tagCHARSETINFO CHARSETINFO;
alias tagCHARSETINFO *PCHARSETINFO;
alias tagCHARSETINFO *NPCHARSETINFO;
alias tagCHARSETINFO *LPCHARSETINFO;
//C typedef struct tagLOCALESIGNATURE {
//C DWORD lsUsb[4];
//C DWORD lsCsbDefault[2];
//C DWORD lsCsbSupported[2];
//C } LOCALESIGNATURE,*PLOCALESIGNATURE,*LPLOCALESIGNATURE;
struct tagLOCALESIGNATURE
{
DWORD [4]lsUsb;
DWORD [2]lsCsbDefault;
DWORD [2]lsCsbSupported;
}
alias tagLOCALESIGNATURE LOCALESIGNATURE;
alias tagLOCALESIGNATURE *PLOCALESIGNATURE;
alias tagLOCALESIGNATURE *LPLOCALESIGNATURE;
//C typedef struct tagHANDLETABLE {
//C HGDIOBJ objectHandle[1];
//C } HANDLETABLE,*PHANDLETABLE,*LPHANDLETABLE;
struct tagHANDLETABLE
{
HGDIOBJ [1]objectHandle;
}
alias tagHANDLETABLE HANDLETABLE;
alias tagHANDLETABLE *PHANDLETABLE;
alias tagHANDLETABLE *LPHANDLETABLE;
//C typedef struct tagMETARECORD {
//C DWORD rdSize;
//C WORD rdFunction;
//C WORD rdParm[1];
//C } METARECORD;
struct tagMETARECORD
{
DWORD rdSize;
WORD rdFunction;
WORD [1]rdParm;
}
alias tagMETARECORD METARECORD;
//C typedef struct tagMETARECORD *PMETARECORD;
alias tagMETARECORD *PMETARECORD;
//C typedef struct tagMETARECORD *LPMETARECORD;
alias tagMETARECORD *LPMETARECORD;
//C typedef struct tagMETAFILEPICT {
//C LONG mm;
//C LONG xExt;
//C LONG yExt;
//C HMETAFILE hMF;
//C } METAFILEPICT,*LPMETAFILEPICT;
struct tagMETAFILEPICT
{
LONG mm;
LONG xExt;
LONG yExt;
HMETAFILE hMF;
}
alias tagMETAFILEPICT METAFILEPICT;
alias tagMETAFILEPICT *LPMETAFILEPICT;
//C typedef struct tagMETAHEADER {
//C WORD mtType;
//C WORD mtHeaderSize;
//C WORD mtVersion;
//C DWORD mtSize;
//C WORD mtNoObjects;
//C DWORD mtMaxRecord;
//C WORD mtNoParameters;
//C } METAHEADER;
struct tagMETAHEADER
{
WORD mtType;
WORD mtHeaderSize;
WORD mtVersion;
DWORD mtSize;
WORD mtNoObjects;
DWORD mtMaxRecord;
WORD mtNoParameters;
}
alias tagMETAHEADER METAHEADER;
//C typedef struct tagMETAHEADER *PMETAHEADER;
alias tagMETAHEADER *PMETAHEADER;
//C typedef struct tagMETAHEADER *LPMETAHEADER;
alias tagMETAHEADER *LPMETAHEADER;
//C typedef struct tagENHMETARECORD {
//C DWORD iType;
//C DWORD nSize;
//C DWORD dParm[1];
//C } ENHMETARECORD,*PENHMETARECORD,*LPENHMETARECORD;
struct tagENHMETARECORD
{
DWORD iType;
DWORD nSize;
DWORD [1]dParm;
}
alias tagENHMETARECORD ENHMETARECORD;
alias tagENHMETARECORD *PENHMETARECORD;
alias tagENHMETARECORD *LPENHMETARECORD;
//C typedef struct tagENHMETAHEADER {
//C DWORD iType;
//C DWORD nSize;
//C RECTL rclBounds;
//C RECTL rclFrame;
//C DWORD dSignature;
//C DWORD nVersion;
//C DWORD nBytes;
//C DWORD nRecords;
//C WORD nHandles;
//C WORD sReserved;
//C DWORD nDescription;
//C DWORD offDescription;
//C DWORD nPalEntries;
//C SIZEL szlDevice;
//C SIZEL szlMillimeters;
//C DWORD cbPixelFormat;
//C DWORD offPixelFormat;
//C DWORD bOpenGL;
//C SIZEL szlMicrometers;
//C } ENHMETAHEADER,*PENHMETAHEADER,*LPENHMETAHEADER;
struct tagENHMETAHEADER
{
DWORD iType;
DWORD nSize;
RECTL rclBounds;
RECTL rclFrame;
DWORD dSignature;
DWORD nVersion;
DWORD nBytes;
DWORD nRecords;
WORD nHandles;
WORD sReserved;
DWORD nDescription;
DWORD offDescription;
DWORD nPalEntries;
SIZEL szlDevice;
SIZEL szlMillimeters;
DWORD cbPixelFormat;
DWORD offPixelFormat;
DWORD bOpenGL;
SIZEL szlMicrometers;
}
alias tagENHMETAHEADER ENHMETAHEADER;
alias tagENHMETAHEADER *PENHMETAHEADER;
alias tagENHMETAHEADER *LPENHMETAHEADER;
//C typedef BYTE BCHAR;
alias BYTE BCHAR;
//C typedef struct tagTEXTMETRICA {
//C LONG tmHeight;
//C LONG tmAscent;
//C LONG tmDescent;
//C LONG tmInternalLeading;
//C LONG tmExternalLeading;
//C LONG tmAveCharWidth;
//C LONG tmMaxCharWidth;
//C LONG tmWeight;
//C LONG tmOverhang;
//C LONG tmDigitizedAspectX;
//C LONG tmDigitizedAspectY;
//C BYTE tmFirstChar;
//C BYTE tmLastChar;
//C BYTE tmDefaultChar;
//C BYTE tmBreakChar;
//C BYTE tmItalic;
//C BYTE tmUnderlined;
//C BYTE tmStruckOut;
//C BYTE tmPitchAndFamily;
//C BYTE tmCharSet;
//C } TEXTMETRICA,*PTEXTMETRICA,*NPTEXTMETRICA,*LPTEXTMETRICA;
struct tagTEXTMETRICA
{
LONG tmHeight;
LONG tmAscent;
LONG tmDescent;
LONG tmInternalLeading;
LONG tmExternalLeading;
LONG tmAveCharWidth;
LONG tmMaxCharWidth;
LONG tmWeight;
LONG tmOverhang;
LONG tmDigitizedAspectX;
LONG tmDigitizedAspectY;
BYTE tmFirstChar;
BYTE tmLastChar;
BYTE tmDefaultChar;
BYTE tmBreakChar;
BYTE tmItalic;
BYTE tmUnderlined;
BYTE tmStruckOut;
BYTE tmPitchAndFamily;
BYTE tmCharSet;
}
alias tagTEXTMETRICA TEXTMETRICA;
alias tagTEXTMETRICA *PTEXTMETRICA;
alias tagTEXTMETRICA *NPTEXTMETRICA;
alias tagTEXTMETRICA *LPTEXTMETRICA;
//C typedef struct tagTEXTMETRICW {
//C LONG tmHeight;
//C LONG tmAscent;
//C LONG tmDescent;
//C LONG tmInternalLeading;
//C LONG tmExternalLeading;
//C LONG tmAveCharWidth;
//C LONG tmMaxCharWidth;
//C LONG tmWeight;
//C LONG tmOverhang;
//C LONG tmDigitizedAspectX;
//C LONG tmDigitizedAspectY;
//C WCHAR tmFirstChar;
//C WCHAR tmLastChar;
//C WCHAR tmDefaultChar;
//C WCHAR tmBreakChar;
//C BYTE tmItalic;
//C BYTE tmUnderlined;
//C BYTE tmStruckOut;
//C BYTE tmPitchAndFamily;
//C BYTE tmCharSet;
//C } TEXTMETRICW,*PTEXTMETRICW,*NPTEXTMETRICW,*LPTEXTMETRICW;
struct tagTEXTMETRICW
{
LONG tmHeight;
LONG tmAscent;
LONG tmDescent;
LONG tmInternalLeading;
LONG tmExternalLeading;
LONG tmAveCharWidth;
LONG tmMaxCharWidth;
LONG tmWeight;
LONG tmOverhang;
LONG tmDigitizedAspectX;
LONG tmDigitizedAspectY;
WCHAR tmFirstChar;
WCHAR tmLastChar;
WCHAR tmDefaultChar;
WCHAR tmBreakChar;
BYTE tmItalic;
BYTE tmUnderlined;
BYTE tmStruckOut;
BYTE tmPitchAndFamily;
BYTE tmCharSet;
}
alias tagTEXTMETRICW TEXTMETRICW;
alias tagTEXTMETRICW *PTEXTMETRICW;
alias tagTEXTMETRICW *NPTEXTMETRICW;
alias tagTEXTMETRICW *LPTEXTMETRICW;
//C typedef TEXTMETRICA TEXTMETRIC;
alias TEXTMETRICA TEXTMETRIC;
//C typedef PTEXTMETRICA PTEXTMETRIC;
alias PTEXTMETRICA PTEXTMETRIC;
//C typedef NPTEXTMETRICA NPTEXTMETRIC;
alias NPTEXTMETRICA NPTEXTMETRIC;
//C typedef LPTEXTMETRICA LPTEXTMETRIC;
alias LPTEXTMETRICA LPTEXTMETRIC;
//C typedef struct tagNEWTEXTMETRICA {
//C LONG tmHeight;
//C LONG tmAscent;
//C LONG tmDescent;
//C LONG tmInternalLeading;
//C LONG tmExternalLeading;
//C LONG tmAveCharWidth;
//C LONG tmMaxCharWidth;
//C LONG tmWeight;
//C LONG tmOverhang;
//C LONG tmDigitizedAspectX;
//C LONG tmDigitizedAspectY;
//C BYTE tmFirstChar;
//C BYTE tmLastChar;
//C BYTE tmDefaultChar;
//C BYTE tmBreakChar;
//C BYTE tmItalic;
//C BYTE tmUnderlined;
//C BYTE tmStruckOut;
//C BYTE tmPitchAndFamily;
//C BYTE tmCharSet;
//C DWORD ntmFlags;
//C UINT ntmSizeEM;
//C UINT ntmCellHeight;
//C UINT ntmAvgWidth;
//C } NEWTEXTMETRICA,*PNEWTEXTMETRICA,*NPNEWTEXTMETRICA,*LPNEWTEXTMETRICA;
struct tagNEWTEXTMETRICA
{
LONG tmHeight;
LONG tmAscent;
LONG tmDescent;
LONG tmInternalLeading;
LONG tmExternalLeading;
LONG tmAveCharWidth;
LONG tmMaxCharWidth;
LONG tmWeight;
LONG tmOverhang;
LONG tmDigitizedAspectX;
LONG tmDigitizedAspectY;
BYTE tmFirstChar;
BYTE tmLastChar;
BYTE tmDefaultChar;
BYTE tmBreakChar;
BYTE tmItalic;
BYTE tmUnderlined;
BYTE tmStruckOut;
BYTE tmPitchAndFamily;
BYTE tmCharSet;
DWORD ntmFlags;
UINT ntmSizeEM;
UINT ntmCellHeight;
UINT ntmAvgWidth;
}
alias tagNEWTEXTMETRICA NEWTEXTMETRICA;
alias tagNEWTEXTMETRICA *PNEWTEXTMETRICA;
alias tagNEWTEXTMETRICA *NPNEWTEXTMETRICA;
alias tagNEWTEXTMETRICA *LPNEWTEXTMETRICA;
//C typedef struct tagNEWTEXTMETRICW {
//C LONG tmHeight;
//C LONG tmAscent;
//C LONG tmDescent;
//C LONG tmInternalLeading;
//C LONG tmExternalLeading;
//C LONG tmAveCharWidth;
//C LONG tmMaxCharWidth;
//C LONG tmWeight;
//C LONG tmOverhang;
//C LONG tmDigitizedAspectX;
//C LONG tmDigitizedAspectY;
//C WCHAR tmFirstChar;
//C WCHAR tmLastChar;
//C WCHAR tmDefaultChar;
//C WCHAR tmBreakChar;
//C BYTE tmItalic;
//C BYTE tmUnderlined;
//C BYTE tmStruckOut;
//C BYTE tmPitchAndFamily;
//C BYTE tmCharSet;
//C DWORD ntmFlags;
//C UINT ntmSizeEM;
//C UINT ntmCellHeight;
//C UINT ntmAvgWidth;
//C } NEWTEXTMETRICW,*PNEWTEXTMETRICW,*NPNEWTEXTMETRICW,*LPNEWTEXTMETRICW;
struct tagNEWTEXTMETRICW
{
LONG tmHeight;
LONG tmAscent;
LONG tmDescent;
LONG tmInternalLeading;
LONG tmExternalLeading;
LONG tmAveCharWidth;
LONG tmMaxCharWidth;
LONG tmWeight;
LONG tmOverhang;
LONG tmDigitizedAspectX;
LONG tmDigitizedAspectY;
WCHAR tmFirstChar;
WCHAR tmLastChar;
WCHAR tmDefaultChar;
WCHAR tmBreakChar;
BYTE tmItalic;
BYTE tmUnderlined;
BYTE tmStruckOut;
BYTE tmPitchAndFamily;
BYTE tmCharSet;
DWORD ntmFlags;
UINT ntmSizeEM;
UINT ntmCellHeight;
UINT ntmAvgWidth;
}
alias tagNEWTEXTMETRICW NEWTEXTMETRICW;
alias tagNEWTEXTMETRICW *PNEWTEXTMETRICW;
alias tagNEWTEXTMETRICW *NPNEWTEXTMETRICW;
alias tagNEWTEXTMETRICW *LPNEWTEXTMETRICW;
//C typedef NEWTEXTMETRICA NEWTEXTMETRIC;
alias NEWTEXTMETRICA NEWTEXTMETRIC;
//C typedef PNEWTEXTMETRICA PNEWTEXTMETRIC;
alias PNEWTEXTMETRICA PNEWTEXTMETRIC;
//C typedef NPNEWTEXTMETRICA NPNEWTEXTMETRIC;
alias NPNEWTEXTMETRICA NPNEWTEXTMETRIC;
//C typedef LPNEWTEXTMETRICA LPNEWTEXTMETRIC;
alias LPNEWTEXTMETRICA LPNEWTEXTMETRIC;
//C typedef struct tagNEWTEXTMETRICEXA {
//C NEWTEXTMETRICA ntmTm;
//C FONTSIGNATURE ntmFontSig;
//C } NEWTEXTMETRICEXA;
struct tagNEWTEXTMETRICEXA
{
NEWTEXTMETRICA ntmTm;
FONTSIGNATURE ntmFontSig;
}
alias tagNEWTEXTMETRICEXA NEWTEXTMETRICEXA;
//C typedef struct tagNEWTEXTMETRICEXW {
//C NEWTEXTMETRICW ntmTm;
//C FONTSIGNATURE ntmFontSig;
//C } NEWTEXTMETRICEXW;
struct tagNEWTEXTMETRICEXW
{
NEWTEXTMETRICW ntmTm;
FONTSIGNATURE ntmFontSig;
}
alias tagNEWTEXTMETRICEXW NEWTEXTMETRICEXW;
//C typedef NEWTEXTMETRICEXA NEWTEXTMETRICEX;
alias NEWTEXTMETRICEXA NEWTEXTMETRICEX;
//C typedef struct tagPELARRAY {
//C LONG paXCount;
//C LONG paYCount;
//C LONG paXExt;
//C LONG paYExt;
//C BYTE paRGBs;
//C } PELARRAY,*PPELARRAY,*NPPELARRAY,*LPPELARRAY;
struct tagPELARRAY
{
LONG paXCount;
LONG paYCount;
LONG paXExt;
LONG paYExt;
BYTE paRGBs;
}
alias tagPELARRAY PELARRAY;
alias tagPELARRAY *PPELARRAY;
alias tagPELARRAY *NPPELARRAY;
alias tagPELARRAY *LPPELARRAY;
//C typedef struct tagLOGBRUSH {
//C UINT lbStyle;
//C COLORREF lbColor;
//C ULONG_PTR lbHatch;
//C } LOGBRUSH,*PLOGBRUSH,*NPLOGBRUSH,*LPLOGBRUSH;
struct tagLOGBRUSH
{
UINT lbStyle;
COLORREF lbColor;
ULONG_PTR lbHatch;
}
alias tagLOGBRUSH LOGBRUSH;
alias tagLOGBRUSH *PLOGBRUSH;
alias tagLOGBRUSH *NPLOGBRUSH;
alias tagLOGBRUSH *LPLOGBRUSH;
//C typedef struct tagLOGBRUSH32 {
//C UINT lbStyle;
//C COLORREF lbColor;
//C ULONG lbHatch;
//C } LOGBRUSH32,*PLOGBRUSH32,*NPLOGBRUSH32,*LPLOGBRUSH32;
struct tagLOGBRUSH32
{
UINT lbStyle;
COLORREF lbColor;
ULONG lbHatch;
}
alias tagLOGBRUSH32 LOGBRUSH32;
alias tagLOGBRUSH32 *PLOGBRUSH32;
alias tagLOGBRUSH32 *NPLOGBRUSH32;
alias tagLOGBRUSH32 *LPLOGBRUSH32;
//C typedef LOGBRUSH PATTERN;
alias LOGBRUSH PATTERN;
//C typedef PATTERN *PPATTERN;
alias PATTERN *PPATTERN;
//C typedef PATTERN *NPPATTERN;
alias PATTERN *NPPATTERN;
//C typedef PATTERN *LPPATTERN;
alias PATTERN *LPPATTERN;
//C typedef struct tagLOGPEN {
//C UINT lopnStyle;
//C POINT lopnWidth;
//C COLORREF lopnColor;
//C } LOGPEN,*PLOGPEN,*NPLOGPEN,*LPLOGPEN;
struct tagLOGPEN
{
UINT lopnStyle;
POINT lopnWidth;
COLORREF lopnColor;
}
alias tagLOGPEN LOGPEN;
alias tagLOGPEN *PLOGPEN;
alias tagLOGPEN *NPLOGPEN;
alias tagLOGPEN *LPLOGPEN;
//C typedef struct tagEXTLOGPEN {
//C DWORD elpPenStyle;
//C DWORD elpWidth;
//C UINT elpBrushStyle;
//C COLORREF elpColor;
//C ULONG_PTR elpHatch;
//C DWORD elpNumEntries;
//C DWORD elpStyleEntry[1];
//C } EXTLOGPEN,*PEXTLOGPEN,*NPEXTLOGPEN,*LPEXTLOGPEN;
struct tagEXTLOGPEN
{
DWORD elpPenStyle;
DWORD elpWidth;
UINT elpBrushStyle;
COLORREF elpColor;
ULONG_PTR elpHatch;
DWORD elpNumEntries;
DWORD [1]elpStyleEntry;
}
alias tagEXTLOGPEN EXTLOGPEN;
alias tagEXTLOGPEN *PEXTLOGPEN;
alias tagEXTLOGPEN *NPEXTLOGPEN;
alias tagEXTLOGPEN *LPEXTLOGPEN;
//C typedef struct tagPALETTEENTRY {
//C BYTE peRed;
//C BYTE peGreen;
//C BYTE peBlue;
//C BYTE peFlags;
//C } PALETTEENTRY,*PPALETTEENTRY,*LPPALETTEENTRY;
struct tagPALETTEENTRY
{
BYTE peRed;
BYTE peGreen;
BYTE peBlue;
BYTE peFlags;
}
alias tagPALETTEENTRY PALETTEENTRY;
alias tagPALETTEENTRY *PPALETTEENTRY;
alias tagPALETTEENTRY *LPPALETTEENTRY;
//C typedef struct tagLOGPALETTE {
//C WORD palVersion;
//C WORD palNumEntries;
//C PALETTEENTRY palPalEntry[1];
//C } LOGPALETTE,*PLOGPALETTE,*NPLOGPALETTE,*LPLOGPALETTE;
struct tagLOGPALETTE
{
WORD palVersion;
WORD palNumEntries;
PALETTEENTRY [1]palPalEntry;
}
alias tagLOGPALETTE LOGPALETTE;
alias tagLOGPALETTE *PLOGPALETTE;
alias tagLOGPALETTE *NPLOGPALETTE;
alias tagLOGPALETTE *LPLOGPALETTE;
//C typedef struct tagLOGFONTA {
//C LONG lfHeight;
//C LONG lfWidth;
//C LONG lfEscapement;
//C LONG lfOrientation;
//C LONG lfWeight;
//C BYTE lfItalic;
//C BYTE lfUnderline;
//C BYTE lfStrikeOut;
//C BYTE lfCharSet;
//C BYTE lfOutPrecision;
//C BYTE lfClipPrecision;
//C BYTE lfQuality;
//C BYTE lfPitchAndFamily;
//C CHAR lfFaceName[32];
//C } LOGFONTA,*PLOGFONTA,*NPLOGFONTA,*LPLOGFONTA;
struct tagLOGFONTA
{
LONG lfHeight;
LONG lfWidth;
LONG lfEscapement;
LONG lfOrientation;
LONG lfWeight;
BYTE lfItalic;
BYTE lfUnderline;
BYTE lfStrikeOut;
BYTE lfCharSet;
BYTE lfOutPrecision;
BYTE lfClipPrecision;
BYTE lfQuality;
BYTE lfPitchAndFamily;
CHAR [32]lfFaceName;
}
alias tagLOGFONTA LOGFONTA;
alias tagLOGFONTA *PLOGFONTA;
alias tagLOGFONTA *NPLOGFONTA;
alias tagLOGFONTA *LPLOGFONTA;
//C typedef struct tagLOGFONTW {
//C LONG lfHeight;
//C LONG lfWidth;
//C LONG lfEscapement;
//C LONG lfOrientation;
//C LONG lfWeight;
//C BYTE lfItalic;
//C BYTE lfUnderline;
//C BYTE lfStrikeOut;
//C BYTE lfCharSet;
//C BYTE lfOutPrecision;
//C BYTE lfClipPrecision;
//C BYTE lfQuality;
//C BYTE lfPitchAndFamily;
//C WCHAR lfFaceName[32];
//C } LOGFONTW,*PLOGFONTW,*NPLOGFONTW,*LPLOGFONTW;
struct tagLOGFONTW
{
LONG lfHeight;
LONG lfWidth;
LONG lfEscapement;
LONG lfOrientation;
LONG lfWeight;
BYTE lfItalic;
BYTE lfUnderline;
BYTE lfStrikeOut;
BYTE lfCharSet;
BYTE lfOutPrecision;
BYTE lfClipPrecision;
BYTE lfQuality;
BYTE lfPitchAndFamily;
WCHAR [32]lfFaceName;
}
alias tagLOGFONTW LOGFONTW;
alias tagLOGFONTW *PLOGFONTW;
alias tagLOGFONTW *NPLOGFONTW;
alias tagLOGFONTW *LPLOGFONTW;
//C typedef LOGFONTA LOGFONT;
alias LOGFONTA LOGFONT;
//C typedef PLOGFONTA PLOGFONT;
alias PLOGFONTA PLOGFONT;
//C typedef NPLOGFONTA NPLOGFONT;
alias NPLOGFONTA NPLOGFONT;
//C typedef LPLOGFONTA LPLOGFONT;
alias LPLOGFONTA LPLOGFONT;
//C typedef struct tagENUMLOGFONTA {
//C LOGFONTA elfLogFont;
//C BYTE elfFullName[64];
//C BYTE elfStyle[32];
//C } ENUMLOGFONTA,*LPENUMLOGFONTA;
struct tagENUMLOGFONTA
{
LOGFONTA elfLogFont;
BYTE [64]elfFullName;
BYTE [32]elfStyle;
}
alias tagENUMLOGFONTA ENUMLOGFONTA;
alias tagENUMLOGFONTA *LPENUMLOGFONTA;
//C typedef struct tagENUMLOGFONTW {
//C LOGFONTW elfLogFont;
//C WCHAR elfFullName[64];
//C WCHAR elfStyle[32];
//C } ENUMLOGFONTW,*LPENUMLOGFONTW;
struct tagENUMLOGFONTW
{
LOGFONTW elfLogFont;
WCHAR [64]elfFullName;
WCHAR [32]elfStyle;
}
alias tagENUMLOGFONTW ENUMLOGFONTW;
alias tagENUMLOGFONTW *LPENUMLOGFONTW;
//C typedef ENUMLOGFONTA ENUMLOGFONT;
alias ENUMLOGFONTA ENUMLOGFONT;
//C typedef LPENUMLOGFONTA LPENUMLOGFONT;
alias LPENUMLOGFONTA LPENUMLOGFONT;
//C typedef struct tagENUMLOGFONTEXA {
//C LOGFONTA elfLogFont;
//C BYTE elfFullName[64];
//C BYTE elfStyle[32];
//C BYTE elfScript[32];
//C } ENUMLOGFONTEXA,*LPENUMLOGFONTEXA;
struct tagENUMLOGFONTEXA
{
LOGFONTA elfLogFont;
BYTE [64]elfFullName;
BYTE [32]elfStyle;
BYTE [32]elfScript;
}
alias tagENUMLOGFONTEXA ENUMLOGFONTEXA;
alias tagENUMLOGFONTEXA *LPENUMLOGFONTEXA;
//C typedef struct tagENUMLOGFONTEXW {
//C LOGFONTW elfLogFont;
//C WCHAR elfFullName[64];
//C WCHAR elfStyle[32];
//C WCHAR elfScript[32];
//C } ENUMLOGFONTEXW,*LPENUMLOGFONTEXW;
struct tagENUMLOGFONTEXW
{
LOGFONTW elfLogFont;
WCHAR [64]elfFullName;
WCHAR [32]elfStyle;
WCHAR [32]elfScript;
}
alias tagENUMLOGFONTEXW ENUMLOGFONTEXW;
alias tagENUMLOGFONTEXW *LPENUMLOGFONTEXW;
//C typedef ENUMLOGFONTEXA ENUMLOGFONTEX;
alias ENUMLOGFONTEXA ENUMLOGFONTEX;
//C typedef LPENUMLOGFONTEXA LPENUMLOGFONTEX;
alias LPENUMLOGFONTEXA LPENUMLOGFONTEX;
//C typedef struct tagPANOSE {
//C BYTE bFamilyType;
//C BYTE bSerifStyle;
//C BYTE bWeight;
//C BYTE bProportion;
//C BYTE bContrast;
//C BYTE bStrokeVariation;
//C BYTE bArmStyle;
//C BYTE bLetterform;
//C BYTE bMidline;
//C BYTE bXHeight;
//C } PANOSE,*LPPANOSE;
struct tagPANOSE
{
BYTE bFamilyType;
BYTE bSerifStyle;
BYTE bWeight;
BYTE bProportion;
BYTE bContrast;
BYTE bStrokeVariation;
BYTE bArmStyle;
BYTE bLetterform;
BYTE bMidline;
BYTE bXHeight;
}
alias tagPANOSE PANOSE;
alias tagPANOSE *LPPANOSE;
//C typedef struct tagEXTLOGFONTA {
//C LOGFONTA elfLogFont;
//C BYTE elfFullName[64];
//C BYTE elfStyle[32];
//C DWORD elfVersion;
//C DWORD elfStyleSize;
//C DWORD elfMatch;
//C DWORD elfReserved;
//C BYTE elfVendorId[4];
//C DWORD elfCulture;
//C PANOSE elfPanose;
//C } EXTLOGFONTA,*PEXTLOGFONTA,*NPEXTLOGFONTA,*LPEXTLOGFONTA;
struct tagEXTLOGFONTA
{
LOGFONTA elfLogFont;
BYTE [64]elfFullName;
BYTE [32]elfStyle;
DWORD elfVersion;
DWORD elfStyleSize;
DWORD elfMatch;
DWORD elfReserved;
BYTE [4]elfVendorId;
DWORD elfCulture;
PANOSE elfPanose;
}
alias tagEXTLOGFONTA EXTLOGFONTA;
alias tagEXTLOGFONTA *PEXTLOGFONTA;
alias tagEXTLOGFONTA *NPEXTLOGFONTA;
alias tagEXTLOGFONTA *LPEXTLOGFONTA;
//C typedef struct tagEXTLOGFONTW {
//C LOGFONTW elfLogFont;
//C WCHAR elfFullName[64];
//C WCHAR elfStyle[32];
//C DWORD elfVersion;
//C DWORD elfStyleSize;
//C DWORD elfMatch;
//C DWORD elfReserved;
//C BYTE elfVendorId[4];
//C DWORD elfCulture;
//C PANOSE elfPanose;
//C } EXTLOGFONTW,*PEXTLOGFONTW,*NPEXTLOGFONTW,*LPEXTLOGFONTW;
struct tagEXTLOGFONTW
{
LOGFONTW elfLogFont;
WCHAR [64]elfFullName;
WCHAR [32]elfStyle;
DWORD elfVersion;
DWORD elfStyleSize;
DWORD elfMatch;
DWORD elfReserved;
BYTE [4]elfVendorId;
DWORD elfCulture;
PANOSE elfPanose;
}
alias tagEXTLOGFONTW EXTLOGFONTW;
alias tagEXTLOGFONTW *PEXTLOGFONTW;
alias tagEXTLOGFONTW *NPEXTLOGFONTW;
alias tagEXTLOGFONTW *LPEXTLOGFONTW;
//C typedef EXTLOGFONTA EXTLOGFONT;
alias EXTLOGFONTA EXTLOGFONT;
//C typedef PEXTLOGFONTA PEXTLOGFONT;
alias PEXTLOGFONTA PEXTLOGFONT;
//C typedef NPEXTLOGFONTA NPEXTLOGFONT;
alias NPEXTLOGFONTA NPEXTLOGFONT;
//C typedef LPEXTLOGFONTA LPEXTLOGFONT;
alias LPEXTLOGFONTA LPEXTLOGFONT;
//C typedef struct _devicemodeA {
//C BYTE dmDeviceName[32];
//C WORD dmSpecVersion;
//C WORD dmDriverVersion;
//C WORD dmSize;
//C WORD dmDriverExtra;
//C DWORD dmFields;
//C union {
//C struct {
//C short dmOrientation;
//C short dmPaperSize;
//C short dmPaperLength;
//C short dmPaperWidth;
//C short dmScale;
//C short dmCopies;
//C short dmDefaultSource;
//C short dmPrintQuality;
//C };
struct _N63
{
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
}
//C struct {
//C POINTL dmPosition;
//C DWORD dmDisplayOrientation;
//C DWORD dmDisplayFixedOutput;
//C };
struct _N64
{
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
}
//C };
union _N62
{
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
}
//C short dmColor;
//C short dmDuplex;
//C short dmYResolution;
//C short dmTTOption;
//C short dmCollate;
//C BYTE dmFormName[32];
//C WORD dmLogPixels;
//C DWORD dmBitsPerPel;
//C DWORD dmPelsWidth;
//C DWORD dmPelsHeight;
//C union {
//C DWORD dmDisplayFlags;
//C DWORD dmNup;
//C };
union _N65
{
DWORD dmDisplayFlags;
DWORD dmNup;
}
//C DWORD dmDisplayFrequency;
//C DWORD dmICMMethod;
//C DWORD dmICMIntent;
//C DWORD dmMediaType;
//C DWORD dmDitherType;
//C DWORD dmReserved1;
//C DWORD dmReserved2;
//C DWORD dmPanningWidth;
//C DWORD dmPanningHeight;
//C } DEVMODEA,*PDEVMODEA,*NPDEVMODEA,*LPDEVMODEA;
struct _devicemodeA
{
BYTE [32]dmDeviceName;
WORD dmSpecVersion;
WORD dmDriverVersion;
WORD dmSize;
WORD dmDriverExtra;
DWORD dmFields;
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
short dmColor;
short dmDuplex;
short dmYResolution;
short dmTTOption;
short dmCollate;
BYTE [32]dmFormName;
WORD dmLogPixels;
DWORD dmBitsPerPel;
DWORD dmPelsWidth;
DWORD dmPelsHeight;
DWORD dmDisplayFlags;
DWORD dmNup;
DWORD dmDisplayFrequency;
DWORD dmICMMethod;
DWORD dmICMIntent;
DWORD dmMediaType;
DWORD dmDitherType;
DWORD dmReserved1;
DWORD dmReserved2;
DWORD dmPanningWidth;
DWORD dmPanningHeight;
}
alias _devicemodeA DEVMODEA;
alias _devicemodeA *PDEVMODEA;
alias _devicemodeA *NPDEVMODEA;
alias _devicemodeA *LPDEVMODEA;
//C typedef struct _devicemodeW {
//C WCHAR dmDeviceName[32];
//C WORD dmSpecVersion;
//C WORD dmDriverVersion;
//C WORD dmSize;
//C WORD dmDriverExtra;
//C DWORD dmFields;
//C union {
//C struct {
//C short dmOrientation;
//C short dmPaperSize;
//C short dmPaperLength;
//C short dmPaperWidth;
//C short dmScale;
//C short dmCopies;
//C short dmDefaultSource;
//C short dmPrintQuality;
//C };
struct _N67
{
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
}
//C struct {
//C POINTL dmPosition;
//C DWORD dmDisplayOrientation;
//C DWORD dmDisplayFixedOutput;
//C };
struct _N68
{
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
}
//C };
union _N66
{
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
}
//C short dmColor;
//C short dmDuplex;
//C short dmYResolution;
//C short dmTTOption;
//C short dmCollate;
//C WCHAR dmFormName[32];
//C WORD dmLogPixels;
//C DWORD dmBitsPerPel;
//C DWORD dmPelsWidth;
//C DWORD dmPelsHeight;
//C union {
//C DWORD dmDisplayFlags;
//C DWORD dmNup;
//C };
union _N69
{
DWORD dmDisplayFlags;
DWORD dmNup;
}
//C DWORD dmDisplayFrequency;
//C DWORD dmICMMethod;
//C DWORD dmICMIntent;
//C DWORD dmMediaType;
//C DWORD dmDitherType;
//C DWORD dmReserved1;
//C DWORD dmReserved2;
//C DWORD dmPanningWidth;
//C DWORD dmPanningHeight;
//C } DEVMODEW,*PDEVMODEW,*NPDEVMODEW,*LPDEVMODEW;
struct _devicemodeW
{
WCHAR [32]dmDeviceName;
WORD dmSpecVersion;
WORD dmDriverVersion;
WORD dmSize;
WORD dmDriverExtra;
DWORD dmFields;
short dmOrientation;
short dmPaperSize;
short dmPaperLength;
short dmPaperWidth;
short dmScale;
short dmCopies;
short dmDefaultSource;
short dmPrintQuality;
POINTL dmPosition;
DWORD dmDisplayOrientation;
DWORD dmDisplayFixedOutput;
short dmColor;
short dmDuplex;
short dmYResolution;
short dmTTOption;
short dmCollate;
WCHAR [32]dmFormName;
WORD dmLogPixels;
DWORD dmBitsPerPel;
DWORD dmPelsWidth;
DWORD dmPelsHeight;
DWORD dmDisplayFlags;
DWORD dmNup;
DWORD dmDisplayFrequency;
DWORD dmICMMethod;
DWORD dmICMIntent;
DWORD dmMediaType;
DWORD dmDitherType;
DWORD dmReserved1;
DWORD dmReserved2;
DWORD dmPanningWidth;
DWORD dmPanningHeight;
}
alias _devicemodeW DEVMODEW;
alias _devicemodeW *PDEVMODEW;
alias _devicemodeW *NPDEVMODEW;
alias _devicemodeW *LPDEVMODEW;
//C typedef DEVMODEA DEVMODE;
alias DEVMODEA DEVMODE;
//C typedef PDEVMODEA PDEVMODE;
alias PDEVMODEA PDEVMODE;
//C typedef NPDEVMODEA NPDEVMODE;
alias NPDEVMODEA NPDEVMODE;
//C typedef LPDEVMODEA LPDEVMODE;
alias LPDEVMODEA LPDEVMODE;
//C typedef struct _DISPLAY_DEVICEA {
//C DWORD cb;
//C CHAR DeviceName[32];
//C CHAR DeviceString[128];
//C DWORD StateFlags;
//C CHAR DeviceID[128];
//C CHAR DeviceKey[128];
//C } DISPLAY_DEVICEA,*PDISPLAY_DEVICEA,*LPDISPLAY_DEVICEA;
struct _DISPLAY_DEVICEA
{
DWORD cb;
CHAR [32]DeviceName;
CHAR [128]DeviceString;
DWORD StateFlags;
CHAR [128]DeviceID;
CHAR [128]DeviceKey;
}
alias _DISPLAY_DEVICEA DISPLAY_DEVICEA;
alias _DISPLAY_DEVICEA *PDISPLAY_DEVICEA;
alias _DISPLAY_DEVICEA *LPDISPLAY_DEVICEA;
//C typedef struct _DISPLAY_DEVICEW {
//C DWORD cb;
//C WCHAR DeviceName[32];
//C WCHAR DeviceString[128];
//C DWORD StateFlags;
//C WCHAR DeviceID[128];
//C WCHAR DeviceKey[128];
//C } DISPLAY_DEVICEW,*PDISPLAY_DEVICEW,*LPDISPLAY_DEVICEW;
struct _DISPLAY_DEVICEW
{
DWORD cb;
WCHAR [32]DeviceName;
WCHAR [128]DeviceString;
DWORD StateFlags;
WCHAR [128]DeviceID;
WCHAR [128]DeviceKey;
}
alias _DISPLAY_DEVICEW DISPLAY_DEVICEW;
alias _DISPLAY_DEVICEW *PDISPLAY_DEVICEW;
alias _DISPLAY_DEVICEW *LPDISPLAY_DEVICEW;
//C typedef DISPLAY_DEVICEA DISPLAY_DEVICE;
alias DISPLAY_DEVICEA DISPLAY_DEVICE;
//C typedef PDISPLAY_DEVICEA PDISPLAY_DEVICE;
alias PDISPLAY_DEVICEA PDISPLAY_DEVICE;
//C typedef LPDISPLAY_DEVICEA LPDISPLAY_DEVICE;
alias LPDISPLAY_DEVICEA LPDISPLAY_DEVICE;
//C typedef struct _RGNDATAHEADER {
//C DWORD dwSize;
//C DWORD iType;
//C DWORD nCount;
//C DWORD nRgnSize;
//C RECT rcBound;
//C } RGNDATAHEADER,*PRGNDATAHEADER;
struct _RGNDATAHEADER
{
DWORD dwSize;
DWORD iType;
DWORD nCount;
DWORD nRgnSize;
RECT rcBound;
}
alias _RGNDATAHEADER RGNDATAHEADER;
alias _RGNDATAHEADER *PRGNDATAHEADER;
//C typedef struct _RGNDATA {
//C RGNDATAHEADER rdh;
//C char Buffer[1];
//C } RGNDATA,*PRGNDATA,*NPRGNDATA,*LPRGNDATA;
struct _RGNDATA
{
RGNDATAHEADER rdh;
char [1]Buffer;
}
alias _RGNDATA RGNDATA;
alias _RGNDATA *PRGNDATA;
alias _RGNDATA *NPRGNDATA;
alias _RGNDATA *LPRGNDATA;
//C typedef struct _ABC {
//C int abcA;
//C UINT abcB;
//C int abcC;
//C } ABC,*PABC,*NPABC,*LPABC;
struct _ABC
{
int abcA;
UINT abcB;
int abcC;
}
alias _ABC ABC;
alias _ABC *PABC;
alias _ABC *NPABC;
alias _ABC *LPABC;
//C typedef struct _ABCFLOAT {
//C FLOAT abcfA;
//C FLOAT abcfB;
//C FLOAT abcfC;
//C } ABCFLOAT,*PABCFLOAT,*NPABCFLOAT,*LPABCFLOAT;
struct _ABCFLOAT
{
FLOAT abcfA;
FLOAT abcfB;
FLOAT abcfC;
}
alias _ABCFLOAT ABCFLOAT;
alias _ABCFLOAT *PABCFLOAT;
alias _ABCFLOAT *NPABCFLOAT;
alias _ABCFLOAT *LPABCFLOAT;
//C typedef struct _OUTLINETEXTMETRICA {
//C UINT otmSize;
//C TEXTMETRICA otmTextMetrics;
//C BYTE otmFiller;
//C PANOSE otmPanoseNumber;
//C UINT otmfsSelection;
//C UINT otmfsType;
//C int otmsCharSlopeRise;
//C int otmsCharSlopeRun;
//C int otmItalicAngle;
//C UINT otmEMSquare;
//C int otmAscent;
//C int otmDescent;
//C UINT otmLineGap;
//C UINT otmsCapEmHeight;
//C UINT otmsXHeight;
//C RECT otmrcFontBox;
//C int otmMacAscent;
//C int otmMacDescent;
//C UINT otmMacLineGap;
//C UINT otmusMinimumPPEM;
//C POINT otmptSubscriptSize;
//C POINT otmptSubscriptOffset;
//C POINT otmptSuperscriptSize;
//C POINT otmptSuperscriptOffset;
//C UINT otmsStrikeoutSize;
//C int otmsStrikeoutPosition;
//C int otmsUnderscoreSize;
//C int otmsUnderscorePosition;
//C PSTR otmpFamilyName;
//C PSTR otmpFaceName;
//C PSTR otmpStyleName;
//C PSTR otmpFullName;
//C } OUTLINETEXTMETRICA,*POUTLINETEXTMETRICA,*NPOUTLINETEXTMETRICA,*LPOUTLINETEXTMETRICA;
struct _OUTLINETEXTMETRICA
{
UINT otmSize;
TEXTMETRICA otmTextMetrics;
BYTE otmFiller;
PANOSE otmPanoseNumber;
UINT otmfsSelection;
UINT otmfsType;
int otmsCharSlopeRise;
int otmsCharSlopeRun;
int otmItalicAngle;
UINT otmEMSquare;
int otmAscent;
int otmDescent;
UINT otmLineGap;
UINT otmsCapEmHeight;
UINT otmsXHeight;
RECT otmrcFontBox;
int otmMacAscent;
int otmMacDescent;
UINT otmMacLineGap;
UINT otmusMinimumPPEM;
POINT otmptSubscriptSize;
POINT otmptSubscriptOffset;
POINT otmptSuperscriptSize;
POINT otmptSuperscriptOffset;
UINT otmsStrikeoutSize;
int otmsStrikeoutPosition;
int otmsUnderscoreSize;
int otmsUnderscorePosition;
PSTR otmpFamilyName;
PSTR otmpFaceName;
PSTR otmpStyleName;
PSTR otmpFullName;
}
alias _OUTLINETEXTMETRICA OUTLINETEXTMETRICA;
alias _OUTLINETEXTMETRICA *POUTLINETEXTMETRICA;
alias _OUTLINETEXTMETRICA *NPOUTLINETEXTMETRICA;
alias _OUTLINETEXTMETRICA *LPOUTLINETEXTMETRICA;
//C typedef struct _OUTLINETEXTMETRICW {
//C UINT otmSize;
//C TEXTMETRICW otmTextMetrics;
//C BYTE otmFiller;
//C PANOSE otmPanoseNumber;
//C UINT otmfsSelection;
//C UINT otmfsType;
//C int otmsCharSlopeRise;
//C int otmsCharSlopeRun;
//C int otmItalicAngle;
//C UINT otmEMSquare;
//C int otmAscent;
//C int otmDescent;
//C UINT otmLineGap;
//C UINT otmsCapEmHeight;
//C UINT otmsXHeight;
//C RECT otmrcFontBox;
//C int otmMacAscent;
//C int otmMacDescent;
//C UINT otmMacLineGap;
//C UINT otmusMinimumPPEM;
//C POINT otmptSubscriptSize;
//C POINT otmptSubscriptOffset;
//C POINT otmptSuperscriptSize;
//C POINT otmptSuperscriptOffset;
//C UINT otmsStrikeoutSize;
//C int otmsStrikeoutPosition;
//C int otmsUnderscoreSize;
//C int otmsUnderscorePosition;
//C PSTR otmpFamilyName;
//C PSTR otmpFaceName;
//C PSTR otmpStyleName;
//C PSTR otmpFullName;
//C } OUTLINETEXTMETRICW,*POUTLINETEXTMETRICW,*NPOUTLINETEXTMETRICW,*LPOUTLINETEXTMETRICW;
struct _OUTLINETEXTMETRICW
{
UINT otmSize;
TEXTMETRICW otmTextMetrics;
BYTE otmFiller;
PANOSE otmPanoseNumber;
UINT otmfsSelection;
UINT otmfsType;
int otmsCharSlopeRise;
int otmsCharSlopeRun;
int otmItalicAngle;
UINT otmEMSquare;
int otmAscent;
int otmDescent;
UINT otmLineGap;
UINT otmsCapEmHeight;
UINT otmsXHeight;
RECT otmrcFontBox;
int otmMacAscent;
int otmMacDescent;
UINT otmMacLineGap;
UINT otmusMinimumPPEM;
POINT otmptSubscriptSize;
POINT otmptSubscriptOffset;
POINT otmptSuperscriptSize;
POINT otmptSuperscriptOffset;
UINT otmsStrikeoutSize;
int otmsStrikeoutPosition;
int otmsUnderscoreSize;
int otmsUnderscorePosition;
PSTR otmpFamilyName;
PSTR otmpFaceName;
PSTR otmpStyleName;
PSTR otmpFullName;
}
alias _OUTLINETEXTMETRICW OUTLINETEXTMETRICW;
alias _OUTLINETEXTMETRICW *POUTLINETEXTMETRICW;
alias _OUTLINETEXTMETRICW *NPOUTLINETEXTMETRICW;
alias _OUTLINETEXTMETRICW *LPOUTLINETEXTMETRICW;
//C typedef OUTLINETEXTMETRICA OUTLINETEXTMETRIC;
alias OUTLINETEXTMETRICA OUTLINETEXTMETRIC;
//C typedef POUTLINETEXTMETRICA POUTLINETEXTMETRIC;
alias POUTLINETEXTMETRICA POUTLINETEXTMETRIC;
//C typedef NPOUTLINETEXTMETRICA NPOUTLINETEXTMETRIC;
alias NPOUTLINETEXTMETRICA NPOUTLINETEXTMETRIC;
//C typedef LPOUTLINETEXTMETRICA LPOUTLINETEXTMETRIC;
alias LPOUTLINETEXTMETRICA LPOUTLINETEXTMETRIC;
//C typedef struct tagPOLYTEXTA {
//C int x;
//C int y;
//C UINT n;
//C LPCSTR lpstr;
//C UINT uiFlags;
//C RECT rcl;
//C int *pdx;
//C } POLYTEXTA,*PPOLYTEXTA,*NPPOLYTEXTA,*LPPOLYTEXTA;
struct tagPOLYTEXTA
{
int x;
int y;
UINT n;
LPCSTR lpstr;
UINT uiFlags;
RECT rcl;
int *pdx;
}
alias tagPOLYTEXTA POLYTEXTA;
alias tagPOLYTEXTA *PPOLYTEXTA;
alias tagPOLYTEXTA *NPPOLYTEXTA;
alias tagPOLYTEXTA *LPPOLYTEXTA;
//C typedef struct tagPOLYTEXTW {
//C int x;
//C int y;
//C UINT n;
//C LPCWSTR lpstr;
//C UINT uiFlags;
//C RECT rcl;
//C int *pdx;
//C } POLYTEXTW,*PPOLYTEXTW,*NPPOLYTEXTW,*LPPOLYTEXTW;
struct tagPOLYTEXTW
{
int x;
int y;
UINT n;
LPCWSTR lpstr;
UINT uiFlags;
RECT rcl;
int *pdx;
}
alias tagPOLYTEXTW POLYTEXTW;
alias tagPOLYTEXTW *PPOLYTEXTW;
alias tagPOLYTEXTW *NPPOLYTEXTW;
alias tagPOLYTEXTW *LPPOLYTEXTW;
//C typedef POLYTEXTA POLYTEXT;
alias POLYTEXTA POLYTEXT;
//C typedef PPOLYTEXTA PPOLYTEXT;
alias PPOLYTEXTA PPOLYTEXT;
//C typedef NPPOLYTEXTA NPPOLYTEXT;
alias NPPOLYTEXTA NPPOLYTEXT;
//C typedef LPPOLYTEXTA LPPOLYTEXT;
alias LPPOLYTEXTA LPPOLYTEXT;
//C typedef struct _FIXED {
//C WORD fract;
//C short value;
//C } FIXED;
struct _FIXED
{
WORD fract;
short value;
}
alias _FIXED FIXED;
//C typedef struct _MAT2 {
//C FIXED eM11;
//C FIXED eM12;
//C FIXED eM21;
//C FIXED eM22;
//C } MAT2,*LPMAT2;
struct _MAT2
{
FIXED eM11;
FIXED eM12;
FIXED eM21;
FIXED eM22;
}
alias _MAT2 MAT2;
alias _MAT2 *LPMAT2;
//C typedef struct _GLYPHMETRICS {
//C UINT gmBlackBoxX;
//C UINT gmBlackBoxY;
//C POINT gmptGlyphOrigin;
//C short gmCellIncX;
//C short gmCellIncY;
//C } GLYPHMETRICS,*LPGLYPHMETRICS;
struct _GLYPHMETRICS
{
UINT gmBlackBoxX;
UINT gmBlackBoxY;
POINT gmptGlyphOrigin;
short gmCellIncX;
short gmCellIncY;
}
alias _GLYPHMETRICS GLYPHMETRICS;
alias _GLYPHMETRICS *LPGLYPHMETRICS;
//C typedef struct tagPOINTFX {
//C FIXED x;
//C FIXED y;
//C } POINTFX,*LPPOINTFX;
struct tagPOINTFX
{
FIXED x;
FIXED y;
}
alias tagPOINTFX POINTFX;
alias tagPOINTFX *LPPOINTFX;
//C typedef struct tagTTPOLYCURVE {
//C WORD wType;
//C WORD cpfx;
//C POINTFX apfx[1];
//C } TTPOLYCURVE,*LPTTPOLYCURVE;
struct tagTTPOLYCURVE
{
WORD wType;
WORD cpfx;
POINTFX [1]apfx;
}
alias tagTTPOLYCURVE TTPOLYCURVE;
alias tagTTPOLYCURVE *LPTTPOLYCURVE;
//C typedef struct tagTTPOLYGONHEADER {
//C DWORD cb;
//C DWORD dwType;
//C POINTFX pfxStart;
//C } TTPOLYGONHEADER,*LPTTPOLYGONHEADER;
struct tagTTPOLYGONHEADER
{
DWORD cb;
DWORD dwType;
POINTFX pfxStart;
}
alias tagTTPOLYGONHEADER TTPOLYGONHEADER;
alias tagTTPOLYGONHEADER *LPTTPOLYGONHEADER;
//C typedef struct tagGCP_RESULTSA {
//C DWORD lStructSize;
//C LPSTR lpOutString;
//C UINT *lpOrder;
//C int *lpDx;
//C int *lpCaretPos;
//C LPSTR lpClass;
//C LPWSTR lpGlyphs;
//C UINT nGlyphs;
//C int nMaxFit;
//C } GCP_RESULTSA,*LPGCP_RESULTSA;
struct tagGCP_RESULTSA
{
DWORD lStructSize;
LPSTR lpOutString;
UINT *lpOrder;
int *lpDx;
int *lpCaretPos;
LPSTR lpClass;
LPWSTR lpGlyphs;
UINT nGlyphs;
int nMaxFit;
}
alias tagGCP_RESULTSA GCP_RESULTSA;
alias tagGCP_RESULTSA *LPGCP_RESULTSA;
//C typedef struct tagGCP_RESULTSW {
//C DWORD lStructSize;
//C LPWSTR lpOutString;
//C UINT *lpOrder;
//C int *lpDx;
//C int *lpCaretPos;
//C LPSTR lpClass;
//C LPWSTR lpGlyphs;
//C UINT nGlyphs;
//C int nMaxFit;
//C } GCP_RESULTSW,*LPGCP_RESULTSW;
struct tagGCP_RESULTSW
{
DWORD lStructSize;
LPWSTR lpOutString;
UINT *lpOrder;
int *lpDx;
int *lpCaretPos;
LPSTR lpClass;
LPWSTR lpGlyphs;
UINT nGlyphs;
int nMaxFit;
}
alias tagGCP_RESULTSW GCP_RESULTSW;
alias tagGCP_RESULTSW *LPGCP_RESULTSW;
//C typedef GCP_RESULTSA GCP_RESULTS;
alias GCP_RESULTSA GCP_RESULTS;
//C typedef LPGCP_RESULTSA LPGCP_RESULTS;
alias LPGCP_RESULTSA LPGCP_RESULTS;
//C typedef struct _RASTERIZER_STATUS {
//C short nSize;
//C short wFlags;
//C short nLanguageID;
//C } RASTERIZER_STATUS,*LPRASTERIZER_STATUS;
struct _RASTERIZER_STATUS
{
short nSize;
short wFlags;
short nLanguageID;
}
alias _RASTERIZER_STATUS RASTERIZER_STATUS;
alias _RASTERIZER_STATUS *LPRASTERIZER_STATUS;
//C typedef struct tagPIXELFORMATDESCRIPTOR {
//C WORD nSize;
//C WORD nVersion;
//C DWORD dwFlags;
//C BYTE iPixelType;
//C BYTE cColorBits;
//C BYTE cRedBits;
//C BYTE cRedShift;
//C BYTE cGreenBits;
//C BYTE cGreenShift;
//C BYTE cBlueBits;
//C BYTE cBlueShift;
//C BYTE cAlphaBits;
//C BYTE cAlphaShift;
//C BYTE cAccumBits;
//C BYTE cAccumRedBits;
//C BYTE cAccumGreenBits;
//C BYTE cAccumBlueBits;
//C BYTE cAccumAlphaBits;
//C BYTE cDepthBits;
//C BYTE cStencilBits;
//C BYTE cAuxBuffers;
//C BYTE iLayerType;
//C BYTE bReserved;
//C DWORD dwLayerMask;
//C DWORD dwVisibleMask;
//C DWORD dwDamageMask;
//C } PIXELFORMATDESCRIPTOR,*PPIXELFORMATDESCRIPTOR,*LPPIXELFORMATDESCRIPTOR;
struct tagPIXELFORMATDESCRIPTOR
{
WORD nSize;
WORD nVersion;
DWORD dwFlags;
BYTE iPixelType;
BYTE cColorBits;
BYTE cRedBits;
BYTE cRedShift;
BYTE cGreenBits;
BYTE cGreenShift;
BYTE cBlueBits;
BYTE cBlueShift;
BYTE cAlphaBits;
BYTE cAlphaShift;
BYTE cAccumBits;
BYTE cAccumRedBits;
BYTE cAccumGreenBits;
BYTE cAccumBlueBits;
BYTE cAccumAlphaBits;
BYTE cDepthBits;
BYTE cStencilBits;
BYTE cAuxBuffers;
BYTE iLayerType;
BYTE bReserved;
DWORD dwLayerMask;
DWORD dwVisibleMask;
DWORD dwDamageMask;
}
alias tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR;
alias tagPIXELFORMATDESCRIPTOR *PPIXELFORMATDESCRIPTOR;
alias tagPIXELFORMATDESCRIPTOR *LPPIXELFORMATDESCRIPTOR;
//C typedef int ( *OLDFONTENUMPROCA)(const LOGFONTA *,const TEXTMETRICA *,DWORD,LPARAM);
alias int function(LOGFONTA *, TEXTMETRICA *, DWORD , LPARAM )OLDFONTENUMPROCA;
//C typedef int ( *OLDFONTENUMPROCW)(const LOGFONTW *,const TEXTMETRICW *,DWORD,LPARAM);
alias int function(LOGFONTW *, TEXTMETRICW *, DWORD , LPARAM )OLDFONTENUMPROCW;
//C typedef OLDFONTENUMPROCA FONTENUMPROCA;
alias OLDFONTENUMPROCA FONTENUMPROCA;
//C typedef OLDFONTENUMPROCW FONTENUMPROCW;
alias OLDFONTENUMPROCW FONTENUMPROCW;
//C typedef FONTENUMPROCA FONTENUMPROC;
alias FONTENUMPROCA FONTENUMPROC;
//C typedef int ( *GOBJENUMPROC)(LPVOID,LPARAM);
alias int function(LPVOID , LPARAM )GOBJENUMPROC;
//C typedef void ( *LINEDDAPROC)(int,int,LPARAM);
alias void function(int , int , LPARAM )LINEDDAPROC;
//C int AddFontResourceA(LPCSTR);
int AddFontResourceA(LPCSTR );
//C int AddFontResourceW(LPCWSTR);
int AddFontResourceW(LPCWSTR );
//C WINBOOL AnimatePalette(HPALETTE hPal,UINT iStartIndex,UINT cEntries,const PALETTEENTRY *ppe);
WINBOOL AnimatePalette(HPALETTE hPal, UINT iStartIndex, UINT cEntries, PALETTEENTRY *ppe);
//C WINBOOL Arc(HDC hdc,int x1,int y1,int x2,int y2,int x3,int y3,int x4,int y4);
WINBOOL Arc(HDC hdc, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4);
//C WINBOOL BitBlt(HDC hdc,int x,int y,int cx,int cy,HDC hdcSrc,int x1,int y1,DWORD rop);
WINBOOL BitBlt(HDC hdc, int x, int y, int cx, int cy, HDC hdcSrc, int x1, int y1, DWORD rop);
//C WINBOOL CancelDC(HDC hdc);
WINBOOL CancelDC(HDC hdc);
//C WINBOOL Chord(HDC hdc,int x1,int y1,int x2,int y2,int x3,int y3,int x4,int y4);
WINBOOL Chord(HDC hdc, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4);
//C int ChoosePixelFormat(HDC hdc,const PIXELFORMATDESCRIPTOR *ppfd);
int ChoosePixelFormat(HDC hdc, PIXELFORMATDESCRIPTOR *ppfd);
//C HMETAFILE CloseMetaFile(HDC hdc);
HMETAFILE CloseMetaFile(HDC hdc);
//C int CombineRgn(HRGN hrgnDst,HRGN hrgnSrc1,HRGN hrgnSrc2,int iMode);
int CombineRgn(HRGN hrgnDst, HRGN hrgnSrc1, HRGN hrgnSrc2, int iMode);
//C HMETAFILE CopyMetaFileA(HMETAFILE,LPCSTR);
HMETAFILE CopyMetaFileA(HMETAFILE , LPCSTR );
//C HMETAFILE CopyMetaFileW(HMETAFILE,LPCWSTR);
HMETAFILE CopyMetaFileW(HMETAFILE , LPCWSTR );
//C HBITMAP CreateBitmap(int nWidth,int nHeight,UINT nPlanes,UINT nBitCount,const void *lpBits);
HBITMAP CreateBitmap(int nWidth, int nHeight, UINT nPlanes, UINT nBitCount, void *lpBits);
//C HBITMAP CreateBitmapIndirect(const BITMAP *pbm);
HBITMAP CreateBitmapIndirect(BITMAP *pbm);
//C HBRUSH CreateBrushIndirect(const LOGBRUSH *plbrush);
HBRUSH CreateBrushIndirect(LOGBRUSH *plbrush);
//C HBITMAP CreateCompatibleBitmap(HDC hdc,int cx,int cy);
HBITMAP CreateCompatibleBitmap(HDC hdc, int cx, int cy);
//C HBITMAP CreateDiscardableBitmap(HDC hdc,int cx,int cy);
HBITMAP CreateDiscardableBitmap(HDC hdc, int cx, int cy);
//C HDC CreateCompatibleDC(HDC hdc);
HDC CreateCompatibleDC(HDC hdc);
//C HDC CreateDCA(LPCSTR pwszDriver,LPCSTR pwszDevice,LPCSTR pszPort,const DEVMODEA *pdm);
HDC CreateDCA(LPCSTR pwszDriver, LPCSTR pwszDevice, LPCSTR pszPort, DEVMODEA *pdm);
//C HDC CreateDCW(LPCWSTR pwszDriver,LPCWSTR pwszDevice,LPCWSTR pszPort,const DEVMODEW *pdm);
HDC CreateDCW(LPCWSTR pwszDriver, LPCWSTR pwszDevice, LPCWSTR pszPort, DEVMODEW *pdm);
//C HBITMAP CreateDIBitmap(HDC hdc,const BITMAPINFOHEADER *pbmih,DWORD flInit,const void *pjBits,const BITMAPINFO *pbmi,UINT iUsage);
HBITMAP CreateDIBitmap(HDC hdc, BITMAPINFOHEADER *pbmih, DWORD flInit, void *pjBits, BITMAPINFO *pbmi, UINT iUsage);
//C HBRUSH CreateDIBPatternBrush(HGLOBAL h,UINT iUsage);
HBRUSH CreateDIBPatternBrush(HGLOBAL h, UINT iUsage);
//C HBRUSH CreateDIBPatternBrushPt(const void *lpPackedDIB,UINT iUsage);
HBRUSH CreateDIBPatternBrushPt(void *lpPackedDIB, UINT iUsage);
//C HRGN CreateEllipticRgn(int x1,int y1,int x2,int y2);
HRGN CreateEllipticRgn(int x1, int y1, int x2, int y2);
//C HRGN CreateEllipticRgnIndirect(const RECT *lprect);
HRGN CreateEllipticRgnIndirect(RECT *lprect);
//C HFONT CreateFontIndirectA(const LOGFONTA *lplf);
HFONT CreateFontIndirectA(LOGFONTA *lplf);
//C HFONT CreateFontIndirectW(const LOGFONTW *lplf);
HFONT CreateFontIndirectW(LOGFONTW *lplf);
//C HFONT CreateFontA(int cHeight,int cWidth,int cEscapement,int cOrientation,int cWeight,DWORD bItalic,DWORD bUnderline,DWORD bStrikeOut,DWORD iCharSet,DWORD iOutPrecision,DWORD iClipPrecision,DWORD iQuality,DWORD iPitchAndFamily,LPCSTR pszFaceName);
HFONT CreateFontA(int cHeight, int cWidth, int cEscapement, int cOrientation, int cWeight, DWORD bItalic, DWORD bUnderline, DWORD bStrikeOut, DWORD iCharSet, DWORD iOutPrecision, DWORD iClipPrecision, DWORD iQuality, DWORD iPitchAndFamily, LPCSTR pszFaceName);
//C HFONT CreateFontW(int cHeight,int cWidth,int cEscapement,int cOrientation,int cWeight,DWORD bItalic,DWORD bUnderline,DWORD bStrikeOut,DWORD iCharSet,DWORD iOutPrecision,DWORD iClipPrecision,DWORD iQuality,DWORD iPitchAndFamily,LPCWSTR pszFaceName);
HFONT CreateFontW(int cHeight, int cWidth, int cEscapement, int cOrientation, int cWeight, DWORD bItalic, DWORD bUnderline, DWORD bStrikeOut, DWORD iCharSet, DWORD iOutPrecision, DWORD iClipPrecision, DWORD iQuality, DWORD iPitchAndFamily, LPCWSTR pszFaceName);
//C HBRUSH CreateHatchBrush(int iHatch,COLORREF color);
HBRUSH CreateHatchBrush(int iHatch, COLORREF color);
//C HDC CreateICA(LPCSTR pszDriver,LPCSTR pszDevice,LPCSTR pszPort,const DEVMODEA *pdm);
HDC CreateICA(LPCSTR pszDriver, LPCSTR pszDevice, LPCSTR pszPort, DEVMODEA *pdm);
//C HDC CreateICW(LPCWSTR pszDriver,LPCWSTR pszDevice,LPCWSTR pszPort,const DEVMODEW *pdm);
HDC CreateICW(LPCWSTR pszDriver, LPCWSTR pszDevice, LPCWSTR pszPort, DEVMODEW *pdm);
//C HDC CreateMetaFileA(LPCSTR pszFile);
HDC CreateMetaFileA(LPCSTR pszFile);
//C HDC CreateMetaFileW(LPCWSTR pszFile);
HDC CreateMetaFileW(LPCWSTR pszFile);
//C HPALETTE CreatePalette(const LOGPALETTE *plpal);
HPALETTE CreatePalette(LOGPALETTE *plpal);
//C HPEN CreatePen(int iStyle,int cWidth,COLORREF color);
HPEN CreatePen(int iStyle, int cWidth, COLORREF color);
//C HPEN CreatePenIndirect(const LOGPEN *plpen);
HPEN CreatePenIndirect(LOGPEN *plpen);
//C HRGN CreatePolyPolygonRgn(const POINT *pptl,const INT *pc,int cPoly,int iMode);
HRGN CreatePolyPolygonRgn(POINT *pptl, INT *pc, int cPoly, int iMode);
//C HBRUSH CreatePatternBrush(HBITMAP hbm);
HBRUSH CreatePatternBrush(HBITMAP hbm);
//C HRGN CreateRectRgn(int x1,int y1,int x2,int y2);
HRGN CreateRectRgn(int x1, int y1, int x2, int y2);
//C HRGN CreateRectRgnIndirect(const RECT *lprect);
HRGN CreateRectRgnIndirect(RECT *lprect);
//C HRGN CreateRoundRectRgn(int x1,int y1,int x2,int y2,int w,int h);
HRGN CreateRoundRectRgn(int x1, int y1, int x2, int y2, int w, int h);
//C WINBOOL CreateScalableFontResourceA(DWORD fdwHidden,LPCSTR lpszFont,LPCSTR lpszFile,LPCSTR lpszPath);
WINBOOL CreateScalableFontResourceA(DWORD fdwHidden, LPCSTR lpszFont, LPCSTR lpszFile, LPCSTR lpszPath);
//C WINBOOL CreateScalableFontResourceW(DWORD fdwHidden,LPCWSTR lpszFont,LPCWSTR lpszFile,LPCWSTR lpszPath);
WINBOOL CreateScalableFontResourceW(DWORD fdwHidden, LPCWSTR lpszFont, LPCWSTR lpszFile, LPCWSTR lpszPath);
//C HBRUSH CreateSolidBrush(COLORREF color);
HBRUSH CreateSolidBrush(COLORREF color);
//C WINBOOL DeleteDC(HDC hdc);
WINBOOL DeleteDC(HDC hdc);
//C WINBOOL DeleteMetaFile(HMETAFILE hmf);
WINBOOL DeleteMetaFile(HMETAFILE hmf);
//C WINBOOL DeleteObject(HGDIOBJ ho);
WINBOOL DeleteObject(HGDIOBJ ho);
//C int DescribePixelFormat(HDC hdc,int iPixelFormat,UINT nBytes,LPPIXELFORMATDESCRIPTOR ppfd);
int DescribePixelFormat(HDC hdc, int iPixelFormat, UINT nBytes, LPPIXELFORMATDESCRIPTOR ppfd);
//C typedef UINT ( *LPFNDEVMODE)(HWND,HMODULE,LPDEVMODE,LPSTR,LPSTR,LPDEVMODE,LPSTR,UINT);
alias UINT function(HWND , HMODULE , LPDEVMODE , LPSTR , LPSTR , LPDEVMODE , LPSTR , UINT )LPFNDEVMODE;
//C typedef DWORD ( *LPFNDEVCAPS)(LPSTR,LPSTR,UINT,LPSTR,LPDEVMODE);
alias DWORD function(LPSTR , LPSTR , UINT , LPSTR , LPDEVMODE )LPFNDEVCAPS;
//C int DeviceCapabilitiesA(LPCSTR pDevice,LPCSTR pPort,WORD fwCapability,LPSTR pOutput,const DEVMODEA *pDevMode);
int DeviceCapabilitiesA(LPCSTR pDevice, LPCSTR pPort, WORD fwCapability, LPSTR pOutput, DEVMODEA *pDevMode);
//C int DeviceCapabilitiesW(LPCWSTR pDevice,LPCWSTR pPort,WORD fwCapability,LPWSTR pOutput,const DEVMODEW *pDevMode);
int DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort, WORD fwCapability, LPWSTR pOutput, DEVMODEW *pDevMode);
//C int DrawEscape(HDC hdc,int iEscape,int cjIn,LPCSTR lpIn);
int DrawEscape(HDC hdc, int iEscape, int cjIn, LPCSTR lpIn);
//C WINBOOL Ellipse(HDC hdc,int left,int top,int right,int bottom);
WINBOOL Ellipse(HDC hdc, int left, int top, int right, int bottom);
//C int EnumFontFamiliesExA(HDC hdc,LPLOGFONTA lpLogfont,FONTENUMPROCA lpProc,LPARAM lParam,DWORD dwFlags);
int EnumFontFamiliesExA(HDC hdc, LPLOGFONTA lpLogfont, FONTENUMPROCA lpProc, LPARAM lParam, DWORD dwFlags);
//C int EnumFontFamiliesExW(HDC hdc,LPLOGFONTW lpLogfont,FONTENUMPROCW lpProc,LPARAM lParam,DWORD dwFlags);
int EnumFontFamiliesExW(HDC hdc, LPLOGFONTW lpLogfont, FONTENUMPROCW lpProc, LPARAM lParam, DWORD dwFlags);
//C int EnumFontFamiliesA(HDC hdc,LPCSTR lpLogfont,FONTENUMPROCA lpProc,LPARAM lParam);
int EnumFontFamiliesA(HDC hdc, LPCSTR lpLogfont, FONTENUMPROCA lpProc, LPARAM lParam);
//C int EnumFontFamiliesW(HDC hdc,LPCWSTR lpLogfont,FONTENUMPROCW lpProc,LPARAM lParam);
int EnumFontFamiliesW(HDC hdc, LPCWSTR lpLogfont, FONTENUMPROCW lpProc, LPARAM lParam);
//C int EnumFontsA(HDC hdc,LPCSTR lpLogfont,FONTENUMPROCA lpProc,LPARAM lParam);
int EnumFontsA(HDC hdc, LPCSTR lpLogfont, FONTENUMPROCA lpProc, LPARAM lParam);
//C int EnumFontsW(HDC hdc,LPCWSTR lpLogfont,FONTENUMPROCW lpProc,LPARAM lParam);
int EnumFontsW(HDC hdc, LPCWSTR lpLogfont, FONTENUMPROCW lpProc, LPARAM lParam);
//C int EnumObjects(HDC hdc,int nType,GOBJENUMPROC lpFunc,LPARAM lParam);
int EnumObjects(HDC hdc, int nType, GOBJENUMPROC lpFunc, LPARAM lParam);
//C WINBOOL EqualRgn(HRGN hrgn1,HRGN hrgn2);
WINBOOL EqualRgn(HRGN hrgn1, HRGN hrgn2);
//C int Escape(HDC hdc,int iEscape,int cjIn,LPCSTR pvIn,LPVOID pvOut);
int Escape(HDC hdc, int iEscape, int cjIn, LPCSTR pvIn, LPVOID pvOut);
//C int ExtEscape(HDC hdc,int iEscape,int cjInput,LPCSTR lpInData,int cjOutput,LPSTR lpOutData);
int ExtEscape(HDC hdc, int iEscape, int cjInput, LPCSTR lpInData, int cjOutput, LPSTR lpOutData);
//C int ExcludeClipRect(HDC hdc,int left,int top,int right,int bottom);
int ExcludeClipRect(HDC hdc, int left, int top, int right, int bottom);
//C HRGN ExtCreateRegion(const XFORM *lpx,DWORD nCount,const RGNDATA *lpData);
HRGN ExtCreateRegion(XFORM *lpx, DWORD nCount, RGNDATA *lpData);
//C WINBOOL ExtFloodFill(HDC hdc,int x,int y,COLORREF color,UINT type);
WINBOOL ExtFloodFill(HDC hdc, int x, int y, COLORREF color, UINT type);
//C WINBOOL FillRgn(HDC hdc,HRGN hrgn,HBRUSH hbr);
WINBOOL FillRgn(HDC hdc, HRGN hrgn, HBRUSH hbr);
//C WINBOOL FloodFill(HDC hdc,int x,int y,COLORREF color);
WINBOOL FloodFill(HDC hdc, int x, int y, COLORREF color);
//C WINBOOL FrameRgn(HDC hdc,HRGN hrgn,HBRUSH hbr,int w,int h);
WINBOOL FrameRgn(HDC hdc, HRGN hrgn, HBRUSH hbr, int w, int h);
//C int GetROP2(HDC hdc);
int GetROP2(HDC hdc);
//C WINBOOL GetAspectRatioFilterEx(HDC hdc,LPSIZE lpsize);
WINBOOL GetAspectRatioFilterEx(HDC hdc, LPSIZE lpsize);
//C COLORREF GetBkColor(HDC hdc);
COLORREF GetBkColor(HDC hdc);
//C COLORREF GetDCBrushColor(HDC hdc);
COLORREF GetDCBrushColor(HDC hdc);
//C COLORREF GetDCPenColor(HDC hdc);
COLORREF GetDCPenColor(HDC hdc);
//C int GetBkMode(HDC hdc);
int GetBkMode(HDC hdc);
//C LONG GetBitmapBits(HBITMAP hbit,LONG cb,LPVOID lpvBits);
LONG GetBitmapBits(HBITMAP hbit, LONG cb, LPVOID lpvBits);
//C WINBOOL GetBitmapDimensionEx(HBITMAP hbit,LPSIZE lpsize);
WINBOOL GetBitmapDimensionEx(HBITMAP hbit, LPSIZE lpsize);
//C UINT GetBoundsRect(HDC hdc,LPRECT lprect,UINT flags);
UINT GetBoundsRect(HDC hdc, LPRECT lprect, UINT flags);
//C WINBOOL GetBrushOrgEx(HDC hdc,LPPOINT lppt);
WINBOOL GetBrushOrgEx(HDC hdc, LPPOINT lppt);
//C WINBOOL GetCharWidthA(HDC hdc,UINT iFirst,UINT iLast,LPINT lpBuffer);
WINBOOL GetCharWidthA(HDC hdc, UINT iFirst, UINT iLast, LPINT lpBuffer);
//C WINBOOL GetCharWidthW(HDC hdc,UINT iFirst,UINT iLast,LPINT lpBuffer);
WINBOOL GetCharWidthW(HDC hdc, UINT iFirst, UINT iLast, LPINT lpBuffer);
//C WINBOOL GetCharWidth32A(HDC hdc,UINT iFirst,UINT iLast,LPINT lpBuffer);
WINBOOL GetCharWidth32A(HDC hdc, UINT iFirst, UINT iLast, LPINT lpBuffer);
//C WINBOOL GetCharWidth32W(HDC hdc,UINT iFirst,UINT iLast,LPINT lpBuffer);
WINBOOL GetCharWidth32W(HDC hdc, UINT iFirst, UINT iLast, LPINT lpBuffer);
//C WINBOOL GetCharWidthFloatA(HDC hdc,UINT iFirst,UINT iLast,PFLOAT lpBuffer);
WINBOOL GetCharWidthFloatA(HDC hdc, UINT iFirst, UINT iLast, PFLOAT lpBuffer);
//C WINBOOL GetCharWidthFloatW(HDC hdc,UINT iFirst,UINT iLast,PFLOAT lpBuffer);
WINBOOL GetCharWidthFloatW(HDC hdc, UINT iFirst, UINT iLast, PFLOAT lpBuffer);
//C WINBOOL GetCharABCWidthsA(HDC hdc,UINT wFirst,UINT wLast,LPABC lpABC);
WINBOOL GetCharABCWidthsA(HDC hdc, UINT wFirst, UINT wLast, LPABC lpABC);
//C WINBOOL GetCharABCWidthsW(HDC hdc,UINT wFirst,UINT wLast,LPABC lpABC);
WINBOOL GetCharABCWidthsW(HDC hdc, UINT wFirst, UINT wLast, LPABC lpABC);
//C WINBOOL GetCharABCWidthsFloatA(HDC hdc,UINT iFirst,UINT iLast,LPABCFLOAT lpABC);
WINBOOL GetCharABCWidthsFloatA(HDC hdc, UINT iFirst, UINT iLast, LPABCFLOAT lpABC);
//C WINBOOL GetCharABCWidthsFloatW(HDC hdc,UINT iFirst,UINT iLast,LPABCFLOAT lpABC);
WINBOOL GetCharABCWidthsFloatW(HDC hdc, UINT iFirst, UINT iLast, LPABCFLOAT lpABC);
//C int GetClipBox(HDC hdc,LPRECT lprect);
int GetClipBox(HDC hdc, LPRECT lprect);
//C int GetClipRgn(HDC hdc,HRGN hrgn);
int GetClipRgn(HDC hdc, HRGN hrgn);
//C int GetMetaRgn(HDC hdc,HRGN hrgn);
int GetMetaRgn(HDC hdc, HRGN hrgn);
//C HGDIOBJ GetCurrentObject(HDC hdc,UINT type);
HGDIOBJ GetCurrentObject(HDC hdc, UINT type);
//C WINBOOL GetCurrentPositionEx(HDC hdc,LPPOINT lppt);
WINBOOL GetCurrentPositionEx(HDC hdc, LPPOINT lppt);
//C int GetDeviceCaps(HDC hdc,int index);
int GetDeviceCaps(HDC hdc, int index);
//C int GetDIBits(HDC hdc,HBITMAP hbm,UINT start,UINT cLines,LPVOID lpvBits,LPBITMAPINFO lpbmi,UINT usage);
int GetDIBits(HDC hdc, HBITMAP hbm, UINT start, UINT cLines, LPVOID lpvBits, LPBITMAPINFO lpbmi, UINT usage);
//C DWORD GetFontData (HDC hdc,DWORD dwTable,DWORD dwOffset,PVOID pvBuffer,DWORD cjBuffer);
DWORD GetFontData(HDC hdc, DWORD dwTable, DWORD dwOffset, PVOID pvBuffer, DWORD cjBuffer);
//C DWORD GetGlyphOutlineA(HDC hdc,UINT uChar,UINT fuFormat,LPGLYPHMETRICS lpgm,DWORD cjBuffer,LPVOID pvBuffer,const MAT2 *lpmat2);
DWORD GetGlyphOutlineA(HDC hdc, UINT uChar, UINT fuFormat, LPGLYPHMETRICS lpgm, DWORD cjBuffer, LPVOID pvBuffer, MAT2 *lpmat2);
//C DWORD GetGlyphOutlineW(HDC hdc,UINT uChar,UINT fuFormat,LPGLYPHMETRICS lpgm,DWORD cjBuffer,LPVOID pvBuffer,const MAT2 *lpmat2);
DWORD GetGlyphOutlineW(HDC hdc, UINT uChar, UINT fuFormat, LPGLYPHMETRICS lpgm, DWORD cjBuffer, LPVOID pvBuffer, MAT2 *lpmat2);
//C int GetGraphicsMode(HDC hdc);
int GetGraphicsMode(HDC hdc);
//C int GetMapMode(HDC hdc);
int GetMapMode(HDC hdc);
//C UINT GetMetaFileBitsEx(HMETAFILE hMF,UINT cbBuffer,LPVOID lpData);
UINT GetMetaFileBitsEx(HMETAFILE hMF, UINT cbBuffer, LPVOID lpData);
//C HMETAFILE GetMetaFileA(LPCSTR lpName);
HMETAFILE GetMetaFileA(LPCSTR lpName);
//C HMETAFILE GetMetaFileW(LPCWSTR lpName);
HMETAFILE GetMetaFileW(LPCWSTR lpName);
//C COLORREF GetNearestColor(HDC hdc,COLORREF color);
COLORREF GetNearestColor(HDC hdc, COLORREF color);
//C UINT GetNearestPaletteIndex(HPALETTE h,COLORREF color);
UINT GetNearestPaletteIndex(HPALETTE h, COLORREF color);
//C DWORD GetObjectType(HGDIOBJ h);
DWORD GetObjectType(HGDIOBJ h);
//C UINT GetOutlineTextMetricsA(HDC hdc,UINT cjCopy,LPOUTLINETEXTMETRICA potm);
UINT GetOutlineTextMetricsA(HDC hdc, UINT cjCopy, LPOUTLINETEXTMETRICA potm);
//C UINT GetOutlineTextMetricsW(HDC hdc,UINT cjCopy,LPOUTLINETEXTMETRICW potm);
UINT GetOutlineTextMetricsW(HDC hdc, UINT cjCopy, LPOUTLINETEXTMETRICW potm);
//C UINT GetPaletteEntries(HPALETTE hpal,UINT iStart,UINT cEntries,LPPALETTEENTRY pPalEntries);
UINT GetPaletteEntries(HPALETTE hpal, UINT iStart, UINT cEntries, LPPALETTEENTRY pPalEntries);
//C COLORREF GetPixel(HDC hdc,int x,int y);
COLORREF GetPixel(HDC hdc, int x, int y);
//C int GetPixelFormat(HDC hdc);
int GetPixelFormat(HDC hdc);
//C int GetPolyFillMode(HDC hdc);
int GetPolyFillMode(HDC hdc);
//C WINBOOL GetRasterizerCaps(LPRASTERIZER_STATUS lpraststat,UINT cjBytes);
WINBOOL GetRasterizerCaps(LPRASTERIZER_STATUS lpraststat, UINT cjBytes);
//C int GetRandomRgn (HDC hdc,HRGN hrgn,INT i);
int GetRandomRgn(HDC hdc, HRGN hrgn, INT i);
//C DWORD GetRegionData(HRGN hrgn,DWORD nCount,LPRGNDATA lpRgnData);
DWORD GetRegionData(HRGN hrgn, DWORD nCount, LPRGNDATA lpRgnData);
//C int GetRgnBox(HRGN hrgn,LPRECT lprc);
int GetRgnBox(HRGN hrgn, LPRECT lprc);
//C HGDIOBJ GetStockObject(int i);
HGDIOBJ GetStockObject(int i);
//C int GetStretchBltMode(HDC hdc);
int GetStretchBltMode(HDC hdc);
//C UINT GetSystemPaletteEntries(HDC hdc,UINT iStart,UINT cEntries,LPPALETTEENTRY pPalEntries);
UINT GetSystemPaletteEntries(HDC hdc, UINT iStart, UINT cEntries, LPPALETTEENTRY pPalEntries);
//C UINT GetSystemPaletteUse(HDC hdc);
UINT GetSystemPaletteUse(HDC hdc);
//C int GetTextCharacterExtra(HDC hdc);
int GetTextCharacterExtra(HDC hdc);
//C UINT GetTextAlign(HDC hdc);
UINT GetTextAlign(HDC hdc);
//C COLORREF GetTextColor(HDC hdc);
COLORREF GetTextColor(HDC hdc);
//C WINBOOL GetTextExtentPointA(HDC hdc,LPCSTR lpString,int c,LPSIZE lpsz);
WINBOOL GetTextExtentPointA(HDC hdc, LPCSTR lpString, int c, LPSIZE lpsz);
//C WINBOOL GetTextExtentPointW(HDC hdc,LPCWSTR lpString,int c,LPSIZE lpsz);
WINBOOL GetTextExtentPointW(HDC hdc, LPCWSTR lpString, int c, LPSIZE lpsz);
//C WINBOOL GetTextExtentPoint32A(HDC hdc,LPCSTR lpString,int c,LPSIZE psizl);
WINBOOL GetTextExtentPoint32A(HDC hdc, LPCSTR lpString, int c, LPSIZE psizl);
//C WINBOOL GetTextExtentPoint32W(HDC hdc,LPCWSTR lpString,int c,LPSIZE psizl);
WINBOOL GetTextExtentPoint32W(HDC hdc, LPCWSTR lpString, int c, LPSIZE psizl);
//C WINBOOL GetTextExtentExPointA(HDC hdc,LPCSTR lpszString,int cchString,int nMaxExtent,LPINT lpnFit,LPINT lpnDx,LPSIZE lpSize);
WINBOOL GetTextExtentExPointA(HDC hdc, LPCSTR lpszString, int cchString, int nMaxExtent, LPINT lpnFit, LPINT lpnDx, LPSIZE lpSize);
//C WINBOOL GetTextExtentExPointW(HDC hdc,LPCWSTR lpszString,int cchString,int nMaxExtent,LPINT lpnFit,LPINT lpnDx,LPSIZE lpSize);
WINBOOL GetTextExtentExPointW(HDC hdc, LPCWSTR lpszString, int cchString, int nMaxExtent, LPINT lpnFit, LPINT lpnDx, LPSIZE lpSize);
//C int GetTextCharset(HDC hdc);
int GetTextCharset(HDC hdc);
//C int GetTextCharsetInfo(HDC hdc,LPFONTSIGNATURE lpSig,DWORD dwFlags);
int GetTextCharsetInfo(HDC hdc, LPFONTSIGNATURE lpSig, DWORD dwFlags);
//C WINBOOL TranslateCharsetInfo(DWORD *lpSrc,LPCHARSETINFO lpCs,DWORD dwFlags);
WINBOOL TranslateCharsetInfo(DWORD *lpSrc, LPCHARSETINFO lpCs, DWORD dwFlags);
//C DWORD GetFontLanguageInfo(HDC hdc);
DWORD GetFontLanguageInfo(HDC hdc);
//C DWORD GetCharacterPlacementA(HDC hdc,LPCSTR lpString,int nCount,int nMexExtent,LPGCP_RESULTSA lpResults,DWORD dwFlags);
DWORD GetCharacterPlacementA(HDC hdc, LPCSTR lpString, int nCount, int nMexExtent, LPGCP_RESULTSA lpResults, DWORD dwFlags);
//C DWORD GetCharacterPlacementW(HDC hdc,LPCWSTR lpString,int nCount,int nMexExtent,LPGCP_RESULTSW lpResults,DWORD dwFlags);
DWORD GetCharacterPlacementW(HDC hdc, LPCWSTR lpString, int nCount, int nMexExtent, LPGCP_RESULTSW lpResults, DWORD dwFlags);
//C typedef struct tagWCRANGE {
//C WCHAR wcLow;
//C USHORT cGlyphs;
//C } WCRANGE,*PWCRANGE,*LPWCRANGE;
struct tagWCRANGE
{
WCHAR wcLow;
USHORT cGlyphs;
}
alias tagWCRANGE WCRANGE;
alias tagWCRANGE *PWCRANGE;
alias tagWCRANGE *LPWCRANGE;
//C typedef struct tagGLYPHSET {
//C DWORD cbThis;
//C DWORD flAccel;
//C DWORD cGlyphsSupported;
//C DWORD cRanges;
//C WCRANGE ranges[1];
//C } GLYPHSET,*PGLYPHSET,*LPGLYPHSET;
struct tagGLYPHSET
{
DWORD cbThis;
DWORD flAccel;
DWORD cGlyphsSupported;
DWORD cRanges;
WCRANGE [1]ranges;
}
alias tagGLYPHSET GLYPHSET;
alias tagGLYPHSET *PGLYPHSET;
alias tagGLYPHSET *LPGLYPHSET;
//C DWORD GetFontUnicodeRanges(HDC hdc,LPGLYPHSET lpgs);
DWORD GetFontUnicodeRanges(HDC hdc, LPGLYPHSET lpgs);
//C DWORD GetGlyphIndicesA(HDC hdc,LPCSTR lpstr,int c,LPWORD pgi,DWORD fl);
DWORD GetGlyphIndicesA(HDC hdc, LPCSTR lpstr, int c, LPWORD pgi, DWORD fl);
//C DWORD GetGlyphIndicesW(HDC hdc,LPCWSTR lpstr,int c,LPWORD pgi,DWORD fl);
DWORD GetGlyphIndicesW(HDC hdc, LPCWSTR lpstr, int c, LPWORD pgi, DWORD fl);
//C WINBOOL GetTextExtentPointI(HDC hdc,LPWORD pgiIn,int cgi,LPSIZE psize);
WINBOOL GetTextExtentPointI(HDC hdc, LPWORD pgiIn, int cgi, LPSIZE psize);
//C WINBOOL GetTextExtentExPointI (HDC hdc,LPWORD lpwszString,int cwchString,int nMaxExtent,LPINT lpnFit,LPINT lpnDx,LPSIZE lpSize);
WINBOOL GetTextExtentExPointI(HDC hdc, LPWORD lpwszString, int cwchString, int nMaxExtent, LPINT lpnFit, LPINT lpnDx, LPSIZE lpSize);
//C WINBOOL GetCharWidthI(HDC hdc,UINT giFirst,UINT cgi,LPWORD pgi,LPINT piWidths);
WINBOOL GetCharWidthI(HDC hdc, UINT giFirst, UINT cgi, LPWORD pgi, LPINT piWidths);
//C WINBOOL GetCharABCWidthsI(HDC hdc,UINT giFirst,UINT cgi,LPWORD pgi,LPABC pabc);
WINBOOL GetCharABCWidthsI(HDC hdc, UINT giFirst, UINT cgi, LPWORD pgi, LPABC pabc);
//C typedef struct tagDESIGNVECTOR {
//C DWORD dvReserved;
//C DWORD dvNumAxes;
//C LONG dvValues[16];
//C } DESIGNVECTOR,*PDESIGNVECTOR,*LPDESIGNVECTOR;
struct tagDESIGNVECTOR
{
DWORD dvReserved;
DWORD dvNumAxes;
LONG [16]dvValues;
}
alias tagDESIGNVECTOR DESIGNVECTOR;
alias tagDESIGNVECTOR *PDESIGNVECTOR;
alias tagDESIGNVECTOR *LPDESIGNVECTOR;
//C int AddFontResourceExA(LPCSTR name,DWORD fl,PVOID res);
int AddFontResourceExA(LPCSTR name, DWORD fl, PVOID res);
//C int AddFontResourceExW(LPCWSTR name,DWORD fl,PVOID res);
int AddFontResourceExW(LPCWSTR name, DWORD fl, PVOID res);
//C WINBOOL RemoveFontResourceExA(LPCSTR name,DWORD fl,PVOID pdv);
WINBOOL RemoveFontResourceExA(LPCSTR name, DWORD fl, PVOID pdv);
//C WINBOOL RemoveFontResourceExW(LPCWSTR name,DWORD fl,PVOID pdv);
WINBOOL RemoveFontResourceExW(LPCWSTR name, DWORD fl, PVOID pdv);
//C HANDLE AddFontMemResourceEx(PVOID pFileView,DWORD cjSize,PVOID pvResrved,DWORD *pNumFonts);
HANDLE AddFontMemResourceEx(PVOID pFileView, DWORD cjSize, PVOID pvResrved, DWORD *pNumFonts);
//C WINBOOL RemoveFontMemResourceEx(HANDLE h);
WINBOOL RemoveFontMemResourceEx(HANDLE h);
//C typedef struct tagAXISINFOA {
//C LONG axMinValue;
//C LONG axMaxValue;
//C BYTE axAxisName[16];
//C } AXISINFOA,*PAXISINFOA,*LPAXISINFOA;
struct tagAXISINFOA
{
LONG axMinValue;
LONG axMaxValue;
BYTE [16]axAxisName;
}
alias tagAXISINFOA AXISINFOA;
alias tagAXISINFOA *PAXISINFOA;
alias tagAXISINFOA *LPAXISINFOA;
//C typedef struct tagAXISINFOW {
//C LONG axMinValue;
//C LONG axMaxValue;
//C WCHAR axAxisName[16];
//C } AXISINFOW,*PAXISINFOW,*LPAXISINFOW;
struct tagAXISINFOW
{
LONG axMinValue;
LONG axMaxValue;
WCHAR [16]axAxisName;
}
alias tagAXISINFOW AXISINFOW;
alias tagAXISINFOW *PAXISINFOW;
alias tagAXISINFOW *LPAXISINFOW;
//C typedef AXISINFOA AXISINFO;
alias AXISINFOA AXISINFO;
//C typedef PAXISINFOA PAXISINFO;
alias PAXISINFOA PAXISINFO;
//C typedef LPAXISINFOA LPAXISINFO;
alias LPAXISINFOA LPAXISINFO;
//C typedef struct tagAXESLISTA {
//C DWORD axlReserved;
//C DWORD axlNumAxes;
//C AXISINFOA axlAxisInfo[16];
//C } AXESLISTA,*PAXESLISTA,*LPAXESLISTA;
struct tagAXESLISTA
{
DWORD axlReserved;
DWORD axlNumAxes;
AXISINFOA [16]axlAxisInfo;
}
alias tagAXESLISTA AXESLISTA;
alias tagAXESLISTA *PAXESLISTA;
alias tagAXESLISTA *LPAXESLISTA;
//C typedef struct tagAXESLISTW {
//C DWORD axlReserved;
//C DWORD axlNumAxes;
//C AXISINFOW axlAxisInfo[16];
//C } AXESLISTW,*PAXESLISTW,*LPAXESLISTW;
struct tagAXESLISTW
{
DWORD axlReserved;
DWORD axlNumAxes;
AXISINFOW [16]axlAxisInfo;
}
alias tagAXESLISTW AXESLISTW;
alias tagAXESLISTW *PAXESLISTW;
alias tagAXESLISTW *LPAXESLISTW;
//C typedef AXESLISTA AXESLIST;
alias AXESLISTA AXESLIST;
//C typedef PAXESLISTA PAXESLIST;
alias PAXESLISTA PAXESLIST;
//C typedef LPAXESLISTA LPAXESLIST;
alias LPAXESLISTA LPAXESLIST;
//C typedef struct tagENUMLOGFONTEXDVA {
//C ENUMLOGFONTEXA elfEnumLogfontEx;
//C DESIGNVECTOR elfDesignVector;
//C } ENUMLOGFONTEXDVA,*PENUMLOGFONTEXDVA,*LPENUMLOGFONTEXDVA;
struct tagENUMLOGFONTEXDVA
{
ENUMLOGFONTEXA elfEnumLogfontEx;
DESIGNVECTOR elfDesignVector;
}
alias tagENUMLOGFONTEXDVA ENUMLOGFONTEXDVA;
alias tagENUMLOGFONTEXDVA *PENUMLOGFONTEXDVA;
alias tagENUMLOGFONTEXDVA *LPENUMLOGFONTEXDVA;
//C typedef struct tagENUMLOGFONTEXDVW {
//C ENUMLOGFONTEXW elfEnumLogfontEx;
//C DESIGNVECTOR elfDesignVector;
//C } ENUMLOGFONTEXDVW,*PENUMLOGFONTEXDVW,*LPENUMLOGFONTEXDVW;
struct tagENUMLOGFONTEXDVW
{
ENUMLOGFONTEXW elfEnumLogfontEx;
DESIGNVECTOR elfDesignVector;
}
alias tagENUMLOGFONTEXDVW ENUMLOGFONTEXDVW;
alias tagENUMLOGFONTEXDVW *PENUMLOGFONTEXDVW;
alias tagENUMLOGFONTEXDVW *LPENUMLOGFONTEXDVW;
//C typedef ENUMLOGFONTEXDVA ENUMLOGFONTEXDV;
alias ENUMLOGFONTEXDVA ENUMLOGFONTEXDV;
//C typedef PENUMLOGFONTEXDVA PENUMLOGFONTEXDV;
alias PENUMLOGFONTEXDVA PENUMLOGFONTEXDV;
//C typedef LPENUMLOGFONTEXDVA LPENUMLOGFONTEXDV;
alias LPENUMLOGFONTEXDVA LPENUMLOGFONTEXDV;
//C HFONT CreateFontIndirectExA(const ENUMLOGFONTEXDVA *);
HFONT CreateFontIndirectExA(ENUMLOGFONTEXDVA *);
//C HFONT CreateFontIndirectExW(const ENUMLOGFONTEXDVW *);
HFONT CreateFontIndirectExW(ENUMLOGFONTEXDVW *);
//C typedef struct tagENUMTEXTMETRICA {
//C NEWTEXTMETRICEXA etmNewTextMetricEx;
//C AXESLISTA etmAxesList;
//C } ENUMTEXTMETRICA,*PENUMTEXTMETRICA,*LPENUMTEXTMETRICA;
struct tagENUMTEXTMETRICA
{
NEWTEXTMETRICEXA etmNewTextMetricEx;
AXESLISTA etmAxesList;
}
alias tagENUMTEXTMETRICA ENUMTEXTMETRICA;
alias tagENUMTEXTMETRICA *PENUMTEXTMETRICA;
alias tagENUMTEXTMETRICA *LPENUMTEXTMETRICA;
//C typedef struct tagENUMTEXTMETRICW
//C {
//C NEWTEXTMETRICEXW etmNewTextMetricEx;
//C AXESLISTW etmAxesList;
//C } ENUMTEXTMETRICW,*PENUMTEXTMETRICW,*LPENUMTEXTMETRICW;
struct tagENUMTEXTMETRICW
{
NEWTEXTMETRICEXW etmNewTextMetricEx;
AXESLISTW etmAxesList;
}
alias tagENUMTEXTMETRICW ENUMTEXTMETRICW;
alias tagENUMTEXTMETRICW *PENUMTEXTMETRICW;
alias tagENUMTEXTMETRICW *LPENUMTEXTMETRICW;
//C typedef ENUMTEXTMETRICA ENUMTEXTMETRIC;
alias ENUMTEXTMETRICA ENUMTEXTMETRIC;
//C typedef PENUMTEXTMETRICA PENUMTEXTMETRIC;
alias PENUMTEXTMETRICA PENUMTEXTMETRIC;
//C typedef LPENUMTEXTMETRICA LPENUMTEXTMETRIC;
alias LPENUMTEXTMETRICA LPENUMTEXTMETRIC;
//C WINBOOL GetViewportExtEx(HDC hdc,LPSIZE lpsize);
WINBOOL GetViewportExtEx(HDC hdc, LPSIZE lpsize);
//C WINBOOL GetViewportOrgEx(HDC hdc,LPPOINT lppoint);
WINBOOL GetViewportOrgEx(HDC hdc, LPPOINT lppoint);
//C WINBOOL GetWindowExtEx(HDC hdc,LPSIZE lpsize);
WINBOOL GetWindowExtEx(HDC hdc, LPSIZE lpsize);
//C WINBOOL GetWindowOrgEx(HDC hdc,LPPOINT lppoint);
WINBOOL GetWindowOrgEx(HDC hdc, LPPOINT lppoint);
//C int IntersectClipRect(HDC hdc,int left,int top,int right,int bottom);
int IntersectClipRect(HDC hdc, int left, int top, int right, int bottom);
//C WINBOOL InvertRgn(HDC hdc,HRGN hrgn);
WINBOOL InvertRgn(HDC hdc, HRGN hrgn);
//C WINBOOL LineDDA(int xStart,int yStart,int xEnd,int yEnd,LINEDDAPROC lpProc,LPARAM data);
WINBOOL LineDDA(int xStart, int yStart, int xEnd, int yEnd, LINEDDAPROC lpProc, LPARAM data);
//C WINBOOL LineTo(HDC hdc,int x,int y);
WINBOOL LineTo(HDC hdc, int x, int y);
//C WINBOOL MaskBlt(HDC hdcDest,int xDest,int yDest,int width,int height,HDC hdcSrc,int xSrc,int ySrc,HBITMAP hbmMask,int xMask,int yMask,DWORD rop);
WINBOOL MaskBlt(HDC hdcDest, int xDest, int yDest, int width, int height, HDC hdcSrc, int xSrc, int ySrc, HBITMAP hbmMask, int xMask, int yMask, DWORD rop);
//C WINBOOL PlgBlt(HDC hdcDest,const POINT *lpPoint,HDC hdcSrc,int xSrc,int ySrc,int width,int height,HBITMAP hbmMask,int xMask,int yMask);
WINBOOL PlgBlt(HDC hdcDest, POINT *lpPoint, HDC hdcSrc, int xSrc, int ySrc, int width, int height, HBITMAP hbmMask, int xMask, int yMask);
//C int OffsetClipRgn(HDC hdc,int x,int y);
int OffsetClipRgn(HDC hdc, int x, int y);
//C int OffsetRgn(HRGN hrgn,int x,int y);
int OffsetRgn(HRGN hrgn, int x, int y);
//C WINBOOL PatBlt(HDC hdc,int x,int y,int w,int h,DWORD rop);
WINBOOL PatBlt(HDC hdc, int x, int y, int w, int h, DWORD rop);
//C WINBOOL Pie(HDC hdc,int left,int top,int right,int bottom,int xr1,int yr1,int xr2,int yr2);
WINBOOL Pie(HDC hdc, int left, int top, int right, int bottom, int xr1, int yr1, int xr2, int yr2);
//C WINBOOL PlayMetaFile(HDC hdc,HMETAFILE hmf);
WINBOOL PlayMetaFile(HDC hdc, HMETAFILE hmf);
//C WINBOOL PaintRgn(HDC hdc,HRGN hrgn);
WINBOOL PaintRgn(HDC hdc, HRGN hrgn);
//C WINBOOL PolyPolygon(HDC hdc,const POINT *apt,const INT *asz,int csz);
WINBOOL PolyPolygon(HDC hdc, POINT *apt, INT *asz, int csz);
//C WINBOOL PtInRegion(HRGN hrgn,int x,int y);
WINBOOL PtInRegion(HRGN hrgn, int x, int y);
//C WINBOOL PtVisible(HDC hdc,int x,int y);
WINBOOL PtVisible(HDC hdc, int x, int y);
//C WINBOOL RectInRegion(HRGN hrgn,const RECT *lprect);
WINBOOL RectInRegion(HRGN hrgn, RECT *lprect);
//C WINBOOL RectVisible(HDC hdc,const RECT *lprect);
WINBOOL RectVisible(HDC hdc, RECT *lprect);
//C WINBOOL Rectangle(HDC hdc,int left,int top,int right,int bottom);
WINBOOL Rectangle(HDC hdc, int left, int top, int right, int bottom);
//C WINBOOL RestoreDC(HDC hdc,int nSavedDC);
WINBOOL RestoreDC(HDC hdc, int nSavedDC);
//C HDC ResetDCA(HDC hdc,const DEVMODEA *lpdm);
HDC ResetDCA(HDC hdc, DEVMODEA *lpdm);
//C HDC ResetDCW(HDC hdc,const DEVMODEW *lpdm);
HDC ResetDCW(HDC hdc, DEVMODEW *lpdm);
//C UINT RealizePalette(HDC hdc);
UINT RealizePalette(HDC hdc);
//C WINBOOL RemoveFontResourceA(LPCSTR lpFileName);
WINBOOL RemoveFontResourceA(LPCSTR lpFileName);
//C WINBOOL RemoveFontResourceW(LPCWSTR lpFileName);
WINBOOL RemoveFontResourceW(LPCWSTR lpFileName);
//C WINBOOL RoundRect(HDC hdc,int left,int top,int right,int bottom,int width,int height);
WINBOOL RoundRect(HDC hdc, int left, int top, int right, int bottom, int width, int height);
//C WINBOOL ResizePalette(HPALETTE hpal,UINT n);
WINBOOL ResizePalette(HPALETTE hpal, UINT n);
//C int SaveDC(HDC hdc);
int SaveDC(HDC hdc);
//C int SelectClipRgn(HDC hdc,HRGN hrgn);
int SelectClipRgn(HDC hdc, HRGN hrgn);
//C int ExtSelectClipRgn(HDC hdc,HRGN hrgn,int mode);
int ExtSelectClipRgn(HDC hdc, HRGN hrgn, int mode);
//C int SetMetaRgn(HDC hdc);
int SetMetaRgn(HDC hdc);
//C HGDIOBJ SelectObject(HDC hdc,HGDIOBJ h);
HGDIOBJ SelectObject(HDC hdc, HGDIOBJ h);
//C HPALETTE SelectPalette(HDC hdc,HPALETTE hPal,WINBOOL bForceBkgd);
HPALETTE SelectPalette(HDC hdc, HPALETTE hPal, WINBOOL bForceBkgd);
//C COLORREF SetBkColor(HDC hdc,COLORREF color);
COLORREF SetBkColor(HDC hdc, COLORREF color);
//C COLORREF SetDCBrushColor(HDC hdc,COLORREF color);
COLORREF SetDCBrushColor(HDC hdc, COLORREF color);
//C COLORREF SetDCPenColor(HDC hdc,COLORREF color);
COLORREF SetDCPenColor(HDC hdc, COLORREF color);
//C int SetBkMode(HDC hdc,int mode);
int SetBkMode(HDC hdc, int mode);
//C LONG SetBitmapBits(HBITMAP hbm,DWORD cb,const void *pvBits);
LONG SetBitmapBits(HBITMAP hbm, DWORD cb, void *pvBits);
//C UINT SetBoundsRect(HDC hdc,const RECT *lprect,UINT flags);
UINT SetBoundsRect(HDC hdc, RECT *lprect, UINT flags);
//C int SetDIBits(HDC hdc,HBITMAP hbm,UINT start,UINT cLines,const void *lpBits,const BITMAPINFO *lpbmi,UINT ColorUse);
int SetDIBits(HDC hdc, HBITMAP hbm, UINT start, UINT cLines, void *lpBits, BITMAPINFO *lpbmi, UINT ColorUse);
//C int SetDIBitsToDevice(HDC hdc,int xDest,int yDest,DWORD w,DWORD h,int xSrc,int ySrc,UINT StartScan,UINT cLines,const void *lpvBits,const BITMAPINFO *lpbmi,UINT ColorUse);
int SetDIBitsToDevice(HDC hdc, int xDest, int yDest, DWORD w, DWORD h, int xSrc, int ySrc, UINT StartScan, UINT cLines, void *lpvBits, BITMAPINFO *lpbmi, UINT ColorUse);
//C DWORD SetMapperFlags(HDC hdc,DWORD flags);
DWORD SetMapperFlags(HDC hdc, DWORD flags);
//C int SetGraphicsMode(HDC hdc,int iMode);
int SetGraphicsMode(HDC hdc, int iMode);
//C int SetMapMode(HDC hdc,int iMode);
int SetMapMode(HDC hdc, int iMode);
//C DWORD SetLayout(HDC hdc,DWORD l);
DWORD SetLayout(HDC hdc, DWORD l);
//C DWORD GetLayout(HDC hdc);
DWORD GetLayout(HDC hdc);
//C HMETAFILE SetMetaFileBitsEx(UINT cbBuffer,const BYTE *lpData);
HMETAFILE SetMetaFileBitsEx(UINT cbBuffer, BYTE *lpData);
//C UINT SetPaletteEntries(HPALETTE hpal,UINT iStart,UINT cEntries,const PALETTEENTRY *pPalEntries);
UINT SetPaletteEntries(HPALETTE hpal, UINT iStart, UINT cEntries, PALETTEENTRY *pPalEntries);
//C COLORREF SetPixel(HDC hdc,int x,int y,COLORREF color);
COLORREF SetPixel(HDC hdc, int x, int y, COLORREF color);
//C WINBOOL SetPixelV(HDC hdc,int x,int y,COLORREF color);
WINBOOL SetPixelV(HDC hdc, int x, int y, COLORREF color);
//C WINBOOL SetPixelFormat(HDC hdc,int format,const PIXELFORMATDESCRIPTOR *ppfd);
WINBOOL SetPixelFormat(HDC hdc, int format, PIXELFORMATDESCRIPTOR *ppfd);
//C int SetPolyFillMode(HDC hdc,int mode);
int SetPolyFillMode(HDC hdc, int mode);
//C WINBOOL StretchBlt(HDC hdcDest,int xDest,int yDest,int wDest,int hDest,HDC hdcSrc,int xSrc,int ySrc,int wSrc,int hSrc,DWORD rop);
WINBOOL StretchBlt(HDC hdcDest, int xDest, int yDest, int wDest, int hDest, HDC hdcSrc, int xSrc, int ySrc, int wSrc, int hSrc, DWORD rop);
//C WINBOOL SetRectRgn(HRGN hrgn,int left,int top,int right,int bottom);
WINBOOL SetRectRgn(HRGN hrgn, int left, int top, int right, int bottom);
//C int StretchDIBits(HDC hdc,int xDest,int yDest,int DestWidth,int DestHeight,int xSrc,int ySrc,int SrcWidth,int SrcHeight,const void *lpBits,const BITMAPINFO *lpbmi,UINT iUsage,DWORD rop);
int StretchDIBits(HDC hdc, int xDest, int yDest, int DestWidth, int DestHeight, int xSrc, int ySrc, int SrcWidth, int SrcHeight, void *lpBits, BITMAPINFO *lpbmi, UINT iUsage, DWORD rop);
//C int SetROP2(HDC hdc,int rop2);
int SetROP2(HDC hdc, int rop2);
//C int SetStretchBltMode(HDC hdc,int mode);
int SetStretchBltMode(HDC hdc, int mode);
//C UINT SetSystemPaletteUse(HDC hdc,UINT use);
UINT SetSystemPaletteUse(HDC hdc, UINT use);
//C int SetTextCharacterExtra(HDC hdc,int extra);
int SetTextCharacterExtra(HDC hdc, int extra);
//C COLORREF SetTextColor(HDC hdc,COLORREF color);
COLORREF SetTextColor(HDC hdc, COLORREF color);
//C UINT SetTextAlign(HDC hdc,UINT align_);
UINT SetTextAlign(HDC hdc, UINT align_);
//C WINBOOL SetTextJustification(HDC hdc,int extra,int count);
WINBOOL SetTextJustification(HDC hdc, int extra, int count);
//C WINBOOL UpdateColors(HDC hdc);
WINBOOL UpdateColors(HDC hdc);
//C typedef USHORT COLOR16;
alias USHORT COLOR16;
//C typedef struct _TRIVERTEX {
//C LONG x;
//C LONG y;
//C COLOR16 Red;
//C COLOR16 Green;
//C COLOR16 Blue;
//C COLOR16 Alpha;
//C } TRIVERTEX,*PTRIVERTEX,*LPTRIVERTEX;
struct _TRIVERTEX
{
LONG x;
LONG y;
COLOR16 Red;
COLOR16 Green;
COLOR16 Blue;
COLOR16 Alpha;
}
alias _TRIVERTEX TRIVERTEX;
alias _TRIVERTEX *PTRIVERTEX;
alias _TRIVERTEX *LPTRIVERTEX;
//C typedef struct _GRADIENT_TRIANGLE {
//C ULONG Vertex1;
//C ULONG Vertex2;
//C ULONG Vertex3;
//C } GRADIENT_TRIANGLE,*PGRADIENT_TRIANGLE,*LPGRADIENT_TRIANGLE;
struct _GRADIENT_TRIANGLE
{
ULONG Vertex1;
ULONG Vertex2;
ULONG Vertex3;
}
alias _GRADIENT_TRIANGLE GRADIENT_TRIANGLE;
alias _GRADIENT_TRIANGLE *PGRADIENT_TRIANGLE;
alias _GRADIENT_TRIANGLE *LPGRADIENT_TRIANGLE;
//C typedef struct _GRADIENT_RECT {
//C ULONG UpperLeft;
//C ULONG LowerRight;
//C } GRADIENT_RECT,*PGRADIENT_RECT,*LPGRADIENT_RECT;
struct _GRADIENT_RECT
{
ULONG UpperLeft;
ULONG LowerRight;
}
alias _GRADIENT_RECT GRADIENT_RECT;
alias _GRADIENT_RECT *PGRADIENT_RECT;
alias _GRADIENT_RECT *LPGRADIENT_RECT;
//C typedef struct _BLENDFUNCTION {
//C BYTE BlendOp;
//C BYTE BlendFlags;
//C BYTE SourceConstantAlpha;
//C BYTE AlphaFormat;
//C } BLENDFUNCTION,*PBLENDFUNCTION;
struct _BLENDFUNCTION
{
BYTE BlendOp;
BYTE BlendFlags;
BYTE SourceConstantAlpha;
BYTE AlphaFormat;
}
alias _BLENDFUNCTION BLENDFUNCTION;
alias _BLENDFUNCTION *PBLENDFUNCTION;
//C WINBOOL AlphaBlend(HDC hdcDest,int xoriginDest,int yoriginDest,int wDest,int hDest,HDC hdcSrc,int xoriginSrc,int yoriginSrc,int wSrc,int hSrc,BLENDFUNCTION ftn);
WINBOOL AlphaBlend(HDC hdcDest, int xoriginDest, int yoriginDest, int wDest, int hDest, HDC hdcSrc, int xoriginSrc, int yoriginSrc, int wSrc, int hSrc, BLENDFUNCTION ftn);
//C WINBOOL TransparentBlt(HDC hdcDest,int xoriginDest,int yoriginDest,int wDest,int hDest,HDC hdcSrc,int xoriginSrc,int yoriginSrc,int wSrc,int hSrc,UINT crTransparent);
WINBOOL TransparentBlt(HDC hdcDest, int xoriginDest, int yoriginDest, int wDest, int hDest, HDC hdcSrc, int xoriginSrc, int yoriginSrc, int wSrc, int hSrc, UINT crTransparent);
//C WINBOOL GradientFill(HDC hdc,PTRIVERTEX pVertex,ULONG nVertex,PVOID pMesh,ULONG nMesh,ULONG ulMode);
WINBOOL GradientFill(HDC hdc, PTRIVERTEX pVertex, ULONG nVertex, PVOID pMesh, ULONG nMesh, ULONG ulMode);
//C WINBOOL PlayMetaFileRecord(HDC hdc,LPHANDLETABLE lpHandleTable,LPMETARECORD lpMR,UINT noObjs);
WINBOOL PlayMetaFileRecord(HDC hdc, LPHANDLETABLE lpHandleTable, LPMETARECORD lpMR, UINT noObjs);
//C typedef int ( *MFENUMPROC)(HDC hdc,HANDLETABLE *lpht,METARECORD *lpMR,int nObj,LPARAM lParam);
alias int function(HDC hdc, HANDLETABLE *lpht, METARECORD *lpMR, int nObj, LPARAM lParam)MFENUMPROC;
//C WINBOOL EnumMetaFile(HDC hdc,HMETAFILE hmf,MFENUMPROC lpProc,LPARAM lParam);
WINBOOL EnumMetaFile(HDC hdc, HMETAFILE hmf, MFENUMPROC lpProc, LPARAM lParam);
//C typedef int ( *ENHMFENUMPROC)(HDC hdc,HANDLETABLE *lpht,const ENHMETARECORD *lpmr,int hHandles,LPARAM data);
alias int function(HDC hdc, HANDLETABLE *lpht, ENHMETARECORD *lpmr, int hHandles, LPARAM data)ENHMFENUMPROC;
//C HENHMETAFILE CloseEnhMetaFile(HDC hdc);
HENHMETAFILE CloseEnhMetaFile(HDC hdc);
//C HENHMETAFILE CopyEnhMetaFileA(HENHMETAFILE hEnh,LPCSTR lpFileName);
HENHMETAFILE CopyEnhMetaFileA(HENHMETAFILE hEnh, LPCSTR lpFileName);
//C HENHMETAFILE CopyEnhMetaFileW(HENHMETAFILE hEnh,LPCWSTR lpFileName);
HENHMETAFILE CopyEnhMetaFileW(HENHMETAFILE hEnh, LPCWSTR lpFileName);
//C HDC CreateEnhMetaFileA(HDC hdc,LPCSTR lpFilename,const RECT *lprc,LPCSTR lpDesc);
HDC CreateEnhMetaFileA(HDC hdc, LPCSTR lpFilename, RECT *lprc, LPCSTR lpDesc);
//C HDC CreateEnhMetaFileW(HDC hdc,LPCWSTR lpFilename,const RECT *lprc,LPCWSTR lpDesc);
HDC CreateEnhMetaFileW(HDC hdc, LPCWSTR lpFilename, RECT *lprc, LPCWSTR lpDesc);
//C WINBOOL DeleteEnhMetaFile(HENHMETAFILE hmf);
WINBOOL DeleteEnhMetaFile(HENHMETAFILE hmf);
//C WINBOOL EnumEnhMetaFile(HDC hdc,HENHMETAFILE hmf,ENHMFENUMPROC lpProc,LPVOID lpParam,const RECT *lpRect);
WINBOOL EnumEnhMetaFile(HDC hdc, HENHMETAFILE hmf, ENHMFENUMPROC lpProc, LPVOID lpParam, RECT *lpRect);
//C HENHMETAFILE GetEnhMetaFileA(LPCSTR lpName);
HENHMETAFILE GetEnhMetaFileA(LPCSTR lpName);
//C HENHMETAFILE GetEnhMetaFileW(LPCWSTR lpName);
HENHMETAFILE GetEnhMetaFileW(LPCWSTR lpName);
//C UINT GetEnhMetaFileBits(HENHMETAFILE hEMF,UINT nSize,LPBYTE lpData);
UINT GetEnhMetaFileBits(HENHMETAFILE hEMF, UINT nSize, LPBYTE lpData);
//C UINT GetEnhMetaFileDescriptionA(HENHMETAFILE hemf,UINT cchBuffer,LPSTR lpDescription);
UINT GetEnhMetaFileDescriptionA(HENHMETAFILE hemf, UINT cchBuffer, LPSTR lpDescription);
//C UINT GetEnhMetaFileDescriptionW(HENHMETAFILE hemf,UINT cchBuffer,LPWSTR lpDescription);
UINT GetEnhMetaFileDescriptionW(HENHMETAFILE hemf, UINT cchBuffer, LPWSTR lpDescription);
//C UINT GetEnhMetaFileHeader(HENHMETAFILE hemf,UINT nSize,LPENHMETAHEADER lpEnhMetaHeader);
UINT GetEnhMetaFileHeader(HENHMETAFILE hemf, UINT nSize, LPENHMETAHEADER lpEnhMetaHeader);
//C UINT GetEnhMetaFilePaletteEntries(HENHMETAFILE hemf,UINT nNumEntries,LPPALETTEENTRY lpPaletteEntries);
UINT GetEnhMetaFilePaletteEntries(HENHMETAFILE hemf, UINT nNumEntries, LPPALETTEENTRY lpPaletteEntries);
//C UINT GetEnhMetaFilePixelFormat(HENHMETAFILE hemf,UINT cbBuffer,PIXELFORMATDESCRIPTOR *ppfd);
UINT GetEnhMetaFilePixelFormat(HENHMETAFILE hemf, UINT cbBuffer, PIXELFORMATDESCRIPTOR *ppfd);
//C UINT GetWinMetaFileBits(HENHMETAFILE hemf,UINT cbData16,LPBYTE pData16,INT iMapMode,HDC hdcRef);
UINT GetWinMetaFileBits(HENHMETAFILE hemf, UINT cbData16, LPBYTE pData16, INT iMapMode, HDC hdcRef);
//C WINBOOL PlayEnhMetaFile(HDC hdc,HENHMETAFILE hmf,const RECT *lprect);
WINBOOL PlayEnhMetaFile(HDC hdc, HENHMETAFILE hmf, RECT *lprect);
//C WINBOOL PlayEnhMetaFileRecord(HDC hdc,LPHANDLETABLE pht,const ENHMETARECORD *pmr,UINT cht);
WINBOOL PlayEnhMetaFileRecord(HDC hdc, LPHANDLETABLE pht, ENHMETARECORD *pmr, UINT cht);
//C HENHMETAFILE SetEnhMetaFileBits(UINT nSize,const BYTE *pb);
HENHMETAFILE SetEnhMetaFileBits(UINT nSize, BYTE *pb);
//C HENHMETAFILE SetWinMetaFileBits(UINT nSize,const BYTE *lpMeta16Data,HDC hdcRef,const METAFILEPICT *lpMFP);
HENHMETAFILE SetWinMetaFileBits(UINT nSize, BYTE *lpMeta16Data, HDC hdcRef, METAFILEPICT *lpMFP);
//C WINBOOL GdiComment(HDC hdc,UINT nSize,const BYTE *lpData);
WINBOOL GdiComment(HDC hdc, UINT nSize, BYTE *lpData);
//C WINBOOL GetTextMetricsA(HDC hdc,LPTEXTMETRICA lptm);
WINBOOL GetTextMetricsA(HDC hdc, LPTEXTMETRICA lptm);
//C WINBOOL GetTextMetricsW(HDC hdc,LPTEXTMETRICW lptm);
WINBOOL GetTextMetricsW(HDC hdc, LPTEXTMETRICW lptm);
//C typedef struct tagDIBSECTION {
//C BITMAP dsBm;
//C BITMAPINFOHEADER dsBmih;
//C DWORD dsBitfields[3];
//C HANDLE dshSection;
//C DWORD dsOffset;
//C } DIBSECTION,*LPDIBSECTION,*PDIBSECTION;
struct tagDIBSECTION
{
BITMAP dsBm;
BITMAPINFOHEADER dsBmih;
DWORD [3]dsBitfields;
HANDLE dshSection;
DWORD dsOffset;
}
alias tagDIBSECTION DIBSECTION;
alias tagDIBSECTION *LPDIBSECTION;
alias tagDIBSECTION *PDIBSECTION;
//C WINBOOL AngleArc(HDC hdc,int x,int y,DWORD r,FLOAT StartAngle,FLOAT SweepAngle);
WINBOOL AngleArc(HDC hdc, int x, int y, DWORD r, FLOAT StartAngle, FLOAT SweepAngle);
//C WINBOOL PolyPolyline(HDC hdc,const POINT *apt,const DWORD *asz,DWORD csz);
WINBOOL PolyPolyline(HDC hdc, POINT *apt, DWORD *asz, DWORD csz);
//C WINBOOL GetWorldTransform(HDC hdc,LPXFORM lpxf);
WINBOOL GetWorldTransform(HDC hdc, LPXFORM lpxf);
//C WINBOOL SetWorldTransform(HDC hdc,const XFORM *lpxf);
WINBOOL SetWorldTransform(HDC hdc, XFORM *lpxf);
//C WINBOOL ModifyWorldTransform(HDC hdc,const XFORM *lpxf,DWORD mode);
WINBOOL ModifyWorldTransform(HDC hdc, XFORM *lpxf, DWORD mode);
//C WINBOOL CombineTransform(LPXFORM lpxfOut,const XFORM *lpxf1,const XFORM *lpxf2);
WINBOOL CombineTransform(LPXFORM lpxfOut, XFORM *lpxf1, XFORM *lpxf2);
//C HBITMAP CreateDIBSection(HDC hdc,const BITMAPINFO *lpbmi,UINT usage,void **ppvBits,HANDLE hSection,DWORD offset);
HBITMAP CreateDIBSection(HDC hdc, BITMAPINFO *lpbmi, UINT usage, void **ppvBits, HANDLE hSection, DWORD offset);
//C UINT GetDIBColorTable(HDC hdc,UINT iStart,UINT cEntries,RGBQUAD *prgbq);
UINT GetDIBColorTable(HDC hdc, UINT iStart, UINT cEntries, RGBQUAD *prgbq);
//C UINT SetDIBColorTable(HDC hdc,UINT iStart,UINT cEntries,const RGBQUAD *prgbq);
UINT SetDIBColorTable(HDC hdc, UINT iStart, UINT cEntries, RGBQUAD *prgbq);
//C typedef struct tagCOLORADJUSTMENT {
//C WORD caSize;
//C WORD caFlags;
//C WORD caIlluminantIndex;
//C WORD caRedGamma;
//C WORD caGreenGamma;
//C WORD caBlueGamma;
//C WORD caReferenceBlack;
//C WORD caReferenceWhite;
//C SHORT caContrast;
//C SHORT caBrightness;
//C SHORT caColorfulness;
//C SHORT caRedGreenTint;
//C } COLORADJUSTMENT,*PCOLORADJUSTMENT,*LPCOLORADJUSTMENT;
struct tagCOLORADJUSTMENT
{
WORD caSize;
WORD caFlags;
WORD caIlluminantIndex;
WORD caRedGamma;
WORD caGreenGamma;
WORD caBlueGamma;
WORD caReferenceBlack;
WORD caReferenceWhite;
SHORT caContrast;
SHORT caBrightness;
SHORT caColorfulness;
SHORT caRedGreenTint;
}
alias tagCOLORADJUSTMENT COLORADJUSTMENT;
alias tagCOLORADJUSTMENT *PCOLORADJUSTMENT;
alias tagCOLORADJUSTMENT *LPCOLORADJUSTMENT;
//C WINBOOL SetColorAdjustment(HDC hdc,const COLORADJUSTMENT *lpca);
WINBOOL SetColorAdjustment(HDC hdc, COLORADJUSTMENT *lpca);
//C WINBOOL GetColorAdjustment(HDC hdc,LPCOLORADJUSTMENT lpca);
WINBOOL GetColorAdjustment(HDC hdc, LPCOLORADJUSTMENT lpca);
//C HPALETTE CreateHalftonePalette(HDC hdc);
HPALETTE CreateHalftonePalette(HDC hdc);
//C typedef WINBOOL ( *ABORTPROC)(HDC,int);
alias WINBOOL function(HDC , int )ABORTPROC;
//C typedef struct _DOCINFOA {
//C int cbSize;
//C LPCSTR lpszDocName;
//C LPCSTR lpszOutput;
//C LPCSTR lpszDatatype;
//C DWORD fwType;
//C } DOCINFOA,*LPDOCINFOA;
struct _DOCINFOA
{
int cbSize;
LPCSTR lpszDocName;
LPCSTR lpszOutput;
LPCSTR lpszDatatype;
DWORD fwType;
}
alias _DOCINFOA DOCINFOA;
alias _DOCINFOA *LPDOCINFOA;
//C typedef struct _DOCINFOW {
//C int cbSize;
//C LPCWSTR lpszDocName;
//C LPCWSTR lpszOutput;
//C LPCWSTR lpszDatatype;
//C DWORD fwType;
//C } DOCINFOW,*LPDOCINFOW;
struct _DOCINFOW
{
int cbSize;
LPCWSTR lpszDocName;
LPCWSTR lpszOutput;
LPCWSTR lpszDatatype;
DWORD fwType;
}
alias _DOCINFOW DOCINFOW;
alias _DOCINFOW *LPDOCINFOW;
//C typedef DOCINFOA DOCINFO;
alias DOCINFOA DOCINFO;
//C typedef LPDOCINFOA LPDOCINFO;
alias LPDOCINFOA LPDOCINFO;
//C int StartDocA(HDC hdc,const DOCINFOA *lpdi);
int StartDocA(HDC hdc, DOCINFOA *lpdi);
//C int StartDocW(HDC hdc,const DOCINFOW *lpdi);
int StartDocW(HDC hdc, DOCINFOW *lpdi);
//C int EndDoc(HDC hdc);
int EndDoc(HDC hdc);
//C int StartPage(HDC hdc);
int StartPage(HDC hdc);
//C int EndPage(HDC hdc);
int EndPage(HDC hdc);
//C int AbortDoc(HDC hdc);
int AbortDoc(HDC hdc);
//C int SetAbortProc(HDC hdc,ABORTPROC lpProc);
int SetAbortProc(HDC hdc, ABORTPROC lpProc);
//C WINBOOL AbortPath(HDC hdc);
WINBOOL AbortPath(HDC hdc);
//C WINBOOL ArcTo(HDC hdc,int left,int top,int right,int bottom,int xr1,int yr1,int xr2,int yr2);
WINBOOL ArcTo(HDC hdc, int left, int top, int right, int bottom, int xr1, int yr1, int xr2, int yr2);
//C WINBOOL BeginPath(HDC hdc);
WINBOOL BeginPath(HDC hdc);
//C WINBOOL CloseFigure(HDC hdc);
WINBOOL CloseFigure(HDC hdc);
//C WINBOOL EndPath(HDC hdc);
WINBOOL EndPath(HDC hdc);
//C WINBOOL FillPath(HDC hdc);
WINBOOL FillPath(HDC hdc);
//C WINBOOL FlattenPath(HDC hdc);
WINBOOL FlattenPath(HDC hdc);
//C int GetPath(HDC hdc,LPPOINT apt,LPBYTE aj,int cpt);
int GetPath(HDC hdc, LPPOINT apt, LPBYTE aj, int cpt);
//C HRGN PathToRegion(HDC hdc);
HRGN PathToRegion(HDC hdc);
//C WINBOOL PolyDraw(HDC hdc,const POINT *apt,const BYTE *aj,int cpt);
WINBOOL PolyDraw(HDC hdc, POINT *apt, BYTE *aj, int cpt);
//C WINBOOL SelectClipPath(HDC hdc,int mode);
WINBOOL SelectClipPath(HDC hdc, int mode);
//C int SetArcDirection(HDC hdc,int dir);
int SetArcDirection(HDC hdc, int dir);
//C WINBOOL SetMiterLimit(HDC hdc,FLOAT limit,PFLOAT old);
WINBOOL SetMiterLimit(HDC hdc, FLOAT limit, PFLOAT old);
//C WINBOOL StrokeAndFillPath(HDC hdc);
WINBOOL StrokeAndFillPath(HDC hdc);
//C WINBOOL StrokePath(HDC hdc);
WINBOOL StrokePath(HDC hdc);
//C WINBOOL WidenPath(HDC hdc);
WINBOOL WidenPath(HDC hdc);
//C HPEN ExtCreatePen(DWORD iPenStyle,DWORD cWidth,const LOGBRUSH *plbrush,DWORD cStyle,const DWORD *pstyle);
HPEN ExtCreatePen(DWORD iPenStyle, DWORD cWidth, LOGBRUSH *plbrush, DWORD cStyle, DWORD *pstyle);
//C WINBOOL GetMiterLimit(HDC hdc,PFLOAT plimit);
WINBOOL GetMiterLimit(HDC hdc, PFLOAT plimit);
//C int GetArcDirection(HDC hdc);
int GetArcDirection(HDC hdc);
//C int GetObjectA(HANDLE h,int c,LPVOID pv);
int GetObjectA(HANDLE h, int c, LPVOID pv);
//C int GetObjectW(HANDLE h,int c,LPVOID pv);
int GetObjectW(HANDLE h, int c, LPVOID pv);
//C WINBOOL MoveToEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL MoveToEx(HDC hdc, int x, int y, LPPOINT lppt);
//C WINBOOL TextOutA(HDC hdc,int x,int y,LPCSTR lpString,int c);
WINBOOL TextOutA(HDC hdc, int x, int y, LPCSTR lpString, int c);
//C WINBOOL TextOutW(HDC hdc,int x,int y,LPCWSTR lpString,int c);
WINBOOL TextOutW(HDC hdc, int x, int y, LPCWSTR lpString, int c);
//C WINBOOL ExtTextOutA(HDC hdc,int x,int y,UINT options,const RECT *lprect,LPCSTR lpString,UINT c,const INT *lpDx);
WINBOOL ExtTextOutA(HDC hdc, int x, int y, UINT options, RECT *lprect, LPCSTR lpString, UINT c, INT *lpDx);
//C WINBOOL ExtTextOutW(HDC hdc,int x,int y,UINT options,const RECT *lprect,LPCWSTR lpString,UINT c,const INT *lpDx);
WINBOOL ExtTextOutW(HDC hdc, int x, int y, UINT options, RECT *lprect, LPCWSTR lpString, UINT c, INT *lpDx);
//C WINBOOL PolyTextOutA(HDC hdc,const POLYTEXTA *ppt,int nstrings);
WINBOOL PolyTextOutA(HDC hdc, POLYTEXTA *ppt, int nstrings);
//C WINBOOL PolyTextOutW(HDC hdc,const POLYTEXTW *ppt,int nstrings);
WINBOOL PolyTextOutW(HDC hdc, POLYTEXTW *ppt, int nstrings);
//C HRGN CreatePolygonRgn(const POINT *pptl,int cPoint,int iMode);
HRGN CreatePolygonRgn(POINT *pptl, int cPoint, int iMode);
//C WINBOOL DPtoLP(HDC hdc,LPPOINT lppt,int c);
WINBOOL DPtoLP(HDC hdc, LPPOINT lppt, int c);
//C WINBOOL LPtoDP(HDC hdc,LPPOINT lppt,int c);
WINBOOL LPtoDP(HDC hdc, LPPOINT lppt, int c);
//C WINBOOL Polygon(HDC hdc,const POINT *apt,int cpt);
WINBOOL Polygon(HDC hdc, POINT *apt, int cpt);
//C WINBOOL Polyline(HDC hdc,const POINT *apt,int cpt);
WINBOOL Polyline(HDC hdc, POINT *apt, int cpt);
//C WINBOOL PolyBezier(HDC hdc,const POINT *apt,DWORD cpt);
WINBOOL PolyBezier(HDC hdc, POINT *apt, DWORD cpt);
//C WINBOOL PolyBezierTo(HDC hdc,const POINT *apt,DWORD cpt);
WINBOOL PolyBezierTo(HDC hdc, POINT *apt, DWORD cpt);
//C WINBOOL PolylineTo(HDC hdc,const POINT *apt,DWORD cpt);
WINBOOL PolylineTo(HDC hdc, POINT *apt, DWORD cpt);
//C WINBOOL SetViewportExtEx(HDC hdc,int x,int y,LPSIZE lpsz);
WINBOOL SetViewportExtEx(HDC hdc, int x, int y, LPSIZE lpsz);
//C WINBOOL SetViewportOrgEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL SetViewportOrgEx(HDC hdc, int x, int y, LPPOINT lppt);
//C WINBOOL SetWindowExtEx(HDC hdc,int x,int y,LPSIZE lpsz);
WINBOOL SetWindowExtEx(HDC hdc, int x, int y, LPSIZE lpsz);
//C WINBOOL SetWindowOrgEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL SetWindowOrgEx(HDC hdc, int x, int y, LPPOINT lppt);
//C WINBOOL OffsetViewportOrgEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL OffsetViewportOrgEx(HDC hdc, int x, int y, LPPOINT lppt);
//C WINBOOL OffsetWindowOrgEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL OffsetWindowOrgEx(HDC hdc, int x, int y, LPPOINT lppt);
//C WINBOOL ScaleViewportExtEx(HDC hdc,int xn,int dx,int yn,int yd,LPSIZE lpsz);
WINBOOL ScaleViewportExtEx(HDC hdc, int xn, int dx, int yn, int yd, LPSIZE lpsz);
//C WINBOOL ScaleWindowExtEx(HDC hdc,int xn,int xd,int yn,int yd,LPSIZE lpsz);
WINBOOL ScaleWindowExtEx(HDC hdc, int xn, int xd, int yn, int yd, LPSIZE lpsz);
//C WINBOOL SetBitmapDimensionEx(HBITMAP hbm,int w,int h,LPSIZE lpsz);
WINBOOL SetBitmapDimensionEx(HBITMAP hbm, int w, int h, LPSIZE lpsz);
//C WINBOOL SetBrushOrgEx(HDC hdc,int x,int y,LPPOINT lppt);
WINBOOL SetBrushOrgEx(HDC hdc, int x, int y, LPPOINT lppt);
//C int GetTextFaceA(HDC hdc,int c,LPSTR lpName);
int GetTextFaceA(HDC hdc, int c, LPSTR lpName);
//C int GetTextFaceW(HDC hdc,int c,LPWSTR lpName);
int GetTextFaceW(HDC hdc, int c, LPWSTR lpName);
//C typedef struct tagKERNINGPAIR {
//C WORD wFirst;
//C WORD wSecond;
//C int iKernAmount;
//C } KERNINGPAIR,*LPKERNINGPAIR;
struct tagKERNINGPAIR
{
WORD wFirst;
WORD wSecond;
int iKernAmount;
}
alias tagKERNINGPAIR KERNINGPAIR;
alias tagKERNINGPAIR *LPKERNINGPAIR;
//C DWORD GetKerningPairsA(HDC hdc,DWORD nPairs,LPKERNINGPAIR lpKernPair);
DWORD GetKerningPairsA(HDC hdc, DWORD nPairs, LPKERNINGPAIR lpKernPair);
//C DWORD GetKerningPairsW(HDC hdc,DWORD nPairs,LPKERNINGPAIR lpKernPair);
DWORD GetKerningPairsW(HDC hdc, DWORD nPairs, LPKERNINGPAIR lpKernPair);
//C WINBOOL GetDCOrgEx(HDC hdc,LPPOINT lppt);
WINBOOL GetDCOrgEx(HDC hdc, LPPOINT lppt);
//C WINBOOL FixBrushOrgEx(HDC hdc,int x,int y,LPPOINT ptl);
WINBOOL FixBrushOrgEx(HDC hdc, int x, int y, LPPOINT ptl);
//C WINBOOL UnrealizeObject(HGDIOBJ h);
WINBOOL UnrealizeObject(HGDIOBJ h);
//C WINBOOL GdiFlush();
WINBOOL GdiFlush();
//C DWORD GdiSetBatchLimit(DWORD dw);
DWORD GdiSetBatchLimit(DWORD dw);
//C DWORD GdiGetBatchLimit();
DWORD GdiGetBatchLimit();
//C typedef int ( *ICMENUMPROCA)(LPSTR,LPARAM);
alias int function(LPSTR , LPARAM )ICMENUMPROCA;
//C typedef int ( *ICMENUMPROCW)(LPWSTR,LPARAM);
alias int function(LPWSTR , LPARAM )ICMENUMPROCW;
//C int SetICMMode(HDC hdc,int mode);
int SetICMMode(HDC hdc, int mode);
//C WINBOOL CheckColorsInGamut(HDC hdc,LPVOID lpRGBTriple,LPVOID dlpBuffer,DWORD nCount);
WINBOOL CheckColorsInGamut(HDC hdc, LPVOID lpRGBTriple, LPVOID dlpBuffer, DWORD nCount);
//C HCOLORSPACE GetColorSpace(HDC hdc);
HCOLORSPACE GetColorSpace(HDC hdc);
//C WINBOOL GetLogColorSpaceA(HCOLORSPACE hColorSpace,LPLOGCOLORSPACEA lpBuffer,DWORD nSize);
WINBOOL GetLogColorSpaceA(HCOLORSPACE hColorSpace, LPLOGCOLORSPACEA lpBuffer, DWORD nSize);
//C WINBOOL GetLogColorSpaceW(HCOLORSPACE hColorSpace,LPLOGCOLORSPACEW lpBuffer,DWORD nSize);
WINBOOL GetLogColorSpaceW(HCOLORSPACE hColorSpace, LPLOGCOLORSPACEW lpBuffer, DWORD nSize);
//C HCOLORSPACE CreateColorSpaceA(LPLOGCOLORSPACEA lplcs);
HCOLORSPACE CreateColorSpaceA(LPLOGCOLORSPACEA lplcs);
//C HCOLORSPACE CreateColorSpaceW(LPLOGCOLORSPACEW lplcs);
HCOLORSPACE CreateColorSpaceW(LPLOGCOLORSPACEW lplcs);
//C HCOLORSPACE SetColorSpace(HDC hdc,HCOLORSPACE hcs);
HCOLORSPACE SetColorSpace(HDC hdc, HCOLORSPACE hcs);
//C WINBOOL DeleteColorSpace(HCOLORSPACE hcs);
WINBOOL DeleteColorSpace(HCOLORSPACE hcs);
//C WINBOOL GetICMProfileA(HDC hdc,LPDWORD pBufSize,LPSTR pszFilename);
WINBOOL GetICMProfileA(HDC hdc, LPDWORD pBufSize, LPSTR pszFilename);
//C WINBOOL GetICMProfileW(HDC hdc,LPDWORD pBufSize,LPWSTR pszFilename);
WINBOOL GetICMProfileW(HDC hdc, LPDWORD pBufSize, LPWSTR pszFilename);
//C WINBOOL SetICMProfileA(HDC hdc,LPSTR lpFileName);
WINBOOL SetICMProfileA(HDC hdc, LPSTR lpFileName);
//C WINBOOL SetICMProfileW(HDC hdc,LPWSTR lpFileName);
WINBOOL SetICMProfileW(HDC hdc, LPWSTR lpFileName);
//C WINBOOL GetDeviceGammaRamp(HDC hdc,LPVOID lpRamp);
WINBOOL GetDeviceGammaRamp(HDC hdc, LPVOID lpRamp);
//C WINBOOL SetDeviceGammaRamp(HDC hdc,LPVOID lpRamp);
WINBOOL SetDeviceGammaRamp(HDC hdc, LPVOID lpRamp);
//C WINBOOL ColorMatchToTarget(HDC hdc,HDC hdcTarget,DWORD action);
WINBOOL ColorMatchToTarget(HDC hdc, HDC hdcTarget, DWORD action);
//C int EnumICMProfilesA(HDC hdc,ICMENUMPROCA lpProc,LPARAM lParam);
int EnumICMProfilesA(HDC hdc, ICMENUMPROCA lpProc, LPARAM lParam);
//C int EnumICMProfilesW(HDC hdc,ICMENUMPROCW lpProc,LPARAM lParam);
int EnumICMProfilesW(HDC hdc, ICMENUMPROCW lpProc, LPARAM lParam);
//C WINBOOL UpdateICMRegKeyA(DWORD reserved,LPSTR lpszCMID,LPSTR lpszFileName,UINT command);
WINBOOL UpdateICMRegKeyA(DWORD reserved, LPSTR lpszCMID, LPSTR lpszFileName, UINT command);
//C WINBOOL UpdateICMRegKeyW(DWORD reserved,LPWSTR lpszCMID,LPWSTR lpszFileName,UINT command);
WINBOOL UpdateICMRegKeyW(DWORD reserved, LPWSTR lpszCMID, LPWSTR lpszFileName, UINT command);
//C WINBOOL ColorCorrectPalette(HDC hdc,HPALETTE hPal,DWORD deFirst,DWORD num);
WINBOOL ColorCorrectPalette(HDC hdc, HPALETTE hPal, DWORD deFirst, DWORD num);
//C typedef struct tagEMR {
//C DWORD iType;
//C DWORD nSize;
//C } EMR,*PEMR;
struct tagEMR
{
DWORD iType;
DWORD nSize;
}
alias tagEMR EMR;
alias tagEMR *PEMR;
//C typedef struct tagEMRTEXT {
//C POINTL ptlReference;
//C DWORD nChars;
//C DWORD offString;
//C DWORD fOptions;
//C RECTL rcl;
//C DWORD offDx;
//C } EMRTEXT,*PEMRTEXT;
struct tagEMRTEXT
{
POINTL ptlReference;
DWORD nChars;
DWORD offString;
DWORD fOptions;
RECTL rcl;
DWORD offDx;
}
alias tagEMRTEXT EMRTEXT;
alias tagEMRTEXT *PEMRTEXT;
//C typedef struct tagABORTPATH {
//C EMR emr;
//C } EMRABORTPATH,*PEMRABORTPATH,EMRBEGINPATH,*PEMRBEGINPATH,EMRENDPATH,*PEMRENDPATH,EMRCLOSEFIGURE,*PEMRCLOSEFIGURE,EMRFLATTENPATH,*PEMRFLATTENPATH,EMRWIDENPATH,*PEMRWIDENPATH,EMRSETMETARGN,*PEMRSETMETARGN,EMRSAVEDC,*PEMRSAVEDC,EMRREALIZEPALETTE,*PEMRREALIZEPALETTE;
struct tagABORTPATH
{
EMR emr;
}
alias tagABORTPATH EMRABORTPATH;
alias tagABORTPATH *PEMRABORTPATH;
alias tagABORTPATH EMRBEGINPATH;
alias tagABORTPATH *PEMRBEGINPATH;
alias tagABORTPATH EMRENDPATH;
alias tagABORTPATH *PEMRENDPATH;
alias tagABORTPATH EMRCLOSEFIGURE;
alias tagABORTPATH *PEMRCLOSEFIGURE;
alias tagABORTPATH EMRFLATTENPATH;
alias tagABORTPATH *PEMRFLATTENPATH;
alias tagABORTPATH EMRWIDENPATH;
alias tagABORTPATH *PEMRWIDENPATH;
alias tagABORTPATH EMRSETMETARGN;
alias tagABORTPATH *PEMRSETMETARGN;
alias tagABORTPATH EMRSAVEDC;
alias tagABORTPATH *PEMRSAVEDC;
alias tagABORTPATH EMRREALIZEPALETTE;
alias tagABORTPATH *PEMRREALIZEPALETTE;
//C typedef struct tagEMRSELECTCLIPPATH {
//C EMR emr;
//C DWORD iMode;
//C } EMRSELECTCLIPPATH,*PEMRSELECTCLIPPATH,EMRSETBKMODE,*PEMRSETBKMODE,EMRSETMAPMODE,*PEMRSETMAPMODE,EMRSETLAYOUT,*PEMRSETLAYOUT,
struct tagEMRSELECTCLIPPATH
{
EMR emr;
DWORD iMode;
}
alias tagEMRSELECTCLIPPATH EMRSELECTCLIPPATH;
alias tagEMRSELECTCLIPPATH *PEMRSELECTCLIPPATH;
alias tagEMRSELECTCLIPPATH EMRSETBKMODE;
alias tagEMRSELECTCLIPPATH *PEMRSETBKMODE;
alias tagEMRSELECTCLIPPATH EMRSETMAPMODE;
alias tagEMRSELECTCLIPPATH *PEMRSETMAPMODE;
alias tagEMRSELECTCLIPPATH EMRSETLAYOUT;
alias tagEMRSELECTCLIPPATH *PEMRSETLAYOUT;
//C EMRSETPOLYFILLMODE,*PEMRSETPOLYFILLMODE,EMRSETROP2,*PEMRSETROP2,EMRSETSTRETCHBLTMODE,*PEMRSETSTRETCHBLTMODE,EMRSETICMMODE,
alias tagEMRSELECTCLIPPATH EMRSETPOLYFILLMODE;
alias tagEMRSELECTCLIPPATH *PEMRSETPOLYFILLMODE;
alias tagEMRSELECTCLIPPATH EMRSETROP2;
alias tagEMRSELECTCLIPPATH *PEMRSETROP2;
alias tagEMRSELECTCLIPPATH EMRSETSTRETCHBLTMODE;
alias tagEMRSELECTCLIPPATH *PEMRSETSTRETCHBLTMODE;
alias tagEMRSELECTCLIPPATH EMRSETICMMODE;
//C *PEMRSETICMMODE,EMRSETTEXTALIGN,*PEMRSETTEXTALIGN;
alias tagEMRSELECTCLIPPATH *PEMRSETICMMODE;
alias tagEMRSELECTCLIPPATH EMRSETTEXTALIGN;
alias tagEMRSELECTCLIPPATH *PEMRSETTEXTALIGN;
//C typedef struct tagEMRSETMITERLIMIT {
//C EMR emr;
//C FLOAT eMiterLimit;
//C } EMRSETMITERLIMIT,*PEMRSETMITERLIMIT;
struct tagEMRSETMITERLIMIT
{
EMR emr;
FLOAT eMiterLimit;
}
alias tagEMRSETMITERLIMIT EMRSETMITERLIMIT;
alias tagEMRSETMITERLIMIT *PEMRSETMITERLIMIT;
//C typedef struct tagEMRRESTOREDC {
//C EMR emr;
//C LONG iRelative;
//C } EMRRESTOREDC,*PEMRRESTOREDC;
struct tagEMRRESTOREDC
{
EMR emr;
LONG iRelative;
}
alias tagEMRRESTOREDC EMRRESTOREDC;
alias tagEMRRESTOREDC *PEMRRESTOREDC;
//C typedef struct tagEMRSETARCDIRECTION {
//C EMR emr;
//C DWORD iArcDirection;
//C } EMRSETARCDIRECTION,*PEMRSETARCDIRECTION;
struct tagEMRSETARCDIRECTION
{
EMR emr;
DWORD iArcDirection;
}
alias tagEMRSETARCDIRECTION EMRSETARCDIRECTION;
alias tagEMRSETARCDIRECTION *PEMRSETARCDIRECTION;
//C typedef struct tagEMRSETMAPPERFLAGS {
//C EMR emr;
//C DWORD dwFlags;
//C } EMRSETMAPPERFLAGS,*PEMRSETMAPPERFLAGS;
struct tagEMRSETMAPPERFLAGS
{
EMR emr;
DWORD dwFlags;
}
alias tagEMRSETMAPPERFLAGS EMRSETMAPPERFLAGS;
alias tagEMRSETMAPPERFLAGS *PEMRSETMAPPERFLAGS;
//C typedef struct tagEMRSETTEXTCOLOR {
//C EMR emr;
//C COLORREF crColor;
//C } EMRSETBKCOLOR,*PEMRSETBKCOLOR,EMRSETTEXTCOLOR,*PEMRSETTEXTCOLOR;
struct tagEMRSETTEXTCOLOR
{
EMR emr;
COLORREF crColor;
}
alias tagEMRSETTEXTCOLOR EMRSETBKCOLOR;
alias tagEMRSETTEXTCOLOR *PEMRSETBKCOLOR;
alias tagEMRSETTEXTCOLOR EMRSETTEXTCOLOR;
alias tagEMRSETTEXTCOLOR *PEMRSETTEXTCOLOR;
//C typedef struct tagEMRSELECTOBJECT {
//C EMR emr;
//C DWORD ihObject;
//C } EMRSELECTOBJECT,*PEMRSELECTOBJECT,EMRDELETEOBJECT,*PEMRDELETEOBJECT;
struct tagEMRSELECTOBJECT
{
EMR emr;
DWORD ihObject;
}
alias tagEMRSELECTOBJECT EMRSELECTOBJECT;
alias tagEMRSELECTOBJECT *PEMRSELECTOBJECT;
alias tagEMRSELECTOBJECT EMRDELETEOBJECT;
alias tagEMRSELECTOBJECT *PEMRDELETEOBJECT;
//C typedef struct tagEMRSELECTPALETTE {
//C EMR emr;
//C DWORD ihPal;
//C } EMRSELECTPALETTE,*PEMRSELECTPALETTE;
struct tagEMRSELECTPALETTE
{
EMR emr;
DWORD ihPal;
}
alias tagEMRSELECTPALETTE EMRSELECTPALETTE;
alias tagEMRSELECTPALETTE *PEMRSELECTPALETTE;
//C typedef struct tagEMRRESIZEPALETTE {
//C EMR emr;
//C DWORD ihPal;
//C DWORD cEntries;
//C } EMRRESIZEPALETTE,*PEMRRESIZEPALETTE;
struct tagEMRRESIZEPALETTE
{
EMR emr;
DWORD ihPal;
DWORD cEntries;
}
alias tagEMRRESIZEPALETTE EMRRESIZEPALETTE;
alias tagEMRRESIZEPALETTE *PEMRRESIZEPALETTE;
//C typedef struct tagEMRSETPALETTEENTRIES {
//C EMR emr;
//C DWORD ihPal;
//C DWORD iStart;
//C DWORD cEntries;
//C PALETTEENTRY aPalEntries[1];
//C } EMRSETPALETTEENTRIES,*PEMRSETPALETTEENTRIES;
struct tagEMRSETPALETTEENTRIES
{
EMR emr;
DWORD ihPal;
DWORD iStart;
DWORD cEntries;
PALETTEENTRY [1]aPalEntries;
}
alias tagEMRSETPALETTEENTRIES EMRSETPALETTEENTRIES;
alias tagEMRSETPALETTEENTRIES *PEMRSETPALETTEENTRIES;
//C typedef struct tagEMRSETCOLORADJUSTMENT {
//C EMR emr;
//C COLORADJUSTMENT ColorAdjustment;
//C } EMRSETCOLORADJUSTMENT,*PEMRSETCOLORADJUSTMENT;
struct tagEMRSETCOLORADJUSTMENT
{
EMR emr;
COLORADJUSTMENT ColorAdjustment;
}
alias tagEMRSETCOLORADJUSTMENT EMRSETCOLORADJUSTMENT;
alias tagEMRSETCOLORADJUSTMENT *PEMRSETCOLORADJUSTMENT;
//C typedef struct tagEMRGDICOMMENT {
//C EMR emr;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRGDICOMMENT,*PEMRGDICOMMENT;
struct tagEMRGDICOMMENT
{
EMR emr;
DWORD cbData;
BYTE [1]Data;
}
alias tagEMRGDICOMMENT EMRGDICOMMENT;
alias tagEMRGDICOMMENT *PEMRGDICOMMENT;
//C typedef struct tagEMREOF {
//C EMR emr;
//C DWORD nPalEntries;
//C DWORD offPalEntries;
//C DWORD nSizeLast;
//C } EMREOF,*PEMREOF;
struct tagEMREOF
{
EMR emr;
DWORD nPalEntries;
DWORD offPalEntries;
DWORD nSizeLast;
}
alias tagEMREOF EMREOF;
alias tagEMREOF *PEMREOF;
//C typedef struct tagEMRLINETO {
//C EMR emr;
//C POINTL ptl;
//C } EMRLINETO,*PEMRLINETO,EMRMOVETOEX,*PEMRMOVETOEX;
struct tagEMRLINETO
{
EMR emr;
POINTL ptl;
}
alias tagEMRLINETO EMRLINETO;
alias tagEMRLINETO *PEMRLINETO;
alias tagEMRLINETO EMRMOVETOEX;
alias tagEMRLINETO *PEMRMOVETOEX;
//C typedef struct tagEMROFFSETCLIPRGN {
//C EMR emr;
//C POINTL ptlOffset;
//C } EMROFFSETCLIPRGN,*PEMROFFSETCLIPRGN;
struct tagEMROFFSETCLIPRGN
{
EMR emr;
POINTL ptlOffset;
}
alias tagEMROFFSETCLIPRGN EMROFFSETCLIPRGN;
alias tagEMROFFSETCLIPRGN *PEMROFFSETCLIPRGN;
//C typedef struct tagEMRFILLPATH {
//C EMR emr;
//C RECTL rclBounds;
//C } EMRFILLPATH,*PEMRFILLPATH,EMRSTROKEANDFILLPATH,*PEMRSTROKEANDFILLPATH,EMRSTROKEPATH,*PEMRSTROKEPATH;
struct tagEMRFILLPATH
{
EMR emr;
RECTL rclBounds;
}
alias tagEMRFILLPATH EMRFILLPATH;
alias tagEMRFILLPATH *PEMRFILLPATH;
alias tagEMRFILLPATH EMRSTROKEANDFILLPATH;
alias tagEMRFILLPATH *PEMRSTROKEANDFILLPATH;
alias tagEMRFILLPATH EMRSTROKEPATH;
alias tagEMRFILLPATH *PEMRSTROKEPATH;
//C typedef struct tagEMREXCLUDECLIPRECT {
//C EMR emr;
//C RECTL rclClip;
//C } EMREXCLUDECLIPRECT,*PEMREXCLUDECLIPRECT,EMRINTERSECTCLIPRECT,*PEMRINTERSECTCLIPRECT;
struct tagEMREXCLUDECLIPRECT
{
EMR emr;
RECTL rclClip;
}
alias tagEMREXCLUDECLIPRECT EMREXCLUDECLIPRECT;
alias tagEMREXCLUDECLIPRECT *PEMREXCLUDECLIPRECT;
alias tagEMREXCLUDECLIPRECT EMRINTERSECTCLIPRECT;
alias tagEMREXCLUDECLIPRECT *PEMRINTERSECTCLIPRECT;
//C typedef struct tagEMRSETVIEWPORTORGEX {
//C EMR emr;
//C POINTL ptlOrigin;
//C } EMRSETVIEWPORTORGEX,*PEMRSETVIEWPORTORGEX,EMRSETWINDOWORGEX,*PEMRSETWINDOWORGEX,EMRSETBRUSHORGEX,*PEMRSETBRUSHORGEX;
struct tagEMRSETVIEWPORTORGEX
{
EMR emr;
POINTL ptlOrigin;
}
alias tagEMRSETVIEWPORTORGEX EMRSETVIEWPORTORGEX;
alias tagEMRSETVIEWPORTORGEX *PEMRSETVIEWPORTORGEX;
alias tagEMRSETVIEWPORTORGEX EMRSETWINDOWORGEX;
alias tagEMRSETVIEWPORTORGEX *PEMRSETWINDOWORGEX;
alias tagEMRSETVIEWPORTORGEX EMRSETBRUSHORGEX;
alias tagEMRSETVIEWPORTORGEX *PEMRSETBRUSHORGEX;
//C typedef struct tagEMRSETVIEWPORTEXTEX {
//C EMR emr;
//C SIZEL szlExtent;
//C } EMRSETVIEWPORTEXTEX,*PEMRSETVIEWPORTEXTEX,EMRSETWINDOWEXTEX,*PEMRSETWINDOWEXTEX;
struct tagEMRSETVIEWPORTEXTEX
{
EMR emr;
SIZEL szlExtent;
}
alias tagEMRSETVIEWPORTEXTEX EMRSETVIEWPORTEXTEX;
alias tagEMRSETVIEWPORTEXTEX *PEMRSETVIEWPORTEXTEX;
alias tagEMRSETVIEWPORTEXTEX EMRSETWINDOWEXTEX;
alias tagEMRSETVIEWPORTEXTEX *PEMRSETWINDOWEXTEX;
//C typedef struct tagEMRSCALEVIEWPORTEXTEX {
//C EMR emr;
//C LONG xNum;
//C LONG xDenom;
//C LONG yNum;
//C LONG yDenom;
//C } EMRSCALEVIEWPORTEXTEX,*PEMRSCALEVIEWPORTEXTEX,EMRSCALEWINDOWEXTEX,*PEMRSCALEWINDOWEXTEX;
struct tagEMRSCALEVIEWPORTEXTEX
{
EMR emr;
LONG xNum;
LONG xDenom;
LONG yNum;
LONG yDenom;
}
alias tagEMRSCALEVIEWPORTEXTEX EMRSCALEVIEWPORTEXTEX;
alias tagEMRSCALEVIEWPORTEXTEX *PEMRSCALEVIEWPORTEXTEX;
alias tagEMRSCALEVIEWPORTEXTEX EMRSCALEWINDOWEXTEX;
alias tagEMRSCALEVIEWPORTEXTEX *PEMRSCALEWINDOWEXTEX;
//C typedef struct tagEMRSETWORLDTRANSFORM {
//C EMR emr;
//C XFORM xform;
//C } EMRSETWORLDTRANSFORM,*PEMRSETWORLDTRANSFORM;
struct tagEMRSETWORLDTRANSFORM
{
EMR emr;
XFORM xform;
}
alias tagEMRSETWORLDTRANSFORM EMRSETWORLDTRANSFORM;
alias tagEMRSETWORLDTRANSFORM *PEMRSETWORLDTRANSFORM;
//C typedef struct tagEMRMODIFYWORLDTRANSFORM {
//C EMR emr;
//C XFORM xform;
//C DWORD iMode;
//C } EMRMODIFYWORLDTRANSFORM,*PEMRMODIFYWORLDTRANSFORM;
struct tagEMRMODIFYWORLDTRANSFORM
{
EMR emr;
XFORM xform;
DWORD iMode;
}
alias tagEMRMODIFYWORLDTRANSFORM EMRMODIFYWORLDTRANSFORM;
alias tagEMRMODIFYWORLDTRANSFORM *PEMRMODIFYWORLDTRANSFORM;
//C typedef struct tagEMRSETPIXELV {
//C EMR emr;
//C POINTL ptlPixel;
//C COLORREF crColor;
//C } EMRSETPIXELV,*PEMRSETPIXELV;
struct tagEMRSETPIXELV
{
EMR emr;
POINTL ptlPixel;
COLORREF crColor;
}
alias tagEMRSETPIXELV EMRSETPIXELV;
alias tagEMRSETPIXELV *PEMRSETPIXELV;
//C typedef struct tagEMREXTFLOODFILL {
//C EMR emr;
//C POINTL ptlStart;
//C COLORREF crColor;
//C DWORD iMode;
//C } EMREXTFLOODFILL,*PEMREXTFLOODFILL;
struct tagEMREXTFLOODFILL
{
EMR emr;
POINTL ptlStart;
COLORREF crColor;
DWORD iMode;
}
alias tagEMREXTFLOODFILL EMREXTFLOODFILL;
alias tagEMREXTFLOODFILL *PEMREXTFLOODFILL;
//C typedef struct tagEMRELLIPSE {
//C EMR emr;
//C RECTL rclBox;
//C } EMRELLIPSE,*PEMRELLIPSE,EMRRECTANGLE,*PEMRRECTANGLE;
struct tagEMRELLIPSE
{
EMR emr;
RECTL rclBox;
}
alias tagEMRELLIPSE EMRELLIPSE;
alias tagEMRELLIPSE *PEMRELLIPSE;
alias tagEMRELLIPSE EMRRECTANGLE;
alias tagEMRELLIPSE *PEMRRECTANGLE;
//C typedef struct tagEMRROUNDRECT {
//C EMR emr;
//C RECTL rclBox;
//C SIZEL szlCorner;
//C } EMRROUNDRECT,*PEMRROUNDRECT;
struct tagEMRROUNDRECT
{
EMR emr;
RECTL rclBox;
SIZEL szlCorner;
}
alias tagEMRROUNDRECT EMRROUNDRECT;
alias tagEMRROUNDRECT *PEMRROUNDRECT;
//C typedef struct tagEMRARC {
//C EMR emr;
//C RECTL rclBox;
//C POINTL ptlStart;
//C POINTL ptlEnd;
//C } EMRARC,*PEMRARC,EMRARCTO,*PEMRARCTO,EMRCHORD,*PEMRCHORD,EMRPIE,*PEMRPIE;
struct tagEMRARC
{
EMR emr;
RECTL rclBox;
POINTL ptlStart;
POINTL ptlEnd;
}
alias tagEMRARC EMRARC;
alias tagEMRARC *PEMRARC;
alias tagEMRARC EMRARCTO;
alias tagEMRARC *PEMRARCTO;
alias tagEMRARC EMRCHORD;
alias tagEMRARC *PEMRCHORD;
alias tagEMRARC EMRPIE;
alias tagEMRARC *PEMRPIE;
//C typedef struct tagEMRANGLEARC {
//C EMR emr;
//C POINTL ptlCenter;
//C DWORD nRadius;
//C FLOAT eStartAngle;
//C FLOAT eSweepAngle;
//C } EMRANGLEARC,*PEMRANGLEARC;
struct tagEMRANGLEARC
{
EMR emr;
POINTL ptlCenter;
DWORD nRadius;
FLOAT eStartAngle;
FLOAT eSweepAngle;
}
alias tagEMRANGLEARC EMRANGLEARC;
alias tagEMRANGLEARC *PEMRANGLEARC;
//C typedef struct tagEMRPOLYLINE {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cptl;
//C POINTL aptl[1];
//C } EMRPOLYLINE,*PEMRPOLYLINE,EMRPOLYBEZIER,*PEMRPOLYBEZIER,EMRPOLYGON,*PEMRPOLYGON,EMRPOLYBEZIERTO,*PEMRPOLYBEZIERTO,EMRPOLYLINETO,*PEMRPOLYLINETO;
struct tagEMRPOLYLINE
{
EMR emr;
RECTL rclBounds;
DWORD cptl;
POINTL [1]aptl;
}
alias tagEMRPOLYLINE EMRPOLYLINE;
alias tagEMRPOLYLINE *PEMRPOLYLINE;
alias tagEMRPOLYLINE EMRPOLYBEZIER;
alias tagEMRPOLYLINE *PEMRPOLYBEZIER;
alias tagEMRPOLYLINE EMRPOLYGON;
alias tagEMRPOLYLINE *PEMRPOLYGON;
alias tagEMRPOLYLINE EMRPOLYBEZIERTO;
alias tagEMRPOLYLINE *PEMRPOLYBEZIERTO;
alias tagEMRPOLYLINE EMRPOLYLINETO;
alias tagEMRPOLYLINE *PEMRPOLYLINETO;
//C typedef struct tagEMRPOLYLINE16 {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cpts;
//C POINTS apts[1];
//C } EMRPOLYLINE16,*PEMRPOLYLINE16,EMRPOLYBEZIER16,*PEMRPOLYBEZIER16,EMRPOLYGON16,*PEMRPOLYGON16,EMRPOLYBEZIERTO16,*PEMRPOLYBEZIERTO16,EMRPOLYLINETO16,*PEMRPOLYLINETO16;
struct tagEMRPOLYLINE16
{
EMR emr;
RECTL rclBounds;
DWORD cpts;
POINTS [1]apts;
}
alias tagEMRPOLYLINE16 EMRPOLYLINE16;
alias tagEMRPOLYLINE16 *PEMRPOLYLINE16;
alias tagEMRPOLYLINE16 EMRPOLYBEZIER16;
alias tagEMRPOLYLINE16 *PEMRPOLYBEZIER16;
alias tagEMRPOLYLINE16 EMRPOLYGON16;
alias tagEMRPOLYLINE16 *PEMRPOLYGON16;
alias tagEMRPOLYLINE16 EMRPOLYBEZIERTO16;
alias tagEMRPOLYLINE16 *PEMRPOLYBEZIERTO16;
alias tagEMRPOLYLINE16 EMRPOLYLINETO16;
alias tagEMRPOLYLINE16 *PEMRPOLYLINETO16;
//C typedef struct tagEMRPOLYDRAW {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cptl;
//C POINTL aptl[1];
//C BYTE abTypes[1];
//C } EMRPOLYDRAW,*PEMRPOLYDRAW;
struct tagEMRPOLYDRAW
{
EMR emr;
RECTL rclBounds;
DWORD cptl;
POINTL [1]aptl;
BYTE [1]abTypes;
}
alias tagEMRPOLYDRAW EMRPOLYDRAW;
alias tagEMRPOLYDRAW *PEMRPOLYDRAW;
//C typedef struct tagEMRPOLYDRAW16 {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cpts;
//C POINTS apts[1];
//C BYTE abTypes[1];
//C } EMRPOLYDRAW16,*PEMRPOLYDRAW16;
struct tagEMRPOLYDRAW16
{
EMR emr;
RECTL rclBounds;
DWORD cpts;
POINTS [1]apts;
BYTE [1]abTypes;
}
alias tagEMRPOLYDRAW16 EMRPOLYDRAW16;
alias tagEMRPOLYDRAW16 *PEMRPOLYDRAW16;
//C typedef struct tagEMRPOLYPOLYLINE {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD nPolys;
//C DWORD cptl;
//C DWORD aPolyCounts[1];
//C POINTL aptl[1];
//C } EMRPOLYPOLYLINE,*PEMRPOLYPOLYLINE,EMRPOLYPOLYGON,*PEMRPOLYPOLYGON;
struct tagEMRPOLYPOLYLINE
{
EMR emr;
RECTL rclBounds;
DWORD nPolys;
DWORD cptl;
DWORD [1]aPolyCounts;
POINTL [1]aptl;
}
alias tagEMRPOLYPOLYLINE EMRPOLYPOLYLINE;
alias tagEMRPOLYPOLYLINE *PEMRPOLYPOLYLINE;
alias tagEMRPOLYPOLYLINE EMRPOLYPOLYGON;
alias tagEMRPOLYPOLYLINE *PEMRPOLYPOLYGON;
//C typedef struct tagEMRPOLYPOLYLINE16 {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD nPolys;
//C DWORD cpts;
//C DWORD aPolyCounts[1];
//C POINTS apts[1];
//C } EMRPOLYPOLYLINE16,*PEMRPOLYPOLYLINE16,EMRPOLYPOLYGON16,*PEMRPOLYPOLYGON16;
struct tagEMRPOLYPOLYLINE16
{
EMR emr;
RECTL rclBounds;
DWORD nPolys;
DWORD cpts;
DWORD [1]aPolyCounts;
POINTS [1]apts;
}
alias tagEMRPOLYPOLYLINE16 EMRPOLYPOLYLINE16;
alias tagEMRPOLYPOLYLINE16 *PEMRPOLYPOLYLINE16;
alias tagEMRPOLYPOLYLINE16 EMRPOLYPOLYGON16;
alias tagEMRPOLYPOLYLINE16 *PEMRPOLYPOLYGON16;
//C typedef struct tagEMRINVERTRGN {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cbRgnData;
//C BYTE RgnData[1];
//C } EMRINVERTRGN,*PEMRINVERTRGN,EMRPAINTRGN,*PEMRPAINTRGN;
struct tagEMRINVERTRGN
{
EMR emr;
RECTL rclBounds;
DWORD cbRgnData;
BYTE [1]RgnData;
}
alias tagEMRINVERTRGN EMRINVERTRGN;
alias tagEMRINVERTRGN *PEMRINVERTRGN;
alias tagEMRINVERTRGN EMRPAINTRGN;
alias tagEMRINVERTRGN *PEMRPAINTRGN;
//C typedef struct tagEMRFILLRGN {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cbRgnData;
//C DWORD ihBrush;
//C BYTE RgnData[1];
//C } EMRFILLRGN,*PEMRFILLRGN;
struct tagEMRFILLRGN
{
EMR emr;
RECTL rclBounds;
DWORD cbRgnData;
DWORD ihBrush;
BYTE [1]RgnData;
}
alias tagEMRFILLRGN EMRFILLRGN;
alias tagEMRFILLRGN *PEMRFILLRGN;
//C typedef struct tagEMRFRAMERGN {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cbRgnData;
//C DWORD ihBrush;
//C SIZEL szlStroke;
//C BYTE RgnData[1];
//C } EMRFRAMERGN,*PEMRFRAMERGN;
struct tagEMRFRAMERGN
{
EMR emr;
RECTL rclBounds;
DWORD cbRgnData;
DWORD ihBrush;
SIZEL szlStroke;
BYTE [1]RgnData;
}
alias tagEMRFRAMERGN EMRFRAMERGN;
alias tagEMRFRAMERGN *PEMRFRAMERGN;
//C typedef struct tagEMREXTSELECTCLIPRGN {
//C EMR emr;
//C DWORD cbRgnData;
//C DWORD iMode;
//C BYTE RgnData[1];
//C } EMREXTSELECTCLIPRGN,*PEMREXTSELECTCLIPRGN;
struct tagEMREXTSELECTCLIPRGN
{
EMR emr;
DWORD cbRgnData;
DWORD iMode;
BYTE [1]RgnData;
}
alias tagEMREXTSELECTCLIPRGN EMREXTSELECTCLIPRGN;
alias tagEMREXTSELECTCLIPRGN *PEMREXTSELECTCLIPRGN;
//C typedef struct tagEMREXTTEXTOUTA {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD iGraphicsMode;
//C FLOAT exScale;
//C FLOAT eyScale;
//C EMRTEXT emrtext;
//C } EMREXTTEXTOUTA,*PEMREXTTEXTOUTA,EMREXTTEXTOUTW,*PEMREXTTEXTOUTW;
struct tagEMREXTTEXTOUTA
{
EMR emr;
RECTL rclBounds;
DWORD iGraphicsMode;
FLOAT exScale;
FLOAT eyScale;
EMRTEXT emrtext;
}
alias tagEMREXTTEXTOUTA EMREXTTEXTOUTA;
alias tagEMREXTTEXTOUTA *PEMREXTTEXTOUTA;
alias tagEMREXTTEXTOUTA EMREXTTEXTOUTW;
alias tagEMREXTTEXTOUTA *PEMREXTTEXTOUTW;
//C typedef struct tagEMRPOLYTEXTOUTA {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD iGraphicsMode;
//C FLOAT exScale;
//C FLOAT eyScale;
//C LONG cStrings;
//C EMRTEXT aemrtext[1];
//C } EMRPOLYTEXTOUTA,*PEMRPOLYTEXTOUTA,EMRPOLYTEXTOUTW,*PEMRPOLYTEXTOUTW;
struct tagEMRPOLYTEXTOUTA
{
EMR emr;
RECTL rclBounds;
DWORD iGraphicsMode;
FLOAT exScale;
FLOAT eyScale;
LONG cStrings;
EMRTEXT [1]aemrtext;
}
alias tagEMRPOLYTEXTOUTA EMRPOLYTEXTOUTA;
alias tagEMRPOLYTEXTOUTA *PEMRPOLYTEXTOUTA;
alias tagEMRPOLYTEXTOUTA EMRPOLYTEXTOUTW;
alias tagEMRPOLYTEXTOUTA *PEMRPOLYTEXTOUTW;
//C typedef struct tagEMRBITBLT {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG cxDest;
//C LONG cyDest;
//C DWORD dwRop;
//C LONG xSrc;
//C LONG ySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C } EMRBITBLT,*PEMRBITBLT;
struct tagEMRBITBLT
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG cxDest;
LONG cyDest;
DWORD dwRop;
LONG xSrc;
LONG ySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
}
alias tagEMRBITBLT EMRBITBLT;
alias tagEMRBITBLT *PEMRBITBLT;
//C typedef struct tagEMRSTRETCHBLT {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG cxDest;
//C LONG cyDest;
//C DWORD dwRop;
//C LONG xSrc;
//C LONG ySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C LONG cxSrc;
//C LONG cySrc;
//C } EMRSTRETCHBLT,*PEMRSTRETCHBLT;
struct tagEMRSTRETCHBLT
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG cxDest;
LONG cyDest;
DWORD dwRop;
LONG xSrc;
LONG ySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
LONG cxSrc;
LONG cySrc;
}
alias tagEMRSTRETCHBLT EMRSTRETCHBLT;
alias tagEMRSTRETCHBLT *PEMRSTRETCHBLT;
//C typedef struct tagEMRMASKBLT {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG cxDest;
//C LONG cyDest;
//C DWORD dwRop;
//C LONG xSrc;
//C LONG ySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C LONG xMask;
//C LONG yMask;
//C DWORD iUsageMask;
//C DWORD offBmiMask;
//C DWORD cbBmiMask;
//C DWORD offBitsMask;
//C DWORD cbBitsMask;
//C } EMRMASKBLT,*PEMRMASKBLT;
struct tagEMRMASKBLT
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG cxDest;
LONG cyDest;
DWORD dwRop;
LONG xSrc;
LONG ySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
LONG xMask;
LONG yMask;
DWORD iUsageMask;
DWORD offBmiMask;
DWORD cbBmiMask;
DWORD offBitsMask;
DWORD cbBitsMask;
}
alias tagEMRMASKBLT EMRMASKBLT;
alias tagEMRMASKBLT *PEMRMASKBLT;
//C typedef struct tagEMRPLGBLT {
//C EMR emr;
//C RECTL rclBounds;
//C POINTL aptlDest[3];
//C LONG xSrc;
//C LONG ySrc;
//C LONG cxSrc;
//C LONG cySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C LONG xMask;
//C LONG yMask;
//C DWORD iUsageMask;
//C DWORD offBmiMask;
//C DWORD cbBmiMask;
//C DWORD offBitsMask;
//C DWORD cbBitsMask;
//C } EMRPLGBLT,*PEMRPLGBLT;
struct tagEMRPLGBLT
{
EMR emr;
RECTL rclBounds;
POINTL [3]aptlDest;
LONG xSrc;
LONG ySrc;
LONG cxSrc;
LONG cySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
LONG xMask;
LONG yMask;
DWORD iUsageMask;
DWORD offBmiMask;
DWORD cbBmiMask;
DWORD offBitsMask;
DWORD cbBitsMask;
}
alias tagEMRPLGBLT EMRPLGBLT;
alias tagEMRPLGBLT *PEMRPLGBLT;
//C typedef struct tagEMRSETDIBITSTODEVICE {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG xSrc;
//C LONG ySrc;
//C LONG cxSrc;
//C LONG cySrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C DWORD iUsageSrc;
//C DWORD iStartScan;
//C DWORD cScans;
//C } EMRSETDIBITSTODEVICE,*PEMRSETDIBITSTODEVICE;
struct tagEMRSETDIBITSTODEVICE
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG xSrc;
LONG ySrc;
LONG cxSrc;
LONG cySrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
DWORD iUsageSrc;
DWORD iStartScan;
DWORD cScans;
}
alias tagEMRSETDIBITSTODEVICE EMRSETDIBITSTODEVICE;
alias tagEMRSETDIBITSTODEVICE *PEMRSETDIBITSTODEVICE;
//C typedef struct tagEMRSTRETCHDIBITS {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG xSrc;
//C LONG ySrc;
//C LONG cxSrc;
//C LONG cySrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C DWORD iUsageSrc;
//C DWORD dwRop;
//C LONG cxDest;
//C LONG cyDest;
//C } EMRSTRETCHDIBITS,*PEMRSTRETCHDIBITS;
struct tagEMRSTRETCHDIBITS
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG xSrc;
LONG ySrc;
LONG cxSrc;
LONG cySrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
DWORD iUsageSrc;
DWORD dwRop;
LONG cxDest;
LONG cyDest;
}
alias tagEMRSTRETCHDIBITS EMRSTRETCHDIBITS;
alias tagEMRSTRETCHDIBITS *PEMRSTRETCHDIBITS;
//C typedef struct tagEMREXTCREATEFONTINDIRECTW {
//C EMR emr;
//C DWORD ihFont;
//C EXTLOGFONTW elfw;
//C } EMREXTCREATEFONTINDIRECTW,*PEMREXTCREATEFONTINDIRECTW;
struct tagEMREXTCREATEFONTINDIRECTW
{
EMR emr;
DWORD ihFont;
EXTLOGFONTW elfw;
}
alias tagEMREXTCREATEFONTINDIRECTW EMREXTCREATEFONTINDIRECTW;
alias tagEMREXTCREATEFONTINDIRECTW *PEMREXTCREATEFONTINDIRECTW;
//C typedef struct tagEMRCREATEPALETTE {
//C EMR emr;
//C DWORD ihPal;
//C LOGPALETTE lgpl;
//C } EMRCREATEPALETTE,*PEMRCREATEPALETTE;
struct tagEMRCREATEPALETTE
{
EMR emr;
DWORD ihPal;
LOGPALETTE lgpl;
}
alias tagEMRCREATEPALETTE EMRCREATEPALETTE;
alias tagEMRCREATEPALETTE *PEMRCREATEPALETTE;
//C typedef struct tagEMRCREATEPEN {
//C EMR emr;
//C DWORD ihPen;
//C LOGPEN lopn;
//C } EMRCREATEPEN,*PEMRCREATEPEN;
struct tagEMRCREATEPEN
{
EMR emr;
DWORD ihPen;
LOGPEN lopn;
}
alias tagEMRCREATEPEN EMRCREATEPEN;
alias tagEMRCREATEPEN *PEMRCREATEPEN;
//C typedef struct tagEMREXTCREATEPEN {
//C EMR emr;
//C DWORD ihPen;
//C DWORD offBmi;
//C DWORD cbBmi;
//C DWORD offBits;
//C DWORD cbBits;
//C EXTLOGPEN elp;
//C } EMREXTCREATEPEN,*PEMREXTCREATEPEN;
struct tagEMREXTCREATEPEN
{
EMR emr;
DWORD ihPen;
DWORD offBmi;
DWORD cbBmi;
DWORD offBits;
DWORD cbBits;
EXTLOGPEN elp;
}
alias tagEMREXTCREATEPEN EMREXTCREATEPEN;
alias tagEMREXTCREATEPEN *PEMREXTCREATEPEN;
//C typedef struct tagEMRCREATEBRUSHINDIRECT {
//C EMR emr;
//C DWORD ihBrush;
//C LOGBRUSH32 lb;
//C } EMRCREATEBRUSHINDIRECT,*PEMRCREATEBRUSHINDIRECT;
struct tagEMRCREATEBRUSHINDIRECT
{
EMR emr;
DWORD ihBrush;
LOGBRUSH32 lb;
}
alias tagEMRCREATEBRUSHINDIRECT EMRCREATEBRUSHINDIRECT;
alias tagEMRCREATEBRUSHINDIRECT *PEMRCREATEBRUSHINDIRECT;
//C typedef struct tagEMRCREATEMONOBRUSH {
//C EMR emr;
//C DWORD ihBrush;
//C DWORD iUsage;
//C DWORD offBmi;
//C DWORD cbBmi;
//C DWORD offBits;
//C DWORD cbBits;
//C } EMRCREATEMONOBRUSH,*PEMRCREATEMONOBRUSH;
struct tagEMRCREATEMONOBRUSH
{
EMR emr;
DWORD ihBrush;
DWORD iUsage;
DWORD offBmi;
DWORD cbBmi;
DWORD offBits;
DWORD cbBits;
}
alias tagEMRCREATEMONOBRUSH EMRCREATEMONOBRUSH;
alias tagEMRCREATEMONOBRUSH *PEMRCREATEMONOBRUSH;
//C typedef struct tagEMRCREATEDIBPATTERNBRUSHPT {
//C EMR emr;
//C DWORD ihBrush;
//C DWORD iUsage;
//C DWORD offBmi;
//C DWORD cbBmi;
//C DWORD offBits;
//C DWORD cbBits;
//C } EMRCREATEDIBPATTERNBRUSHPT,*PEMRCREATEDIBPATTERNBRUSHPT;
struct tagEMRCREATEDIBPATTERNBRUSHPT
{
EMR emr;
DWORD ihBrush;
DWORD iUsage;
DWORD offBmi;
DWORD cbBmi;
DWORD offBits;
DWORD cbBits;
}
alias tagEMRCREATEDIBPATTERNBRUSHPT EMRCREATEDIBPATTERNBRUSHPT;
alias tagEMRCREATEDIBPATTERNBRUSHPT *PEMRCREATEDIBPATTERNBRUSHPT;
//C typedef struct tagEMRFORMAT {
//C DWORD dSignature;
//C DWORD nVersion;
//C DWORD cbData;
//C DWORD offData;
//C } EMRFORMAT,*PEMRFORMAT;
struct tagEMRFORMAT
{
DWORD dSignature;
DWORD nVersion;
DWORD cbData;
DWORD offData;
}
alias tagEMRFORMAT EMRFORMAT;
alias tagEMRFORMAT *PEMRFORMAT;
//C typedef struct tagEMRGLSRECORD {
//C EMR emr;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRGLSRECORD,*PEMRGLSRECORD;
struct tagEMRGLSRECORD
{
EMR emr;
DWORD cbData;
BYTE [1]Data;
}
alias tagEMRGLSRECORD EMRGLSRECORD;
alias tagEMRGLSRECORD *PEMRGLSRECORD;
//C typedef struct tagEMRGLSBOUNDEDRECORD {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRGLSBOUNDEDRECORD,*PEMRGLSBOUNDEDRECORD;
struct tagEMRGLSBOUNDEDRECORD
{
EMR emr;
RECTL rclBounds;
DWORD cbData;
BYTE [1]Data;
}
alias tagEMRGLSBOUNDEDRECORD EMRGLSBOUNDEDRECORD;
alias tagEMRGLSBOUNDEDRECORD *PEMRGLSBOUNDEDRECORD;
//C typedef struct tagEMRPIXELFORMAT {
//C EMR emr;
//C PIXELFORMATDESCRIPTOR pfd;
//C } EMRPIXELFORMAT,*PEMRPIXELFORMAT;
struct tagEMRPIXELFORMAT
{
EMR emr;
PIXELFORMATDESCRIPTOR pfd;
}
alias tagEMRPIXELFORMAT EMRPIXELFORMAT;
alias tagEMRPIXELFORMAT *PEMRPIXELFORMAT;
//C typedef struct tagEMRCREATECOLORSPACE {
//C EMR emr;
//C DWORD ihCS;
//C LOGCOLORSPACEA lcs;
//C } EMRCREATECOLORSPACE,*PEMRCREATECOLORSPACE;
struct tagEMRCREATECOLORSPACE
{
EMR emr;
DWORD ihCS;
LOGCOLORSPACEA lcs;
}
alias tagEMRCREATECOLORSPACE EMRCREATECOLORSPACE;
alias tagEMRCREATECOLORSPACE *PEMRCREATECOLORSPACE;
//C typedef struct tagEMRSETCOLORSPACE {
//C EMR emr;
//C DWORD ihCS;
//C } EMRSETCOLORSPACE,*PEMRSETCOLORSPACE,EMRSELECTCOLORSPACE,*PEMRSELECTCOLORSPACE,EMRDELETECOLORSPACE,*PEMRDELETECOLORSPACE;
struct tagEMRSETCOLORSPACE
{
EMR emr;
DWORD ihCS;
}
alias tagEMRSETCOLORSPACE EMRSETCOLORSPACE;
alias tagEMRSETCOLORSPACE *PEMRSETCOLORSPACE;
alias tagEMRSETCOLORSPACE EMRSELECTCOLORSPACE;
alias tagEMRSETCOLORSPACE *PEMRSELECTCOLORSPACE;
alias tagEMRSETCOLORSPACE EMRDELETECOLORSPACE;
alias tagEMRSETCOLORSPACE *PEMRDELETECOLORSPACE;
//C typedef struct tagEMREXTESCAPE {
//C EMR emr;
//C INT iEscape;
//C INT cbEscData;
//C BYTE EscData[1];
//C } EMREXTESCAPE,*PEMREXTESCAPE,EMRDRAWESCAPE,*PEMRDRAWESCAPE;
struct tagEMREXTESCAPE
{
EMR emr;
INT iEscape;
INT cbEscData;
BYTE [1]EscData;
}
alias tagEMREXTESCAPE EMREXTESCAPE;
alias tagEMREXTESCAPE *PEMREXTESCAPE;
alias tagEMREXTESCAPE EMRDRAWESCAPE;
alias tagEMREXTESCAPE *PEMRDRAWESCAPE;
//C typedef struct tagEMRNAMEDESCAPE {
//C EMR emr;
//C INT iEscape;
//C INT cbDriver;
//C INT cbEscData;
//C BYTE EscData[1];
//C } EMRNAMEDESCAPE,*PEMRNAMEDESCAPE;
struct tagEMRNAMEDESCAPE
{
EMR emr;
INT iEscape;
INT cbDriver;
INT cbEscData;
BYTE [1]EscData;
}
alias tagEMRNAMEDESCAPE EMRNAMEDESCAPE;
alias tagEMRNAMEDESCAPE *PEMRNAMEDESCAPE;
//C typedef struct tagEMRSETICMPROFILE {
//C EMR emr;
//C DWORD dwFlags;
//C DWORD cbName;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRSETICMPROFILE,*PEMRSETICMPROFILE,EMRSETICMPROFILEA,*PEMRSETICMPROFILEA,EMRSETICMPROFILEW,*PEMRSETICMPROFILEW;
struct tagEMRSETICMPROFILE
{
EMR emr;
DWORD dwFlags;
DWORD cbName;
DWORD cbData;
BYTE [1]Data;
}
alias tagEMRSETICMPROFILE EMRSETICMPROFILE;
alias tagEMRSETICMPROFILE *PEMRSETICMPROFILE;
alias tagEMRSETICMPROFILE EMRSETICMPROFILEA;
alias tagEMRSETICMPROFILE *PEMRSETICMPROFILEA;
alias tagEMRSETICMPROFILE EMRSETICMPROFILEW;
alias tagEMRSETICMPROFILE *PEMRSETICMPROFILEW;
//C typedef struct tagEMRCREATECOLORSPACEW {
//C EMR emr;
//C DWORD ihCS;
//C LOGCOLORSPACEW lcs;
//C DWORD dwFlags;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRCREATECOLORSPACEW,*PEMRCREATECOLORSPACEW;
struct tagEMRCREATECOLORSPACEW
{
EMR emr;
DWORD ihCS;
LOGCOLORSPACEW lcs;
DWORD dwFlags;
DWORD cbData;
BYTE [1]Data;
}
alias tagEMRCREATECOLORSPACEW EMRCREATECOLORSPACEW;
alias tagEMRCREATECOLORSPACEW *PEMRCREATECOLORSPACEW;
//C typedef struct tagCOLORMATCHTOTARGET {
//C EMR emr;
//C DWORD dwAction;
//C DWORD dwFlags;
//C DWORD cbName;
//C DWORD cbData;
//C BYTE Data[1];
//C } EMRCOLORMATCHTOTARGET,*PEMRCOLORMATCHTOTARGET;
struct tagCOLORMATCHTOTARGET
{
EMR emr;
DWORD dwAction;
DWORD dwFlags;
DWORD cbName;
DWORD cbData;
BYTE [1]Data;
}
alias tagCOLORMATCHTOTARGET EMRCOLORMATCHTOTARGET;
alias tagCOLORMATCHTOTARGET *PEMRCOLORMATCHTOTARGET;
//C typedef struct tagCOLORCORRECTPALETTE {
//C EMR emr;
//C DWORD ihPalette;
//C DWORD nFirstEntry;
//C DWORD nPalEntries;
//C DWORD nReserved;
//C } EMRCOLORCORRECTPALETTE,*PEMRCOLORCORRECTPALETTE;
struct tagCOLORCORRECTPALETTE
{
EMR emr;
DWORD ihPalette;
DWORD nFirstEntry;
DWORD nPalEntries;
DWORD nReserved;
}
alias tagCOLORCORRECTPALETTE EMRCOLORCORRECTPALETTE;
alias tagCOLORCORRECTPALETTE *PEMRCOLORCORRECTPALETTE;
//C typedef struct tagEMRALPHABLEND {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG cxDest;
//C LONG cyDest;
//C DWORD dwRop;
//C LONG xSrc;
//C LONG ySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C LONG cxSrc;
//C LONG cySrc;
//C } EMRALPHABLEND,*PEMRALPHABLEND;
struct tagEMRALPHABLEND
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG cxDest;
LONG cyDest;
DWORD dwRop;
LONG xSrc;
LONG ySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
LONG cxSrc;
LONG cySrc;
}
alias tagEMRALPHABLEND EMRALPHABLEND;
alias tagEMRALPHABLEND *PEMRALPHABLEND;
//C typedef struct tagEMRGRADIENTFILL {
//C EMR emr;
//C RECTL rclBounds;
//C DWORD nVer;
//C DWORD nTri;
//C ULONG ulMode;
//C TRIVERTEX Ver[1];
//C } EMRGRADIENTFILL,*PEMRGRADIENTFILL;
struct tagEMRGRADIENTFILL
{
EMR emr;
RECTL rclBounds;
DWORD nVer;
DWORD nTri;
ULONG ulMode;
TRIVERTEX [1]Ver;
}
alias tagEMRGRADIENTFILL EMRGRADIENTFILL;
alias tagEMRGRADIENTFILL *PEMRGRADIENTFILL;
//C typedef struct tagEMRTRANSPARENTBLT {
//C EMR emr;
//C RECTL rclBounds;
//C LONG xDest;
//C LONG yDest;
//C LONG cxDest;
//C LONG cyDest;
//C DWORD dwRop;
//C LONG xSrc;
//C LONG ySrc;
//C XFORM xformSrc;
//C COLORREF crBkColorSrc;
//C DWORD iUsageSrc;
//C DWORD offBmiSrc;
//C DWORD cbBmiSrc;
//C DWORD offBitsSrc;
//C DWORD cbBitsSrc;
//C LONG cxSrc;
//C LONG cySrc;
//C } EMRTRANSPARENTBLT,*PEMRTRANSPARENTBLT;
struct tagEMRTRANSPARENTBLT
{
EMR emr;
RECTL rclBounds;
LONG xDest;
LONG yDest;
LONG cxDest;
LONG cyDest;
DWORD dwRop;
LONG xSrc;
LONG ySrc;
XFORM xformSrc;
COLORREF crBkColorSrc;
DWORD iUsageSrc;
DWORD offBmiSrc;
DWORD cbBmiSrc;
DWORD offBitsSrc;
DWORD cbBitsSrc;
LONG cxSrc;
LONG cySrc;
}
alias tagEMRTRANSPARENTBLT EMRTRANSPARENTBLT;
alias tagEMRTRANSPARENTBLT *PEMRTRANSPARENTBLT;
//C WINBOOL wglCopyContext(HGLRC,HGLRC,UINT);
WINBOOL wglCopyContext(HGLRC , HGLRC , UINT );
//C HGLRC wglCreateContext();
HGLRC wglCreateContext(HDC );
//C HGLRC wglCreateLayerContext(HDC,int);
HGLRC wglCreateLayerContext(HDC , int );
//C WINBOOL wglDeleteContext(HGLRC);
WINBOOL wglDeleteContext(HGLRC );
//C HGLRC wglGetCurrentContext(void);
HGLRC wglGetCurrentContext();
//C HDC wglGetCurrentDC(void);
HDC wglGetCurrentDC();
//C PROC wglGetProcAddress(LPCSTR);
PROC wglGetProcAddress(LPCSTR );
//C WINBOOL wglMakeCurrent(HDC,HGLRC);
WINBOOL wglMakeCurrent(HDC , HGLRC );
//C WINBOOL wglShareLists(HGLRC,HGLRC);
WINBOOL wglShareLists(HGLRC , HGLRC );
//C WINBOOL wglUseFontBitmapsA(HDC,DWORD,DWORD,DWORD);
WINBOOL wglUseFontBitmapsA(HDC , DWORD , DWORD , DWORD );
//C WINBOOL wglUseFontBitmapsW(HDC,DWORD,DWORD,DWORD);
WINBOOL wglUseFontBitmapsW(HDC , DWORD , DWORD , DWORD );
//C WINBOOL SwapBuffers();
WINBOOL SwapBuffers(HDC );
//C typedef struct _POINTFLOAT {
//C FLOAT x;
//C FLOAT y;
//C } POINTFLOAT,*PPOINTFLOAT;
struct _POINTFLOAT
{
FLOAT x;
FLOAT y;
}
alias _POINTFLOAT POINTFLOAT;
alias _POINTFLOAT *PPOINTFLOAT;
//C typedef struct _GLYPHMETRICSFLOAT {
//C FLOAT gmfBlackBoxX;
//C FLOAT gmfBlackBoxY;
//C POINTFLOAT gmfptGlyphOrigin;
//C FLOAT gmfCellIncX;
//C FLOAT gmfCellIncY;
//C } GLYPHMETRICSFLOAT,*PGLYPHMETRICSFLOAT,*LPGLYPHMETRICSFLOAT;
struct _GLYPHMETRICSFLOAT
{
FLOAT gmfBlackBoxX;
FLOAT gmfBlackBoxY;
POINTFLOAT gmfptGlyphOrigin;
FLOAT gmfCellIncX;
FLOAT gmfCellIncY;
}
alias _GLYPHMETRICSFLOAT GLYPHMETRICSFLOAT;
alias _GLYPHMETRICSFLOAT *PGLYPHMETRICSFLOAT;
alias _GLYPHMETRICSFLOAT *LPGLYPHMETRICSFLOAT;
//C WINBOOL wglUseFontOutlinesA(HDC,DWORD,DWORD,DWORD,FLOAT,FLOAT,int,LPGLYPHMETRICSFLOAT);
WINBOOL wglUseFontOutlinesA(HDC , DWORD , DWORD , DWORD , FLOAT , FLOAT , int , LPGLYPHMETRICSFLOAT );
//C WINBOOL wglUseFontOutlinesW(HDC,DWORD,DWORD,DWORD,FLOAT,FLOAT,int,LPGLYPHMETRICSFLOAT);
WINBOOL wglUseFontOutlinesW(HDC , DWORD , DWORD , DWORD , FLOAT , FLOAT , int , LPGLYPHMETRICSFLOAT );
//C typedef struct tagLAYERPLANEDESCRIPTOR {
//C WORD nSize;
//C WORD nVersion;
//C DWORD dwFlags;
//C BYTE iPixelType;
//C BYTE cColorBits;
//C BYTE cRedBits;
//C BYTE cRedShift;
//C BYTE cGreenBits;
//C BYTE cGreenShift;
//C BYTE cBlueBits;
//C BYTE cBlueShift;
//C BYTE cAlphaBits;
//C BYTE cAlphaShift;
//C BYTE cAccumBits;
//C BYTE cAccumRedBits;
//C BYTE cAccumGreenBits;
//C BYTE cAccumBlueBits;
//C BYTE cAccumAlphaBits;
//C BYTE cDepthBits;
//C BYTE cStencilBits;
//C BYTE cAuxBuffers;
//C BYTE iLayerPlane;
//C BYTE bReserved;
//C COLORREF crTransparent;
//C } LAYERPLANEDESCRIPTOR,*PLAYERPLANEDESCRIPTOR,*LPLAYERPLANEDESCRIPTOR;
struct tagLAYERPLANEDESCRIPTOR
{
WORD nSize;
WORD nVersion;
DWORD dwFlags;
BYTE iPixelType;
BYTE cColorBits;
BYTE cRedBits;
BYTE cRedShift;
BYTE cGreenBits;
BYTE cGreenShift;
BYTE cBlueBits;
BYTE cBlueShift;
BYTE cAlphaBits;
BYTE cAlphaShift;
BYTE cAccumBits;
BYTE cAccumRedBits;
BYTE cAccumGreenBits;
BYTE cAccumBlueBits;
BYTE cAccumAlphaBits;
BYTE cDepthBits;
BYTE cStencilBits;
BYTE cAuxBuffers;
BYTE iLayerPlane;
BYTE bReserved;
COLORREF crTransparent;
}
alias tagLAYERPLANEDESCRIPTOR LAYERPLANEDESCRIPTOR;
alias tagLAYERPLANEDESCRIPTOR *PLAYERPLANEDESCRIPTOR;
alias tagLAYERPLANEDESCRIPTOR *LPLAYERPLANEDESCRIPTOR;
//C WINBOOL wglDescribeLayerPlane(HDC,int,int,UINT,LPLAYERPLANEDESCRIPTOR);
WINBOOL wglDescribeLayerPlane(HDC , int , int , UINT , LPLAYERPLANEDESCRIPTOR );
//C int wglSetLayerPaletteEntries(HDC,int,int,int,const COLORREF *);
int wglSetLayerPaletteEntries(HDC , int , int , int , COLORREF *);
//C int wglGetLayerPaletteEntries(HDC,int,int,int,COLORREF *);
int wglGetLayerPaletteEntries(HDC , int , int , int , COLORREF *);
//C WINBOOL wglRealizeLayerPalette(HDC,int,WINBOOL);
WINBOOL wglRealizeLayerPalette(HDC , int , WINBOOL );
//C WINBOOL wglSwapLayerBuffers(HDC,UINT);
WINBOOL wglSwapLayerBuffers(HDC , UINT );
//C typedef struct _WGLSWAP {
//C HDC hdc;
//C UINT uiFlags;
//C } WGLSWAP,*PWGLSWAP,*LPWGLSWAP;
struct _WGLSWAP
{
HDC hdc;
UINT uiFlags;
}
alias _WGLSWAP WGLSWAP;
alias _WGLSWAP *PWGLSWAP;
alias _WGLSWAP *LPWGLSWAP;
//C DWORD wglSwapMultipleBuffers(UINT,const WGLSWAP *);
DWORD wglSwapMultipleBuffers(UINT , WGLSWAP *);
//C typedef HANDLE HDWP;
alias HANDLE HDWP;
//C typedef void MENUTEMPLATEA;
alias void MENUTEMPLATEA;
//C typedef void MENUTEMPLATEW;
alias void MENUTEMPLATEW;
//C typedef PVOID LPMENUTEMPLATEA;
alias PVOID LPMENUTEMPLATEA;
//C typedef PVOID LPMENUTEMPLATEW;
alias PVOID LPMENUTEMPLATEW;
//C typedef MENUTEMPLATEA MENUTEMPLATE;
alias MENUTEMPLATEA MENUTEMPLATE;
//C typedef LPMENUTEMPLATEA LPMENUTEMPLATE;
alias LPMENUTEMPLATEA LPMENUTEMPLATE;
//C typedef LRESULT ( *WNDPROC)(HWND,UINT,WPARAM,LPARAM);
alias LRESULT function(HWND , UINT , WPARAM , LPARAM )WNDPROC;
//C typedef INT_PTR ( *DLGPROC)(HWND,UINT,WPARAM,LPARAM);
alias INT_PTR function(HWND , UINT , WPARAM , LPARAM )DLGPROC;
//C typedef void ( *TIMERPROC)(HWND,UINT,UINT_PTR,DWORD);
alias void function(HWND , UINT , UINT_PTR , DWORD )TIMERPROC;
//C typedef WINBOOL ( *GRAYSTRINGPROC)(HDC,LPARAM,int);
alias WINBOOL function(HDC , LPARAM , int )GRAYSTRINGPROC;
//C typedef WINBOOL ( *WNDENUMPROC)(HWND,LPARAM);
alias WINBOOL function(HWND , LPARAM )WNDENUMPROC;
//C typedef LRESULT ( *HOOKPROC)(int code,WPARAM wParam,LPARAM lParam);
alias LRESULT function(int code, WPARAM wParam, LPARAM lParam)HOOKPROC;
//C typedef void ( *SENDASYNCPROC)(HWND,UINT,ULONG_PTR,LRESULT);
alias void function(HWND , UINT , ULONG_PTR , LRESULT )SENDASYNCPROC;
//C typedef WINBOOL ( *PROPENUMPROCA)(HWND,LPCSTR,HANDLE);
alias WINBOOL function(HWND , LPCSTR , HANDLE )PROPENUMPROCA;
//C typedef WINBOOL ( *PROPENUMPROCW)(HWND,LPCWSTR,HANDLE);
alias WINBOOL function(HWND , LPCWSTR , HANDLE )PROPENUMPROCW;
//C typedef WINBOOL ( *PROPENUMPROCEXA)(HWND,LPSTR,HANDLE,ULONG_PTR);
alias WINBOOL function(HWND , LPSTR , HANDLE , ULONG_PTR )PROPENUMPROCEXA;
//C typedef WINBOOL ( *PROPENUMPROCEXW)(HWND,LPWSTR,HANDLE,ULONG_PTR);
alias WINBOOL function(HWND , LPWSTR , HANDLE , ULONG_PTR )PROPENUMPROCEXW;
//C typedef int ( *EDITWORDBREAKPROCA)(LPSTR lpch,int ichCurrent,int cch,int code);
alias int function(LPSTR lpch, int ichCurrent, int cch, int code)EDITWORDBREAKPROCA;
//C typedef int ( *EDITWORDBREAKPROCW)(LPWSTR lpch,int ichCurrent,int cch,int code);
alias int function(LPWSTR lpch, int ichCurrent, int cch, int code)EDITWORDBREAKPROCW;
//C typedef WINBOOL ( *DRAWSTATEPROC)(HDC hdc,LPARAM lData,WPARAM wData,int cx,int cy);
alias WINBOOL function(HDC hdc, LPARAM lData, WPARAM wData, int cx, int cy)DRAWSTATEPROC;
//C typedef PROPENUMPROCA PROPENUMPROC;
alias PROPENUMPROCA PROPENUMPROC;
//C typedef PROPENUMPROCEXA PROPENUMPROCEX;
alias PROPENUMPROCEXA PROPENUMPROCEX;
//C typedef EDITWORDBREAKPROCA EDITWORDBREAKPROC;
alias EDITWORDBREAKPROCA EDITWORDBREAKPROC;
//C typedef WINBOOL ( *NAMEENUMPROCA)(LPSTR,LPARAM);
alias WINBOOL function(LPSTR , LPARAM )NAMEENUMPROCA;
//C typedef WINBOOL ( *NAMEENUMPROCW)(LPWSTR,LPARAM);
alias WINBOOL function(LPWSTR , LPARAM )NAMEENUMPROCW;
//C typedef NAMEENUMPROCA WINSTAENUMPROCA;
alias NAMEENUMPROCA WINSTAENUMPROCA;
//C typedef NAMEENUMPROCA DESKTOPENUMPROCA;
alias NAMEENUMPROCA DESKTOPENUMPROCA;
//C typedef NAMEENUMPROCW WINSTAENUMPROCW;
alias NAMEENUMPROCW WINSTAENUMPROCW;
//C typedef NAMEENUMPROCW DESKTOPENUMPROCW;
alias NAMEENUMPROCW DESKTOPENUMPROCW;
//C typedef WINSTAENUMPROCA WINSTAENUMPROC;
alias WINSTAENUMPROCA WINSTAENUMPROC;
//C typedef DESKTOPENUMPROCA DESKTOPENUMPROC;
alias DESKTOPENUMPROCA DESKTOPENUMPROC;
//C int wvsprintfA(LPSTR,LPCSTR,va_list arglist);
int wvsprintfA(LPSTR , LPCSTR , va_list arglist);
//C int wvsprintfW(LPWSTR,LPCWSTR,va_list arglist);
int wvsprintfW(LPWSTR , LPCWSTR , va_list arglist);
//C int wsprintfA(LPSTR,LPCSTR,...);
int wsprintfA(LPSTR , LPCSTR ,...);
//C int wsprintfW(LPWSTR,LPCWSTR,...);
int wsprintfW(LPWSTR , LPCWSTR ,...);
//C typedef struct tagCBT_CREATEWNDA {
//C struct tagCREATESTRUCTA *lpcs;
//C HWND hwndInsertAfter;
//C } CBT_CREATEWNDA,*LPCBT_CREATEWNDA;
struct tagCBT_CREATEWNDA
{
tagCREATESTRUCTA *lpcs;
HWND hwndInsertAfter;
}
alias tagCBT_CREATEWNDA CBT_CREATEWNDA;
alias tagCBT_CREATEWNDA *LPCBT_CREATEWNDA;
//C typedef struct tagCBT_CREATEWNDW {
//C struct tagCREATESTRUCTW *lpcs;
//C HWND hwndInsertAfter;
//C } CBT_CREATEWNDW,*LPCBT_CREATEWNDW;
struct tagCBT_CREATEWNDW
{
tagCREATESTRUCTW *lpcs;
HWND hwndInsertAfter;
}
alias tagCBT_CREATEWNDW CBT_CREATEWNDW;
alias tagCBT_CREATEWNDW *LPCBT_CREATEWNDW;
//C typedef CBT_CREATEWNDA CBT_CREATEWND;
alias CBT_CREATEWNDA CBT_CREATEWND;
//C typedef LPCBT_CREATEWNDA LPCBT_CREATEWND;
alias LPCBT_CREATEWNDA LPCBT_CREATEWND;
//C typedef struct tagCBTACTIVATESTRUCT
//C {
//C WINBOOL fMouse;
//C HWND hWndActive;
//C } CBTACTIVATESTRUCT,*LPCBTACTIVATESTRUCT;
struct tagCBTACTIVATESTRUCT
{
WINBOOL fMouse;
HWND hWndActive;
}
alias tagCBTACTIVATESTRUCT CBTACTIVATESTRUCT;
alias tagCBTACTIVATESTRUCT *LPCBTACTIVATESTRUCT;
//C typedef struct tagWTSSESSION_NOTIFICATION {
//C DWORD cbSize;
//C DWORD dwSessionId;
//C } WTSSESSION_NOTIFICATION,*PWTSSESSION_NOTIFICATION;
struct tagWTSSESSION_NOTIFICATION
{
DWORD cbSize;
DWORD dwSessionId;
}
alias tagWTSSESSION_NOTIFICATION WTSSESSION_NOTIFICATION;
alias tagWTSSESSION_NOTIFICATION *PWTSSESSION_NOTIFICATION;
//C typedef struct {
//C HWND hwnd;
//C RECT rc;
//C } SHELLHOOKINFO,*LPSHELLHOOKINFO;
struct _N70
{
HWND hwnd;
RECT rc;
}
alias _N70 SHELLHOOKINFO;
alias _N70 *LPSHELLHOOKINFO;
//C typedef struct tagEVENTMSG {
//C UINT message;
//C UINT paramL;
//C UINT paramH;
//C DWORD time;
//C HWND hwnd;
//C } EVENTMSG,*PEVENTMSGMSG,*NPEVENTMSGMSG,*LPEVENTMSGMSG;
struct tagEVENTMSG
{
UINT message;
UINT paramL;
UINT paramH;
DWORD time;
HWND hwnd;
}
alias tagEVENTMSG EVENTMSG;
alias tagEVENTMSG *PEVENTMSGMSG;
alias tagEVENTMSG *NPEVENTMSGMSG;
alias tagEVENTMSG *LPEVENTMSGMSG;
//C typedef struct tagEVENTMSG *PEVENTMSG,*NPEVENTMSG,*LPEVENTMSG;
alias tagEVENTMSG *PEVENTMSG;
alias tagEVENTMSG *NPEVENTMSG;
alias tagEVENTMSG *LPEVENTMSG;
//C typedef struct tagCWPSTRUCT {
//C LPARAM lParam;
//C WPARAM wParam;
//C UINT message;
//C HWND hwnd;
//C } CWPSTRUCT,*PCWPSTRUCT,*NPCWPSTRUCT,*LPCWPSTRUCT;
struct tagCWPSTRUCT
{
LPARAM lParam;
WPARAM wParam;
UINT message;
HWND hwnd;
}
alias tagCWPSTRUCT CWPSTRUCT;
alias tagCWPSTRUCT *PCWPSTRUCT;
alias tagCWPSTRUCT *NPCWPSTRUCT;
alias tagCWPSTRUCT *LPCWPSTRUCT;
//C typedef struct tagCWPRETSTRUCT {
//C LRESULT lResult;
//C LPARAM lParam;
//C WPARAM wParam;
//C UINT message;
//C HWND hwnd;
//C } CWPRETSTRUCT,*PCWPRETSTRUCT,*NPCWPRETSTRUCT,*LPCWPRETSTRUCT;
struct tagCWPRETSTRUCT
{
LRESULT lResult;
LPARAM lParam;
WPARAM wParam;
UINT message;
HWND hwnd;
}
alias tagCWPRETSTRUCT CWPRETSTRUCT;
alias tagCWPRETSTRUCT *PCWPRETSTRUCT;
alias tagCWPRETSTRUCT *NPCWPRETSTRUCT;
alias tagCWPRETSTRUCT *LPCWPRETSTRUCT;
//C typedef struct tagKBDLLHOOKSTRUCT {
//C DWORD vkCode;
//C DWORD scanCode;
//C DWORD flags;
//C DWORD time;
//C ULONG_PTR dwExtraInfo;
//C } KBDLLHOOKSTRUCT,*LPKBDLLHOOKSTRUCT,*PKBDLLHOOKSTRUCT;
struct tagKBDLLHOOKSTRUCT
{
DWORD vkCode;
DWORD scanCode;
DWORD flags;
DWORD time;
ULONG_PTR dwExtraInfo;
}
alias tagKBDLLHOOKSTRUCT KBDLLHOOKSTRUCT;
alias tagKBDLLHOOKSTRUCT *LPKBDLLHOOKSTRUCT;
alias tagKBDLLHOOKSTRUCT *PKBDLLHOOKSTRUCT;
//C typedef struct tagMSLLHOOKSTRUCT {
//C POINT pt;
//C DWORD mouseData;
//C DWORD flags;
//C DWORD time;
//C ULONG_PTR dwExtraInfo;
//C } MSLLHOOKSTRUCT,*LPMSLLHOOKSTRUCT,*PMSLLHOOKSTRUCT;
struct tagMSLLHOOKSTRUCT
{
POINT pt;
DWORD mouseData;
DWORD flags;
DWORD time;
ULONG_PTR dwExtraInfo;
}
alias tagMSLLHOOKSTRUCT MSLLHOOKSTRUCT;
alias tagMSLLHOOKSTRUCT *LPMSLLHOOKSTRUCT;
alias tagMSLLHOOKSTRUCT *PMSLLHOOKSTRUCT;
//C typedef struct tagDEBUGHOOKINFO {
//C DWORD idThread;
//C DWORD idThreadInstaller;
//C LPARAM lParam;
//C WPARAM wParam;
//C int code;
//C } DEBUGHOOKINFO,*PDEBUGHOOKINFO,*NPDEBUGHOOKINFO,*LPDEBUGHOOKINFO;
struct tagDEBUGHOOKINFO
{
DWORD idThread;
DWORD idThreadInstaller;
LPARAM lParam;
WPARAM wParam;
int code;
}
alias tagDEBUGHOOKINFO DEBUGHOOKINFO;
alias tagDEBUGHOOKINFO *PDEBUGHOOKINFO;
alias tagDEBUGHOOKINFO *NPDEBUGHOOKINFO;
alias tagDEBUGHOOKINFO *LPDEBUGHOOKINFO;
//C typedef struct tagMOUSEHOOKSTRUCT {
//C POINT pt;
//C HWND hwnd;
//C UINT wHitTestCode;
//C ULONG_PTR dwExtraInfo;
//C } MOUSEHOOKSTRUCT,*LPMOUSEHOOKSTRUCT,*PMOUSEHOOKSTRUCT;
struct tagMOUSEHOOKSTRUCT
{
POINT pt;
HWND hwnd;
UINT wHitTestCode;
ULONG_PTR dwExtraInfo;
}
alias tagMOUSEHOOKSTRUCT MOUSEHOOKSTRUCT;
alias tagMOUSEHOOKSTRUCT *LPMOUSEHOOKSTRUCT;
alias tagMOUSEHOOKSTRUCT *PMOUSEHOOKSTRUCT;
//C typedef struct tagMOUSEHOOKSTRUCTEX {
//C MOUSEHOOKSTRUCT _unnamed;
//C DWORD mouseData;
//C } MOUSEHOOKSTRUCTEX,*LPMOUSEHOOKSTRUCTEX,*PMOUSEHOOKSTRUCTEX;
struct tagMOUSEHOOKSTRUCTEX
{
MOUSEHOOKSTRUCT _unnamed;
DWORD mouseData;
}
alias tagMOUSEHOOKSTRUCTEX MOUSEHOOKSTRUCTEX;
alias tagMOUSEHOOKSTRUCTEX *LPMOUSEHOOKSTRUCTEX;
alias tagMOUSEHOOKSTRUCTEX *PMOUSEHOOKSTRUCTEX;
//C typedef struct tagHARDWAREHOOKSTRUCT {
//C HWND hwnd;
//C UINT message;
//C WPARAM wParam;
//C LPARAM lParam;
//C } HARDWAREHOOKSTRUCT,*LPHARDWAREHOOKSTRUCT,*PHARDWAREHOOKSTRUCT;
struct tagHARDWAREHOOKSTRUCT
{
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
}
alias tagHARDWAREHOOKSTRUCT HARDWAREHOOKSTRUCT;
alias tagHARDWAREHOOKSTRUCT *LPHARDWAREHOOKSTRUCT;
alias tagHARDWAREHOOKSTRUCT *PHARDWAREHOOKSTRUCT;
//C HKL LoadKeyboardLayoutA(LPCSTR pwszKLID,UINT Flags);
HKL LoadKeyboardLayoutA(LPCSTR pwszKLID, UINT Flags);
//C HKL LoadKeyboardLayoutW(LPCWSTR pwszKLID,UINT Flags);
HKL LoadKeyboardLayoutW(LPCWSTR pwszKLID, UINT Flags);
//C HKL ActivateKeyboardLayout(HKL hkl,UINT Flags);
HKL ActivateKeyboardLayout(HKL hkl, UINT Flags);
//C int ToUnicodeEx(UINT wVirtKey,UINT wScanCode,const BYTE *lpKeyState,LPWSTR pwszBuff,int cchBuff,UINT wFlags,HKL dwhkl);
int ToUnicodeEx(UINT wVirtKey, UINT wScanCode, BYTE *lpKeyState, LPWSTR pwszBuff, int cchBuff, UINT wFlags, HKL dwhkl);
//C WINBOOL UnloadKeyboardLayout(HKL hkl);
WINBOOL UnloadKeyboardLayout(HKL hkl);
//C WINBOOL GetKeyboardLayoutNameA(LPSTR pwszKLID);
WINBOOL GetKeyboardLayoutNameA(LPSTR pwszKLID);
//C WINBOOL GetKeyboardLayoutNameW(LPWSTR pwszKLID);
WINBOOL GetKeyboardLayoutNameW(LPWSTR pwszKLID);
//C int GetKeyboardLayoutList(int nBuff,HKL *lpList);
int GetKeyboardLayoutList(int nBuff, HKL *lpList);
//C HKL GetKeyboardLayout(DWORD idThread);
HKL GetKeyboardLayout(DWORD idThread);
//C typedef struct tagMOUSEMOVEPOINT {
//C int x;
//C int y;
//C DWORD time;
//C ULONG_PTR dwExtraInfo;
//C } MOUSEMOVEPOINT,*PMOUSEMOVEPOINT,*LPMOUSEMOVEPOINT;
struct tagMOUSEMOVEPOINT
{
int x;
int y;
DWORD time;
ULONG_PTR dwExtraInfo;
}
alias tagMOUSEMOVEPOINT MOUSEMOVEPOINT;
alias tagMOUSEMOVEPOINT *PMOUSEMOVEPOINT;
alias tagMOUSEMOVEPOINT *LPMOUSEMOVEPOINT;
//C int GetMouseMovePointsEx(UINT cbSize,LPMOUSEMOVEPOINT lppt,LPMOUSEMOVEPOINT lpptBuf,int nBufPoints,DWORD resolution);
int GetMouseMovePointsEx(UINT cbSize, LPMOUSEMOVEPOINT lppt, LPMOUSEMOVEPOINT lpptBuf, int nBufPoints, DWORD resolution);
//C HDESK CreateDesktopA(LPCSTR lpszDesktop,LPCSTR lpszDevice,LPDEVMODEA pDevmode,DWORD dwFlags,ACCESS_MASK dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa);
HDESK CreateDesktopA(LPCSTR lpszDesktop, LPCSTR lpszDevice, LPDEVMODEA pDevmode, DWORD dwFlags, ACCESS_MASK dwDesiredAccess, LPSECURITY_ATTRIBUTES lpsa);
//C HDESK CreateDesktopW(LPCWSTR lpszDesktop,LPCWSTR lpszDevice,LPDEVMODEW pDevmode,DWORD dwFlags,ACCESS_MASK dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa);
HDESK CreateDesktopW(LPCWSTR lpszDesktop, LPCWSTR lpszDevice, LPDEVMODEW pDevmode, DWORD dwFlags, ACCESS_MASK dwDesiredAccess, LPSECURITY_ATTRIBUTES lpsa);
//C HDESK OpenDesktopA(LPCSTR lpszDesktop,DWORD dwFlags,WINBOOL fInherit,ACCESS_MASK dwDesiredAccess);
HDESK OpenDesktopA(LPCSTR lpszDesktop, DWORD dwFlags, WINBOOL fInherit, ACCESS_MASK dwDesiredAccess);
//C HDESK OpenDesktopW(LPCWSTR lpszDesktop,DWORD dwFlags,WINBOOL fInherit,ACCESS_MASK dwDesiredAccess);
HDESK OpenDesktopW(LPCWSTR lpszDesktop, DWORD dwFlags, WINBOOL fInherit, ACCESS_MASK dwDesiredAccess);
//C HDESK OpenInputDesktop(DWORD dwFlags,WINBOOL fInherit,ACCESS_MASK dwDesiredAccess);
HDESK OpenInputDesktop(DWORD dwFlags, WINBOOL fInherit, ACCESS_MASK dwDesiredAccess);
//C WINBOOL EnumDesktopsA(HWINSTA hwinsta,DESKTOPENUMPROCA lpEnumFunc,LPARAM lParam);
WINBOOL EnumDesktopsA(HWINSTA hwinsta, DESKTOPENUMPROCA lpEnumFunc, LPARAM lParam);
//C WINBOOL EnumDesktopsW(HWINSTA hwinsta,DESKTOPENUMPROCW lpEnumFunc,LPARAM lParam);
WINBOOL EnumDesktopsW(HWINSTA hwinsta, DESKTOPENUMPROCW lpEnumFunc, LPARAM lParam);
//C WINBOOL EnumDesktopWindows(HDESK hDesktop,WNDENUMPROC lpfn,LPARAM lParam);
WINBOOL EnumDesktopWindows(HDESK hDesktop, WNDENUMPROC lpfn, LPARAM lParam);
//C WINBOOL SwitchDesktop(HDESK hDesktop);
WINBOOL SwitchDesktop(HDESK hDesktop);
//C WINBOOL SetThreadDesktop(HDESK hDesktop);
WINBOOL SetThreadDesktop(HDESK hDesktop);
//C WINBOOL CloseDesktop(HDESK hDesktop);
WINBOOL CloseDesktop(HDESK hDesktop);
//C HDESK GetThreadDesktop(DWORD dwThreadId);
HDESK GetThreadDesktop(DWORD dwThreadId);
//C HWINSTA CreateWindowStationA(LPCSTR lpwinsta,DWORD dwFlags,ACCESS_MASK dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa);
HWINSTA CreateWindowStationA(LPCSTR lpwinsta, DWORD dwFlags, ACCESS_MASK dwDesiredAccess, LPSECURITY_ATTRIBUTES lpsa);
//C HWINSTA CreateWindowStationW(LPCWSTR lpwinsta,DWORD dwFlags,ACCESS_MASK dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa);
HWINSTA CreateWindowStationW(LPCWSTR lpwinsta, DWORD dwFlags, ACCESS_MASK dwDesiredAccess, LPSECURITY_ATTRIBUTES lpsa);
//C HWINSTA OpenWindowStationA(LPCSTR lpszWinSta,WINBOOL fInherit,ACCESS_MASK dwDesiredAccess);
HWINSTA OpenWindowStationA(LPCSTR lpszWinSta, WINBOOL fInherit, ACCESS_MASK dwDesiredAccess);
//C HWINSTA OpenWindowStationW(LPCWSTR lpszWinSta,WINBOOL fInherit,ACCESS_MASK dwDesiredAccess);
HWINSTA OpenWindowStationW(LPCWSTR lpszWinSta, WINBOOL fInherit, ACCESS_MASK dwDesiredAccess);
//C WINBOOL EnumWindowStationsA(WINSTAENUMPROCA lpEnumFunc,LPARAM lParam);
WINBOOL EnumWindowStationsA(WINSTAENUMPROCA lpEnumFunc, LPARAM lParam);
//C WINBOOL EnumWindowStationsW(WINSTAENUMPROCW lpEnumFunc,LPARAM lParam);
WINBOOL EnumWindowStationsW(WINSTAENUMPROCW lpEnumFunc, LPARAM lParam);
//C WINBOOL CloseWindowStation(HWINSTA hWinSta);
WINBOOL CloseWindowStation(HWINSTA hWinSta);
//C WINBOOL SetProcessWindowStation(HWINSTA hWinSta);
WINBOOL SetProcessWindowStation(HWINSTA hWinSta);
//C HWINSTA GetProcessWindowStation(void);
HWINSTA GetProcessWindowStation();
//C WINBOOL SetUserObjectSecurity(HANDLE hObj,PSECURITY_INFORMATION pSIRequested,PSECURITY_DESCRIPTOR pSID);
WINBOOL SetUserObjectSecurity(HANDLE hObj, PSECURITY_INFORMATION pSIRequested, PSECURITY_DESCRIPTOR pSID);
//C WINBOOL GetUserObjectSecurity(HANDLE hObj,PSECURITY_INFORMATION pSIRequested,PSECURITY_DESCRIPTOR pSID,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetUserObjectSecurity(HANDLE hObj, PSECURITY_INFORMATION pSIRequested, PSECURITY_DESCRIPTOR pSID, DWORD nLength, LPDWORD lpnLengthNeeded);
//C typedef struct tagUSEROBJECTFLAGS {
//C WINBOOL fInherit;
//C WINBOOL fReserved;
//C DWORD dwFlags;
//C } USEROBJECTFLAGS,*PUSEROBJECTFLAGS;
struct tagUSEROBJECTFLAGS
{
WINBOOL fInherit;
WINBOOL fReserved;
DWORD dwFlags;
}
alias tagUSEROBJECTFLAGS USEROBJECTFLAGS;
alias tagUSEROBJECTFLAGS *PUSEROBJECTFLAGS;
//C WINBOOL GetUserObjectInformationA(HANDLE hObj,int nIndex,PVOID pvInfo,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetUserObjectInformationA(HANDLE hObj, int nIndex, PVOID pvInfo, DWORD nLength, LPDWORD lpnLengthNeeded);
//C WINBOOL GetUserObjectInformationW(HANDLE hObj,int nIndex,PVOID pvInfo,DWORD nLength,LPDWORD lpnLengthNeeded);
WINBOOL GetUserObjectInformationW(HANDLE hObj, int nIndex, PVOID pvInfo, DWORD nLength, LPDWORD lpnLengthNeeded);
//C WINBOOL SetUserObjectInformationA(HANDLE hObj,int nIndex,PVOID pvInfo,DWORD nLength);
WINBOOL SetUserObjectInformationA(HANDLE hObj, int nIndex, PVOID pvInfo, DWORD nLength);
//C WINBOOL SetUserObjectInformationW(HANDLE hObj,int nIndex,PVOID pvInfo,DWORD nLength);
WINBOOL SetUserObjectInformationW(HANDLE hObj, int nIndex, PVOID pvInfo, DWORD nLength);
//C typedef struct tagWNDCLASSEXA {
//C UINT cbSize;
//C UINT style;
//C WNDPROC lpfnWndProc;
//C int cbClsExtra;
//C int cbWndExtra;
//C HINSTANCE hInstance;
//C HICON hIcon;
//C HCURSOR hCursor;
//C HBRUSH hbrBackground;
//C LPCSTR lpszMenuName;
//C LPCSTR lpszClassName;
//C HICON hIconSm;
//C } WNDCLASSEXA,*PWNDCLASSEXA,*NPWNDCLASSEXA,*LPWNDCLASSEXA;
struct tagWNDCLASSEXA
{
UINT cbSize;
UINT style;
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
LPCSTR lpszMenuName;
LPCSTR lpszClassName;
HICON hIconSm;
}
alias tagWNDCLASSEXA WNDCLASSEXA;
alias tagWNDCLASSEXA *PWNDCLASSEXA;
alias tagWNDCLASSEXA *NPWNDCLASSEXA;
alias tagWNDCLASSEXA *LPWNDCLASSEXA;
//C typedef struct tagWNDCLASSEXW {
//C UINT cbSize;
//C UINT style;
//C WNDPROC lpfnWndProc;
//C int cbClsExtra;
//C int cbWndExtra;
//C HINSTANCE hInstance;
//C HICON hIcon;
//C HCURSOR hCursor;
//C HBRUSH hbrBackground;
//C LPCWSTR lpszMenuName;
//C LPCWSTR lpszClassName;
//C HICON hIconSm;
//C } WNDCLASSEXW,*PWNDCLASSEXW,*NPWNDCLASSEXW,*LPWNDCLASSEXW;
struct tagWNDCLASSEXW
{
UINT cbSize;
UINT style;
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
LPCWSTR lpszMenuName;
LPCWSTR lpszClassName;
HICON hIconSm;
}
alias tagWNDCLASSEXW WNDCLASSEXW;
alias tagWNDCLASSEXW *PWNDCLASSEXW;
alias tagWNDCLASSEXW *NPWNDCLASSEXW;
alias tagWNDCLASSEXW *LPWNDCLASSEXW;
//C typedef WNDCLASSEXA WNDCLASSEX;
alias WNDCLASSEXA WNDCLASSEX;
//C typedef PWNDCLASSEXA PWNDCLASSEX;
alias PWNDCLASSEXA PWNDCLASSEX;
//C typedef NPWNDCLASSEXA NPWNDCLASSEX;
alias NPWNDCLASSEXA NPWNDCLASSEX;
//C typedef LPWNDCLASSEXA LPWNDCLASSEX;
alias LPWNDCLASSEXA LPWNDCLASSEX;
//C typedef struct tagWNDCLASSA {
//C UINT style;
//C WNDPROC lpfnWndProc;
//C int cbClsExtra;
//C int cbWndExtra;
//C HINSTANCE hInstance;
//C HICON hIcon;
//C HCURSOR hCursor;
//C HBRUSH hbrBackground;
//C LPCSTR lpszMenuName;
//C LPCSTR lpszClassName;
//C } WNDCLASSA,*PWNDCLASSA,*NPWNDCLASSA,*LPWNDCLASSA;
struct tagWNDCLASSA
{
UINT style;
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
LPCSTR lpszMenuName;
LPCSTR lpszClassName;
}
alias tagWNDCLASSA WNDCLASSA;
alias tagWNDCLASSA *PWNDCLASSA;
alias tagWNDCLASSA *NPWNDCLASSA;
alias tagWNDCLASSA *LPWNDCLASSA;
//C typedef struct tagWNDCLASSW {
//C UINT style;
//C WNDPROC lpfnWndProc;
//C int cbClsExtra;
//C int cbWndExtra;
//C HINSTANCE hInstance;
//C HICON hIcon;
//C HCURSOR hCursor;
//C HBRUSH hbrBackground;
//C LPCWSTR lpszMenuName;
//C LPCWSTR lpszClassName;
//C } WNDCLASSW,*PWNDCLASSW,*NPWNDCLASSW,*LPWNDCLASSW;
struct tagWNDCLASSW
{
UINT style;
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
LPCWSTR lpszMenuName;
LPCWSTR lpszClassName;
}
alias tagWNDCLASSW WNDCLASSW;
alias tagWNDCLASSW *PWNDCLASSW;
alias tagWNDCLASSW *NPWNDCLASSW;
alias tagWNDCLASSW *LPWNDCLASSW;
//C typedef WNDCLASSA WNDCLASS;
alias WNDCLASSA WNDCLASS;
//C typedef PWNDCLASSA PWNDCLASS;
alias PWNDCLASSA PWNDCLASS;
//C typedef NPWNDCLASSA NPWNDCLASS;
alias NPWNDCLASSA NPWNDCLASS;
//C typedef LPWNDCLASSA LPWNDCLASS;
alias LPWNDCLASSA LPWNDCLASS;
//C WINBOOL IsHungAppWindow(HWND hwnd);
WINBOOL IsHungAppWindow(HWND hwnd);
//C void DisableProcessWindowsGhosting(void);
void DisableProcessWindowsGhosting();
//C typedef struct tagMSG {
//C HWND hwnd;
//C UINT message;
//C WPARAM wParam;
//C LPARAM lParam;
//C DWORD time;
//C POINT pt;
//C } MSG,*PMSG,*NPMSG,*LPMSG;
struct tagMSG
{
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
DWORD time;
POINT pt;
}
alias tagMSG MSG;
alias tagMSG *PMSG;
alias tagMSG *NPMSG;
alias tagMSG *LPMSG;
//C typedef struct tagMINMAXINFO {
//C POINT ptReserved;
//C POINT ptMaxSize;
//C POINT ptMaxPosition;
//C POINT ptMinTrackSize;
//C POINT ptMaxTrackSize;
//C } MINMAXINFO,*PMINMAXINFO,*LPMINMAXINFO;
struct tagMINMAXINFO
{
POINT ptReserved;
POINT ptMaxSize;
POINT ptMaxPosition;
POINT ptMinTrackSize;
POINT ptMaxTrackSize;
}
alias tagMINMAXINFO MINMAXINFO;
alias tagMINMAXINFO *PMINMAXINFO;
alias tagMINMAXINFO *LPMINMAXINFO;
//C typedef struct tagCOPYDATASTRUCT {
//C ULONG_PTR dwData;
//C DWORD cbData;
//C PVOID lpData;
//C } COPYDATASTRUCT,*PCOPYDATASTRUCT;
struct tagCOPYDATASTRUCT
{
ULONG_PTR dwData;
DWORD cbData;
PVOID lpData;
}
alias tagCOPYDATASTRUCT COPYDATASTRUCT;
alias tagCOPYDATASTRUCT *PCOPYDATASTRUCT;
//C typedef struct tagMDINEXTMENU {
//C HMENU hmenuIn;
//C HMENU hmenuNext;
//C HWND hwndNext;
//C } MDINEXTMENU,*PMDINEXTMENU,*LPMDINEXTMENU;
struct tagMDINEXTMENU
{
HMENU hmenuIn;
HMENU hmenuNext;
HWND hwndNext;
}
alias tagMDINEXTMENU MDINEXTMENU;
alias tagMDINEXTMENU *PMDINEXTMENU;
alias tagMDINEXTMENU *LPMDINEXTMENU;
//C UINT RegisterWindowMessageA(LPCSTR lpString);
UINT RegisterWindowMessageA(LPCSTR lpString);
//C UINT RegisterWindowMessageW(LPCWSTR lpString);
UINT RegisterWindowMessageW(LPCWSTR lpString);
//C typedef struct tagWINDOWPOS {
//C HWND hwnd;
//C HWND hwndInsertAfter;
//C int x;
//C int y;
//C int cx;
//C int cy;
//C UINT flags;
//C } WINDOWPOS,*LPWINDOWPOS,*PWINDOWPOS;
struct tagWINDOWPOS
{
HWND hwnd;
HWND hwndInsertAfter;
int x;
int y;
int cx;
int cy;
UINT flags;
}
alias tagWINDOWPOS WINDOWPOS;
alias tagWINDOWPOS *LPWINDOWPOS;
alias tagWINDOWPOS *PWINDOWPOS;
//C typedef struct tagNCCALCSIZE_PARAMS {
//C RECT rgrc[3];
//C PWINDOWPOS lppos;
//C } NCCALCSIZE_PARAMS,*LPNCCALCSIZE_PARAMS;
struct tagNCCALCSIZE_PARAMS
{
RECT [3]rgrc;
PWINDOWPOS lppos;
}
alias tagNCCALCSIZE_PARAMS NCCALCSIZE_PARAMS;
alias tagNCCALCSIZE_PARAMS *LPNCCALCSIZE_PARAMS;
//C typedef struct tagTRACKMOUSEEVENT {
//C DWORD cbSize;
//C DWORD dwFlags;
//C HWND hwndTrack;
//C DWORD dwHoverTime;
//C } TRACKMOUSEEVENT,*LPTRACKMOUSEEVENT;
struct tagTRACKMOUSEEVENT
{
DWORD cbSize;
DWORD dwFlags;
HWND hwndTrack;
DWORD dwHoverTime;
}
alias tagTRACKMOUSEEVENT TRACKMOUSEEVENT;
alias tagTRACKMOUSEEVENT *LPTRACKMOUSEEVENT;
//C WINBOOL TrackMouseEvent(LPTRACKMOUSEEVENT lpEventTrack);
WINBOOL TrackMouseEvent(LPTRACKMOUSEEVENT lpEventTrack);
//C WINBOOL DrawEdge(HDC hdc,LPRECT qrc,UINT edge,UINT grfFlags);
WINBOOL DrawEdge(HDC hdc, LPRECT qrc, UINT edge, UINT grfFlags);
//C WINBOOL DrawFrameControl(HDC,LPRECT,UINT,UINT);
WINBOOL DrawFrameControl(HDC , LPRECT , UINT , UINT );
//C WINBOOL DrawCaption(HWND hwnd,HDC hdc,const RECT *lprect,UINT flags);
WINBOOL DrawCaption(HWND hwnd, HDC hdc, RECT *lprect, UINT flags);
//C WINBOOL DrawAnimatedRects(HWND hwnd,int idAni,const RECT *lprcFrom,const RECT *lprcTo);
WINBOOL DrawAnimatedRects(HWND hwnd, int idAni, RECT *lprcFrom, RECT *lprcTo);
//C typedef struct tagACCEL {
//C BYTE fVirt;
//C WORD key;
//C WORD cmd;
//C } ACCEL,*LPACCEL;
struct tagACCEL
{
BYTE fVirt;
WORD key;
WORD cmd;
}
alias tagACCEL ACCEL;
alias tagACCEL *LPACCEL;
//C typedef struct tagPAINTSTRUCT {
//C HDC hdc;
//C WINBOOL fErase;
//C RECT rcPaint;
//C WINBOOL fRestore;
//C WINBOOL fIncUpdate;
//C BYTE rgbReserved[32];
//C } PAINTSTRUCT,*PPAINTSTRUCT,*NPPAINTSTRUCT,*LPPAINTSTRUCT;
struct tagPAINTSTRUCT
{
HDC hdc;
WINBOOL fErase;
RECT rcPaint;
WINBOOL fRestore;
WINBOOL fIncUpdate;
BYTE [32]rgbReserved;
}
alias tagPAINTSTRUCT PAINTSTRUCT;
alias tagPAINTSTRUCT *PPAINTSTRUCT;
alias tagPAINTSTRUCT *NPPAINTSTRUCT;
alias tagPAINTSTRUCT *LPPAINTSTRUCT;
//C typedef struct tagCREATESTRUCTA {
//C LPVOID lpCreateParams;
//C HINSTANCE hInstance;
//C HMENU hMenu;
//C HWND hwndParent;
//C int cy;
//C int cx;
//C int y;
//C int x;
//C LONG style;
//C LPCSTR lpszName;
//C LPCSTR lpszClass;
//C DWORD dwExStyle;
//C } CREATESTRUCTA,*LPCREATESTRUCTA;
struct tagCREATESTRUCTA
{
LPVOID lpCreateParams;
HINSTANCE hInstance;
HMENU hMenu;
HWND hwndParent;
int cy;
int cx;
int y;
int x;
LONG style;
LPCSTR lpszName;
LPCSTR lpszClass;
DWORD dwExStyle;
}
alias tagCREATESTRUCTA CREATESTRUCTA;
alias tagCREATESTRUCTA *LPCREATESTRUCTA;
//C typedef struct tagCREATESTRUCTW {
//C LPVOID lpCreateParams;
//C HINSTANCE hInstance;
//C HMENU hMenu;
//C HWND hwndParent;
//C int cy;
//C int cx;
//C int y;
//C int x;
//C LONG style;
//C LPCWSTR lpszName;
//C LPCWSTR lpszClass;
//C DWORD dwExStyle;
//C } CREATESTRUCTW,*LPCREATESTRUCTW;
struct tagCREATESTRUCTW
{
LPVOID lpCreateParams;
HINSTANCE hInstance;
HMENU hMenu;
HWND hwndParent;
int cy;
int cx;
int y;
int x;
LONG style;
LPCWSTR lpszName;
LPCWSTR lpszClass;
DWORD dwExStyle;
}
alias tagCREATESTRUCTW CREATESTRUCTW;
alias tagCREATESTRUCTW *LPCREATESTRUCTW;
//C typedef CREATESTRUCTA CREATESTRUCT;
alias CREATESTRUCTA CREATESTRUCT;
//C typedef LPCREATESTRUCTA LPCREATESTRUCT;
alias LPCREATESTRUCTA LPCREATESTRUCT;
//C typedef struct tagWINDOWPLACEMENT {
//C UINT length;
//C UINT flags;
//C UINT showCmd;
//C POINT ptMinPosition;
//C POINT ptMaxPosition;
//C RECT rcNormalPosition;
//C } WINDOWPLACEMENT;
struct tagWINDOWPLACEMENT
{
UINT length;
UINT flags;
UINT showCmd;
POINT ptMinPosition;
POINT ptMaxPosition;
RECT rcNormalPosition;
}
alias tagWINDOWPLACEMENT WINDOWPLACEMENT;
//C typedef WINDOWPLACEMENT *PWINDOWPLACEMENT,*LPWINDOWPLACEMENT;
alias WINDOWPLACEMENT *PWINDOWPLACEMENT;
alias WINDOWPLACEMENT *LPWINDOWPLACEMENT;
//C typedef struct tagNMHDR {
//C HWND hwndFrom;
//C UINT_PTR idFrom;
//C UINT code;
//C } NMHDR;
struct tagNMHDR
{
HWND hwndFrom;
UINT_PTR idFrom;
UINT code;
}
alias tagNMHDR NMHDR;
//C typedef NMHDR *LPNMHDR;
alias NMHDR *LPNMHDR;
//C typedef struct tagSTYLESTRUCT {
//C DWORD styleOld;
//C DWORD styleNew;
//C } STYLESTRUCT,*LPSTYLESTRUCT;
struct tagSTYLESTRUCT
{
DWORD styleOld;
DWORD styleNew;
}
alias tagSTYLESTRUCT STYLESTRUCT;
alias tagSTYLESTRUCT *LPSTYLESTRUCT;
//C typedef struct tagMEASUREITEMSTRUCT {
//C UINT CtlType;
//C UINT CtlID;
//C UINT itemID;
//C UINT itemWidth;
//C UINT itemHeight;
//C ULONG_PTR itemData;
//C } MEASUREITEMSTRUCT,*PMEASUREITEMSTRUCT,*LPMEASUREITEMSTRUCT;
struct tagMEASUREITEMSTRUCT
{
UINT CtlType;
UINT CtlID;
UINT itemID;
UINT itemWidth;
UINT itemHeight;
ULONG_PTR itemData;
}
alias tagMEASUREITEMSTRUCT MEASUREITEMSTRUCT;
alias tagMEASUREITEMSTRUCT *PMEASUREITEMSTRUCT;
alias tagMEASUREITEMSTRUCT *LPMEASUREITEMSTRUCT;
//C typedef struct tagDRAWITEMSTRUCT {
//C UINT CtlType;
//C UINT CtlID;
//C UINT itemID;
//C UINT itemAction;
//C UINT itemState;
//C HWND hwndItem;
//C HDC hDC;
//C RECT rcItem;
//C ULONG_PTR itemData;
//C } DRAWITEMSTRUCT,*PDRAWITEMSTRUCT,*LPDRAWITEMSTRUCT;
struct tagDRAWITEMSTRUCT
{
UINT CtlType;
UINT CtlID;
UINT itemID;
UINT itemAction;
UINT itemState;
HWND hwndItem;
HDC hDC;
RECT rcItem;
ULONG_PTR itemData;
}
alias tagDRAWITEMSTRUCT DRAWITEMSTRUCT;
alias tagDRAWITEMSTRUCT *PDRAWITEMSTRUCT;
alias tagDRAWITEMSTRUCT *LPDRAWITEMSTRUCT;
//C typedef struct tagDELETEITEMSTRUCT {
//C UINT CtlType;
//C UINT CtlID;
//C UINT itemID;
//C HWND hwndItem;
//C ULONG_PTR itemData;
//C } DELETEITEMSTRUCT,*PDELETEITEMSTRUCT,*LPDELETEITEMSTRUCT;
struct tagDELETEITEMSTRUCT
{
UINT CtlType;
UINT CtlID;
UINT itemID;
HWND hwndItem;
ULONG_PTR itemData;
}
alias tagDELETEITEMSTRUCT DELETEITEMSTRUCT;
alias tagDELETEITEMSTRUCT *PDELETEITEMSTRUCT;
alias tagDELETEITEMSTRUCT *LPDELETEITEMSTRUCT;
//C typedef struct tagCOMPAREITEMSTRUCT {
//C UINT CtlType;
//C UINT CtlID;
//C HWND hwndItem;
//C UINT itemID1;
//C ULONG_PTR itemData1;
//C UINT itemID2;
//C ULONG_PTR itemData2;
//C DWORD dwLocaleId;
//C } COMPAREITEMSTRUCT,*PCOMPAREITEMSTRUCT,*LPCOMPAREITEMSTRUCT;
struct tagCOMPAREITEMSTRUCT
{
UINT CtlType;
UINT CtlID;
HWND hwndItem;
UINT itemID1;
ULONG_PTR itemData1;
UINT itemID2;
ULONG_PTR itemData2;
DWORD dwLocaleId;
}
alias tagCOMPAREITEMSTRUCT COMPAREITEMSTRUCT;
alias tagCOMPAREITEMSTRUCT *PCOMPAREITEMSTRUCT;
alias tagCOMPAREITEMSTRUCT *LPCOMPAREITEMSTRUCT;
//C WINBOOL GetMessageA(LPMSG lpMsg,HWND hWnd,UINT wMsgFilterMin,UINT wMsgFilterMax);
WINBOOL GetMessageA(LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax);
//C WINBOOL GetMessageW(LPMSG lpMsg,HWND hWnd,UINT wMsgFilterMin,UINT wMsgFilterMax);
WINBOOL GetMessageW(LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax);
//C WINBOOL TranslateMessage(const MSG *lpMsg);
WINBOOL TranslateMessage(MSG *lpMsg);
//C LRESULT DispatchMessageA(const MSG *lpMsg);
LRESULT DispatchMessageA(MSG *lpMsg);
//C LRESULT DispatchMessageW(const MSG *lpMsg);
LRESULT DispatchMessageW(MSG *lpMsg);
//C WINBOOL SetMessageQueue(int cMessagesMax);
WINBOOL SetMessageQueue(int cMessagesMax);
//C WINBOOL PeekMessageA(LPMSG lpMsg,HWND hWnd,UINT wMsgFilterMin,UINT wMsgFilterMax,UINT wRemoveMsg);
WINBOOL PeekMessageA(LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax, UINT wRemoveMsg);
//C WINBOOL PeekMessageW(LPMSG lpMsg,HWND hWnd,UINT wMsgFilterMin,UINT wMsgFilterMax,UINT wRemoveMsg);
WINBOOL PeekMessageW(LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax, UINT wRemoveMsg);
//C WINBOOL RegisterHotKey(HWND hWnd,int id,UINT fsModifiers,UINT vk);
WINBOOL RegisterHotKey(HWND hWnd, int id, UINT fsModifiers, UINT vk);
//C WINBOOL UnregisterHotKey(HWND hWnd,int id);
WINBOOL UnregisterHotKey(HWND hWnd, int id);
//C WINBOOL ExitWindowsEx(UINT uFlags,DWORD dwReason);
WINBOOL ExitWindowsEx(UINT uFlags, DWORD dwReason);
//C WINBOOL SwapMouseButton(WINBOOL fSwap);
WINBOOL SwapMouseButton(WINBOOL fSwap);
//C DWORD GetMessagePos(void);
DWORD GetMessagePos();
//C LONG GetMessageTime(void);
LONG GetMessageTime();
//C LPARAM GetMessageExtraInfo(void);
LPARAM GetMessageExtraInfo();
//C WINBOOL IsWow64Message(void);
WINBOOL IsWow64Message();
//C LPARAM SetMessageExtraInfo(LPARAM lParam);
LPARAM SetMessageExtraInfo(LPARAM lParam);
//C LRESULT SendMessageA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT SendMessageA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT SendMessageW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT SendMessageW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT SendMessageTimeoutA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam,UINT fuFlags,UINT uTimeout,PDWORD_PTR lpdwResult);
LRESULT SendMessageTimeoutA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, UINT fuFlags, UINT uTimeout, PDWORD_PTR lpdwResult);
//C LRESULT SendMessageTimeoutW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam,UINT fuFlags,UINT uTimeout,PDWORD_PTR lpdwResult);
LRESULT SendMessageTimeoutW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, UINT fuFlags, UINT uTimeout, PDWORD_PTR lpdwResult);
//C WINBOOL SendNotifyMessageA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL SendNotifyMessageA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL SendNotifyMessageW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL SendNotifyMessageW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL SendMessageCallbackA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam,SENDASYNCPROC lpResultCallBack,ULONG_PTR dwData);
WINBOOL SendMessageCallbackA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, SENDASYNCPROC lpResultCallBack, ULONG_PTR dwData);
//C WINBOOL SendMessageCallbackW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam,SENDASYNCPROC lpResultCallBack,ULONG_PTR dwData);
WINBOOL SendMessageCallbackW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, SENDASYNCPROC lpResultCallBack, ULONG_PTR dwData);
//C typedef struct {
//C UINT cbSize;
//C HDESK hdesk;
//C HWND hwnd;
//C LUID luid;
//C } BSMINFO,*PBSMINFO;
struct _N71
{
UINT cbSize;
HDESK hdesk;
HWND hwnd;
LUID luid;
}
alias _N71 BSMINFO;
alias _N71 *PBSMINFO;
//C long BroadcastSystemMessageExA(DWORD flags,LPDWORD lpInfo,UINT Msg,WPARAM wParam,LPARAM lParam,PBSMINFO pbsmInfo);
int BroadcastSystemMessageExA(DWORD flags, LPDWORD lpInfo, UINT Msg, WPARAM wParam, LPARAM lParam, PBSMINFO pbsmInfo);
//C long BroadcastSystemMessageExW(DWORD flags,LPDWORD lpInfo,UINT Msg,WPARAM wParam,LPARAM lParam,PBSMINFO pbsmInfo);
int BroadcastSystemMessageExW(DWORD flags, LPDWORD lpInfo, UINT Msg, WPARAM wParam, LPARAM lParam, PBSMINFO pbsmInfo);
//C long BroadcastSystemMessageA(DWORD flags,LPDWORD lpInfo,UINT Msg,WPARAM wParam,LPARAM lParam);
int BroadcastSystemMessageA(DWORD flags, LPDWORD lpInfo, UINT Msg, WPARAM wParam, LPARAM lParam);
//C long BroadcastSystemMessageW(DWORD flags,LPDWORD lpInfo,UINT Msg,WPARAM wParam,LPARAM lParam);
int BroadcastSystemMessageW(DWORD flags, LPDWORD lpInfo, UINT Msg, WPARAM wParam, LPARAM lParam);
//C typedef PVOID HDEVNOTIFY;
alias PVOID HDEVNOTIFY;
//C typedef HDEVNOTIFY *PHDEVNOTIFY;
alias HDEVNOTIFY *PHDEVNOTIFY;
//C typedef HANDLE HPOWERNOTIFY;
alias HANDLE HPOWERNOTIFY;
//C typedef HPOWERNOTIFY *PHPOWERNOTIFY;
alias HPOWERNOTIFY *PHPOWERNOTIFY;
//C typedef struct {
//C GUID PowerSetting;
//C DWORD DataLength;
//C UCHAR Data[1];
//C } POWERBROADCAST_SETTING,*PPOWERBROADCAST_SETTING;
struct _N72
{
GUID PowerSetting;
DWORD DataLength;
UCHAR [1]Data;
}
alias _N72 POWERBROADCAST_SETTING;
alias _N72 *PPOWERBROADCAST_SETTING;
//C HDEVNOTIFY RegisterDeviceNotificationA(HANDLE hRecipient,LPVOID NotificationFilter,DWORD Flags);
HDEVNOTIFY RegisterDeviceNotificationA(HANDLE hRecipient, LPVOID NotificationFilter, DWORD Flags);
//C HDEVNOTIFY RegisterDeviceNotificationW(HANDLE hRecipient,LPVOID NotificationFilter,DWORD Flags);
HDEVNOTIFY RegisterDeviceNotificationW(HANDLE hRecipient, LPVOID NotificationFilter, DWORD Flags);
//C WINBOOL UnregisterDeviceNotification(HDEVNOTIFY Handle);
WINBOOL UnregisterDeviceNotification(HDEVNOTIFY Handle);
//C WINBOOL PostMessageA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL PostMessageA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL PostMessageW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL PostMessageW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL PostThreadMessageA(DWORD idThread,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL PostThreadMessageA(DWORD idThread, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL PostThreadMessageW(DWORD idThread,UINT Msg,WPARAM wParam,LPARAM lParam);
WINBOOL PostThreadMessageW(DWORD idThread, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL AttachThreadInput(DWORD idAttach,DWORD idAttachTo,WINBOOL fAttach);
WINBOOL AttachThreadInput(DWORD idAttach, DWORD idAttachTo, WINBOOL fAttach);
//C WINBOOL ReplyMessage(LRESULT lResult);
WINBOOL ReplyMessage(LRESULT lResult);
//C WINBOOL WaitMessage(void);
WINBOOL WaitMessage();
//C DWORD WaitForInputIdle(HANDLE hProcess,DWORD dwMilliseconds);
DWORD WaitForInputIdle(HANDLE hProcess, DWORD dwMilliseconds);
//C LRESULT DefWindowProcA(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT DefWindowProcA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT DefWindowProcW(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT DefWindowProcW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C void PostQuitMessage(int nExitCode);
void PostQuitMessage(int nExitCode);
//C LRESULT CallWindowProcA(WNDPROC lpPrevWndFunc,HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT CallWindowProcA(WNDPROC lpPrevWndFunc, HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT CallWindowProcW(WNDPROC lpPrevWndFunc,HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT CallWindowProcW(WNDPROC lpPrevWndFunc, HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL InSendMessage(void);
WINBOOL InSendMessage();
//C DWORD InSendMessageEx(LPVOID lpReserved);
DWORD InSendMessageEx(LPVOID lpReserved);
//C UINT GetDoubleClickTime(void);
UINT GetDoubleClickTime();
//C WINBOOL SetDoubleClickTime(UINT);
WINBOOL SetDoubleClickTime(UINT );
//C ATOM RegisterClassA(const WNDCLASSA *lpWndClass);
ATOM RegisterClassA(WNDCLASSA *lpWndClass);
//C ATOM RegisterClassW(const WNDCLASSW *lpWndClass);
ATOM RegisterClassW(WNDCLASSW *lpWndClass);
//C WINBOOL UnregisterClassA(LPCSTR lpClassName,HINSTANCE hInstance);
WINBOOL UnregisterClassA(LPCSTR lpClassName, HINSTANCE hInstance);
//C WINBOOL UnregisterClassW(LPCWSTR lpClassName,HINSTANCE hInstance);
WINBOOL UnregisterClassW(LPCWSTR lpClassName, HINSTANCE hInstance);
//C WINBOOL GetClassInfoA(HINSTANCE hInstance,LPCSTR lpClassName,LPWNDCLASSA lpWndClass);
WINBOOL GetClassInfoA(HINSTANCE hInstance, LPCSTR lpClassName, LPWNDCLASSA lpWndClass);
//C WINBOOL GetClassInfoW(HINSTANCE hInstance,LPCWSTR lpClassName,LPWNDCLASSW lpWndClass);
WINBOOL GetClassInfoW(HINSTANCE hInstance, LPCWSTR lpClassName, LPWNDCLASSW lpWndClass);
//C ATOM RegisterClassExA(const WNDCLASSEXA *);
ATOM RegisterClassExA(WNDCLASSEXA *);
//C ATOM RegisterClassExW(const WNDCLASSEXW *);
ATOM RegisterClassExW(WNDCLASSEXW *);
//C WINBOOL GetClassInfoExA(HINSTANCE hInstance,LPCSTR lpszClass,LPWNDCLASSEXA lpwcx);
WINBOOL GetClassInfoExA(HINSTANCE hInstance, LPCSTR lpszClass, LPWNDCLASSEXA lpwcx);
//C WINBOOL GetClassInfoExW(HINSTANCE hInstance,LPCWSTR lpszClass,LPWNDCLASSEXW lpwcx);
WINBOOL GetClassInfoExW(HINSTANCE hInstance, LPCWSTR lpszClass, LPWNDCLASSEXW lpwcx);
//C typedef BOOLEAN ( *PREGISTERCLASSNAMEW)(LPCWSTR);
alias BOOLEAN function(LPCWSTR )PREGISTERCLASSNAMEW;
//C HWND CreateWindowExA(DWORD dwExStyle,LPCSTR lpClassName,LPCSTR lpWindowName,DWORD dwStyle,int X,int Y,int nWidth,int nHeight,HWND hWndParent,HMENU hMenu,HINSTANCE hInstance,LPVOID lpParam);
HWND CreateWindowExA(DWORD dwExStyle, LPCSTR lpClassName, LPCSTR lpWindowName, DWORD dwStyle, int X, int Y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam);
//C HWND CreateWindowExW(DWORD dwExStyle,LPCWSTR lpClassName,LPCWSTR lpWindowName,DWORD dwStyle,int X,int Y,int nWidth,int nHeight,HWND hWndParent,HMENU hMenu,HINSTANCE hInstance,LPVOID lpParam);
HWND CreateWindowExW(DWORD dwExStyle, LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, int X, int Y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam);
//C WINBOOL IsWindow(HWND hWnd);
WINBOOL IsWindow(HWND hWnd);
//C WINBOOL IsMenu(HMENU hMenu);
WINBOOL IsMenu(HMENU hMenu);
//C WINBOOL IsChild(HWND hWndParent,HWND hWnd);
WINBOOL IsChild(HWND hWndParent, HWND hWnd);
//C WINBOOL DestroyWindow(HWND hWnd);
WINBOOL DestroyWindow(HWND hWnd);
//C WINBOOL ShowWindow(HWND hWnd,int nCmdShow);
WINBOOL ShowWindow(HWND hWnd, int nCmdShow);
//C WINBOOL AnimateWindow(HWND hWnd,DWORD dwTime,DWORD dwFlags);
WINBOOL AnimateWindow(HWND hWnd, DWORD dwTime, DWORD dwFlags);
//C WINBOOL UpdateLayeredWindow(HWND hWnd,HDC hdcDst,POINT *pptDst,SIZE *psize,HDC hdcSrc,POINT *pptSrc,COLORREF crKey,BLENDFUNCTION *pblend,DWORD dwFlags);
WINBOOL UpdateLayeredWindow(HWND hWnd, HDC hdcDst, POINT *pptDst, SIZE *psize, HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend, DWORD dwFlags);
//C typedef struct tagUPDATELAYEREDWINDOWINFO {
//C DWORD cbSize;
//C HDC hdcDst;
//C POINT const *pptDst;
//C SIZE const *psize;
//C HDC hdcSrc;
//C POINT const *pptSrc;
//C COLORREF crKey;
//C BLENDFUNCTION const *pblend;
//C DWORD dwFlags;
//C RECT const *prcDirty;
//C } UPDATELAYEREDWINDOWINFO,*PUPDATELAYEREDWINDOWINFO;
struct tagUPDATELAYEREDWINDOWINFO
{
DWORD cbSize;
HDC hdcDst;
POINT *pptDst;
SIZE *psize;
HDC hdcSrc;
POINT *pptSrc;
COLORREF crKey;
BLENDFUNCTION *pblend;
DWORD dwFlags;
RECT *prcDirty;
}
alias tagUPDATELAYEREDWINDOWINFO UPDATELAYEREDWINDOWINFO;
alias tagUPDATELAYEREDWINDOWINFO *PUPDATELAYEREDWINDOWINFO;
//C WINBOOL UpdateLayeredWindowIndirect(HWND hWnd,UPDATELAYEREDWINDOWINFO const *pULWInfo);
WINBOOL UpdateLayeredWindowIndirect(HWND hWnd, UPDATELAYEREDWINDOWINFO *pULWInfo);
//C WINBOOL GetLayeredWindowAttributes(HWND hwnd,COLORREF *pcrKey,BYTE *pbAlpha,DWORD *pdwFlags);
WINBOOL GetLayeredWindowAttributes(HWND hwnd, COLORREF *pcrKey, BYTE *pbAlpha, DWORD *pdwFlags);
//C WINBOOL PrintWindow(HWND hwnd,HDC hdcBlt,UINT nFlags);
WINBOOL PrintWindow(HWND hwnd, HDC hdcBlt, UINT nFlags);
//C WINBOOL SetLayeredWindowAttributes(HWND hwnd,COLORREF crKey,BYTE bAlpha,DWORD dwFlags);
WINBOOL SetLayeredWindowAttributes(HWND hwnd, COLORREF crKey, BYTE bAlpha, DWORD dwFlags);
//C WINBOOL ShowWindowAsync(HWND hWnd,int nCmdShow);
WINBOOL ShowWindowAsync(HWND hWnd, int nCmdShow);
//C WINBOOL FlashWindow(HWND hWnd,WINBOOL bInvert);
WINBOOL FlashWindow(HWND hWnd, WINBOOL bInvert);
//C typedef struct {
//C UINT cbSize;
//C HWND hwnd;
//C DWORD dwFlags;
//C UINT uCount;
//C DWORD dwTimeout;
//C } FLASHWINFO,*PFLASHWINFO;
struct _N73
{
UINT cbSize;
HWND hwnd;
DWORD dwFlags;
UINT uCount;
DWORD dwTimeout;
}
alias _N73 FLASHWINFO;
alias _N73 *PFLASHWINFO;
//C WINBOOL FlashWindowEx(PFLASHWINFO pfwi);
WINBOOL FlashWindowEx(PFLASHWINFO pfwi);
//C WINBOOL ShowOwnedPopups(HWND hWnd,WINBOOL fShow);
WINBOOL ShowOwnedPopups(HWND hWnd, WINBOOL fShow);
//C WINBOOL OpenIcon(HWND hWnd);
WINBOOL OpenIcon(HWND hWnd);
//C WINBOOL CloseWindow(HWND hWnd);
WINBOOL CloseWindow(HWND hWnd);
//C WINBOOL MoveWindow(HWND hWnd,int X,int Y,int nWidth,int nHeight,WINBOOL bRepaint);
WINBOOL MoveWindow(HWND hWnd, int X, int Y, int nWidth, int nHeight, WINBOOL bRepaint);
//C WINBOOL SetWindowPos(HWND hWnd,HWND hWndInsertAfter,int X,int Y,int cx,int cy,UINT uFlags);
WINBOOL SetWindowPos(HWND hWnd, HWND hWndInsertAfter, int X, int Y, int cx, int cy, UINT uFlags);
//C WINBOOL GetWindowPlacement(HWND hWnd,WINDOWPLACEMENT *lpwndpl);
WINBOOL GetWindowPlacement(HWND hWnd, WINDOWPLACEMENT *lpwndpl);
//C WINBOOL SetWindowPlacement(HWND hWnd,const WINDOWPLACEMENT *lpwndpl);
WINBOOL SetWindowPlacement(HWND hWnd, WINDOWPLACEMENT *lpwndpl);
//C HDWP BeginDeferWindowPos(int nNumWindows);
HDWP BeginDeferWindowPos(int nNumWindows);
//C HDWP DeferWindowPos(HDWP hWinPosInfo,HWND hWnd,HWND hWndInsertAfter,int x,int y,int cx,int cy,UINT uFlags);
HDWP DeferWindowPos(HDWP hWinPosInfo, HWND hWnd, HWND hWndInsertAfter, int x, int y, int cx, int cy, UINT uFlags);
//C WINBOOL EndDeferWindowPos(HDWP hWinPosInfo);
WINBOOL EndDeferWindowPos(HDWP hWinPosInfo);
//C WINBOOL IsWindowVisible(HWND hWnd);
WINBOOL IsWindowVisible(HWND hWnd);
//C WINBOOL IsIconic(HWND hWnd);
WINBOOL IsIconic(HWND hWnd);
//C WINBOOL AnyPopup(void);
WINBOOL AnyPopup();
//C WINBOOL BringWindowToTop(HWND hWnd);
WINBOOL BringWindowToTop(HWND hWnd);
//C WINBOOL IsZoomed(HWND hWnd);
WINBOOL IsZoomed(HWND hWnd);
//C typedef struct {
//C DWORD style;
//C DWORD dwExtendedStyle;
//C WORD cdit;
//C short x;
//C short y;
//C short cx;
//C short cy;
//C } DLGTEMPLATE;
struct _N74
{
DWORD style;
DWORD dwExtendedStyle;
WORD cdit;
short x;
short y;
short cx;
short cy;
}
alias _N74 DLGTEMPLATE;
//C typedef DLGTEMPLATE *LPDLGTEMPLATEA;
alias DLGTEMPLATE *LPDLGTEMPLATEA;
//C typedef DLGTEMPLATE *LPDLGTEMPLATEW;
alias DLGTEMPLATE *LPDLGTEMPLATEW;
//C typedef LPDLGTEMPLATEA LPDLGTEMPLATE;
alias LPDLGTEMPLATEA LPDLGTEMPLATE;
//C typedef const DLGTEMPLATE *LPCDLGTEMPLATEA;
alias DLGTEMPLATE *LPCDLGTEMPLATEA;
//C typedef const DLGTEMPLATE *LPCDLGTEMPLATEW;
alias DLGTEMPLATE *LPCDLGTEMPLATEW;
//C typedef LPCDLGTEMPLATEA LPCDLGTEMPLATE;
alias LPCDLGTEMPLATEA LPCDLGTEMPLATE;
//C typedef struct {
//C DWORD style;
//C DWORD dwExtendedStyle;
//C short x;
//C short y;
//C short cx;
//C short cy;
//C WORD id;
//C } DLGITEMTEMPLATE;
struct _N75
{
DWORD style;
DWORD dwExtendedStyle;
short x;
short y;
short cx;
short cy;
WORD id;
}
alias _N75 DLGITEMTEMPLATE;
//C typedef DLGITEMTEMPLATE *PDLGITEMTEMPLATEA;
alias DLGITEMTEMPLATE *PDLGITEMTEMPLATEA;
//C typedef DLGITEMTEMPLATE *PDLGITEMTEMPLATEW;
alias DLGITEMTEMPLATE *PDLGITEMTEMPLATEW;
//C typedef PDLGITEMTEMPLATEA PDLGITEMTEMPLATE;
alias PDLGITEMTEMPLATEA PDLGITEMTEMPLATE;
//C typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEA;
alias DLGITEMTEMPLATE *LPDLGITEMTEMPLATEA;
//C typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEW;
alias DLGITEMTEMPLATE *LPDLGITEMTEMPLATEW;
//C typedef LPDLGITEMTEMPLATEA LPDLGITEMTEMPLATE;
alias LPDLGITEMTEMPLATEA LPDLGITEMTEMPLATE;
//C HWND CreateDialogParamA(HINSTANCE hInstance,LPCSTR lpTemplateName,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
HWND CreateDialogParamA(HINSTANCE hInstance, LPCSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C HWND CreateDialogParamW(HINSTANCE hInstance,LPCWSTR lpTemplateName,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
HWND CreateDialogParamW(HINSTANCE hInstance, LPCWSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C HWND CreateDialogIndirectParamA(HINSTANCE hInstance,LPCDLGTEMPLATEA lpTemplate,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
HWND CreateDialogIndirectParamA(HINSTANCE hInstance, LPCDLGTEMPLATEA lpTemplate, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C HWND CreateDialogIndirectParamW(HINSTANCE hInstance,LPCDLGTEMPLATEW lpTemplate,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
HWND CreateDialogIndirectParamW(HINSTANCE hInstance, LPCDLGTEMPLATEW lpTemplate, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C INT_PTR DialogBoxParamA(HINSTANCE hInstance,LPCSTR lpTemplateName,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
INT_PTR DialogBoxParamA(HINSTANCE hInstance, LPCSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C INT_PTR DialogBoxParamW(HINSTANCE hInstance,LPCWSTR lpTemplateName,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
INT_PTR DialogBoxParamW(HINSTANCE hInstance, LPCWSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C INT_PTR DialogBoxIndirectParamA(HINSTANCE hInstance,LPCDLGTEMPLATEA hDialogTemplate,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
INT_PTR DialogBoxIndirectParamA(HINSTANCE hInstance, LPCDLGTEMPLATEA hDialogTemplate, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C INT_PTR DialogBoxIndirectParamW(HINSTANCE hInstance,LPCDLGTEMPLATEW hDialogTemplate,HWND hWndParent,DLGPROC lpDialogFunc,LPARAM dwInitParam);
INT_PTR DialogBoxIndirectParamW(HINSTANCE hInstance, LPCDLGTEMPLATEW hDialogTemplate, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
//C WINBOOL EndDialog(HWND hDlg,INT_PTR nResult);
WINBOOL EndDialog(HWND hDlg, INT_PTR nResult);
//C HWND GetDlgItem(HWND hDlg,int nIDDlgItem);
HWND GetDlgItem(HWND hDlg, int nIDDlgItem);
//C WINBOOL SetDlgItemInt(HWND hDlg,int nIDDlgItem,UINT uValue,WINBOOL bSigned);
WINBOOL SetDlgItemInt(HWND hDlg, int nIDDlgItem, UINT uValue, WINBOOL bSigned);
//C UINT GetDlgItemInt(HWND hDlg,int nIDDlgItem,WINBOOL *lpTranslated,WINBOOL bSigned);
UINT GetDlgItemInt(HWND hDlg, int nIDDlgItem, WINBOOL *lpTranslated, WINBOOL bSigned);
//C WINBOOL SetDlgItemTextA(HWND hDlg,int nIDDlgItem,LPCSTR lpString);
WINBOOL SetDlgItemTextA(HWND hDlg, int nIDDlgItem, LPCSTR lpString);
//C WINBOOL SetDlgItemTextW(HWND hDlg,int nIDDlgItem,LPCWSTR lpString);
WINBOOL SetDlgItemTextW(HWND hDlg, int nIDDlgItem, LPCWSTR lpString);
//C UINT GetDlgItemTextA(HWND hDlg,int nIDDlgItem,LPSTR lpString,int cchMax);
UINT GetDlgItemTextA(HWND hDlg, int nIDDlgItem, LPSTR lpString, int cchMax);
//C UINT GetDlgItemTextW(HWND hDlg,int nIDDlgItem,LPWSTR lpString,int cchMax);
UINT GetDlgItemTextW(HWND hDlg, int nIDDlgItem, LPWSTR lpString, int cchMax);
//C WINBOOL CheckDlgButton(HWND hDlg,int nIDButton,UINT uCheck);
WINBOOL CheckDlgButton(HWND hDlg, int nIDButton, UINT uCheck);
//C WINBOOL CheckRadioButton(HWND hDlg,int nIDFirstButton,int nIDLastButton,int nIDCheckButton);
WINBOOL CheckRadioButton(HWND hDlg, int nIDFirstButton, int nIDLastButton, int nIDCheckButton);
//C UINT IsDlgButtonChecked(HWND hDlg,int nIDButton);
UINT IsDlgButtonChecked(HWND hDlg, int nIDButton);
//C LRESULT SendDlgItemMessageA(HWND hDlg,int nIDDlgItem,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT SendDlgItemMessageA(HWND hDlg, int nIDDlgItem, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT SendDlgItemMessageW(HWND hDlg,int nIDDlgItem,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT SendDlgItemMessageW(HWND hDlg, int nIDDlgItem, UINT Msg, WPARAM wParam, LPARAM lParam);
//C HWND GetNextDlgGroupItem(HWND hDlg,HWND hCtl,WINBOOL bPrevious);
HWND GetNextDlgGroupItem(HWND hDlg, HWND hCtl, WINBOOL bPrevious);
//C HWND GetNextDlgTabItem(HWND hDlg,HWND hCtl,WINBOOL bPrevious);
HWND GetNextDlgTabItem(HWND hDlg, HWND hCtl, WINBOOL bPrevious);
//C int GetDlgCtrlID(HWND hWnd);
int GetDlgCtrlID(HWND hWnd);
//C long GetDialogBaseUnits(void);
int GetDialogBaseUnits();
//C LRESULT DefDlgProcA(HWND hDlg,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT DefDlgProcA(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam);
//C LRESULT DefDlgProcW(HWND hDlg,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT DefDlgProcW(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam);
//C WINBOOL CallMsgFilterA(LPMSG lpMsg,int nCode);
WINBOOL CallMsgFilterA(LPMSG lpMsg, int nCode);
//C WINBOOL CallMsgFilterW(LPMSG lpMsg,int nCode);
WINBOOL CallMsgFilterW(LPMSG lpMsg, int nCode);
//C WINBOOL OpenClipboard(HWND hWndNewOwner);
WINBOOL OpenClipboard(HWND hWndNewOwner);
//C WINBOOL CloseClipboard(void);
WINBOOL CloseClipboard();
//C DWORD GetClipboardSequenceNumber(void);
DWORD GetClipboardSequenceNumber();
//C HWND GetClipboardOwner(void);
HWND GetClipboardOwner();
//C HWND SetClipboardViewer(HWND hWndNewViewer);
HWND SetClipboardViewer(HWND hWndNewViewer);
//C HWND GetClipboardViewer(void);
HWND GetClipboardViewer();
//C WINBOOL ChangeClipboardChain(HWND hWndRemove,HWND hWndNewNext);
WINBOOL ChangeClipboardChain(HWND hWndRemove, HWND hWndNewNext);
//C HANDLE SetClipboardData(UINT uFormat,HANDLE hMem);
HANDLE SetClipboardData(UINT uFormat, HANDLE hMem);
//C HANDLE GetClipboardData(UINT uFormat);
HANDLE GetClipboardData(UINT uFormat);
//C UINT RegisterClipboardFormatA(LPCSTR lpszFormat);
UINT RegisterClipboardFormatA(LPCSTR lpszFormat);
//C UINT RegisterClipboardFormatW(LPCWSTR lpszFormat);
UINT RegisterClipboardFormatW(LPCWSTR lpszFormat);
//C int CountClipboardFormats(void);
int CountClipboardFormats();
//C UINT EnumClipboardFormats(UINT format);
UINT EnumClipboardFormats(UINT format);
//C int GetClipboardFormatNameA(UINT format,LPSTR lpszFormatName,int cchMaxCount);
int GetClipboardFormatNameA(UINT format, LPSTR lpszFormatName, int cchMaxCount);
//C int GetClipboardFormatNameW(UINT format,LPWSTR lpszFormatName,int cchMaxCount);
int GetClipboardFormatNameW(UINT format, LPWSTR lpszFormatName, int cchMaxCount);
//C WINBOOL EmptyClipboard(void);
WINBOOL EmptyClipboard();
//C WINBOOL IsClipboardFormatAvailable(UINT format);
WINBOOL IsClipboardFormatAvailable(UINT format);
//C int GetPriorityClipboardFormat(UINT *paFormatPriorityList,int cFormats);
int GetPriorityClipboardFormat(UINT *paFormatPriorityList, int cFormats);
//C HWND GetOpenClipboardWindow(void);
HWND GetOpenClipboardWindow();
//C WINBOOL CharToOemA(LPCSTR lpszSrc,LPSTR lpszDst);
WINBOOL CharToOemA(LPCSTR lpszSrc, LPSTR lpszDst);
//C WINBOOL CharToOemW(LPCWSTR lpszSrc,LPSTR lpszDst);
WINBOOL CharToOemW(LPCWSTR lpszSrc, LPSTR lpszDst);
//C WINBOOL OemToCharA(LPCSTR lpszSrc,LPSTR lpszDst);
WINBOOL OemToCharA(LPCSTR lpszSrc, LPSTR lpszDst);
//C WINBOOL OemToCharW(LPCSTR lpszSrc,LPWSTR lpszDst);
WINBOOL OemToCharW(LPCSTR lpszSrc, LPWSTR lpszDst);
//C WINBOOL CharToOemBuffA(LPCSTR lpszSrc,LPSTR lpszDst,DWORD cchDstLength);
WINBOOL CharToOemBuffA(LPCSTR lpszSrc, LPSTR lpszDst, DWORD cchDstLength);
//C WINBOOL CharToOemBuffW(LPCWSTR lpszSrc,LPSTR lpszDst,DWORD cchDstLength);
WINBOOL CharToOemBuffW(LPCWSTR lpszSrc, LPSTR lpszDst, DWORD cchDstLength);
//C WINBOOL OemToCharBuffA(LPCSTR lpszSrc,LPSTR lpszDst,DWORD cchDstLength);
WINBOOL OemToCharBuffA(LPCSTR lpszSrc, LPSTR lpszDst, DWORD cchDstLength);
//C WINBOOL OemToCharBuffW(LPCSTR lpszSrc,LPWSTR lpszDst,DWORD cchDstLength);
WINBOOL OemToCharBuffW(LPCSTR lpszSrc, LPWSTR lpszDst, DWORD cchDstLength);
//C LPSTR CharUpperA(LPSTR lpsz);
LPSTR CharUpperA(LPSTR lpsz);
//C LPWSTR CharUpperW(LPWSTR lpsz);
LPWSTR CharUpperW(LPWSTR lpsz);
//C DWORD CharUpperBuffA(LPSTR lpsz,DWORD cchLength);
DWORD CharUpperBuffA(LPSTR lpsz, DWORD cchLength);
//C DWORD CharUpperBuffW(LPWSTR lpsz,DWORD cchLength);
DWORD CharUpperBuffW(LPWSTR lpsz, DWORD cchLength);
//C LPSTR CharLowerA(LPSTR lpsz);
LPSTR CharLowerA(LPSTR lpsz);
//C LPWSTR CharLowerW(LPWSTR lpsz);
LPWSTR CharLowerW(LPWSTR lpsz);
//C DWORD CharLowerBuffA(LPSTR lpsz,DWORD cchLength);
DWORD CharLowerBuffA(LPSTR lpsz, DWORD cchLength);
//C DWORD CharLowerBuffW(LPWSTR lpsz,DWORD cchLength);
DWORD CharLowerBuffW(LPWSTR lpsz, DWORD cchLength);
//C LPSTR CharNextA(LPCSTR lpsz);
LPSTR CharNextA(LPCSTR lpsz);
//C LPWSTR CharNextW(LPCWSTR lpsz);
LPWSTR CharNextW(LPCWSTR lpsz);
//C LPSTR CharPrevA(LPCSTR lpszStart,LPCSTR lpszCurrent);
LPSTR CharPrevA(LPCSTR lpszStart, LPCSTR lpszCurrent);
//C LPWSTR CharPrevW(LPCWSTR lpszStart,LPCWSTR lpszCurrent);
LPWSTR CharPrevW(LPCWSTR lpszStart, LPCWSTR lpszCurrent);
//C LPSTR CharNextExA(WORD CodePage,LPCSTR lpCurrentChar,DWORD dwFlags);
LPSTR CharNextExA(WORD CodePage, LPCSTR lpCurrentChar, DWORD dwFlags);
//C LPSTR CharPrevExA(WORD CodePage,LPCSTR lpStart,LPCSTR lpCurrentChar,DWORD dwFlags);
LPSTR CharPrevExA(WORD CodePage, LPCSTR lpStart, LPCSTR lpCurrentChar, DWORD dwFlags);
//C WINBOOL IsCharAlphaA(CHAR ch);
WINBOOL IsCharAlphaA(CHAR ch);
//C WINBOOL IsCharAlphaW(WCHAR ch);
WINBOOL IsCharAlphaW(WCHAR ch);
//C WINBOOL IsCharAlphaNumericA(CHAR ch);
WINBOOL IsCharAlphaNumericA(CHAR ch);
//C WINBOOL IsCharAlphaNumericW(WCHAR ch);
WINBOOL IsCharAlphaNumericW(WCHAR ch);
//C WINBOOL IsCharUpperA(CHAR ch);
WINBOOL IsCharUpperA(CHAR ch);
//C WINBOOL IsCharUpperW(WCHAR ch);
WINBOOL IsCharUpperW(WCHAR ch);
//C WINBOOL IsCharLowerA(CHAR ch);
WINBOOL IsCharLowerA(CHAR ch);
//C WINBOOL IsCharLowerW(WCHAR ch);
WINBOOL IsCharLowerW(WCHAR ch);
//C HWND SetFocus(HWND hWnd);
HWND SetFocus(HWND hWnd);
//C HWND GetActiveWindow(void);
HWND GetActiveWindow();
//C HWND GetFocus(void);
HWND GetFocus();
//C UINT GetKBCodePage(void);
UINT GetKBCodePage();
//C SHORT GetKeyState(int nVirtKey);
SHORT GetKeyState(int nVirtKey);
//C SHORT GetAsyncKeyState(int vKey);
SHORT GetAsyncKeyState(int vKey);
//C WINBOOL GetKeyboardState(PBYTE lpKeyState);
WINBOOL GetKeyboardState(PBYTE lpKeyState);
//C WINBOOL SetKeyboardState(LPBYTE lpKeyState);
WINBOOL SetKeyboardState(LPBYTE lpKeyState);
//C int GetKeyNameTextA(LONG lParam,LPSTR lpString,int cchSize);
int GetKeyNameTextA(LONG lParam, LPSTR lpString, int cchSize);
//C int GetKeyNameTextW(LONG lParam,LPWSTR lpString,int cchSize);
int GetKeyNameTextW(LONG lParam, LPWSTR lpString, int cchSize);
//C int GetKeyboardType(int nTypeFlag);
int GetKeyboardType(int nTypeFlag);
//C int ToAscii(UINT uVirtKey,UINT uScanCode,const BYTE *lpKeyState,LPWORD lpChar,UINT uFlags);
int ToAscii(UINT uVirtKey, UINT uScanCode, BYTE *lpKeyState, LPWORD lpChar, UINT uFlags);
//C int ToAsciiEx(UINT uVirtKey,UINT uScanCode,const BYTE *lpKeyState,LPWORD lpChar,UINT uFlags,HKL dwhkl);
int ToAsciiEx(UINT uVirtKey, UINT uScanCode, BYTE *lpKeyState, LPWORD lpChar, UINT uFlags, HKL dwhkl);
//C int ToUnicode(UINT wVirtKey,UINT wScanCode,const BYTE *lpKeyState,LPWSTR pwszBuff,int cchBuff,UINT wFlags);
int ToUnicode(UINT wVirtKey, UINT wScanCode, BYTE *lpKeyState, LPWSTR pwszBuff, int cchBuff, UINT wFlags);
//C DWORD OemKeyScan(WORD wOemChar);
DWORD OemKeyScan(WORD wOemChar);
//C SHORT VkKeyScanA(CHAR ch);
SHORT VkKeyScanA(CHAR ch);
//C SHORT VkKeyScanW(WCHAR ch);
SHORT VkKeyScanW(WCHAR ch);
//C SHORT VkKeyScanExA(CHAR ch,HKL dwhkl);
SHORT VkKeyScanExA(CHAR ch, HKL dwhkl);
//C SHORT VkKeyScanExW(WCHAR ch,HKL dwhkl);
SHORT VkKeyScanExW(WCHAR ch, HKL dwhkl);
//C void keybd_event(BYTE bVk,BYTE bScan,DWORD dwFlags,ULONG_PTR dwExtraInfo);
void keybd_event(BYTE bVk, BYTE bScan, DWORD dwFlags, ULONG_PTR dwExtraInfo);
//C void mouse_event(DWORD dwFlags,DWORD dx,DWORD dy,DWORD dwData,ULONG_PTR dwExtraInfo);
void mouse_event(DWORD dwFlags, DWORD dx, DWORD dy, DWORD dwData, ULONG_PTR dwExtraInfo);
//C typedef struct tagMOUSEINPUT {
//C LONG dx;
//C LONG dy;
//C DWORD mouseData;
//C DWORD dwFlags;
//C DWORD time;
//C ULONG_PTR dwExtraInfo;
//C } MOUSEINPUT,*PMOUSEINPUT,*LPMOUSEINPUT;
struct tagMOUSEINPUT
{
LONG dx;
LONG dy;
DWORD mouseData;
DWORD dwFlags;
DWORD time;
ULONG_PTR dwExtraInfo;
}
alias tagMOUSEINPUT MOUSEINPUT;
alias tagMOUSEINPUT *PMOUSEINPUT;
alias tagMOUSEINPUT *LPMOUSEINPUT;
//C typedef struct tagKEYBDINPUT {
//C WORD wVk;
//C WORD wScan;
//C DWORD dwFlags;
//C DWORD time;
//C ULONG_PTR dwExtraInfo;
//C } KEYBDINPUT,*PKEYBDINPUT,*LPKEYBDINPUT;
struct tagKEYBDINPUT
{
WORD wVk;
WORD wScan;
DWORD dwFlags;
DWORD time;
ULONG_PTR dwExtraInfo;
}
alias tagKEYBDINPUT KEYBDINPUT;
alias tagKEYBDINPUT *PKEYBDINPUT;
alias tagKEYBDINPUT *LPKEYBDINPUT;
//C typedef struct tagHARDWAREINPUT {
//C DWORD uMsg;
//C WORD wParamL;
//C WORD wParamH;
//C } HARDWAREINPUT,*PHARDWAREINPUT,*LPHARDWAREINPUT;
struct tagHARDWAREINPUT
{
DWORD uMsg;
WORD wParamL;
WORD wParamH;
}
alias tagHARDWAREINPUT HARDWAREINPUT;
alias tagHARDWAREINPUT *PHARDWAREINPUT;
alias tagHARDWAREINPUT *LPHARDWAREINPUT;
//C typedef struct tagINPUT {
//C DWORD type;
//C union {
//C MOUSEINPUT mi;
//C KEYBDINPUT ki;
//C HARDWAREINPUT hi;
//C } ;
union _N76
{
MOUSEINPUT mi;
KEYBDINPUT ki;
HARDWAREINPUT hi;
}
//C } INPUT,*PINPUT,*LPINPUT;
struct tagINPUT
{
DWORD type;
MOUSEINPUT mi;
KEYBDINPUT ki;
HARDWAREINPUT hi;
}
alias tagINPUT INPUT;
alias tagINPUT *PINPUT;
alias tagINPUT *LPINPUT;
//C UINT SendInput(UINT cInputs,LPINPUT pInputs,int cbSize);
UINT SendInput(UINT cInputs, LPINPUT pInputs, int cbSize);
//C typedef struct tagLASTINPUTINFO {
//C UINT cbSize;
//C DWORD dwTime;
//C } LASTINPUTINFO,*PLASTINPUTINFO;
struct tagLASTINPUTINFO
{
UINT cbSize;
DWORD dwTime;
}
alias tagLASTINPUTINFO LASTINPUTINFO;
alias tagLASTINPUTINFO *PLASTINPUTINFO;
//C WINBOOL GetLastInputInfo(PLASTINPUTINFO plii);
WINBOOL GetLastInputInfo(PLASTINPUTINFO plii);
//C UINT MapVirtualKeyA(UINT uCode,UINT uMapType);
UINT MapVirtualKeyA(UINT uCode, UINT uMapType);
//C UINT MapVirtualKeyW(UINT uCode,UINT uMapType);
UINT MapVirtualKeyW(UINT uCode, UINT uMapType);
//C UINT MapVirtualKeyExA(UINT uCode,UINT uMapType,HKL dwhkl);
UINT MapVirtualKeyExA(UINT uCode, UINT uMapType, HKL dwhkl);
//C UINT MapVirtualKeyExW(UINT uCode,UINT uMapType,HKL dwhkl);
UINT MapVirtualKeyExW(UINT uCode, UINT uMapType, HKL dwhkl);
//C WINBOOL GetInputState(void);
WINBOOL GetInputState();
//C DWORD GetQueueStatus(UINT flags);
DWORD GetQueueStatus(UINT flags);
//C HWND GetCapture(void);
HWND GetCapture();
//C HWND SetCapture(HWND hWnd);
HWND SetCapture(HWND hWnd);
//C WINBOOL ReleaseCapture(void);
WINBOOL ReleaseCapture();
//C DWORD MsgWaitForMultipleObjects(DWORD nCount,const HANDLE *pHandles,WINBOOL fWaitAll,DWORD dwMilliseconds,DWORD dwWakeMask);
DWORD MsgWaitForMultipleObjects(DWORD nCount, HANDLE *pHandles, WINBOOL fWaitAll, DWORD dwMilliseconds, DWORD dwWakeMask);
//C DWORD MsgWaitForMultipleObjectsEx(DWORD nCount,const HANDLE *pHandles,DWORD dwMilliseconds,DWORD dwWakeMask,DWORD dwFlags);
DWORD MsgWaitForMultipleObjectsEx(DWORD nCount, HANDLE *pHandles, DWORD dwMilliseconds, DWORD dwWakeMask, DWORD dwFlags);
//C UINT_PTR SetTimer(HWND hWnd,UINT_PTR nIDEvent,UINT uElapse,TIMERPROC lpTimerFunc);
UINT_PTR SetTimer(HWND hWnd, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc);
//C WINBOOL KillTimer(HWND hWnd,UINT_PTR uIDEvent);
WINBOOL KillTimer(HWND hWnd, UINT_PTR uIDEvent);
//C WINBOOL IsWindowUnicode(HWND hWnd);
WINBOOL IsWindowUnicode(HWND hWnd);
//C WINBOOL EnableWindow(HWND hWnd,WINBOOL bEnable);
WINBOOL EnableWindow(HWND hWnd, WINBOOL bEnable);
//C WINBOOL IsWindowEnabled(HWND hWnd);
WINBOOL IsWindowEnabled(HWND hWnd);
//C HACCEL LoadAcceleratorsA(HINSTANCE hInstance,LPCSTR lpTableName);
HACCEL LoadAcceleratorsA(HINSTANCE hInstance, LPCSTR lpTableName);
//C HACCEL LoadAcceleratorsW(HINSTANCE hInstance,LPCWSTR lpTableName);
HACCEL LoadAcceleratorsW(HINSTANCE hInstance, LPCWSTR lpTableName);
//C HACCEL CreateAcceleratorTableA(LPACCEL paccel,int cAccel);
HACCEL CreateAcceleratorTableA(LPACCEL paccel, int cAccel);
//C HACCEL CreateAcceleratorTableW(LPACCEL paccel,int cAccel);
HACCEL CreateAcceleratorTableW(LPACCEL paccel, int cAccel);
//C WINBOOL DestroyAcceleratorTable(HACCEL hAccel);
WINBOOL DestroyAcceleratorTable(HACCEL hAccel);
//C int CopyAcceleratorTableA(HACCEL hAccelSrc,LPACCEL lpAccelDst,int cAccelEntries);
int CopyAcceleratorTableA(HACCEL hAccelSrc, LPACCEL lpAccelDst, int cAccelEntries);
//C int CopyAcceleratorTableW(HACCEL hAccelSrc,LPACCEL lpAccelDst,int cAccelEntries);
int CopyAcceleratorTableW(HACCEL hAccelSrc, LPACCEL lpAccelDst, int cAccelEntries);
//C int TranslateAcceleratorA(HWND hWnd,HACCEL hAccTable,LPMSG lpMsg);
int TranslateAcceleratorA(HWND hWnd, HACCEL hAccTable, LPMSG lpMsg);
//C int TranslateAcceleratorW(HWND hWnd,HACCEL hAccTable,LPMSG lpMsg);
int TranslateAcceleratorW(HWND hWnd, HACCEL hAccTable, LPMSG lpMsg);
//C int GetSystemMetrics(int nIndex);
int GetSystemMetrics(int nIndex);
//C HMENU LoadMenuA(HINSTANCE hInstance,LPCSTR lpMenuName);
HMENU LoadMenuA(HINSTANCE hInstance, LPCSTR lpMenuName);
//C HMENU LoadMenuW(HINSTANCE hInstance,LPCWSTR lpMenuName);
HMENU LoadMenuW(HINSTANCE hInstance, LPCWSTR lpMenuName);
//C HMENU LoadMenuIndirectA(const MENUTEMPLATEA *lpMenuTemplate);
HMENU LoadMenuIndirectA(MENUTEMPLATEA *lpMenuTemplate);
//C HMENU LoadMenuIndirectW(const MENUTEMPLATEW *lpMenuTemplate);
HMENU LoadMenuIndirectW(MENUTEMPLATEW *lpMenuTemplate);
//C HMENU GetMenu(HWND hWnd);
HMENU GetMenu(HWND hWnd);
//C WINBOOL SetMenu(HWND hWnd,HMENU hMenu);
WINBOOL SetMenu(HWND hWnd, HMENU hMenu);
//C WINBOOL ChangeMenuA(HMENU hMenu,UINT cmd,LPCSTR lpszNewItem,UINT cmdInsert,UINT flags);
WINBOOL ChangeMenuA(HMENU hMenu, UINT cmd, LPCSTR lpszNewItem, UINT cmdInsert, UINT flags);
//C WINBOOL ChangeMenuW(HMENU hMenu,UINT cmd,LPCWSTR lpszNewItem,UINT cmdInsert,UINT flags);
WINBOOL ChangeMenuW(HMENU hMenu, UINT cmd, LPCWSTR lpszNewItem, UINT cmdInsert, UINT flags);
//C WINBOOL HiliteMenuItem(HWND hWnd,HMENU hMenu,UINT uIDHiliteItem,UINT uHilite);
WINBOOL HiliteMenuItem(HWND hWnd, HMENU hMenu, UINT uIDHiliteItem, UINT uHilite);
//C int GetMenuStringA(HMENU hMenu,UINT uIDItem,LPSTR lpString,int cchMax,UINT flags);
int GetMenuStringA(HMENU hMenu, UINT uIDItem, LPSTR lpString, int cchMax, UINT flags);
//C int GetMenuStringW(HMENU hMenu,UINT uIDItem,LPWSTR lpString,int cchMax,UINT flags);
int GetMenuStringW(HMENU hMenu, UINT uIDItem, LPWSTR lpString, int cchMax, UINT flags);
//C UINT GetMenuState(HMENU hMenu,UINT uId,UINT uFlags);
UINT GetMenuState(HMENU hMenu, UINT uId, UINT uFlags);
//C WINBOOL DrawMenuBar(HWND hWnd);
WINBOOL DrawMenuBar(HWND hWnd);
//C HMENU GetSystemMenu(HWND hWnd,WINBOOL bRevert);
HMENU GetSystemMenu(HWND hWnd, WINBOOL bRevert);
//C HMENU CreateMenu(void);
HMENU CreateMenu();
//C HMENU CreatePopupMenu(void);
HMENU CreatePopupMenu();
//C WINBOOL DestroyMenu(HMENU hMenu);
WINBOOL DestroyMenu(HMENU hMenu);
//C DWORD CheckMenuItem(HMENU hMenu,UINT uIDCheckItem,UINT uCheck);
DWORD CheckMenuItem(HMENU hMenu, UINT uIDCheckItem, UINT uCheck);
//C WINBOOL EnableMenuItem(HMENU hMenu,UINT uIDEnableItem,UINT uEnable);
WINBOOL EnableMenuItem(HMENU hMenu, UINT uIDEnableItem, UINT uEnable);
//C HMENU GetSubMenu(HMENU hMenu,int nPos);
HMENU GetSubMenu(HMENU hMenu, int nPos);
//C UINT GetMenuItemID(HMENU hMenu,int nPos);
UINT GetMenuItemID(HMENU hMenu, int nPos);
//C int GetMenuItemCount(HMENU hMenu);
int GetMenuItemCount(HMENU hMenu);
//C WINBOOL InsertMenuA(HMENU hMenu,UINT uPosition,UINT uFlags,UINT_PTR uIDNewItem,LPCSTR lpNewItem);
WINBOOL InsertMenuA(HMENU hMenu, UINT uPosition, UINT uFlags, UINT_PTR uIDNewItem, LPCSTR lpNewItem);
//C WINBOOL InsertMenuW(HMENU hMenu,UINT uPosition,UINT uFlags,UINT_PTR uIDNewItem,LPCWSTR lpNewItem);
WINBOOL InsertMenuW(HMENU hMenu, UINT uPosition, UINT uFlags, UINT_PTR uIDNewItem, LPCWSTR lpNewItem);
//C WINBOOL AppendMenuA(HMENU hMenu,UINT uFlags,UINT_PTR uIDNewItem,LPCSTR lpNewItem);
WINBOOL AppendMenuA(HMENU hMenu, UINT uFlags, UINT_PTR uIDNewItem, LPCSTR lpNewItem);
//C WINBOOL AppendMenuW(HMENU hMenu,UINT uFlags,UINT_PTR uIDNewItem,LPCWSTR lpNewItem);
WINBOOL AppendMenuW(HMENU hMenu, UINT uFlags, UINT_PTR uIDNewItem, LPCWSTR lpNewItem);
//C WINBOOL ModifyMenuA(HMENU hMnu,UINT uPosition,UINT uFlags,UINT_PTR uIDNewItem,LPCSTR lpNewItem);
WINBOOL ModifyMenuA(HMENU hMnu, UINT uPosition, UINT uFlags, UINT_PTR uIDNewItem, LPCSTR lpNewItem);
//C WINBOOL ModifyMenuW(HMENU hMnu,UINT uPosition,UINT uFlags,UINT_PTR uIDNewItem,LPCWSTR lpNewItem);
WINBOOL ModifyMenuW(HMENU hMnu, UINT uPosition, UINT uFlags, UINT_PTR uIDNewItem, LPCWSTR lpNewItem);
//C WINBOOL RemoveMenu(HMENU hMenu,UINT uPosition,UINT uFlags);
WINBOOL RemoveMenu(HMENU hMenu, UINT uPosition, UINT uFlags);
//C WINBOOL DeleteMenu(HMENU hMenu,UINT uPosition,UINT uFlags);
WINBOOL DeleteMenu(HMENU hMenu, UINT uPosition, UINT uFlags);
//C WINBOOL SetMenuItemBitmaps(HMENU hMenu,UINT uPosition,UINT uFlags,HBITMAP hBitmapUnchecked,HBITMAP hBitmapChecked);
WINBOOL SetMenuItemBitmaps(HMENU hMenu, UINT uPosition, UINT uFlags, HBITMAP hBitmapUnchecked, HBITMAP hBitmapChecked);
//C LONG GetMenuCheckMarkDimensions(void);
LONG GetMenuCheckMarkDimensions();
//C WINBOOL TrackPopupMenu(HMENU hMenu,UINT uFlags,int x,int y,int nReserved,HWND hWnd,const RECT *prcRect);
WINBOOL TrackPopupMenu(HMENU hMenu, UINT uFlags, int x, int y, int nReserved, HWND hWnd, RECT *prcRect);
//C typedef struct tagTPMPARAMS {
//C UINT cbSize;
//C RECT rcExclude;
//C } TPMPARAMS;
struct tagTPMPARAMS
{
UINT cbSize;
RECT rcExclude;
}
alias tagTPMPARAMS TPMPARAMS;
//C typedef TPMPARAMS *LPTPMPARAMS;
alias TPMPARAMS *LPTPMPARAMS;
//C WINBOOL TrackPopupMenuEx(HMENU,UINT,int,int,HWND,LPTPMPARAMS);
WINBOOL TrackPopupMenuEx(HMENU , UINT , int , int , HWND , LPTPMPARAMS );
//C typedef struct tagMENUINFO {
//C DWORD cbSize;
//C DWORD fMask;
//C DWORD dwStyle;
//C UINT cyMax;
//C HBRUSH hbrBack;
//C DWORD dwContextHelpID;
//C ULONG_PTR dwMenuData;
//C } MENUINFO,*LPMENUINFO;
struct tagMENUINFO
{
DWORD cbSize;
DWORD fMask;
DWORD dwStyle;
UINT cyMax;
HBRUSH hbrBack;
DWORD dwContextHelpID;
ULONG_PTR dwMenuData;
}
alias tagMENUINFO MENUINFO;
alias tagMENUINFO *LPMENUINFO;
//C typedef MENUINFO const *LPCMENUINFO;
alias MENUINFO *LPCMENUINFO;
//C WINBOOL GetMenuInfo(HMENU,LPMENUINFO);
WINBOOL GetMenuInfo(HMENU , LPMENUINFO );
//C WINBOOL SetMenuInfo(HMENU,LPCMENUINFO);
WINBOOL SetMenuInfo(HMENU , LPCMENUINFO );
//C WINBOOL EndMenu(void);
WINBOOL EndMenu();
//C typedef struct tagMENUGETOBJECTINFO {
//C DWORD dwFlags;
//C UINT uPos;
//C HMENU hmenu;
//C PVOID riid;
//C PVOID pvObj;
//C } MENUGETOBJECTINFO,*PMENUGETOBJECTINFO;
struct tagMENUGETOBJECTINFO
{
DWORD dwFlags;
UINT uPos;
HMENU hmenu;
PVOID riid;
PVOID pvObj;
}
alias tagMENUGETOBJECTINFO MENUGETOBJECTINFO;
alias tagMENUGETOBJECTINFO *PMENUGETOBJECTINFO;
//C typedef struct tagMENUITEMINFOA {
//C UINT cbSize;
//C UINT fMask;
//C UINT fType;
//C UINT fState;
//C UINT wID;
//C HMENU hSubMenu;
//C HBITMAP hbmpChecked;
//C HBITMAP hbmpUnchecked;
//C ULONG_PTR dwItemData;
//C LPSTR dwTypeData;
//C UINT cch;
//C HBITMAP hbmpItem;
//C } MENUITEMINFOA,*LPMENUITEMINFOA;
struct tagMENUITEMINFOA
{
UINT cbSize;
UINT fMask;
UINT fType;
UINT fState;
UINT wID;
HMENU hSubMenu;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
ULONG_PTR dwItemData;
LPSTR dwTypeData;
UINT cch;
HBITMAP hbmpItem;
}
alias tagMENUITEMINFOA MENUITEMINFOA;
alias tagMENUITEMINFOA *LPMENUITEMINFOA;
//C typedef struct tagMENUITEMINFOW {
//C UINT cbSize;
//C UINT fMask;
//C UINT fType;
//C UINT fState;
//C UINT wID;
//C HMENU hSubMenu;
//C HBITMAP hbmpChecked;
//C HBITMAP hbmpUnchecked;
//C ULONG_PTR dwItemData;
//C LPWSTR dwTypeData;
//C UINT cch;
//C HBITMAP hbmpItem;
//C } MENUITEMINFOW,*LPMENUITEMINFOW;
struct tagMENUITEMINFOW
{
UINT cbSize;
UINT fMask;
UINT fType;
UINT fState;
UINT wID;
HMENU hSubMenu;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
ULONG_PTR dwItemData;
LPWSTR dwTypeData;
UINT cch;
HBITMAP hbmpItem;
}
alias tagMENUITEMINFOW MENUITEMINFOW;
alias tagMENUITEMINFOW *LPMENUITEMINFOW;
//C typedef MENUITEMINFOA MENUITEMINFO;
alias MENUITEMINFOA MENUITEMINFO;
//C typedef LPMENUITEMINFOA LPMENUITEMINFO;
alias LPMENUITEMINFOA LPMENUITEMINFO;
//C typedef MENUITEMINFOA const *LPCMENUITEMINFOA;
alias MENUITEMINFOA *LPCMENUITEMINFOA;
//C typedef MENUITEMINFOW const *LPCMENUITEMINFOW;
alias MENUITEMINFOW *LPCMENUITEMINFOW;
//C typedef LPCMENUITEMINFOA LPCMENUITEMINFO;
alias LPCMENUITEMINFOA LPCMENUITEMINFO;
//C WINBOOL InsertMenuItemA(HMENU hmenu,UINT item,WINBOOL fByPosition,LPCMENUITEMINFOA lpmi);
WINBOOL InsertMenuItemA(HMENU hmenu, UINT item, WINBOOL fByPosition, LPCMENUITEMINFOA lpmi);
//C WINBOOL InsertMenuItemW(HMENU hmenu,UINT item,WINBOOL fByPosition,LPCMENUITEMINFOW lpmi);
WINBOOL InsertMenuItemW(HMENU hmenu, UINT item, WINBOOL fByPosition, LPCMENUITEMINFOW lpmi);
//C WINBOOL GetMenuItemInfoA(HMENU hmenu,UINT item,WINBOOL fByPosition,LPMENUITEMINFOA lpmii);
WINBOOL GetMenuItemInfoA(HMENU hmenu, UINT item, WINBOOL fByPosition, LPMENUITEMINFOA lpmii);
//C WINBOOL GetMenuItemInfoW(HMENU hmenu,UINT item,WINBOOL fByPosition,LPMENUITEMINFOW lpmii);
WINBOOL GetMenuItemInfoW(HMENU hmenu, UINT item, WINBOOL fByPosition, LPMENUITEMINFOW lpmii);
//C WINBOOL SetMenuItemInfoA(HMENU hmenu,UINT item,WINBOOL fByPositon,LPCMENUITEMINFOA lpmii);
WINBOOL SetMenuItemInfoA(HMENU hmenu, UINT item, WINBOOL fByPositon, LPCMENUITEMINFOA lpmii);
//C WINBOOL SetMenuItemInfoW(HMENU hmenu,UINT item,WINBOOL fByPositon,LPCMENUITEMINFOW lpmii);
WINBOOL SetMenuItemInfoW(HMENU hmenu, UINT item, WINBOOL fByPositon, LPCMENUITEMINFOW lpmii);
//C UINT GetMenuDefaultItem(HMENU hMenu,UINT fByPos,UINT gmdiFlags);
UINT GetMenuDefaultItem(HMENU hMenu, UINT fByPos, UINT gmdiFlags);
//C WINBOOL SetMenuDefaultItem(HMENU hMenu,UINT uItem,UINT fByPos);
WINBOOL SetMenuDefaultItem(HMENU hMenu, UINT uItem, UINT fByPos);
//C WINBOOL GetMenuItemRect(HWND hWnd,HMENU hMenu,UINT uItem,LPRECT lprcItem);
WINBOOL GetMenuItemRect(HWND hWnd, HMENU hMenu, UINT uItem, LPRECT lprcItem);
//C int MenuItemFromPoint(HWND hWnd,HMENU hMenu,POINT ptScreen);
int MenuItemFromPoint(HWND hWnd, HMENU hMenu, POINT ptScreen);
//C typedef struct tagDROPSTRUCT {
//C HWND hwndSource;
//C HWND hwndSink;
//C DWORD wFmt;
//C ULONG_PTR dwData;
//C POINT ptDrop;
//C DWORD dwControlData;
//C } DROPSTRUCT,*PDROPSTRUCT,*LPDROPSTRUCT;
struct tagDROPSTRUCT
{
HWND hwndSource;
HWND hwndSink;
DWORD wFmt;
ULONG_PTR dwData;
POINT ptDrop;
DWORD dwControlData;
}
alias tagDROPSTRUCT DROPSTRUCT;
alias tagDROPSTRUCT *PDROPSTRUCT;
alias tagDROPSTRUCT *LPDROPSTRUCT;
//C DWORD DragObject(HWND hwndParent,HWND hwndFrom,UINT fmt,ULONG_PTR data,HCURSOR hcur);
DWORD DragObject(HWND hwndParent, HWND hwndFrom, UINT fmt, ULONG_PTR data, HCURSOR hcur);
//C WINBOOL DragDetect(HWND hwnd,POINT pt);
WINBOOL DragDetect(HWND hwnd, POINT pt);
//C WINBOOL DrawIcon(HDC hDC,int X,int Y,HICON hIcon);
WINBOOL DrawIcon(HDC hDC, int X, int Y, HICON hIcon);
//C typedef struct tagDRAWTEXTPARAMS {
//C UINT cbSize;
//C int iTabLength;
//C int iLeftMargin;
//C int iRightMargin;
//C UINT uiLengthDrawn;
//C } DRAWTEXTPARAMS,*LPDRAWTEXTPARAMS;
struct tagDRAWTEXTPARAMS
{
UINT cbSize;
int iTabLength;
int iLeftMargin;
int iRightMargin;
UINT uiLengthDrawn;
}
alias tagDRAWTEXTPARAMS DRAWTEXTPARAMS;
alias tagDRAWTEXTPARAMS *LPDRAWTEXTPARAMS;
//C int DrawTextA(HDC hdc,LPCSTR lpchText,int cchText,LPRECT lprc,UINT format);
int DrawTextA(HDC hdc, LPCSTR lpchText, int cchText, LPRECT lprc, UINT format);
//C int DrawTextW(HDC hdc,LPCWSTR lpchText,int cchText,LPRECT lprc,UINT format);
int DrawTextW(HDC hdc, LPCWSTR lpchText, int cchText, LPRECT lprc, UINT format);
//C int DrawTextExA(HDC hdc,LPSTR lpchText,int cchText,LPRECT lprc,UINT format,LPDRAWTEXTPARAMS lpdtp);
int DrawTextExA(HDC hdc, LPSTR lpchText, int cchText, LPRECT lprc, UINT format, LPDRAWTEXTPARAMS lpdtp);
//C int DrawTextExW(HDC hdc,LPWSTR lpchText,int cchText,LPRECT lprc,UINT format,LPDRAWTEXTPARAMS lpdtp);
int DrawTextExW(HDC hdc, LPWSTR lpchText, int cchText, LPRECT lprc, UINT format, LPDRAWTEXTPARAMS lpdtp);
//C WINBOOL GrayStringA(HDC hDC,HBRUSH hBrush,GRAYSTRINGPROC lpOutputFunc,LPARAM lpData,int nCount,int X,int Y,int nWidth,int nHeight);
WINBOOL GrayStringA(HDC hDC, HBRUSH hBrush, GRAYSTRINGPROC lpOutputFunc, LPARAM lpData, int nCount, int X, int Y, int nWidth, int nHeight);
//C WINBOOL GrayStringW(HDC hDC,HBRUSH hBrush,GRAYSTRINGPROC lpOutputFunc,LPARAM lpData,int nCount,int X,int Y,int nWidth,int nHeight);
WINBOOL GrayStringW(HDC hDC, HBRUSH hBrush, GRAYSTRINGPROC lpOutputFunc, LPARAM lpData, int nCount, int X, int Y, int nWidth, int nHeight);
//C WINBOOL DrawStateA(HDC hdc,HBRUSH hbrFore,DRAWSTATEPROC qfnCallBack,LPARAM lData,WPARAM wData,int x,int y,int cx,int cy,UINT uFlags);
WINBOOL DrawStateA(HDC hdc, HBRUSH hbrFore, DRAWSTATEPROC qfnCallBack, LPARAM lData, WPARAM wData, int x, int y, int cx, int cy, UINT uFlags);
//C WINBOOL DrawStateW(HDC hdc,HBRUSH hbrFore,DRAWSTATEPROC qfnCallBack,LPARAM lData,WPARAM wData,int x,int y,int cx,int cy,UINT uFlags);
WINBOOL DrawStateW(HDC hdc, HBRUSH hbrFore, DRAWSTATEPROC qfnCallBack, LPARAM lData, WPARAM wData, int x, int y, int cx, int cy, UINT uFlags);
//C LONG TabbedTextOutA(HDC hdc,int x,int y,LPCSTR lpString,int chCount,int nTabPositions,const INT *lpnTabStopPositions,int nTabOrigin);
LONG TabbedTextOutA(HDC hdc, int x, int y, LPCSTR lpString, int chCount, int nTabPositions, INT *lpnTabStopPositions, int nTabOrigin);
//C LONG TabbedTextOutW(HDC hdc,int x,int y,LPCWSTR lpString,int chCount,int nTabPositions,const INT *lpnTabStopPositions,int nTabOrigin);
LONG TabbedTextOutW(HDC hdc, int x, int y, LPCWSTR lpString, int chCount, int nTabPositions, INT *lpnTabStopPositions, int nTabOrigin);
//C DWORD GetTabbedTextExtentA(HDC hdc,LPCSTR lpString,int chCount,int nTabPositions,const INT *lpnTabStopPositions);
DWORD GetTabbedTextExtentA(HDC hdc, LPCSTR lpString, int chCount, int nTabPositions, INT *lpnTabStopPositions);
//C DWORD GetTabbedTextExtentW(HDC hdc,LPCWSTR lpString,int chCount,int nTabPositions,const INT *lpnTabStopPositions);
DWORD GetTabbedTextExtentW(HDC hdc, LPCWSTR lpString, int chCount, int nTabPositions, INT *lpnTabStopPositions);
//C WINBOOL UpdateWindow(HWND hWnd);
WINBOOL UpdateWindow(HWND hWnd);
//C HWND SetActiveWindow(HWND hWnd);
HWND SetActiveWindow(HWND hWnd);
//C HWND GetForegroundWindow(void);
HWND GetForegroundWindow();
//C WINBOOL PaintDesktop(HDC hdc);
WINBOOL PaintDesktop(HDC hdc);
//C void SwitchToThisWindow(HWND hwnd,WINBOOL fUnknown);
void SwitchToThisWindow(HWND hwnd, WINBOOL fUnknown);
//C WINBOOL SetForegroundWindow(HWND hWnd);
WINBOOL SetForegroundWindow(HWND hWnd);
//C WINBOOL AllowSetForegroundWindow(DWORD dwProcessId);
WINBOOL AllowSetForegroundWindow(DWORD dwProcessId);
//C WINBOOL LockSetForegroundWindow(UINT uLockCode);
WINBOOL LockSetForegroundWindow(UINT uLockCode);
//C HWND WindowFromDC(HDC hDC);
HWND WindowFromDC(HDC hDC);
//C HDC GetDC(HWND hWnd);
HDC GetDC(HWND hWnd);
//C HDC GetDCEx(HWND hWnd,HRGN hrgnClip,DWORD flags);
HDC GetDCEx(HWND hWnd, HRGN hrgnClip, DWORD flags);
//C HDC GetWindowDC(HWND hWnd);
HDC GetWindowDC(HWND hWnd);
//C int ReleaseDC(HWND hWnd,HDC hDC);
int ReleaseDC(HWND hWnd, HDC hDC);
//C HDC BeginPaint(HWND hWnd,LPPAINTSTRUCT lpPaint);
HDC BeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
//C WINBOOL EndPaint(HWND hWnd,const PAINTSTRUCT *lpPaint);
WINBOOL EndPaint(HWND hWnd, PAINTSTRUCT *lpPaint);
//C WINBOOL GetUpdateRect(HWND hWnd,LPRECT lpRect,WINBOOL bErase);
WINBOOL GetUpdateRect(HWND hWnd, LPRECT lpRect, WINBOOL bErase);
//C int GetUpdateRgn(HWND hWnd,HRGN hRgn,WINBOOL bErase);
int GetUpdateRgn(HWND hWnd, HRGN hRgn, WINBOOL bErase);
//C int SetWindowRgn(HWND hWnd,HRGN hRgn,WINBOOL bRedraw);
int SetWindowRgn(HWND hWnd, HRGN hRgn, WINBOOL bRedraw);
//C int GetWindowRgn(HWND hWnd,HRGN hRgn);
int GetWindowRgn(HWND hWnd, HRGN hRgn);
//C int GetWindowRgnBox(HWND hWnd,LPRECT lprc);
int GetWindowRgnBox(HWND hWnd, LPRECT lprc);
//C int ExcludeUpdateRgn(HDC hDC,HWND hWnd);
int ExcludeUpdateRgn(HDC hDC, HWND hWnd);
//C WINBOOL InvalidateRect(HWND hWnd,const RECT *lpRect,WINBOOL bErase);
WINBOOL InvalidateRect(HWND hWnd, RECT *lpRect, WINBOOL bErase);
//C WINBOOL ValidateRect(HWND hWnd,const RECT *lpRect);
WINBOOL ValidateRect(HWND hWnd, RECT *lpRect);
//C WINBOOL InvalidateRgn(HWND hWnd,HRGN hRgn,WINBOOL bErase);
WINBOOL InvalidateRgn(HWND hWnd, HRGN hRgn, WINBOOL bErase);
//C WINBOOL ValidateRgn(HWND hWnd,HRGN hRgn);
WINBOOL ValidateRgn(HWND hWnd, HRGN hRgn);
//C WINBOOL RedrawWindow(HWND hWnd,const RECT *lprcUpdate,HRGN hrgnUpdate,UINT flags);
WINBOOL RedrawWindow(HWND hWnd, RECT *lprcUpdate, HRGN hrgnUpdate, UINT flags);
//C WINBOOL LockWindowUpdate(HWND hWndLock);
WINBOOL LockWindowUpdate(HWND hWndLock);
//C WINBOOL ScrollWindow(HWND hWnd,int XAmount,int YAmount,const RECT *lpRect,const RECT *lpClipRect);
WINBOOL ScrollWindow(HWND hWnd, int XAmount, int YAmount, RECT *lpRect, RECT *lpClipRect);
//C WINBOOL ScrollDC(HDC hDC,int dx,int dy,const RECT *lprcScroll,const RECT *lprcClip,HRGN hrgnUpdate,LPRECT lprcUpdate);
WINBOOL ScrollDC(HDC hDC, int dx, int dy, RECT *lprcScroll, RECT *lprcClip, HRGN hrgnUpdate, LPRECT lprcUpdate);
//C int ScrollWindowEx(HWND hWnd,int dx,int dy,const RECT *prcScroll,const RECT *prcClip,HRGN hrgnUpdate,LPRECT prcUpdate,UINT flags);
int ScrollWindowEx(HWND hWnd, int dx, int dy, RECT *prcScroll, RECT *prcClip, HRGN hrgnUpdate, LPRECT prcUpdate, UINT flags);
//C int SetScrollPos(HWND hWnd,int nBar,int nPos,WINBOOL bRedraw);
int SetScrollPos(HWND hWnd, int nBar, int nPos, WINBOOL bRedraw);
//C int GetScrollPos(HWND hWnd,int nBar);
int GetScrollPos(HWND hWnd, int nBar);
//C WINBOOL SetScrollRange(HWND hWnd,int nBar,int nMinPos,int nMaxPos,WINBOOL bRedraw);
WINBOOL SetScrollRange(HWND hWnd, int nBar, int nMinPos, int nMaxPos, WINBOOL bRedraw);
//C WINBOOL GetScrollRange(HWND hWnd,int nBar,LPINT lpMinPos,LPINT lpMaxPos);
WINBOOL GetScrollRange(HWND hWnd, int nBar, LPINT lpMinPos, LPINT lpMaxPos);
//C WINBOOL ShowScrollBar(HWND hWnd,int wBar,WINBOOL bShow);
WINBOOL ShowScrollBar(HWND hWnd, int wBar, WINBOOL bShow);
//C WINBOOL EnableScrollBar(HWND hWnd,UINT wSBflags,UINT wArrows);
WINBOOL EnableScrollBar(HWND hWnd, UINT wSBflags, UINT wArrows);
//C WINBOOL SetPropA(HWND hWnd,LPCSTR lpString,HANDLE hData);
WINBOOL SetPropA(HWND hWnd, LPCSTR lpString, HANDLE hData);
//C WINBOOL SetPropW(HWND hWnd,LPCWSTR lpString,HANDLE hData);
WINBOOL SetPropW(HWND hWnd, LPCWSTR lpString, HANDLE hData);
//C HANDLE GetPropA(HWND hWnd,LPCSTR lpString);
HANDLE GetPropA(HWND hWnd, LPCSTR lpString);
//C HANDLE GetPropW(HWND hWnd,LPCWSTR lpString);
HANDLE GetPropW(HWND hWnd, LPCWSTR lpString);
//C HANDLE RemovePropA(HWND hWnd,LPCSTR lpString);
HANDLE RemovePropA(HWND hWnd, LPCSTR lpString);
//C HANDLE RemovePropW(HWND hWnd,LPCWSTR lpString);
HANDLE RemovePropW(HWND hWnd, LPCWSTR lpString);
//C int EnumPropsExA(HWND hWnd,PROPENUMPROCEXA lpEnumFunc,LPARAM lParam);
int EnumPropsExA(HWND hWnd, PROPENUMPROCEXA lpEnumFunc, LPARAM lParam);
//C int EnumPropsExW(HWND hWnd,PROPENUMPROCEXW lpEnumFunc,LPARAM lParam);
int EnumPropsExW(HWND hWnd, PROPENUMPROCEXW lpEnumFunc, LPARAM lParam);
//C int EnumPropsA(HWND hWnd,PROPENUMPROCA lpEnumFunc);
int EnumPropsA(HWND hWnd, PROPENUMPROCA lpEnumFunc);
//C int EnumPropsW(HWND hWnd,PROPENUMPROCW lpEnumFunc);
int EnumPropsW(HWND hWnd, PROPENUMPROCW lpEnumFunc);
//C WINBOOL SetWindowTextA(HWND hWnd,LPCSTR lpString);
WINBOOL SetWindowTextA(HWND hWnd, LPCSTR lpString);
//C WINBOOL SetWindowTextW(HWND hWnd,LPCWSTR lpString);
WINBOOL SetWindowTextW(HWND hWnd, LPCWSTR lpString);
//C int GetWindowTextA(HWND hWnd,LPSTR lpString,int nMaxCount);
int GetWindowTextA(HWND hWnd, LPSTR lpString, int nMaxCount);
//C int GetWindowTextW(HWND hWnd,LPWSTR lpString,int nMaxCount);
int GetWindowTextW(HWND hWnd, LPWSTR lpString, int nMaxCount);
//C int GetWindowTextLengthA(HWND hWnd);
int GetWindowTextLengthA(HWND hWnd);
//C int GetWindowTextLengthW(HWND hWnd);
int GetWindowTextLengthW(HWND hWnd);
//C WINBOOL GetClientRect(HWND hWnd,LPRECT lpRect);
WINBOOL GetClientRect(HWND hWnd, LPRECT lpRect);
//C WINBOOL GetWindowRect(HWND hWnd,LPRECT lpRect);
WINBOOL GetWindowRect(HWND hWnd, LPRECT lpRect);
//C WINBOOL AdjustWindowRect(LPRECT lpRect,DWORD dwStyle,WINBOOL bMenu);
WINBOOL AdjustWindowRect(LPRECT lpRect, DWORD dwStyle, WINBOOL bMenu);
//C WINBOOL AdjustWindowRectEx(LPRECT lpRect,DWORD dwStyle,WINBOOL bMenu,DWORD dwExStyle);
WINBOOL AdjustWindowRectEx(LPRECT lpRect, DWORD dwStyle, WINBOOL bMenu, DWORD dwExStyle);
//C typedef struct tagHELPINFO {
//C UINT cbSize;
//C int iContextType;
//C int iCtrlId;
//C HANDLE hItemHandle;
//C DWORD_PTR dwContextId;
//C POINT MousePos;
//C } HELPINFO,*LPHELPINFO;
struct tagHELPINFO
{
UINT cbSize;
int iContextType;
int iCtrlId;
HANDLE hItemHandle;
DWORD_PTR dwContextId;
POINT MousePos;
}
alias tagHELPINFO HELPINFO;
alias tagHELPINFO *LPHELPINFO;
//C WINBOOL SetWindowContextHelpId(HWND,DWORD);
WINBOOL SetWindowContextHelpId(HWND , DWORD );
//C DWORD GetWindowContextHelpId(HWND);
DWORD GetWindowContextHelpId(HWND );
//C WINBOOL SetMenuContextHelpId(HMENU,DWORD);
WINBOOL SetMenuContextHelpId(HMENU , DWORD );
//C DWORD GetMenuContextHelpId(HMENU);
DWORD GetMenuContextHelpId(HMENU );
//C int MessageBoxA(HWND hWnd,LPCSTR lpText,LPCSTR lpCaption,UINT uType);
int MessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
//C int MessageBoxW(HWND hWnd,LPCWSTR lpText,LPCWSTR lpCaption,UINT uType);
int MessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType);
//C int MessageBoxExA(HWND hWnd,LPCSTR lpText,LPCSTR lpCaption,UINT uType,WORD wLanguageId);
int MessageBoxExA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType, WORD wLanguageId);
//C int MessageBoxExW(HWND hWnd,LPCWSTR lpText,LPCWSTR lpCaption,UINT uType,WORD wLanguageId);
int MessageBoxExW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType, WORD wLanguageId);
//C typedef void ( *MSGBOXCALLBACK)(LPHELPINFO lpHelpInfo);
alias void function(LPHELPINFO lpHelpInfo)MSGBOXCALLBACK;
//C typedef struct tagMSGBOXPARAMSA {
//C UINT cbSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCSTR lpszText;
//C LPCSTR lpszCaption;
//C DWORD dwStyle;
//C LPCSTR lpszIcon;
//C DWORD_PTR dwContextHelpId;
//C MSGBOXCALLBACK lpfnMsgBoxCallback;
//C DWORD dwLanguageId;
//C } MSGBOXPARAMSA,*PMSGBOXPARAMSA,*LPMSGBOXPARAMSA;
struct tagMSGBOXPARAMSA
{
UINT cbSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCSTR lpszText;
LPCSTR lpszCaption;
DWORD dwStyle;
LPCSTR lpszIcon;
DWORD_PTR dwContextHelpId;
MSGBOXCALLBACK lpfnMsgBoxCallback;
DWORD dwLanguageId;
}
alias tagMSGBOXPARAMSA MSGBOXPARAMSA;
alias tagMSGBOXPARAMSA *PMSGBOXPARAMSA;
alias tagMSGBOXPARAMSA *LPMSGBOXPARAMSA;
//C typedef struct tagMSGBOXPARAMSW {
//C UINT cbSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCWSTR lpszText;
//C LPCWSTR lpszCaption;
//C DWORD dwStyle;
//C LPCWSTR lpszIcon;
//C DWORD_PTR dwContextHelpId;
//C MSGBOXCALLBACK lpfnMsgBoxCallback;
//C DWORD dwLanguageId;
//C } MSGBOXPARAMSW,*PMSGBOXPARAMSW,*LPMSGBOXPARAMSW;
struct tagMSGBOXPARAMSW
{
UINT cbSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCWSTR lpszText;
LPCWSTR lpszCaption;
DWORD dwStyle;
LPCWSTR lpszIcon;
DWORD_PTR dwContextHelpId;
MSGBOXCALLBACK lpfnMsgBoxCallback;
DWORD dwLanguageId;
}
alias tagMSGBOXPARAMSW MSGBOXPARAMSW;
alias tagMSGBOXPARAMSW *PMSGBOXPARAMSW;
alias tagMSGBOXPARAMSW *LPMSGBOXPARAMSW;
//C typedef MSGBOXPARAMSA MSGBOXPARAMS;
alias MSGBOXPARAMSA MSGBOXPARAMS;
//C typedef PMSGBOXPARAMSA PMSGBOXPARAMS;
alias PMSGBOXPARAMSA PMSGBOXPARAMS;
//C typedef LPMSGBOXPARAMSA LPMSGBOXPARAMS;
alias LPMSGBOXPARAMSA LPMSGBOXPARAMS;
//C int MessageBoxIndirectA(const MSGBOXPARAMSA *lpmbp);
int MessageBoxIndirectA(MSGBOXPARAMSA *lpmbp);
//C int MessageBoxIndirectW(const MSGBOXPARAMSW *lpmbp);
int MessageBoxIndirectW(MSGBOXPARAMSW *lpmbp);
//C WINBOOL MessageBeep(UINT uType);
WINBOOL MessageBeep(UINT uType);
//C int ShowCursor(WINBOOL bShow);
int ShowCursor(WINBOOL bShow);
//C WINBOOL SetCursorPos(int X,int Y);
WINBOOL SetCursorPos(int X, int Y);
//C HCURSOR SetCursor(HCURSOR hCursor);
HCURSOR SetCursor(HCURSOR hCursor);
//C WINBOOL GetCursorPos(LPPOINT lpPoint);
WINBOOL GetCursorPos(LPPOINT lpPoint);
//C WINBOOL ClipCursor(const RECT *lpRect);
WINBOOL ClipCursor(RECT *lpRect);
//C WINBOOL GetClipCursor(LPRECT lpRect);
WINBOOL GetClipCursor(LPRECT lpRect);
//C HCURSOR GetCursor(void);
HCURSOR GetCursor();
//C WINBOOL CreateCaret(HWND hWnd,HBITMAP hBitmap,int nWidth,int nHeight);
WINBOOL CreateCaret(HWND hWnd, HBITMAP hBitmap, int nWidth, int nHeight);
//C UINT GetCaretBlinkTime(void);
UINT GetCaretBlinkTime();
//C WINBOOL SetCaretBlinkTime(UINT uMSeconds);
WINBOOL SetCaretBlinkTime(UINT uMSeconds);
//C WINBOOL DestroyCaret(void);
WINBOOL DestroyCaret();
//C WINBOOL HideCaret(HWND hWnd);
WINBOOL HideCaret(HWND hWnd);
//C WINBOOL ShowCaret(HWND hWnd);
WINBOOL ShowCaret(HWND hWnd);
//C WINBOOL SetCaretPos(int X,int Y);
WINBOOL SetCaretPos(int X, int Y);
//C WINBOOL GetCaretPos(LPPOINT lpPoint);
WINBOOL GetCaretPos(LPPOINT lpPoint);
//C WINBOOL ClientToScreen(HWND hWnd,LPPOINT lpPoint);
WINBOOL ClientToScreen(HWND hWnd, LPPOINT lpPoint);
//C WINBOOL ScreenToClient(HWND hWnd,LPPOINT lpPoint);
WINBOOL ScreenToClient(HWND hWnd, LPPOINT lpPoint);
//C int MapWindowPoints(HWND hWndFrom,HWND hWndTo,LPPOINT lpPoints,UINT cPoints);
int MapWindowPoints(HWND hWndFrom, HWND hWndTo, LPPOINT lpPoints, UINT cPoints);
//C HWND WindowFromPoint(POINT Point);
HWND WindowFromPoint(POINT Point);
//C HWND ChildWindowFromPoint(HWND hWndParent,POINT Point);
HWND ChildWindowFromPoint(HWND hWndParent, POINT Point);
//C HWND ChildWindowFromPointEx(HWND hwnd,POINT pt,UINT flags);
HWND ChildWindowFromPointEx(HWND hwnd, POINT pt, UINT flags);
//C DWORD GetSysColor(int nIndex);
DWORD GetSysColor(int nIndex);
//C HBRUSH GetSysColorBrush(int nIndex);
HBRUSH GetSysColorBrush(int nIndex);
//C WINBOOL SetSysColors(int cElements,const INT *lpaElements,const COLORREF *lpaRgbValues);
WINBOOL SetSysColors(int cElements, INT *lpaElements, COLORREF *lpaRgbValues);
//C WINBOOL DrawFocusRect(HDC hDC,const RECT *lprc);
WINBOOL DrawFocusRect(HDC hDC, RECT *lprc);
//C int FillRect(HDC hDC,const RECT *lprc,HBRUSH hbr);
int FillRect(HDC hDC, RECT *lprc, HBRUSH hbr);
//C int FrameRect(HDC hDC,const RECT *lprc,HBRUSH hbr);
int FrameRect(HDC hDC, RECT *lprc, HBRUSH hbr);
//C WINBOOL InvertRect(HDC hDC,const RECT *lprc);
WINBOOL InvertRect(HDC hDC, RECT *lprc);
//C WINBOOL SetRect(LPRECT lprc,int xLeft,int yTop,int xRight,int yBottom);
WINBOOL SetRect(LPRECT lprc, int xLeft, int yTop, int xRight, int yBottom);
//C WINBOOL SetRectEmpty(LPRECT lprc);
WINBOOL SetRectEmpty(LPRECT lprc);
//C WINBOOL CopyRect(LPRECT lprcDst,const RECT *lprcSrc);
WINBOOL CopyRect(LPRECT lprcDst, RECT *lprcSrc);
//C WINBOOL InflateRect(LPRECT lprc,int dx,int dy);
WINBOOL InflateRect(LPRECT lprc, int dx, int dy);
//C WINBOOL IntersectRect(LPRECT lprcDst,const RECT *lprcSrc1,const RECT *lprcSrc2);
WINBOOL IntersectRect(LPRECT lprcDst, RECT *lprcSrc1, RECT *lprcSrc2);
//C WINBOOL UnionRect(LPRECT lprcDst,const RECT *lprcSrc1,const RECT *lprcSrc2);
WINBOOL UnionRect(LPRECT lprcDst, RECT *lprcSrc1, RECT *lprcSrc2);
//C WINBOOL SubtractRect(LPRECT lprcDst,const RECT *lprcSrc1,const RECT *lprcSrc2);
WINBOOL SubtractRect(LPRECT lprcDst, RECT *lprcSrc1, RECT *lprcSrc2);
//C WINBOOL OffsetRect(LPRECT lprc,int dx,int dy);
WINBOOL OffsetRect(LPRECT lprc, int dx, int dy);
//C WINBOOL IsRectEmpty(const RECT *lprc);
WINBOOL IsRectEmpty(RECT *lprc);
//C WINBOOL EqualRect(const RECT *lprc1,const RECT *lprc2);
WINBOOL EqualRect(RECT *lprc1, RECT *lprc2);
//C WINBOOL PtInRect(const RECT *lprc,POINT pt);
WINBOOL PtInRect(RECT *lprc, POINT pt);
//C WORD GetWindowWord(HWND hWnd,int nIndex);
WORD GetWindowWord(HWND hWnd, int nIndex);
//C WORD SetWindowWord(HWND hWnd,int nIndex,WORD wNewWord);
WORD SetWindowWord(HWND hWnd, int nIndex, WORD wNewWord);
//C LONG GetWindowLongA(HWND hWnd,int nIndex);
LONG GetWindowLongA(HWND hWnd, int nIndex);
//C LONG GetWindowLongW(HWND hWnd,int nIndex);
LONG GetWindowLongW(HWND hWnd, int nIndex);
//C LONG SetWindowLongA(HWND hWnd,int nIndex,LONG dwNewLong);
LONG SetWindowLongA(HWND hWnd, int nIndex, LONG dwNewLong);
//C LONG SetWindowLongW(HWND hWnd,int nIndex,LONG dwNewLong);
LONG SetWindowLongW(HWND hWnd, int nIndex, LONG dwNewLong);
//C LONG_PTR GetWindowLongPtrA(HWND hWnd,int nIndex);
LONG_PTR GetWindowLongPtrA(HWND hWnd, int nIndex);
//C LONG_PTR GetWindowLongPtrW(HWND hWnd,int nIndex);
LONG_PTR GetWindowLongPtrW(HWND hWnd, int nIndex);
//C LONG_PTR SetWindowLongPtrA(HWND hWnd,int nIndex,LONG_PTR dwNewLong);
LONG_PTR SetWindowLongPtrA(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
//C LONG_PTR SetWindowLongPtrW(HWND hWnd,int nIndex,LONG_PTR dwNewLong);
LONG_PTR SetWindowLongPtrW(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
//C WORD GetClassWord(HWND hWnd,int nIndex);
WORD GetClassWord(HWND hWnd, int nIndex);
//C WORD SetClassWord(HWND hWnd,int nIndex,WORD wNewWord);
WORD SetClassWord(HWND hWnd, int nIndex, WORD wNewWord);
//C DWORD GetClassLongA(HWND hWnd,int nIndex);
DWORD GetClassLongA(HWND hWnd, int nIndex);
//C DWORD GetClassLongW(HWND hWnd,int nIndex);
DWORD GetClassLongW(HWND hWnd, int nIndex);
//C DWORD SetClassLongA(HWND hWnd,int nIndex,LONG dwNewLong);
DWORD SetClassLongA(HWND hWnd, int nIndex, LONG dwNewLong);
//C DWORD SetClassLongW(HWND hWnd,int nIndex,LONG dwNewLong);
DWORD SetClassLongW(HWND hWnd, int nIndex, LONG dwNewLong);
//C ULONG_PTR GetClassLongPtrA(HWND hWnd,int nIndex);
ULONG_PTR GetClassLongPtrA(HWND hWnd, int nIndex);
//C ULONG_PTR GetClassLongPtrW(HWND hWnd,int nIndex);
ULONG_PTR GetClassLongPtrW(HWND hWnd, int nIndex);
//C ULONG_PTR SetClassLongPtrA(HWND hWnd,int nIndex,LONG_PTR dwNewLong);
ULONG_PTR SetClassLongPtrA(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
//C ULONG_PTR SetClassLongPtrW(HWND hWnd,int nIndex,LONG_PTR dwNewLong);
ULONG_PTR SetClassLongPtrW(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
//C WINBOOL GetProcessDefaultLayout(DWORD *pdwDefaultLayout);
WINBOOL GetProcessDefaultLayout(DWORD *pdwDefaultLayout);
//C WINBOOL SetProcessDefaultLayout(DWORD dwDefaultLayout);
WINBOOL SetProcessDefaultLayout(DWORD dwDefaultLayout);
//C HWND GetDesktopWindow(void);
HWND GetDesktopWindow();
//C HWND GetParent(HWND hWnd);
HWND GetParent(HWND hWnd);
//C HWND SetParent(HWND hWndChild,HWND hWndNewParent);
HWND SetParent(HWND hWndChild, HWND hWndNewParent);
//C WINBOOL EnumChildWindows(HWND hWndParent,WNDENUMPROC lpEnumFunc,LPARAM lParam);
WINBOOL EnumChildWindows(HWND hWndParent, WNDENUMPROC lpEnumFunc, LPARAM lParam);
//C HWND FindWindowA(LPCSTR lpClassName,LPCSTR lpWindowName);
HWND FindWindowA(LPCSTR lpClassName, LPCSTR lpWindowName);
//C HWND FindWindowW(LPCWSTR lpClassName,LPCWSTR lpWindowName);
HWND FindWindowW(LPCWSTR lpClassName, LPCWSTR lpWindowName);
//C HWND FindWindowExA(HWND hWndParent,HWND hWndChildAfter,LPCSTR lpszClass,LPCSTR lpszWindow);
HWND FindWindowExA(HWND hWndParent, HWND hWndChildAfter, LPCSTR lpszClass, LPCSTR lpszWindow);
//C HWND FindWindowExW(HWND hWndParent,HWND hWndChildAfter,LPCWSTR lpszClass,LPCWSTR lpszWindow);
HWND FindWindowExW(HWND hWndParent, HWND hWndChildAfter, LPCWSTR lpszClass, LPCWSTR lpszWindow);
//C HWND GetShellWindow(void);
HWND GetShellWindow();
//C WINBOOL RegisterShellHookWindow(HWND hwnd);
WINBOOL RegisterShellHookWindow(HWND hwnd);
//C WINBOOL DeregisterShellHookWindow(HWND hwnd);
WINBOOL DeregisterShellHookWindow(HWND hwnd);
//C WINBOOL EnumWindows(WNDENUMPROC lpEnumFunc,LPARAM lParam);
WINBOOL EnumWindows(WNDENUMPROC lpEnumFunc, LPARAM lParam);
//C WINBOOL EnumThreadWindows(DWORD dwThreadId,WNDENUMPROC lpfn,LPARAM lParam);
WINBOOL EnumThreadWindows(DWORD dwThreadId, WNDENUMPROC lpfn, LPARAM lParam);
//C int GetClassNameA(HWND hWnd,LPSTR lpClassName,int nMaxCount);
int GetClassNameA(HWND hWnd, LPSTR lpClassName, int nMaxCount);
//C int GetClassNameW(HWND hWnd,LPWSTR lpClassName,int nMaxCount);
int GetClassNameW(HWND hWnd, LPWSTR lpClassName, int nMaxCount);
//C HWND GetTopWindow(HWND hWnd);
HWND GetTopWindow(HWND hWnd);
//C DWORD GetWindowThreadProcessId(HWND hWnd,LPDWORD lpdwProcessId);
DWORD GetWindowThreadProcessId(HWND hWnd, LPDWORD lpdwProcessId);
//C WINBOOL IsGUIThread(WINBOOL bConvert);
WINBOOL IsGUIThread(WINBOOL bConvert);
//C HWND GetLastActivePopup(HWND hWnd);
HWND GetLastActivePopup(HWND hWnd);
//C HWND GetWindow(HWND hWnd,UINT uCmd);
HWND GetWindow(HWND hWnd, UINT uCmd);
//C HHOOK SetWindowsHookA(int nFilterType,HOOKPROC pfnFilterProc);
HHOOK SetWindowsHookA(int nFilterType, HOOKPROC pfnFilterProc);
//C HHOOK SetWindowsHookW(int nFilterType,HOOKPROC pfnFilterProc);
HHOOK SetWindowsHookW(int nFilterType, HOOKPROC pfnFilterProc);
//C WINBOOL UnhookWindowsHook(int nCode,HOOKPROC pfnFilterProc);
WINBOOL UnhookWindowsHook(int nCode, HOOKPROC pfnFilterProc);
//C HHOOK SetWindowsHookExA(int idHook,HOOKPROC lpfn,HINSTANCE hmod,DWORD dwThreadId);
HHOOK SetWindowsHookExA(int idHook, HOOKPROC lpfn, HINSTANCE hmod, DWORD dwThreadId);
//C HHOOK SetWindowsHookExW(int idHook,HOOKPROC lpfn,HINSTANCE hmod,DWORD dwThreadId);
HHOOK SetWindowsHookExW(int idHook, HOOKPROC lpfn, HINSTANCE hmod, DWORD dwThreadId);
//C WINBOOL UnhookWindowsHookEx(HHOOK hhk);
WINBOOL UnhookWindowsHookEx(HHOOK hhk);
//C LRESULT CallNextHookEx(HHOOK hhk,int nCode,WPARAM wParam,LPARAM lParam);
LRESULT CallNextHookEx(HHOOK hhk, int nCode, WPARAM wParam, LPARAM lParam);
//C WINBOOL CheckMenuRadioItem(HMENU hmenu,UINT first,UINT last,UINT check,UINT flags);
WINBOOL CheckMenuRadioItem(HMENU hmenu, UINT first, UINT last, UINT check, UINT flags);
//C typedef struct {
//C WORD versionNumber;
//C WORD offset;
//C } MENUITEMTEMPLATEHEADER,*PMENUITEMTEMPLATEHEADER;
struct _N77
{
WORD versionNumber;
WORD offset;
}
alias _N77 MENUITEMTEMPLATEHEADER;
alias _N77 *PMENUITEMTEMPLATEHEADER;
//C typedef struct {
//C WORD mtOption;
//C WORD mtID;
//C WCHAR mtString[1];
//C } MENUITEMTEMPLATE,*PMENUITEMTEMPLATE;
struct _N78
{
WORD mtOption;
WORD mtID;
WCHAR [1]mtString;
}
alias _N78 MENUITEMTEMPLATE;
alias _N78 *PMENUITEMTEMPLATE;
//C HBITMAP LoadBitmapA(HINSTANCE hInstance,LPCSTR lpBitmapName);
HBITMAP LoadBitmapA(HINSTANCE hInstance, LPCSTR lpBitmapName);
//C HBITMAP LoadBitmapW(HINSTANCE hInstance,LPCWSTR lpBitmapName);
HBITMAP LoadBitmapW(HINSTANCE hInstance, LPCWSTR lpBitmapName);
//C HCURSOR LoadCursorA(HINSTANCE hInstance,LPCSTR lpCursorName);
HCURSOR LoadCursorA(HINSTANCE hInstance, LPCSTR lpCursorName);
//C HCURSOR LoadCursorW(HINSTANCE hInstance,LPCWSTR lpCursorName);
HCURSOR LoadCursorW(HINSTANCE hInstance, LPCWSTR lpCursorName);
//C HCURSOR LoadCursorFromFileA(LPCSTR lpFileName);
HCURSOR LoadCursorFromFileA(LPCSTR lpFileName);
//C HCURSOR LoadCursorFromFileW(LPCWSTR lpFileName);
HCURSOR LoadCursorFromFileW(LPCWSTR lpFileName);
//C HCURSOR CreateCursor(HINSTANCE hInst,int xHotSpot,int yHotSpot,int nWidth,int nHeight,const void *pvANDPlane,const void *pvXORPlane);
HCURSOR CreateCursor(HINSTANCE hInst, int xHotSpot, int yHotSpot, int nWidth, int nHeight, void *pvANDPlane, void *pvXORPlane);
//C WINBOOL DestroyCursor(HCURSOR hCursor);
WINBOOL DestroyCursor(HCURSOR hCursor);
//C WINBOOL SetSystemCursor(HCURSOR hcur,DWORD id);
WINBOOL SetSystemCursor(HCURSOR hcur, DWORD id);
//C typedef struct _ICONINFO {
//C WINBOOL fIcon;
//C DWORD xHotspot;
//C DWORD yHotspot;
//C HBITMAP hbmMask;
//C HBITMAP hbmColor;
//C } ICONINFO;
struct _ICONINFO
{
WINBOOL fIcon;
DWORD xHotspot;
DWORD yHotspot;
HBITMAP hbmMask;
HBITMAP hbmColor;
}
alias _ICONINFO ICONINFO;
//C typedef ICONINFO *PICONINFO;
alias ICONINFO *PICONINFO;
//C HICON LoadIconA(HINSTANCE hInstance,LPCSTR lpIconName);
HICON LoadIconA(HINSTANCE hInstance, LPCSTR lpIconName);
//C HICON LoadIconW(HINSTANCE hInstance,LPCWSTR lpIconName);
HICON LoadIconW(HINSTANCE hInstance, LPCWSTR lpIconName);
//C UINT PrivateExtractIconsA(LPCSTR szFileName,int nIconIndex,int cxIcon,int cyIcon,HICON *phicon,UINT *piconid,UINT nIcons,UINT flags);
UINT PrivateExtractIconsA(LPCSTR szFileName, int nIconIndex, int cxIcon, int cyIcon, HICON *phicon, UINT *piconid, UINT nIcons, UINT flags);
//C UINT PrivateExtractIconsW(LPCWSTR szFileName,int nIconIndex,int cxIcon,int cyIcon,HICON *phicon,UINT *piconid,UINT nIcons,UINT flags);
UINT PrivateExtractIconsW(LPCWSTR szFileName, int nIconIndex, int cxIcon, int cyIcon, HICON *phicon, UINT *piconid, UINT nIcons, UINT flags);
//C HICON CreateIcon(HINSTANCE hInstance,int nWidth,int nHeight,BYTE cPlanes,BYTE cBitsPixel,const BYTE *lpbANDbits,const BYTE *lpbXORbits);
HICON CreateIcon(HINSTANCE hInstance, int nWidth, int nHeight, BYTE cPlanes, BYTE cBitsPixel, BYTE *lpbANDbits, BYTE *lpbXORbits);
//C WINBOOL DestroyIcon(HICON hIcon);
WINBOOL DestroyIcon(HICON hIcon);
//C int LookupIconIdFromDirectory(PBYTE presbits,WINBOOL fIcon);
int LookupIconIdFromDirectory(PBYTE presbits, WINBOOL fIcon);
//C int LookupIconIdFromDirectoryEx(PBYTE presbits,WINBOOL fIcon,int cxDesired,int cyDesired,UINT Flags);
int LookupIconIdFromDirectoryEx(PBYTE presbits, WINBOOL fIcon, int cxDesired, int cyDesired, UINT Flags);
//C HICON CreateIconFromResource(PBYTE presbits,DWORD dwResSize,WINBOOL fIcon,DWORD dwVer);
HICON CreateIconFromResource(PBYTE presbits, DWORD dwResSize, WINBOOL fIcon, DWORD dwVer);
//C HICON CreateIconFromResourceEx(PBYTE presbits,DWORD dwResSize,WINBOOL fIcon,DWORD dwVer,int cxDesired,int cyDesired,UINT Flags);
HICON CreateIconFromResourceEx(PBYTE presbits, DWORD dwResSize, WINBOOL fIcon, DWORD dwVer, int cxDesired, int cyDesired, UINT Flags);
//C typedef struct tagCURSORSHAPE {
//C int xHotSpot;
//C int yHotSpot;
//C int cx;
//C int cy;
//C int cbWidth;
//C BYTE Planes;
//C BYTE BitsPixel;
//C } CURSORSHAPE,*LPCURSORSHAPE;
struct tagCURSORSHAPE
{
int xHotSpot;
int yHotSpot;
int cx;
int cy;
int cbWidth;
BYTE Planes;
BYTE BitsPixel;
}
alias tagCURSORSHAPE CURSORSHAPE;
alias tagCURSORSHAPE *LPCURSORSHAPE;
//C HANDLE LoadImageA(HINSTANCE hInst,LPCSTR name,UINT type,int cx,int cy,UINT fuLoad);
HANDLE LoadImageA(HINSTANCE hInst, LPCSTR name, UINT type, int cx, int cy, UINT fuLoad);
//C HANDLE LoadImageW(HINSTANCE hInst,LPCWSTR name,UINT type,int cx,int cy,UINT fuLoad);
HANDLE LoadImageW(HINSTANCE hInst, LPCWSTR name, UINT type, int cx, int cy, UINT fuLoad);
//C HANDLE CopyImage(HANDLE h,UINT type,int cx,int cy,UINT flags);
HANDLE CopyImage(HANDLE h, UINT type, int cx, int cy, UINT flags);
//C WINBOOL DrawIconEx(HDC hdc,int xLeft,int yTop,HICON hIcon,int cxWidth,int cyWidth,UINT istepIfAniCur,HBRUSH hbrFlickerFreeDraw,UINT diFlags);
WINBOOL DrawIconEx(HDC hdc, int xLeft, int yTop, HICON hIcon, int cxWidth, int cyWidth, UINT istepIfAniCur, HBRUSH hbrFlickerFreeDraw, UINT diFlags);
//C HICON CreateIconIndirect(PICONINFO piconinfo);
HICON CreateIconIndirect(PICONINFO piconinfo);
//C HICON CopyIcon(HICON hIcon);
HICON CopyIcon(HICON hIcon);
//C WINBOOL GetIconInfo(HICON hIcon,PICONINFO piconinfo);
WINBOOL GetIconInfo(HICON hIcon, PICONINFO piconinfo);
//C int LoadStringA(HINSTANCE hInstance,UINT uID,LPSTR lpBuffer,int cchBufferMax);
int LoadStringA(HINSTANCE hInstance, UINT uID, LPSTR lpBuffer, int cchBufferMax);
//C int LoadStringW(HINSTANCE hInstance,UINT uID,LPWSTR lpBuffer,int cchBufferMax);
int LoadStringW(HINSTANCE hInstance, UINT uID, LPWSTR lpBuffer, int cchBufferMax);
//C WINBOOL IsDialogMessageA(HWND hDlg,LPMSG lpMsg);
WINBOOL IsDialogMessageA(HWND hDlg, LPMSG lpMsg);
//C WINBOOL IsDialogMessageW(HWND hDlg,LPMSG lpMsg);
WINBOOL IsDialogMessageW(HWND hDlg, LPMSG lpMsg);
//C WINBOOL MapDialogRect(HWND hDlg,LPRECT lpRect);
WINBOOL MapDialogRect(HWND hDlg, LPRECT lpRect);
//C int DlgDirListA(HWND hDlg,LPSTR lpPathSpec,int nIDListBox,int nIDStaticPath,UINT uFileType);
int DlgDirListA(HWND hDlg, LPSTR lpPathSpec, int nIDListBox, int nIDStaticPath, UINT uFileType);
//C int DlgDirListW(HWND hDlg,LPWSTR lpPathSpec,int nIDListBox,int nIDStaticPath,UINT uFileType);
int DlgDirListW(HWND hDlg, LPWSTR lpPathSpec, int nIDListBox, int nIDStaticPath, UINT uFileType);
//C WINBOOL DlgDirSelectExA(HWND hwndDlg,LPSTR lpString,int chCount,int idListBox);
WINBOOL DlgDirSelectExA(HWND hwndDlg, LPSTR lpString, int chCount, int idListBox);
//C WINBOOL DlgDirSelectExW(HWND hwndDlg,LPWSTR lpString,int chCount,int idListBox);
WINBOOL DlgDirSelectExW(HWND hwndDlg, LPWSTR lpString, int chCount, int idListBox);
//C int DlgDirListComboBoxA(HWND hDlg,LPSTR lpPathSpec,int nIDComboBox,int nIDStaticPath,UINT uFiletype);
int DlgDirListComboBoxA(HWND hDlg, LPSTR lpPathSpec, int nIDComboBox, int nIDStaticPath, UINT uFiletype);
//C int DlgDirListComboBoxW(HWND hDlg,LPWSTR lpPathSpec,int nIDComboBox,int nIDStaticPath,UINT uFiletype);
int DlgDirListComboBoxW(HWND hDlg, LPWSTR lpPathSpec, int nIDComboBox, int nIDStaticPath, UINT uFiletype);
//C WINBOOL DlgDirSelectComboBoxExA(HWND hwndDlg,LPSTR lpString,int cchOut,int idComboBox);
WINBOOL DlgDirSelectComboBoxExA(HWND hwndDlg, LPSTR lpString, int cchOut, int idComboBox);
//C WINBOOL DlgDirSelectComboBoxExW(HWND hwndDlg,LPWSTR lpString,int cchOut,int idComboBox);
WINBOOL DlgDirSelectComboBoxExW(HWND hwndDlg, LPWSTR lpString, int cchOut, int idComboBox);
//C typedef struct tagSCROLLINFO {
//C UINT cbSize;
//C UINT fMask;
//C int nMin;
//C int nMax;
//C UINT nPage;
//C int nPos;
//C int nTrackPos;
//C } SCROLLINFO,*LPSCROLLINFO;
struct tagSCROLLINFO
{
UINT cbSize;
UINT fMask;
int nMin;
int nMax;
UINT nPage;
int nPos;
int nTrackPos;
}
alias tagSCROLLINFO SCROLLINFO;
alias tagSCROLLINFO *LPSCROLLINFO;
//C typedef SCROLLINFO const *LPCSCROLLINFO;
alias SCROLLINFO *LPCSCROLLINFO;
//C int SetScrollInfo(HWND hwnd,int nBar,LPCSCROLLINFO lpsi,WINBOOL redraw);
int SetScrollInfo(HWND hwnd, int nBar, LPCSCROLLINFO lpsi, WINBOOL redraw);
//C WINBOOL GetScrollInfo(HWND hwnd,int nBar,LPSCROLLINFO lpsi);
WINBOOL GetScrollInfo(HWND hwnd, int nBar, LPSCROLLINFO lpsi);
//C typedef struct tagMDICREATESTRUCTA {
//C LPCSTR szClass;
//C LPCSTR szTitle;
//C HANDLE hOwner;
//C int x;
//C int y;
//C int cx;
//C int cy;
//C DWORD style;
//C LPARAM lParam;
//C } MDICREATESTRUCTA,*LPMDICREATESTRUCTA;
struct tagMDICREATESTRUCTA
{
LPCSTR szClass;
LPCSTR szTitle;
HANDLE hOwner;
int x;
int y;
int cx;
int cy;
DWORD style;
LPARAM lParam;
}
alias tagMDICREATESTRUCTA MDICREATESTRUCTA;
alias tagMDICREATESTRUCTA *LPMDICREATESTRUCTA;
//C typedef struct tagMDICREATESTRUCTW {
//C LPCWSTR szClass;
//C LPCWSTR szTitle;
//C HANDLE hOwner;
//C int x;
//C int y;
//C int cx;
//C int cy;
//C DWORD style;
//C LPARAM lParam;
//C } MDICREATESTRUCTW,*LPMDICREATESTRUCTW;
struct tagMDICREATESTRUCTW
{
LPCWSTR szClass;
LPCWSTR szTitle;
HANDLE hOwner;
int x;
int y;
int cx;
int cy;
DWORD style;
LPARAM lParam;
}
alias tagMDICREATESTRUCTW MDICREATESTRUCTW;
alias tagMDICREATESTRUCTW *LPMDICREATESTRUCTW;
//C typedef MDICREATESTRUCTA MDICREATESTRUCT;
alias MDICREATESTRUCTA MDICREATESTRUCT;
//C typedef LPMDICREATESTRUCTA LPMDICREATESTRUCT;
alias LPMDICREATESTRUCTA LPMDICREATESTRUCT;
//C typedef struct tagCLIENTCREATESTRUCT {
//C HANDLE hWindowMenu;
//C UINT idFirstChild;
//C } CLIENTCREATESTRUCT,*LPCLIENTCREATESTRUCT;
struct tagCLIENTCREATESTRUCT
{
HANDLE hWindowMenu;
UINT idFirstChild;
}
alias tagCLIENTCREATESTRUCT CLIENTCREATESTRUCT;
alias tagCLIENTCREATESTRUCT *LPCLIENTCREATESTRUCT;
//C LRESULT DefFrameProcA(HWND hWnd,HWND hWndMDIClient,UINT uMsg,WPARAM wParam,LPARAM lParam);
LRESULT DefFrameProcA(HWND hWnd, HWND hWndMDIClient, UINT uMsg, WPARAM wParam, LPARAM lParam);
//C LRESULT DefFrameProcW(HWND hWnd,HWND hWndMDIClient,UINT uMsg,WPARAM wParam,LPARAM lParam);
LRESULT DefFrameProcW(HWND hWnd, HWND hWndMDIClient, UINT uMsg, WPARAM wParam, LPARAM lParam);
//C LRESULT DefMDIChildProcA(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
LRESULT DefMDIChildProcA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
//C LRESULT DefMDIChildProcW(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
LRESULT DefMDIChildProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
//C WINBOOL TranslateMDISysAccel(HWND hWndClient,LPMSG lpMsg);
WINBOOL TranslateMDISysAccel(HWND hWndClient, LPMSG lpMsg);
//C UINT ArrangeIconicWindows(HWND hWnd);
UINT ArrangeIconicWindows(HWND hWnd);
//C HWND CreateMDIWindowA(LPCSTR lpClassName,LPCSTR lpWindowName,DWORD dwStyle,int X,int Y,int nWidth,int nHeight,HWND hWndParent,HINSTANCE hInstance,LPARAM lParam);
HWND CreateMDIWindowA(LPCSTR lpClassName, LPCSTR lpWindowName, DWORD dwStyle, int X, int Y, int nWidth, int nHeight, HWND hWndParent, HINSTANCE hInstance, LPARAM lParam);
//C HWND CreateMDIWindowW(LPCWSTR lpClassName,LPCWSTR lpWindowName,DWORD dwStyle,int X,int Y,int nWidth,int nHeight,HWND hWndParent,HINSTANCE hInstance,LPARAM lParam);
HWND CreateMDIWindowW(LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, int X, int Y, int nWidth, int nHeight, HWND hWndParent, HINSTANCE hInstance, LPARAM lParam);
//C WORD TileWindows(HWND hwndParent,UINT wHow,const RECT *lpRect,UINT cKids,const HWND *lpKids);
WORD TileWindows(HWND hwndParent, UINT wHow, RECT *lpRect, UINT cKids, HWND *lpKids);
//C WORD CascadeWindows(HWND hwndParent,UINT wHow,const RECT *lpRect,UINT cKids,const HWND *lpKids);
WORD CascadeWindows(HWND hwndParent, UINT wHow, RECT *lpRect, UINT cKids, HWND *lpKids);
//C typedef DWORD HELPPOLY;
alias DWORD HELPPOLY;
//C typedef struct tagMULTIKEYHELPA {
//C DWORD mkSize;
//C CHAR mkKeylist;
//C CHAR szKeyphrase[1];
//C } MULTIKEYHELPA,*PMULTIKEYHELPA,*LPMULTIKEYHELPA;
struct tagMULTIKEYHELPA
{
DWORD mkSize;
CHAR mkKeylist;
CHAR [1]szKeyphrase;
}
alias tagMULTIKEYHELPA MULTIKEYHELPA;
alias tagMULTIKEYHELPA *PMULTIKEYHELPA;
alias tagMULTIKEYHELPA *LPMULTIKEYHELPA;
//C typedef struct tagMULTIKEYHELPW {
//C DWORD mkSize;
//C WCHAR mkKeylist;
//C WCHAR szKeyphrase[1];
//C } MULTIKEYHELPW,*PMULTIKEYHELPW,*LPMULTIKEYHELPW;
struct tagMULTIKEYHELPW
{
DWORD mkSize;
WCHAR mkKeylist;
WCHAR [1]szKeyphrase;
}
alias tagMULTIKEYHELPW MULTIKEYHELPW;
alias tagMULTIKEYHELPW *PMULTIKEYHELPW;
alias tagMULTIKEYHELPW *LPMULTIKEYHELPW;
//C typedef MULTIKEYHELPA MULTIKEYHELP;
alias MULTIKEYHELPA MULTIKEYHELP;
//C typedef PMULTIKEYHELPA PMULTIKEYHELP;
alias PMULTIKEYHELPA PMULTIKEYHELP;
//C typedef LPMULTIKEYHELPA LPMULTIKEYHELP;
alias LPMULTIKEYHELPA LPMULTIKEYHELP;
//C typedef struct tagHELPWININFOA {
//C int wStructSize;
//C int x;
//C int y;
//C int dx;
//C int dy;
//C int wMax;
//C CHAR rgchMember[2];
//C } HELPWININFOA,*PHELPWININFOA,*LPHELPWININFOA;
struct tagHELPWININFOA
{
int wStructSize;
int x;
int y;
int dx;
int dy;
int wMax;
CHAR [2]rgchMember;
}
alias tagHELPWININFOA HELPWININFOA;
alias tagHELPWININFOA *PHELPWININFOA;
alias tagHELPWININFOA *LPHELPWININFOA;
//C typedef struct tagHELPWININFOW {
//C int wStructSize;
//C int x;
//C int y;
//C int dx;
//C int dy;
//C int wMax;
//C WCHAR rgchMember[2];
//C } HELPWININFOW,*PHELPWININFOW,*LPHELPWININFOW;
struct tagHELPWININFOW
{
int wStructSize;
int x;
int y;
int dx;
int dy;
int wMax;
WCHAR [2]rgchMember;
}
alias tagHELPWININFOW HELPWININFOW;
alias tagHELPWININFOW *PHELPWININFOW;
alias tagHELPWININFOW *LPHELPWININFOW;
//C typedef HELPWININFOA HELPWININFO;
alias HELPWININFOA HELPWININFO;
//C typedef PHELPWININFOA PHELPWININFO;
alias PHELPWININFOA PHELPWININFO;
//C typedef LPHELPWININFOA LPHELPWININFO;
alias LPHELPWININFOA LPHELPWININFO;
//C WINBOOL WinHelpA(HWND hWndMain,LPCSTR lpszHelp,UINT uCommand,ULONG_PTR dwData);
WINBOOL WinHelpA(HWND hWndMain, LPCSTR lpszHelp, UINT uCommand, ULONG_PTR dwData);
//C WINBOOL WinHelpW(HWND hWndMain,LPCWSTR lpszHelp,UINT uCommand,ULONG_PTR dwData);
WINBOOL WinHelpW(HWND hWndMain, LPCWSTR lpszHelp, UINT uCommand, ULONG_PTR dwData);
//C DWORD GetGuiResources(HANDLE hProcess,DWORD uiFlags);
DWORD GetGuiResources(HANDLE hProcess, DWORD uiFlags);
//C typedef struct tagNONCLIENTMETRICSA {
//C UINT cbSize;
//C int iBorderWidth;
//C int iScrollWidth;
//C int iScrollHeight;
//C int iCaptionWidth;
//C int iCaptionHeight;
//C LOGFONTA lfCaptionFont;
//C int iSmCaptionWidth;
//C int iSmCaptionHeight;
//C LOGFONTA lfSmCaptionFont;
//C int iMenuWidth;
//C int iMenuHeight;
//C LOGFONTA lfMenuFont;
//C LOGFONTA lfStatusFont;
//C LOGFONTA lfMessageFont;
//C } NONCLIENTMETRICSA,*PNONCLIENTMETRICSA,*LPNONCLIENTMETRICSA;
struct tagNONCLIENTMETRICSA
{
UINT cbSize;
int iBorderWidth;
int iScrollWidth;
int iScrollHeight;
int iCaptionWidth;
int iCaptionHeight;
LOGFONTA lfCaptionFont;
int iSmCaptionWidth;
int iSmCaptionHeight;
LOGFONTA lfSmCaptionFont;
int iMenuWidth;
int iMenuHeight;
LOGFONTA lfMenuFont;
LOGFONTA lfStatusFont;
LOGFONTA lfMessageFont;
}
alias tagNONCLIENTMETRICSA NONCLIENTMETRICSA;
alias tagNONCLIENTMETRICSA *PNONCLIENTMETRICSA;
alias tagNONCLIENTMETRICSA *LPNONCLIENTMETRICSA;
//C typedef struct tagNONCLIENTMETRICSW {
//C UINT cbSize;
//C int iBorderWidth;
//C int iScrollWidth;
//C int iScrollHeight;
//C int iCaptionWidth;
//C int iCaptionHeight;
//C LOGFONTW lfCaptionFont;
//C int iSmCaptionWidth;
//C int iSmCaptionHeight;
//C LOGFONTW lfSmCaptionFont;
//C int iMenuWidth;
//C int iMenuHeight;
//C LOGFONTW lfMenuFont;
//C LOGFONTW lfStatusFont;
//C LOGFONTW lfMessageFont;
//C } NONCLIENTMETRICSW,*PNONCLIENTMETRICSW,*LPNONCLIENTMETRICSW;
struct tagNONCLIENTMETRICSW
{
UINT cbSize;
int iBorderWidth;
int iScrollWidth;
int iScrollHeight;
int iCaptionWidth;
int iCaptionHeight;
LOGFONTW lfCaptionFont;
int iSmCaptionWidth;
int iSmCaptionHeight;
LOGFONTW lfSmCaptionFont;
int iMenuWidth;
int iMenuHeight;
LOGFONTW lfMenuFont;
LOGFONTW lfStatusFont;
LOGFONTW lfMessageFont;
}
alias tagNONCLIENTMETRICSW NONCLIENTMETRICSW;
alias tagNONCLIENTMETRICSW *PNONCLIENTMETRICSW;
alias tagNONCLIENTMETRICSW *LPNONCLIENTMETRICSW;
//C typedef NONCLIENTMETRICSA NONCLIENTMETRICS;
alias NONCLIENTMETRICSA NONCLIENTMETRICS;
//C typedef PNONCLIENTMETRICSA PNONCLIENTMETRICS;
alias PNONCLIENTMETRICSA PNONCLIENTMETRICS;
//C typedef LPNONCLIENTMETRICSA LPNONCLIENTMETRICS;
alias LPNONCLIENTMETRICSA LPNONCLIENTMETRICS;
//C typedef struct tagMINIMIZEDMETRICS {
//C UINT cbSize;
//C int iWidth;
//C int iHorzGap;
//C int iVertGap;
//C int iArrange;
//C } MINIMIZEDMETRICS,*PMINIMIZEDMETRICS,*LPMINIMIZEDMETRICS;
struct tagMINIMIZEDMETRICS
{
UINT cbSize;
int iWidth;
int iHorzGap;
int iVertGap;
int iArrange;
}
alias tagMINIMIZEDMETRICS MINIMIZEDMETRICS;
alias tagMINIMIZEDMETRICS *PMINIMIZEDMETRICS;
alias tagMINIMIZEDMETRICS *LPMINIMIZEDMETRICS;
//C typedef struct tagICONMETRICSA {
//C UINT cbSize;
//C int iHorzSpacing;
//C int iVertSpacing;
//C int iTitleWrap;
//C LOGFONTA lfFont;
//C } ICONMETRICSA,*PICONMETRICSA,*LPICONMETRICSA;
struct tagICONMETRICSA
{
UINT cbSize;
int iHorzSpacing;
int iVertSpacing;
int iTitleWrap;
LOGFONTA lfFont;
}
alias tagICONMETRICSA ICONMETRICSA;
alias tagICONMETRICSA *PICONMETRICSA;
alias tagICONMETRICSA *LPICONMETRICSA;
//C typedef struct tagICONMETRICSW {
//C UINT cbSize;
//C int iHorzSpacing;
//C int iVertSpacing;
//C int iTitleWrap;
//C LOGFONTW lfFont;
//C } ICONMETRICSW,*PICONMETRICSW,*LPICONMETRICSW;
struct tagICONMETRICSW
{
UINT cbSize;
int iHorzSpacing;
int iVertSpacing;
int iTitleWrap;
LOGFONTW lfFont;
}
alias tagICONMETRICSW ICONMETRICSW;
alias tagICONMETRICSW *PICONMETRICSW;
alias tagICONMETRICSW *LPICONMETRICSW;
//C typedef ICONMETRICSA ICONMETRICS;
alias ICONMETRICSA ICONMETRICS;
//C typedef PICONMETRICSA PICONMETRICS;
alias PICONMETRICSA PICONMETRICS;
//C typedef LPICONMETRICSA LPICONMETRICS;
alias LPICONMETRICSA LPICONMETRICS;
//C typedef struct tagANIMATIONINFO {
//C UINT cbSize;
//C int iMinAnimate;
//C } ANIMATIONINFO,*LPANIMATIONINFO;
struct tagANIMATIONINFO
{
UINT cbSize;
int iMinAnimate;
}
alias tagANIMATIONINFO ANIMATIONINFO;
alias tagANIMATIONINFO *LPANIMATIONINFO;
//C typedef struct tagSERIALKEYSA {
//C UINT cbSize;
//C DWORD dwFlags;
//C LPSTR lpszActivePort;
//C LPSTR lpszPort;
//C UINT iBaudRate;
//C UINT iPortState;
//C UINT iActive;
//C } SERIALKEYSA,*LPSERIALKEYSA;
struct tagSERIALKEYSA
{
UINT cbSize;
DWORD dwFlags;
LPSTR lpszActivePort;
LPSTR lpszPort;
UINT iBaudRate;
UINT iPortState;
UINT iActive;
}
alias tagSERIALKEYSA SERIALKEYSA;
alias tagSERIALKEYSA *LPSERIALKEYSA;
//C typedef struct tagSERIALKEYSW {
//C UINT cbSize;
//C DWORD dwFlags;
//C LPWSTR lpszActivePort;
//C LPWSTR lpszPort;
//C UINT iBaudRate;
//C UINT iPortState;
//C UINT iActive;
//C } SERIALKEYSW,*LPSERIALKEYSW;
struct tagSERIALKEYSW
{
UINT cbSize;
DWORD dwFlags;
LPWSTR lpszActivePort;
LPWSTR lpszPort;
UINT iBaudRate;
UINT iPortState;
UINT iActive;
}
alias tagSERIALKEYSW SERIALKEYSW;
alias tagSERIALKEYSW *LPSERIALKEYSW;
//C typedef SERIALKEYSA SERIALKEYS;
alias SERIALKEYSA SERIALKEYS;
//C typedef LPSERIALKEYSA LPSERIALKEYS;
alias LPSERIALKEYSA LPSERIALKEYS;
//C typedef struct tagHIGHCONTRASTA {
//C UINT cbSize;
//C DWORD dwFlags;
//C LPSTR lpszDefaultScheme;
//C } HIGHCONTRASTA,*LPHIGHCONTRASTA;
struct tagHIGHCONTRASTA
{
UINT cbSize;
DWORD dwFlags;
LPSTR lpszDefaultScheme;
}
alias tagHIGHCONTRASTA HIGHCONTRASTA;
alias tagHIGHCONTRASTA *LPHIGHCONTRASTA;
//C typedef struct tagHIGHCONTRASTW {
//C UINT cbSize;
//C DWORD dwFlags;
//C LPWSTR lpszDefaultScheme;
//C } HIGHCONTRASTW,*LPHIGHCONTRASTW;
struct tagHIGHCONTRASTW
{
UINT cbSize;
DWORD dwFlags;
LPWSTR lpszDefaultScheme;
}
alias tagHIGHCONTRASTW HIGHCONTRASTW;
alias tagHIGHCONTRASTW *LPHIGHCONTRASTW;
//C typedef HIGHCONTRASTA HIGHCONTRAST;
alias HIGHCONTRASTA HIGHCONTRAST;
//C typedef LPHIGHCONTRASTA LPHIGHCONTRAST;
alias LPHIGHCONTRASTA LPHIGHCONTRAST;
//C typedef struct _VIDEOPARAMETERS {
//C GUID Guid;
//C ULONG dwOffset;
//C ULONG dwCommand;
//C ULONG dwFlags;
//C ULONG dwMode;
//C ULONG dwTVStandard;
//C ULONG dwAvailableModes;
//C ULONG dwAvailableTVStandard;
//C ULONG dwFlickerFilter;
//C ULONG dwOverScanX;
//C ULONG dwOverScanY;
//C ULONG dwMaxUnscaledX;
//C ULONG dwMaxUnscaledY;
//C ULONG dwPositionX;
//C ULONG dwPositionY;
//C ULONG dwBrightness;
//C ULONG dwContrast;
//C ULONG dwCPType;
//C ULONG dwCPCommand;
//C ULONG dwCPStandard;
//C ULONG dwCPKey;
//C ULONG bCP_APSTriggerBits;
//C UCHAR bOEMCopyProtection[256];
//C } VIDEOPARAMETERS,*PVIDEOPARAMETERS,*LPVIDEOPARAMETERS;
struct _VIDEOPARAMETERS
{
GUID Guid;
ULONG dwOffset;
ULONG dwCommand;
ULONG dwFlags;
ULONG dwMode;
ULONG dwTVStandard;
ULONG dwAvailableModes;
ULONG dwAvailableTVStandard;
ULONG dwFlickerFilter;
ULONG dwOverScanX;
ULONG dwOverScanY;
ULONG dwMaxUnscaledX;
ULONG dwMaxUnscaledY;
ULONG dwPositionX;
ULONG dwPositionY;
ULONG dwBrightness;
ULONG dwContrast;
ULONG dwCPType;
ULONG dwCPCommand;
ULONG dwCPStandard;
ULONG dwCPKey;
ULONG bCP_APSTriggerBits;
UCHAR [256]bOEMCopyProtection;
}
alias _VIDEOPARAMETERS VIDEOPARAMETERS;
alias _VIDEOPARAMETERS *PVIDEOPARAMETERS;
alias _VIDEOPARAMETERS *LPVIDEOPARAMETERS;
//C LONG ChangeDisplaySettingsA(LPDEVMODEA lpDevMode,DWORD dwFlags);
LONG ChangeDisplaySettingsA(LPDEVMODEA lpDevMode, DWORD dwFlags);
//C LONG ChangeDisplaySettingsW(LPDEVMODEW lpDevMode,DWORD dwFlags);
LONG ChangeDisplaySettingsW(LPDEVMODEW lpDevMode, DWORD dwFlags);
//C LONG ChangeDisplaySettingsExA(LPCSTR lpszDeviceName,LPDEVMODEA lpDevMode,HWND hwnd,DWORD dwflags,LPVOID lParam);
LONG ChangeDisplaySettingsExA(LPCSTR lpszDeviceName, LPDEVMODEA lpDevMode, HWND hwnd, DWORD dwflags, LPVOID lParam);
//C LONG ChangeDisplaySettingsExW(LPCWSTR lpszDeviceName,LPDEVMODEW lpDevMode,HWND hwnd,DWORD dwflags,LPVOID lParam);
LONG ChangeDisplaySettingsExW(LPCWSTR lpszDeviceName, LPDEVMODEW lpDevMode, HWND hwnd, DWORD dwflags, LPVOID lParam);
//C WINBOOL EnumDisplaySettingsA(LPCSTR lpszDeviceName,DWORD iModeNum,LPDEVMODEA lpDevMode);
WINBOOL EnumDisplaySettingsA(LPCSTR lpszDeviceName, DWORD iModeNum, LPDEVMODEA lpDevMode);
//C WINBOOL EnumDisplaySettingsW(LPCWSTR lpszDeviceName,DWORD iModeNum,LPDEVMODEW lpDevMode);
WINBOOL EnumDisplaySettingsW(LPCWSTR lpszDeviceName, DWORD iModeNum, LPDEVMODEW lpDevMode);
//C WINBOOL EnumDisplaySettingsExA(LPCSTR lpszDeviceName,DWORD iModeNum,LPDEVMODEA lpDevMode,DWORD dwFlags);
WINBOOL EnumDisplaySettingsExA(LPCSTR lpszDeviceName, DWORD iModeNum, LPDEVMODEA lpDevMode, DWORD dwFlags);
//C WINBOOL EnumDisplaySettingsExW(LPCWSTR lpszDeviceName,DWORD iModeNum,LPDEVMODEW lpDevMode,DWORD dwFlags);
WINBOOL EnumDisplaySettingsExW(LPCWSTR lpszDeviceName, DWORD iModeNum, LPDEVMODEW lpDevMode, DWORD dwFlags);
//C WINBOOL EnumDisplayDevicesA(LPCSTR lpDevice,DWORD iDevNum,PDISPLAY_DEVICEA lpDisplayDevice,DWORD dwFlags);
WINBOOL EnumDisplayDevicesA(LPCSTR lpDevice, DWORD iDevNum, PDISPLAY_DEVICEA lpDisplayDevice, DWORD dwFlags);
//C WINBOOL EnumDisplayDevicesW(LPCWSTR lpDevice,DWORD iDevNum,PDISPLAY_DEVICEW lpDisplayDevice,DWORD dwFlags);
WINBOOL EnumDisplayDevicesW(LPCWSTR lpDevice, DWORD iDevNum, PDISPLAY_DEVICEW lpDisplayDevice, DWORD dwFlags);
//C WINBOOL SystemParametersInfoA(UINT uiAction,UINT uiParam,PVOID pvParam,UINT fWinIni);
WINBOOL SystemParametersInfoA(UINT uiAction, UINT uiParam, PVOID pvParam, UINT fWinIni);
//C WINBOOL SystemParametersInfoW(UINT uiAction,UINT uiParam,PVOID pvParam,UINT fWinIni);
WINBOOL SystemParametersInfoW(UINT uiAction, UINT uiParam, PVOID pvParam, UINT fWinIni);
//C typedef struct tagFILTERKEYS {
//C UINT cbSize;
//C DWORD dwFlags;
//C DWORD iWaitMSec;
//C DWORD iDelayMSec;
//C DWORD iRepeatMSec;
//C DWORD iBounceMSec;
//C } FILTERKEYS,*LPFILTERKEYS;
struct tagFILTERKEYS
{
UINT cbSize;
DWORD dwFlags;
DWORD iWaitMSec;
DWORD iDelayMSec;
DWORD iRepeatMSec;
DWORD iBounceMSec;
}
alias tagFILTERKEYS FILTERKEYS;
alias tagFILTERKEYS *LPFILTERKEYS;
//C typedef struct tagSTICKYKEYS {
//C UINT cbSize;
//C DWORD dwFlags;
//C } STICKYKEYS,*LPSTICKYKEYS;
struct tagSTICKYKEYS
{
UINT cbSize;
DWORD dwFlags;
}
alias tagSTICKYKEYS STICKYKEYS;
alias tagSTICKYKEYS *LPSTICKYKEYS;
//C typedef struct tagMOUSEKEYS {
//C UINT cbSize;
//C DWORD dwFlags;
//C DWORD iMaxSpeed;
//C DWORD iTimeToMaxSpeed;
//C DWORD iCtrlSpeed;
//C DWORD dwReserved1;
//C DWORD dwReserved2;
//C } MOUSEKEYS,*LPMOUSEKEYS;
struct tagMOUSEKEYS
{
UINT cbSize;
DWORD dwFlags;
DWORD iMaxSpeed;
DWORD iTimeToMaxSpeed;
DWORD iCtrlSpeed;
DWORD dwReserved1;
DWORD dwReserved2;
}
alias tagMOUSEKEYS MOUSEKEYS;
alias tagMOUSEKEYS *LPMOUSEKEYS;
//C typedef struct tagACCESSTIMEOUT {
//C UINT cbSize;
//C DWORD dwFlags;
//C DWORD iTimeOutMSec;
//C } ACCESSTIMEOUT,*LPACCESSTIMEOUT;
struct tagACCESSTIMEOUT
{
UINT cbSize;
DWORD dwFlags;
DWORD iTimeOutMSec;
}
alias tagACCESSTIMEOUT ACCESSTIMEOUT;
alias tagACCESSTIMEOUT *LPACCESSTIMEOUT;
//C typedef struct tagSOUNDSENTRYA {
//C UINT cbSize;
//C DWORD dwFlags;
//C DWORD iFSTextEffect;
//C DWORD iFSTextEffectMSec;
//C DWORD iFSTextEffectColorBits;
//C DWORD iFSGrafEffect;
//C DWORD iFSGrafEffectMSec;
//C DWORD iFSGrafEffectColor;
//C DWORD iWindowsEffect;
//C DWORD iWindowsEffectMSec;
//C LPSTR lpszWindowsEffectDLL;
//C DWORD iWindowsEffectOrdinal;
//C } SOUNDSENTRYA,*LPSOUNDSENTRYA;
struct tagSOUNDSENTRYA
{
UINT cbSize;
DWORD dwFlags;
DWORD iFSTextEffect;
DWORD iFSTextEffectMSec;
DWORD iFSTextEffectColorBits;
DWORD iFSGrafEffect;
DWORD iFSGrafEffectMSec;
DWORD iFSGrafEffectColor;
DWORD iWindowsEffect;
DWORD iWindowsEffectMSec;
LPSTR lpszWindowsEffectDLL;
DWORD iWindowsEffectOrdinal;
}
alias tagSOUNDSENTRYA SOUNDSENTRYA;
alias tagSOUNDSENTRYA *LPSOUNDSENTRYA;
//C typedef struct tagSOUNDSENTRYW {
//C UINT cbSize;
//C DWORD dwFlags;
//C DWORD iFSTextEffect;
//C DWORD iFSTextEffectMSec;
//C DWORD iFSTextEffectColorBits;
//C DWORD iFSGrafEffect;
//C DWORD iFSGrafEffectMSec;
//C DWORD iFSGrafEffectColor;
//C DWORD iWindowsEffect;
//C DWORD iWindowsEffectMSec;
//C LPWSTR lpszWindowsEffectDLL;
//C DWORD iWindowsEffectOrdinal;
//C } SOUNDSENTRYW,*LPSOUNDSENTRYW;
struct tagSOUNDSENTRYW
{
UINT cbSize;
DWORD dwFlags;
DWORD iFSTextEffect;
DWORD iFSTextEffectMSec;
DWORD iFSTextEffectColorBits;
DWORD iFSGrafEffect;
DWORD iFSGrafEffectMSec;
DWORD iFSGrafEffectColor;
DWORD iWindowsEffect;
DWORD iWindowsEffectMSec;
LPWSTR lpszWindowsEffectDLL;
DWORD iWindowsEffectOrdinal;
}
alias tagSOUNDSENTRYW SOUNDSENTRYW;
alias tagSOUNDSENTRYW *LPSOUNDSENTRYW;
//C typedef SOUNDSENTRYA SOUNDSENTRY;
alias SOUNDSENTRYA SOUNDSENTRY;
//C typedef LPSOUNDSENTRYA LPSOUNDSENTRY;
alias LPSOUNDSENTRYA LPSOUNDSENTRY;
//C typedef struct tagTOGGLEKEYS {
//C UINT cbSize;
//C DWORD dwFlags;
//C } TOGGLEKEYS,*LPTOGGLEKEYS;
struct tagTOGGLEKEYS
{
UINT cbSize;
DWORD dwFlags;
}
alias tagTOGGLEKEYS TOGGLEKEYS;
alias tagTOGGLEKEYS *LPTOGGLEKEYS;
//C void SetDebugErrorLevel(DWORD dwLevel);
void SetDebugErrorLevel(DWORD dwLevel);
//C void SetLastErrorEx(DWORD dwErrCode,DWORD dwType);
void SetLastErrorEx(DWORD dwErrCode, DWORD dwType);
//C int InternalGetWindowText(HWND hWnd,LPWSTR pString,int cchMaxCount);
int InternalGetWindowText(HWND hWnd, LPWSTR pString, int cchMaxCount);
//C WINBOOL EndTask(HWND hWnd,WINBOOL fShutDown,WINBOOL fForce);
WINBOOL EndTask(HWND hWnd, WINBOOL fShutDown, WINBOOL fForce);
//C HMONITOR MonitorFromPoint(POINT pt,DWORD dwFlags);
HMONITOR MonitorFromPoint(POINT pt, DWORD dwFlags);
//C HMONITOR MonitorFromRect(LPCRECT lprc,DWORD dwFlags);
HMONITOR MonitorFromRect(LPCRECT lprc, DWORD dwFlags);
//C HMONITOR MonitorFromWindow(HWND hwnd,DWORD dwFlags);
HMONITOR MonitorFromWindow(HWND hwnd, DWORD dwFlags);
//C typedef struct tagMONITORINFO {
//C DWORD cbSize;
//C RECT rcMonitor;
//C RECT rcWork;
//C DWORD dwFlags;
//C } MONITORINFO,*LPMONITORINFO;
struct tagMONITORINFO
{
DWORD cbSize;
RECT rcMonitor;
RECT rcWork;
DWORD dwFlags;
}
alias tagMONITORINFO MONITORINFO;
alias tagMONITORINFO *LPMONITORINFO;
//C typedef struct tagMONITORINFOEXA {
//C struct {
//C DWORD cbSize;
//C RECT rcMonitor;
//C RECT rcWork;
//C DWORD dwFlags;
//C };
struct _N79
{
DWORD cbSize;
RECT rcMonitor;
RECT rcWork;
DWORD dwFlags;
}
//C CHAR szDevice[32];
//C } MONITORINFOEXA,*LPMONITORINFOEXA;
struct tagMONITORINFOEXA
{
DWORD cbSize;
RECT rcMonitor;
RECT rcWork;
DWORD dwFlags;
CHAR [32]szDevice;
}
alias tagMONITORINFOEXA MONITORINFOEXA;
alias tagMONITORINFOEXA *LPMONITORINFOEXA;
//C typedef struct tagMONITORINFOEXW {
//C struct {
//C DWORD cbSize;
//C RECT rcMonitor;
//C RECT rcWork;
//C DWORD dwFlags;
//C };
struct _N80
{
DWORD cbSize;
RECT rcMonitor;
RECT rcWork;
DWORD dwFlags;
}
//C WCHAR szDevice[32];
//C } MONITORINFOEXW,*LPMONITORINFOEXW;
struct tagMONITORINFOEXW
{
DWORD cbSize;
RECT rcMonitor;
RECT rcWork;
DWORD dwFlags;
WCHAR [32]szDevice;
}
alias tagMONITORINFOEXW MONITORINFOEXW;
alias tagMONITORINFOEXW *LPMONITORINFOEXW;
//C typedef MONITORINFOEXA MONITORINFOEX;
alias MONITORINFOEXA MONITORINFOEX;
//C typedef LPMONITORINFOEXA LPMONITORINFOEX;
alias LPMONITORINFOEXA LPMONITORINFOEX;
//C WINBOOL GetMonitorInfoA(HMONITOR hMonitor,LPMONITORINFO lpmi);
WINBOOL GetMonitorInfoA(HMONITOR hMonitor, LPMONITORINFO lpmi);
//C WINBOOL GetMonitorInfoW(HMONITOR hMonitor,LPMONITORINFO lpmi);
WINBOOL GetMonitorInfoW(HMONITOR hMonitor, LPMONITORINFO lpmi);
//C typedef WINBOOL ( *MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM);
alias WINBOOL function(HMONITOR , HDC , LPRECT , LPARAM )MONITORENUMPROC;
//C WINBOOL EnumDisplayMonitors(HDC hdc,LPCRECT lprcClip,MONITORENUMPROC lpfnEnum,LPARAM dwData);
WINBOOL EnumDisplayMonitors(HDC hdc, LPCRECT lprcClip, MONITORENUMPROC lpfnEnum, LPARAM dwData);
//C void NotifyWinEvent(DWORD event,HWND hwnd,LONG idObject,LONG idChild);
void NotifyWinEvent(DWORD event, HWND hwnd, LONG idObject, LONG idChild);
//C typedef void ( *WINEVENTPROC)(HWINEVENTHOOK hWinEventHook,DWORD event,HWND hwnd,LONG idObject,LONG idChild,DWORD idEventThread,DWORD dwmsEventTime);
alias void function(HWINEVENTHOOK hWinEventHook, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD idEventThread, DWORD dwmsEventTime)WINEVENTPROC;
//C HWINEVENTHOOK SetWinEventHook(DWORD eventMin,DWORD eventMax,HMODULE hmodWinEventProc,WINEVENTPROC pfnWinEventProc,DWORD idProcess,DWORD idThread,DWORD dwFlags);
HWINEVENTHOOK SetWinEventHook(DWORD eventMin, DWORD eventMax, HMODULE hmodWinEventProc, WINEVENTPROC pfnWinEventProc, DWORD idProcess, DWORD idThread, DWORD dwFlags);
//C WINBOOL IsWinEventHookInstalled(DWORD event);
WINBOOL IsWinEventHookInstalled(DWORD event);
//C WINBOOL UnhookWinEvent(HWINEVENTHOOK hWinEventHook);
WINBOOL UnhookWinEvent(HWINEVENTHOOK hWinEventHook);
//C typedef struct tagGUITHREADINFO {
//C DWORD cbSize;
//C DWORD flags;
//C HWND hwndActive;
//C HWND hwndFocus;
//C HWND hwndCapture;
//C HWND hwndMenuOwner;
//C HWND hwndMoveSize;
//C HWND hwndCaret;
//C RECT rcCaret;
//C } GUITHREADINFO,*PGUITHREADINFO,*LPGUITHREADINFO;
struct tagGUITHREADINFO
{
DWORD cbSize;
DWORD flags;
HWND hwndActive;
HWND hwndFocus;
HWND hwndCapture;
HWND hwndMenuOwner;
HWND hwndMoveSize;
HWND hwndCaret;
RECT rcCaret;
}
alias tagGUITHREADINFO GUITHREADINFO;
alias tagGUITHREADINFO *PGUITHREADINFO;
alias tagGUITHREADINFO *LPGUITHREADINFO;
//C WINBOOL GetGUIThreadInfo(DWORD idThread,PGUITHREADINFO pgui);
WINBOOL GetGUIThreadInfo(DWORD idThread, PGUITHREADINFO pgui);
//C UINT GetWindowModuleFileNameA(HWND hwnd,LPSTR pszFileName,UINT cchFileNameMax);
UINT GetWindowModuleFileNameA(HWND hwnd, LPSTR pszFileName, UINT cchFileNameMax);
//C UINT GetWindowModuleFileNameW(HWND hwnd,LPWSTR pszFileName,UINT cchFileNameMax);
UINT GetWindowModuleFileNameW(HWND hwnd, LPWSTR pszFileName, UINT cchFileNameMax);
//C typedef struct tagCURSORINFO {
//C DWORD cbSize;
//C DWORD flags;
//C HCURSOR hCursor;
//C POINT ptScreenPos;
//C } CURSORINFO,*PCURSORINFO,*LPCURSORINFO;
struct tagCURSORINFO
{
DWORD cbSize;
DWORD flags;
HCURSOR hCursor;
POINT ptScreenPos;
}
alias tagCURSORINFO CURSORINFO;
alias tagCURSORINFO *PCURSORINFO;
alias tagCURSORINFO *LPCURSORINFO;
//C WINBOOL GetCursorInfo(PCURSORINFO pci);
WINBOOL GetCursorInfo(PCURSORINFO pci);
//C typedef struct tagWINDOWINFO {
//C DWORD cbSize;
//C RECT rcWindow;
//C RECT rcClient;
//C DWORD dwStyle;
//C DWORD dwExStyle;
//C DWORD dwWindowStatus;
//C UINT cxWindowBorders;
//C UINT cyWindowBorders;
//C ATOM atomWindowType;
//C WORD wCreatorVersion;
//C } WINDOWINFO,*PWINDOWINFO,*LPWINDOWINFO;
struct tagWINDOWINFO
{
DWORD cbSize;
RECT rcWindow;
RECT rcClient;
DWORD dwStyle;
DWORD dwExStyle;
DWORD dwWindowStatus;
UINT cxWindowBorders;
UINT cyWindowBorders;
ATOM atomWindowType;
WORD wCreatorVersion;
}
alias tagWINDOWINFO WINDOWINFO;
alias tagWINDOWINFO *PWINDOWINFO;
alias tagWINDOWINFO *LPWINDOWINFO;
//C WINBOOL GetWindowInfo(HWND hwnd,PWINDOWINFO pwi);
WINBOOL GetWindowInfo(HWND hwnd, PWINDOWINFO pwi);
//C typedef struct tagTITLEBARINFO {
//C DWORD cbSize;
//C RECT rcTitleBar;
//C DWORD rgstate[5 + 1];
//C } TITLEBARINFO,*PTITLEBARINFO,*LPTITLEBARINFO;
struct tagTITLEBARINFO
{
DWORD cbSize;
RECT rcTitleBar;
DWORD [6]rgstate;
}
alias tagTITLEBARINFO TITLEBARINFO;
alias tagTITLEBARINFO *PTITLEBARINFO;
alias tagTITLEBARINFO *LPTITLEBARINFO;
//C WINBOOL GetTitleBarInfo(HWND hwnd,PTITLEBARINFO pti);
WINBOOL GetTitleBarInfo(HWND hwnd, PTITLEBARINFO pti);
//C typedef struct tagMENUBARINFO {
//C DWORD cbSize;
//C RECT rcBar;
//C HMENU hMenu;
//C HWND hwndMenu;
//C WINBOOL fBarFocused:1;
//C WINBOOL fFocused:1;
//C } MENUBARINFO,*PMENUBARINFO,*LPMENUBARINFO;
struct tagMENUBARINFO
{
DWORD cbSize;
RECT rcBar;
HMENU hMenu;
HWND hwndMenu;
WINBOOL __bitfield1;
WINBOOL fBarFocused() { return (__bitfield1 << 31) >> 31; }
WINBOOL fFocused() { return (__bitfield1 << 30) >> 31; }
}
alias tagMENUBARINFO MENUBARINFO;
alias tagMENUBARINFO *PMENUBARINFO;
alias tagMENUBARINFO *LPMENUBARINFO;
//C WINBOOL GetMenuBarInfo(HWND hwnd,LONG idObject,LONG idItem,PMENUBARINFO pmbi);
WINBOOL GetMenuBarInfo(HWND hwnd, LONG idObject, LONG idItem, PMENUBARINFO pmbi);
//C typedef struct tagSCROLLBARINFO {
//C DWORD cbSize;
//C RECT rcScrollBar;
//C int dxyLineButton;
//C int xyThumbTop;
//C int xyThumbBottom;
//C int reserved;
//C DWORD rgstate[5 + 1];
//C } SCROLLBARINFO,*PSCROLLBARINFO,*LPSCROLLBARINFO;
struct tagSCROLLBARINFO
{
DWORD cbSize;
RECT rcScrollBar;
int dxyLineButton;
int xyThumbTop;
int xyThumbBottom;
int reserved;
DWORD [6]rgstate;
}
alias tagSCROLLBARINFO SCROLLBARINFO;
alias tagSCROLLBARINFO *PSCROLLBARINFO;
alias tagSCROLLBARINFO *LPSCROLLBARINFO;
//C WINBOOL GetScrollBarInfo(HWND hwnd,LONG idObject,PSCROLLBARINFO psbi);
WINBOOL GetScrollBarInfo(HWND hwnd, LONG idObject, PSCROLLBARINFO psbi);
//C typedef struct tagCOMBOBOXINFO {
//C DWORD cbSize;
//C RECT rcItem;
//C RECT rcButton;
//C DWORD stateButton;
//C HWND hwndCombo;
//C HWND hwndItem;
//C HWND hwndList;
//C } COMBOBOXINFO,*PCOMBOBOXINFO,*LPCOMBOBOXINFO;
struct tagCOMBOBOXINFO
{
DWORD cbSize;
RECT rcItem;
RECT rcButton;
DWORD stateButton;
HWND hwndCombo;
HWND hwndItem;
HWND hwndList;
}
alias tagCOMBOBOXINFO COMBOBOXINFO;
alias tagCOMBOBOXINFO *PCOMBOBOXINFO;
alias tagCOMBOBOXINFO *LPCOMBOBOXINFO;
//C WINBOOL GetComboBoxInfo(HWND hwndCombo,PCOMBOBOXINFO pcbi);
WINBOOL GetComboBoxInfo(HWND hwndCombo, PCOMBOBOXINFO pcbi);
//C HWND GetAncestor(HWND hwnd,UINT gaFlags);
HWND GetAncestor(HWND hwnd, UINT gaFlags);
//C HWND RealChildWindowFromPoint(HWND hwndParent,POINT ptParentClientCoords);
HWND RealChildWindowFromPoint(HWND hwndParent, POINT ptParentClientCoords);
//C UINT RealGetWindowClassA(HWND hwnd,LPSTR ptszClassName,UINT cchClassNameMax);
UINT RealGetWindowClassA(HWND hwnd, LPSTR ptszClassName, UINT cchClassNameMax);
//C UINT RealGetWindowClassW(HWND hwnd,LPWSTR ptszClassName,UINT cchClassNameMax);
UINT RealGetWindowClassW(HWND hwnd, LPWSTR ptszClassName, UINT cchClassNameMax);
//C typedef struct tagALTTABINFO {
//C DWORD cbSize;
//C int cItems;
//C int cColumns;
//C int cRows;
//C int iColFocus;
//C int iRowFocus;
//C int cxItem;
//C int cyItem;
//C POINT ptStart;
//C } ALTTABINFO,*PALTTABINFO,*LPALTTABINFO;
struct tagALTTABINFO
{
DWORD cbSize;
int cItems;
int cColumns;
int cRows;
int iColFocus;
int iRowFocus;
int cxItem;
int cyItem;
POINT ptStart;
}
alias tagALTTABINFO ALTTABINFO;
alias tagALTTABINFO *PALTTABINFO;
alias tagALTTABINFO *LPALTTABINFO;
//C WINBOOL GetAltTabInfoA(HWND hwnd,int iItem,PALTTABINFO pati,LPSTR pszItemText,UINT cchItemText);
WINBOOL GetAltTabInfoA(HWND hwnd, int iItem, PALTTABINFO pati, LPSTR pszItemText, UINT cchItemText);
//C WINBOOL GetAltTabInfoW(HWND hwnd,int iItem,PALTTABINFO pati,LPWSTR pszItemText,UINT cchItemText);
WINBOOL GetAltTabInfoW(HWND hwnd, int iItem, PALTTABINFO pati, LPWSTR pszItemText, UINT cchItemText);
//C DWORD GetListBoxInfo(HWND hwnd);
DWORD GetListBoxInfo(HWND hwnd);
//C WINBOOL LockWorkStation(void);
WINBOOL LockWorkStation();
//C WINBOOL UserHandleGrantAccess(HANDLE hUserHandle,HANDLE hJob,WINBOOL bGrant);
WINBOOL UserHandleGrantAccess(HANDLE hUserHandle, HANDLE hJob, WINBOOL bGrant);
//C struct HRAWINPUT__ { int unused; }; typedef struct HRAWINPUT__ *HRAWINPUT;
struct HRAWINPUT__
{
int unused;
}
alias HRAWINPUT__ *HRAWINPUT;
//C typedef struct tagRAWINPUTHEADER {
//C DWORD dwType;
//C DWORD dwSize;
//C HANDLE hDevice;
//C WPARAM wParam;
//C } RAWINPUTHEADER,*PRAWINPUTHEADER,*LPRAWINPUTHEADER;
struct tagRAWINPUTHEADER
{
DWORD dwType;
DWORD dwSize;
HANDLE hDevice;
WPARAM wParam;
}
alias tagRAWINPUTHEADER RAWINPUTHEADER;
alias tagRAWINPUTHEADER *PRAWINPUTHEADER;
alias tagRAWINPUTHEADER *LPRAWINPUTHEADER;
//C typedef struct tagRAWMOUSE {
//C USHORT usFlags;
//C union {
//C ULONG ulButtons;
//C struct {
//C USHORT usButtonFlags;
//C USHORT usButtonData;
//C };
struct _N82
{
USHORT usButtonFlags;
USHORT usButtonData;
}
//C };
union _N81
{
ULONG ulButtons;
USHORT usButtonFlags;
USHORT usButtonData;
}
//C ULONG ulRawButtons;
//C LONG lLastX;
//C LONG lLastY;
//C ULONG ulExtraInformation;
//C } RAWMOUSE,*PRAWMOUSE,*LPRAWMOUSE;
struct tagRAWMOUSE
{
USHORT usFlags;
ULONG ulButtons;
USHORT usButtonFlags;
USHORT usButtonData;
ULONG ulRawButtons;
LONG lLastX;
LONG lLastY;
ULONG ulExtraInformation;
}
alias tagRAWMOUSE RAWMOUSE;
alias tagRAWMOUSE *PRAWMOUSE;
alias tagRAWMOUSE *LPRAWMOUSE;
//C typedef struct tagRAWKEYBOARD {
//C USHORT MakeCode;
//C USHORT Flags;
//C USHORT Reserved;
//C USHORT VKey;
//C UINT Message;
//C ULONG ExtraInformation;
//C } RAWKEYBOARD,*PRAWKEYBOARD,*LPRAWKEYBOARD;
struct tagRAWKEYBOARD
{
USHORT MakeCode;
USHORT Flags;
USHORT Reserved;
USHORT VKey;
UINT Message;
ULONG ExtraInformation;
}
alias tagRAWKEYBOARD RAWKEYBOARD;
alias tagRAWKEYBOARD *PRAWKEYBOARD;
alias tagRAWKEYBOARD *LPRAWKEYBOARD;
//C typedef struct tagRAWHID {
//C DWORD dwSizeHid;
//C DWORD dwCount;
//C BYTE bRawData[1];
//C } RAWHID,*PRAWHID,*LPRAWHID;
struct tagRAWHID
{
DWORD dwSizeHid;
DWORD dwCount;
BYTE [1]bRawData;
}
alias tagRAWHID RAWHID;
alias tagRAWHID *PRAWHID;
alias tagRAWHID *LPRAWHID;
//C typedef struct tagRAWINPUT {
//C RAWINPUTHEADER header;
//C union {
//C RAWMOUSE mouse;
//C RAWKEYBOARD keyboard;
//C RAWHID hid;
//C } data;
union _N83
{
RAWMOUSE mouse;
RAWKEYBOARD keyboard;
RAWHID hid;
}
//C } RAWINPUT,*PRAWINPUT,*LPRAWINPUT;
struct tagRAWINPUT
{
RAWINPUTHEADER header;
_N83 data;
}
alias tagRAWINPUT RAWINPUT;
alias tagRAWINPUT *PRAWINPUT;
alias tagRAWINPUT *LPRAWINPUT;
//C UINT GetRawInputData(HRAWINPUT hRawInput,UINT uiCommand,LPVOID pData,PUINT pcbSize,UINT cbSizeHeader);
UINT GetRawInputData(HRAWINPUT hRawInput, UINT uiCommand, LPVOID pData, PUINT pcbSize, UINT cbSizeHeader);
//C typedef struct tagRID_DEVICE_INFO_MOUSE {
//C DWORD dwId;
//C DWORD dwNumberOfButtons;
//C DWORD dwSampleRate;
//C } RID_DEVICE_INFO_MOUSE,*PRID_DEVICE_INFO_MOUSE;
struct tagRID_DEVICE_INFO_MOUSE
{
DWORD dwId;
DWORD dwNumberOfButtons;
DWORD dwSampleRate;
}
alias tagRID_DEVICE_INFO_MOUSE RID_DEVICE_INFO_MOUSE;
alias tagRID_DEVICE_INFO_MOUSE *PRID_DEVICE_INFO_MOUSE;
//C typedef struct tagRID_DEVICE_INFO_KEYBOARD {
//C DWORD dwType;
//C DWORD dwSubType;
//C DWORD dwKeyboardMode;
//C DWORD dwNumberOfFunctionKeys;
//C DWORD dwNumberOfIndicators;
//C DWORD dwNumberOfKeysTotal;
//C } RID_DEVICE_INFO_KEYBOARD,*PRID_DEVICE_INFO_KEYBOARD;
struct tagRID_DEVICE_INFO_KEYBOARD
{
DWORD dwType;
DWORD dwSubType;
DWORD dwKeyboardMode;
DWORD dwNumberOfFunctionKeys;
DWORD dwNumberOfIndicators;
DWORD dwNumberOfKeysTotal;
}
alias tagRID_DEVICE_INFO_KEYBOARD RID_DEVICE_INFO_KEYBOARD;
alias tagRID_DEVICE_INFO_KEYBOARD *PRID_DEVICE_INFO_KEYBOARD;
//C typedef struct tagRID_DEVICE_INFO_HID {
//C DWORD dwVendorId;
//C DWORD dwProductId;
//C DWORD dwVersionNumber;
//C USHORT usUsagePage;
//C USHORT usUsage;
//C } RID_DEVICE_INFO_HID,*PRID_DEVICE_INFO_HID;
struct tagRID_DEVICE_INFO_HID
{
DWORD dwVendorId;
DWORD dwProductId;
DWORD dwVersionNumber;
USHORT usUsagePage;
USHORT usUsage;
}
alias tagRID_DEVICE_INFO_HID RID_DEVICE_INFO_HID;
alias tagRID_DEVICE_INFO_HID *PRID_DEVICE_INFO_HID;
//C typedef struct tagRID_DEVICE_INFO {
//C DWORD cbSize;
//C DWORD dwType;
//C union {
//C RID_DEVICE_INFO_MOUSE mouse;
//C RID_DEVICE_INFO_KEYBOARD keyboard;
//C RID_DEVICE_INFO_HID hid;
//C } ;
union _N84
{
RID_DEVICE_INFO_MOUSE mouse;
RID_DEVICE_INFO_KEYBOARD keyboard;
RID_DEVICE_INFO_HID hid;
}
//C } RID_DEVICE_INFO,*PRID_DEVICE_INFO,*LPRID_DEVICE_INFO;
struct tagRID_DEVICE_INFO
{
DWORD cbSize;
DWORD dwType;
RID_DEVICE_INFO_MOUSE mouse;
RID_DEVICE_INFO_KEYBOARD keyboard;
RID_DEVICE_INFO_HID hid;
}
alias tagRID_DEVICE_INFO RID_DEVICE_INFO;
alias tagRID_DEVICE_INFO *PRID_DEVICE_INFO;
alias tagRID_DEVICE_INFO *LPRID_DEVICE_INFO;
//C UINT GetRawInputDeviceInfoA(HANDLE hDevice,UINT uiCommand,LPVOID pData,PUINT pcbSize);
UINT GetRawInputDeviceInfoA(HANDLE hDevice, UINT uiCommand, LPVOID pData, PUINT pcbSize);
//C UINT GetRawInputDeviceInfoW(HANDLE hDevice,UINT uiCommand,LPVOID pData,PUINT pcbSize);
UINT GetRawInputDeviceInfoW(HANDLE hDevice, UINT uiCommand, LPVOID pData, PUINT pcbSize);
//C UINT GetRawInputBuffer(PRAWINPUT pData,PUINT pcbSize,UINT cbSizeHeader);
UINT GetRawInputBuffer(PRAWINPUT pData, PUINT pcbSize, UINT cbSizeHeader);
//C typedef struct tagRAWINPUTDEVICE {
//C USHORT usUsagePage;
//C USHORT usUsage;
//C DWORD dwFlags;
//C HWND hwndTarget;
//C } RAWINPUTDEVICE,*PRAWINPUTDEVICE,*LPRAWINPUTDEVICE;
struct tagRAWINPUTDEVICE
{
USHORT usUsagePage;
USHORT usUsage;
DWORD dwFlags;
HWND hwndTarget;
}
alias tagRAWINPUTDEVICE RAWINPUTDEVICE;
alias tagRAWINPUTDEVICE *PRAWINPUTDEVICE;
alias tagRAWINPUTDEVICE *LPRAWINPUTDEVICE;
//C typedef const RAWINPUTDEVICE *PCRAWINPUTDEVICE;
alias RAWINPUTDEVICE *PCRAWINPUTDEVICE;
//C WINBOOL RegisterRawInputDevices(PCRAWINPUTDEVICE pRawInputDevices,UINT uiNumDevices,UINT cbSize);
WINBOOL RegisterRawInputDevices(PCRAWINPUTDEVICE pRawInputDevices, UINT uiNumDevices, UINT cbSize);
//C UINT GetRegisteredRawInputDevices(PRAWINPUTDEVICE pRawInputDevices,PUINT puiNumDevices,UINT cbSize);
UINT GetRegisteredRawInputDevices(PRAWINPUTDEVICE pRawInputDevices, PUINT puiNumDevices, UINT cbSize);
//C typedef struct tagRAWINPUTDEVICELIST {
//C HANDLE hDevice;
//C DWORD dwType;
//C } RAWINPUTDEVICELIST,*PRAWINPUTDEVICELIST;
struct tagRAWINPUTDEVICELIST
{
HANDLE hDevice;
DWORD dwType;
}
alias tagRAWINPUTDEVICELIST RAWINPUTDEVICELIST;
alias tagRAWINPUTDEVICELIST *PRAWINPUTDEVICELIST;
//C UINT GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList,PUINT puiNumDevices,UINT cbSize);
UINT GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList, PUINT puiNumDevices, UINT cbSize);
//C LRESULT DefRawInputProc(PRAWINPUT *paRawInput,INT nInput,UINT cbSizeHeader);
LRESULT DefRawInputProc(PRAWINPUT *paRawInput, INT nInput, UINT cbSizeHeader);
//C typedef DWORD LGRPID;
alias DWORD LGRPID;
//C typedef DWORD LCTYPE;
alias DWORD LCTYPE;
//C typedef DWORD CALTYPE;
alias DWORD CALTYPE;
//C typedef DWORD CALID;
alias DWORD CALID;
//C typedef struct _cpinfo {
//C UINT MaxCharSize;
//C BYTE DefaultChar[2];
//C BYTE LeadByte[12];
//C } CPINFO,*LPCPINFO;
struct _cpinfo
{
UINT MaxCharSize;
BYTE [2]DefaultChar;
BYTE [12]LeadByte;
}
alias _cpinfo CPINFO;
alias _cpinfo *LPCPINFO;
//C typedef struct _cpinfoexA {
//C UINT MaxCharSize;
//C BYTE DefaultChar[2];
//C BYTE LeadByte[12];
//C WCHAR UnicodeDefaultChar;
//C UINT CodePage;
//C CHAR CodePageName[260];
//C } CPINFOEXA,*LPCPINFOEXA;
struct _cpinfoexA
{
UINT MaxCharSize;
BYTE [2]DefaultChar;
BYTE [12]LeadByte;
WCHAR UnicodeDefaultChar;
UINT CodePage;
CHAR [260]CodePageName;
}
alias _cpinfoexA CPINFOEXA;
alias _cpinfoexA *LPCPINFOEXA;
//C typedef struct _cpinfoexW {
//C UINT MaxCharSize;
//C BYTE DefaultChar[2];
//C BYTE LeadByte[12];
//C WCHAR UnicodeDefaultChar;
//C UINT CodePage;
//C WCHAR CodePageName[260];
//C } CPINFOEXW,*LPCPINFOEXW;
struct _cpinfoexW
{
UINT MaxCharSize;
BYTE [2]DefaultChar;
BYTE [12]LeadByte;
WCHAR UnicodeDefaultChar;
UINT CodePage;
WCHAR [260]CodePageName;
}
alias _cpinfoexW CPINFOEXW;
alias _cpinfoexW *LPCPINFOEXW;
//C typedef CPINFOEXA CPINFOEX;
alias CPINFOEXA CPINFOEX;
//C typedef LPCPINFOEXA LPCPINFOEX;
alias LPCPINFOEXA LPCPINFOEX;
//C typedef struct _numberfmtA {
//C UINT NumDigits;
//C UINT LeadingZero;
//C UINT Grouping;
//C LPSTR lpDecimalSep;
//C LPSTR lpThousandSep;
//C UINT NegativeOrder;
//C } NUMBERFMTA,*LPNUMBERFMTA;
struct _numberfmtA
{
UINT NumDigits;
UINT LeadingZero;
UINT Grouping;
LPSTR lpDecimalSep;
LPSTR lpThousandSep;
UINT NegativeOrder;
}
alias _numberfmtA NUMBERFMTA;
alias _numberfmtA *LPNUMBERFMTA;
//C typedef struct _numberfmtW {
//C UINT NumDigits;
//C UINT LeadingZero;
//C UINT Grouping;
//C LPWSTR lpDecimalSep;
//C LPWSTR lpThousandSep;
//C UINT NegativeOrder;
//C } NUMBERFMTW,*LPNUMBERFMTW;
struct _numberfmtW
{
UINT NumDigits;
UINT LeadingZero;
UINT Grouping;
LPWSTR lpDecimalSep;
LPWSTR lpThousandSep;
UINT NegativeOrder;
}
alias _numberfmtW NUMBERFMTW;
alias _numberfmtW *LPNUMBERFMTW;
//C typedef NUMBERFMTA NUMBERFMT;
alias NUMBERFMTA NUMBERFMT;
//C typedef LPNUMBERFMTA LPNUMBERFMT;
alias LPNUMBERFMTA LPNUMBERFMT;
//C typedef struct _currencyfmtA {
//C UINT NumDigits;
//C UINT LeadingZero;
//C UINT Grouping;
//C LPSTR lpDecimalSep;
//C LPSTR lpThousandSep;
//C UINT NegativeOrder;
//C UINT PositiveOrder;
//C LPSTR lpCurrencySymbol;
//C } CURRENCYFMTA,*LPCURRENCYFMTA;
struct _currencyfmtA
{
UINT NumDigits;
UINT LeadingZero;
UINT Grouping;
LPSTR lpDecimalSep;
LPSTR lpThousandSep;
UINT NegativeOrder;
UINT PositiveOrder;
LPSTR lpCurrencySymbol;
}
alias _currencyfmtA CURRENCYFMTA;
alias _currencyfmtA *LPCURRENCYFMTA;
//C typedef struct _currencyfmtW {
//C UINT NumDigits;
//C UINT LeadingZero;
//C UINT Grouping;
//C LPWSTR lpDecimalSep;
//C LPWSTR lpThousandSep;
//C UINT NegativeOrder;
//C UINT PositiveOrder;
//C LPWSTR lpCurrencySymbol;
//C } CURRENCYFMTW,*LPCURRENCYFMTW;
struct _currencyfmtW
{
UINT NumDigits;
UINT LeadingZero;
UINT Grouping;
LPWSTR lpDecimalSep;
LPWSTR lpThousandSep;
UINT NegativeOrder;
UINT PositiveOrder;
LPWSTR lpCurrencySymbol;
}
alias _currencyfmtW CURRENCYFMTW;
alias _currencyfmtW *LPCURRENCYFMTW;
//C typedef CURRENCYFMTA CURRENCYFMT;
alias CURRENCYFMTA CURRENCYFMT;
//C typedef LPCURRENCYFMTA LPCURRENCYFMT;
alias LPCURRENCYFMTA LPCURRENCYFMT;
//C enum SYSNLS_FUNCTION {
//C COMPARE_STRING = 0x0001
//C };
enum SYSNLS_FUNCTION
{
COMPARE_STRING = 1,
}
//C typedef DWORD NLS_FUNCTION;
alias DWORD NLS_FUNCTION;
//C typedef struct _nlsversioninfo{
//C DWORD dwNLSVersionInfoSize;
//C DWORD dwNLSVersion;
//C DWORD dwDefinedVersion;
//C } NLSVERSIONINFO,*LPNLSVERSIONINFO;
struct _nlsversioninfo
{
DWORD dwNLSVersionInfoSize;
DWORD dwNLSVersion;
DWORD dwDefinedVersion;
}
alias _nlsversioninfo NLSVERSIONINFO;
alias _nlsversioninfo *LPNLSVERSIONINFO;
//C typedef LONG GEOID;
alias LONG GEOID;
//C typedef DWORD GEOTYPE;
alias DWORD GEOTYPE;
//C typedef DWORD GEOCLASS;
alias DWORD GEOCLASS;
//C enum SYSGEOTYPE {
//C GEO_NATION = 0x0001,GEO_LATITUDE = 0x0002,GEO_LONGITUDE = 0x0003,GEO_ISO2 = 0x0004,GEO_ISO3 = 0x0005,GEO_RFC1766 = 0x0006,GEO_LCID = 0x0007,
//C GEO_FRIENDLYNAME= 0x0008,GEO_OFFICIALNAME= 0x0009,GEO_TIMEZONES = 0x000A,GEO_OFFICIALLANGUAGES = 0x000B
//C };
enum SYSGEOTYPE
{
GEO_NATION = 1,
GEO_LATITUDE,
GEO_LONGITUDE,
GEO_ISO2,
GEO_ISO3,
GEO_RFC1766,
GEO_LCID,
GEO_FRIENDLYNAME,
GEO_OFFICIALNAME,
GEO_TIMEZONES,
GEO_OFFICIALLANGUAGES,
}
//C enum SYSGEOCLASS {
//C GEOCLASS_NATION = 16,GEOCLASS_REGION = 14
//C };
enum SYSGEOCLASS
{
GEOCLASS_NATION = 16,
GEOCLASS_REGION = 14,
}
//C typedef enum _NORM_FORM {
//C NormalizationOther = 0,
//C NormalizationC = 0x1,
//C NormalizationD = 0x2,
//C NormalizationKC = 0x5,
//C NormalizationKD = 0x6
//C } NORM_FORM;
enum _NORM_FORM
{
NormalizationOther,
NormalizationC,
NormalizationD,
NormalizationKC = 5,
NormalizationKD,
}
alias _NORM_FORM NORM_FORM;
//C typedef WINBOOL ( *LANGUAGEGROUP_ENUMPROCA)(LGRPID,LPSTR,LPSTR,DWORD,LONG_PTR);
alias WINBOOL function(LGRPID , LPSTR , LPSTR , DWORD , LONG_PTR )LANGUAGEGROUP_ENUMPROCA;
//C typedef WINBOOL ( *LANGGROUPLOCALE_ENUMPROCA)(LGRPID,LCID,LPSTR,LONG_PTR);
alias WINBOOL function(LGRPID , LCID , LPSTR , LONG_PTR )LANGGROUPLOCALE_ENUMPROCA;
//C typedef WINBOOL ( *UILANGUAGE_ENUMPROCA)(LPSTR,LONG_PTR);
alias WINBOOL function(LPSTR , LONG_PTR )UILANGUAGE_ENUMPROCA;
//C typedef WINBOOL ( *LOCALE_ENUMPROCA)(LPSTR);
alias WINBOOL function(LPSTR )LOCALE_ENUMPROCA;
//C typedef WINBOOL ( *CODEPAGE_ENUMPROCA)(LPSTR);
alias WINBOOL function(LPSTR )CODEPAGE_ENUMPROCA;
//C typedef WINBOOL ( *DATEFMT_ENUMPROCA)(LPSTR);
alias WINBOOL function(LPSTR )DATEFMT_ENUMPROCA;
//C typedef WINBOOL ( *DATEFMT_ENUMPROCEXA)(LPSTR,CALID);
alias WINBOOL function(LPSTR , CALID )DATEFMT_ENUMPROCEXA;
//C typedef WINBOOL ( *TIMEFMT_ENUMPROCA)(LPSTR);
alias WINBOOL function(LPSTR )TIMEFMT_ENUMPROCA;
//C typedef WINBOOL ( *CALINFO_ENUMPROCA)(LPSTR);
alias WINBOOL function(LPSTR )CALINFO_ENUMPROCA;
//C typedef WINBOOL ( *CALINFO_ENUMPROCEXA)(LPSTR,CALID);
alias WINBOOL function(LPSTR , CALID )CALINFO_ENUMPROCEXA;
//C typedef WINBOOL ( *LANGUAGEGROUP_ENUMPROCW)(LGRPID,LPWSTR,LPWSTR,DWORD,LONG_PTR);
alias WINBOOL function(LGRPID , LPWSTR , LPWSTR , DWORD , LONG_PTR )LANGUAGEGROUP_ENUMPROCW;
//C typedef WINBOOL ( *LANGGROUPLOCALE_ENUMPROCW)(LGRPID,LCID,LPWSTR,LONG_PTR);
alias WINBOOL function(LGRPID , LCID , LPWSTR , LONG_PTR )LANGGROUPLOCALE_ENUMPROCW;
//C typedef WINBOOL ( *UILANGUAGE_ENUMPROCW)(LPWSTR,LONG_PTR);
alias WINBOOL function(LPWSTR , LONG_PTR )UILANGUAGE_ENUMPROCW;
//C typedef WINBOOL ( *LOCALE_ENUMPROCW)(LPWSTR);
alias WINBOOL function(LPWSTR )LOCALE_ENUMPROCW;
//C typedef WINBOOL ( *CODEPAGE_ENUMPROCW)(LPWSTR);
alias WINBOOL function(LPWSTR )CODEPAGE_ENUMPROCW;
//C typedef WINBOOL ( *DATEFMT_ENUMPROCW)(LPWSTR);
alias WINBOOL function(LPWSTR )DATEFMT_ENUMPROCW;
//C typedef WINBOOL ( *DATEFMT_ENUMPROCEXW)(LPWSTR,CALID);
alias WINBOOL function(LPWSTR , CALID )DATEFMT_ENUMPROCEXW;
//C typedef WINBOOL ( *TIMEFMT_ENUMPROCW)(LPWSTR);
alias WINBOOL function(LPWSTR )TIMEFMT_ENUMPROCW;
//C typedef WINBOOL ( *CALINFO_ENUMPROCW)(LPWSTR);
alias WINBOOL function(LPWSTR )CALINFO_ENUMPROCW;
//C typedef WINBOOL ( *CALINFO_ENUMPROCEXW)(LPWSTR,CALID);
alias WINBOOL function(LPWSTR , CALID )CALINFO_ENUMPROCEXW;
//C typedef WINBOOL ( *GEO_ENUMPROC)(GEOID);
alias WINBOOL function(GEOID )GEO_ENUMPROC;
//C WINBOOL IsValidCodePage(UINT CodePage);
WINBOOL IsValidCodePage(UINT CodePage);
//C UINT GetACP(void);
UINT GetACP();
//C UINT GetOEMCP(void);
UINT GetOEMCP();
//C WINBOOL GetCPInfo(UINT CodePage,LPCPINFO lpCPInfo);
WINBOOL GetCPInfo(UINT CodePage, LPCPINFO lpCPInfo);
//C WINBOOL GetCPInfoExA(UINT CodePage,DWORD dwFlags,LPCPINFOEXA lpCPInfoEx);
WINBOOL GetCPInfoExA(UINT CodePage, DWORD dwFlags, LPCPINFOEXA lpCPInfoEx);
//C WINBOOL GetCPInfoExW(UINT CodePage,DWORD dwFlags,LPCPINFOEXW lpCPInfoEx);
WINBOOL GetCPInfoExW(UINT CodePage, DWORD dwFlags, LPCPINFOEXW lpCPInfoEx);
//C WINBOOL IsDBCSLeadByte(BYTE TestChar);
WINBOOL IsDBCSLeadByte(BYTE TestChar);
//C WINBOOL IsDBCSLeadByteEx(UINT CodePage,BYTE TestChar);
WINBOOL IsDBCSLeadByteEx(UINT CodePage, BYTE TestChar);
//C int MultiByteToWideChar(UINT CodePage,DWORD dwFlags,LPCSTR lpMultiByteStr,int cbMultiByte,LPWSTR lpWideCharStr,int cchWideChar);
int MultiByteToWideChar(UINT CodePage, DWORD dwFlags, LPCSTR lpMultiByteStr, int cbMultiByte, LPWSTR lpWideCharStr, int cchWideChar);
//C int WideCharToMultiByte(UINT CodePage,DWORD dwFlags,LPCWSTR lpWideCharStr,int cchWideChar,LPSTR lpMultiByteStr,int cbMultiByte,LPCSTR lpDefaultChar,LPBOOL lpUsedDefaultChar);
int WideCharToMultiByte(UINT CodePage, DWORD dwFlags, LPCWSTR lpWideCharStr, int cchWideChar, LPSTR lpMultiByteStr, int cbMultiByte, LPCSTR lpDefaultChar, LPBOOL lpUsedDefaultChar);
//C int CompareStringA(LCID Locale,DWORD dwCmpFlags,LPCSTR lpString1,int cchCount1,LPCSTR lpString2,int cchCount2);
int CompareStringA(LCID Locale, DWORD dwCmpFlags, LPCSTR lpString1, int cchCount1, LPCSTR lpString2, int cchCount2);
//C int CompareStringW(LCID Locale,DWORD dwCmpFlags,LPCWSTR lpString1,int cchCount1,LPCWSTR lpString2,int cchCount2);
int CompareStringW(LCID Locale, DWORD dwCmpFlags, LPCWSTR lpString1, int cchCount1, LPCWSTR lpString2, int cchCount2);
//C int LCMapStringA(LCID Locale,DWORD dwMapFlags,LPCSTR lpSrcStr,int cchSrc,LPSTR lpDestStr,int cchDest);
int LCMapStringA(LCID Locale, DWORD dwMapFlags, LPCSTR lpSrcStr, int cchSrc, LPSTR lpDestStr, int cchDest);
//C int LCMapStringW(LCID Locale,DWORD dwMapFlags,LPCWSTR lpSrcStr,int cchSrc,LPWSTR lpDestStr,int cchDest);
int LCMapStringW(LCID Locale, DWORD dwMapFlags, LPCWSTR lpSrcStr, int cchSrc, LPWSTR lpDestStr, int cchDest);
//C int GetLocaleInfoA(LCID Locale,LCTYPE LCType,LPSTR lpLCData,int cchData);
int GetLocaleInfoA(LCID Locale, LCTYPE LCType, LPSTR lpLCData, int cchData);
//C int GetLocaleInfoW(LCID Locale,LCTYPE LCType,LPWSTR lpLCData,int cchData);
int GetLocaleInfoW(LCID Locale, LCTYPE LCType, LPWSTR lpLCData, int cchData);
//C WINBOOL SetLocaleInfoA(LCID Locale,LCTYPE LCType,LPCSTR lpLCData);
WINBOOL SetLocaleInfoA(LCID Locale, LCTYPE LCType, LPCSTR lpLCData);
//C WINBOOL SetLocaleInfoW(LCID Locale,LCTYPE LCType,LPCWSTR lpLCData);
WINBOOL SetLocaleInfoW(LCID Locale, LCTYPE LCType, LPCWSTR lpLCData);
//C int GetCalendarInfoA(LCID Locale,CALID Calendar,CALTYPE CalType,LPSTR lpCalData,int cchData,LPDWORD lpValue);
int GetCalendarInfoA(LCID Locale, CALID Calendar, CALTYPE CalType, LPSTR lpCalData, int cchData, LPDWORD lpValue);
//C int GetCalendarInfoW(LCID Locale,CALID Calendar,CALTYPE CalType,LPWSTR lpCalData,int cchData,LPDWORD lpValue);
int GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType, LPWSTR lpCalData, int cchData, LPDWORD lpValue);
//C WINBOOL SetCalendarInfoA(LCID Locale,CALID Calendar,CALTYPE CalType,LPCSTR lpCalData);
WINBOOL SetCalendarInfoA(LCID Locale, CALID Calendar, CALTYPE CalType, LPCSTR lpCalData);
//C WINBOOL SetCalendarInfoW(LCID Locale,CALID Calendar,CALTYPE CalType,LPCWSTR lpCalData);
WINBOOL SetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType, LPCWSTR lpCalData);
//C int GetTimeFormatA(LCID Locale,DWORD dwFlags,const SYSTEMTIME *lpTime,LPCSTR lpFormat,LPSTR lpTimeStr,int cchTime);
int GetTimeFormatA(LCID Locale, DWORD dwFlags, SYSTEMTIME *lpTime, LPCSTR lpFormat, LPSTR lpTimeStr, int cchTime);
//C int GetTimeFormatW(LCID Locale,DWORD dwFlags,const SYSTEMTIME *lpTime,LPCWSTR lpFormat,LPWSTR lpTimeStr,int cchTime);
int GetTimeFormatW(LCID Locale, DWORD dwFlags, SYSTEMTIME *lpTime, LPCWSTR lpFormat, LPWSTR lpTimeStr, int cchTime);
//C int GetDateFormatA(LCID Locale,DWORD dwFlags,const SYSTEMTIME *lpDate,LPCSTR lpFormat,LPSTR lpDateStr,int cchDate);
int GetDateFormatA(LCID Locale, DWORD dwFlags, SYSTEMTIME *lpDate, LPCSTR lpFormat, LPSTR lpDateStr, int cchDate);
//C int GetDateFormatW(LCID Locale,DWORD dwFlags,const SYSTEMTIME *lpDate,LPCWSTR lpFormat,LPWSTR lpDateStr,int cchDate);
int GetDateFormatW(LCID Locale, DWORD dwFlags, SYSTEMTIME *lpDate, LPCWSTR lpFormat, LPWSTR lpDateStr, int cchDate);
//C int GetNumberFormatA(LCID Locale,DWORD dwFlags,LPCSTR lpValue,const NUMBERFMTA *lpFormat,LPSTR lpNumberStr,int cchNumber);
int GetNumberFormatA(LCID Locale, DWORD dwFlags, LPCSTR lpValue, NUMBERFMTA *lpFormat, LPSTR lpNumberStr, int cchNumber);
//C int GetNumberFormatW(LCID Locale,DWORD dwFlags,LPCWSTR lpValue,const NUMBERFMTW *lpFormat,LPWSTR lpNumberStr,int cchNumber);
int GetNumberFormatW(LCID Locale, DWORD dwFlags, LPCWSTR lpValue, NUMBERFMTW *lpFormat, LPWSTR lpNumberStr, int cchNumber);
//C int GetCurrencyFormatA(LCID Locale,DWORD dwFlags,LPCSTR lpValue,const CURRENCYFMTA *lpFormat,LPSTR lpCurrencyStr,int cchCurrency);
int GetCurrencyFormatA(LCID Locale, DWORD dwFlags, LPCSTR lpValue, CURRENCYFMTA *lpFormat, LPSTR lpCurrencyStr, int cchCurrency);
//C int GetCurrencyFormatW(LCID Locale,DWORD dwFlags,LPCWSTR lpValue,const CURRENCYFMTW *lpFormat,LPWSTR lpCurrencyStr,int cchCurrency);
int GetCurrencyFormatW(LCID Locale, DWORD dwFlags, LPCWSTR lpValue, CURRENCYFMTW *lpFormat, LPWSTR lpCurrencyStr, int cchCurrency);
//C WINBOOL EnumCalendarInfoA(CALINFO_ENUMPROCA lpCalInfoEnumProc,LCID Locale,CALID Calendar,CALTYPE CalType);
WINBOOL EnumCalendarInfoA(CALINFO_ENUMPROCA lpCalInfoEnumProc, LCID Locale, CALID Calendar, CALTYPE CalType);
//C WINBOOL EnumCalendarInfoW(CALINFO_ENUMPROCW lpCalInfoEnumProc,LCID Locale,CALID Calendar,CALTYPE CalType);
WINBOOL EnumCalendarInfoW(CALINFO_ENUMPROCW lpCalInfoEnumProc, LCID Locale, CALID Calendar, CALTYPE CalType);
//C WINBOOL EnumCalendarInfoExA(CALINFO_ENUMPROCEXA lpCalInfoEnumProcEx,LCID Locale,CALID Calendar,CALTYPE CalType);
WINBOOL EnumCalendarInfoExA(CALINFO_ENUMPROCEXA lpCalInfoEnumProcEx, LCID Locale, CALID Calendar, CALTYPE CalType);
//C WINBOOL EnumCalendarInfoExW(CALINFO_ENUMPROCEXW lpCalInfoEnumProcEx,LCID Locale,CALID Calendar,CALTYPE CalType);
WINBOOL EnumCalendarInfoExW(CALINFO_ENUMPROCEXW lpCalInfoEnumProcEx, LCID Locale, CALID Calendar, CALTYPE CalType);
//C WINBOOL EnumTimeFormatsA(TIMEFMT_ENUMPROCA lpTimeFmtEnumProc,LCID Locale,DWORD dwFlags);
WINBOOL EnumTimeFormatsA(TIMEFMT_ENUMPROCA lpTimeFmtEnumProc, LCID Locale, DWORD dwFlags);
//C WINBOOL EnumTimeFormatsW(TIMEFMT_ENUMPROCW lpTimeFmtEnumProc,LCID Locale,DWORD dwFlags);
WINBOOL EnumTimeFormatsW(TIMEFMT_ENUMPROCW lpTimeFmtEnumProc, LCID Locale, DWORD dwFlags);
//C WINBOOL EnumDateFormatsA(DATEFMT_ENUMPROCA lpDateFmtEnumProc,LCID Locale,DWORD dwFlags);
WINBOOL EnumDateFormatsA(DATEFMT_ENUMPROCA lpDateFmtEnumProc, LCID Locale, DWORD dwFlags);
//C WINBOOL EnumDateFormatsW(DATEFMT_ENUMPROCW lpDateFmtEnumProc,LCID Locale,DWORD dwFlags);
WINBOOL EnumDateFormatsW(DATEFMT_ENUMPROCW lpDateFmtEnumProc, LCID Locale, DWORD dwFlags);
//C WINBOOL EnumDateFormatsExA(DATEFMT_ENUMPROCEXA lpDateFmtEnumProcEx,LCID Locale,DWORD dwFlags);
WINBOOL EnumDateFormatsExA(DATEFMT_ENUMPROCEXA lpDateFmtEnumProcEx, LCID Locale, DWORD dwFlags);
//C WINBOOL EnumDateFormatsExW(DATEFMT_ENUMPROCEXW lpDateFmtEnumProcEx,LCID Locale,DWORD dwFlags);
WINBOOL EnumDateFormatsExW(DATEFMT_ENUMPROCEXW lpDateFmtEnumProcEx, LCID Locale, DWORD dwFlags);
//C WINBOOL IsValidLanguageGroup(LGRPID LanguageGroup,DWORD dwFlags);
WINBOOL IsValidLanguageGroup(LGRPID LanguageGroup, DWORD dwFlags);
//C WINBOOL GetNLSVersion(NLS_FUNCTION Function,LCID Locale,LPNLSVERSIONINFO lpVersionInformation);
WINBOOL GetNLSVersion(NLS_FUNCTION Function, LCID Locale, LPNLSVERSIONINFO lpVersionInformation);
//C WINBOOL IsNLSDefinedString(NLS_FUNCTION Function,DWORD dwFlags,LPNLSVERSIONINFO lpVersionInformation,LPCWSTR lpString,INT cchStr);
WINBOOL IsNLSDefinedString(NLS_FUNCTION Function, DWORD dwFlags, LPNLSVERSIONINFO lpVersionInformation, LPCWSTR lpString, INT cchStr);
//C WINBOOL IsValidLocale(LCID Locale,DWORD dwFlags);
WINBOOL IsValidLocale(LCID Locale, DWORD dwFlags);
//C int GetGeoInfoA(GEOID Location,GEOTYPE GeoType,LPSTR lpGeoData,int cchData,LANGID LangId);
int GetGeoInfoA(GEOID Location, GEOTYPE GeoType, LPSTR lpGeoData, int cchData, LANGID LangId);
//C int GetGeoInfoW(GEOID Location,GEOTYPE GeoType,LPWSTR lpGeoData,int cchData,LANGID LangId);
int GetGeoInfoW(GEOID Location, GEOTYPE GeoType, LPWSTR lpGeoData, int cchData, LANGID LangId);
//C WINBOOL EnumSystemGeoID(GEOCLASS GeoClass,GEOID ParentGeoId,GEO_ENUMPROC lpGeoEnumProc);
WINBOOL EnumSystemGeoID(GEOCLASS GeoClass, GEOID ParentGeoId, GEO_ENUMPROC lpGeoEnumProc);
//C GEOID GetUserGeoID(GEOCLASS GeoClass);
GEOID GetUserGeoID(GEOCLASS GeoClass);
//C WINBOOL SetUserGeoID(GEOID GeoId);
WINBOOL SetUserGeoID(GEOID GeoId);
//C LCID ConvertDefaultLocale(LCID Locale);
LCID ConvertDefaultLocale(LCID Locale);
//C LCID GetThreadLocale(void);
LCID GetThreadLocale();
//C WINBOOL SetThreadLocale(LCID Locale);
WINBOOL SetThreadLocale(LCID Locale);
//C LANGID GetSystemDefaultUILanguage(void);
LANGID GetSystemDefaultUILanguage();
//C LANGID GetUserDefaultUILanguage(void);
LANGID GetUserDefaultUILanguage();
//C LANGID GetSystemDefaultLangID(void);
LANGID GetSystemDefaultLangID();
//C LANGID GetUserDefaultLangID(void);
LANGID GetUserDefaultLangID();
//C LCID GetSystemDefaultLCID(void);
LCID GetSystemDefaultLCID();
//C LCID GetUserDefaultLCID(void);
LCID GetUserDefaultLCID();
//C WINBOOL GetStringTypeExA(LCID Locale,DWORD dwInfoType,LPCSTR lpSrcStr,int cchSrc,LPWORD lpCharType);
WINBOOL GetStringTypeExA(LCID Locale, DWORD dwInfoType, LPCSTR lpSrcStr, int cchSrc, LPWORD lpCharType);
//C WINBOOL GetStringTypeExW(LCID Locale,DWORD dwInfoType,LPCWSTR lpSrcStr,int cchSrc,LPWORD lpCharType);
WINBOOL GetStringTypeExW(LCID Locale, DWORD dwInfoType, LPCWSTR lpSrcStr, int cchSrc, LPWORD lpCharType);
//C WINBOOL GetStringTypeA(LCID Locale,DWORD dwInfoType,LPCSTR lpSrcStr,int cchSrc,LPWORD lpCharType);
WINBOOL GetStringTypeA(LCID Locale, DWORD dwInfoType, LPCSTR lpSrcStr, int cchSrc, LPWORD lpCharType);
//C WINBOOL GetStringTypeW(DWORD dwInfoType,LPCWSTR lpSrcStr,int cchSrc,LPWORD lpCharType);
WINBOOL GetStringTypeW(DWORD dwInfoType, LPCWSTR lpSrcStr, int cchSrc, LPWORD lpCharType);
//C int FoldStringA(DWORD dwMapFlags,LPCSTR lpSrcStr,int cchSrc,LPSTR lpDestStr,int cchDest);
int FoldStringA(DWORD dwMapFlags, LPCSTR lpSrcStr, int cchSrc, LPSTR lpDestStr, int cchDest);
//C int FoldStringW(DWORD dwMapFlags,LPCWSTR lpSrcStr,int cchSrc,LPWSTR lpDestStr,int cchDest);
int FoldStringW(DWORD dwMapFlags, LPCWSTR lpSrcStr, int cchSrc, LPWSTR lpDestStr, int cchDest);
//C WINBOOL EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA lpLanguageGroupEnumProc,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA lpLanguageGroupEnumProc, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW lpLanguageGroupEnumProc,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW lpLanguageGroupEnumProc, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA lpLangGroupLocaleEnumProc,LGRPID LanguageGroup,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA lpLangGroupLocaleEnumProc, LGRPID LanguageGroup, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW lpLangGroupLocaleEnumProc,LGRPID LanguageGroup,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW lpLangGroupLocaleEnumProc, LGRPID LanguageGroup, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumUILanguagesA(UILANGUAGE_ENUMPROCA lpUILanguageEnumProc,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumUILanguagesA(UILANGUAGE_ENUMPROCA lpUILanguageEnumProc, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumUILanguagesW(UILANGUAGE_ENUMPROCW lpUILanguageEnumProc,DWORD dwFlags,LONG_PTR lParam);
WINBOOL EnumUILanguagesW(UILANGUAGE_ENUMPROCW lpUILanguageEnumProc, DWORD dwFlags, LONG_PTR lParam);
//C WINBOOL EnumSystemLocalesA(LOCALE_ENUMPROCA lpLocaleEnumProc,DWORD dwFlags);
WINBOOL EnumSystemLocalesA(LOCALE_ENUMPROCA lpLocaleEnumProc, DWORD dwFlags);
//C WINBOOL EnumSystemLocalesW(LOCALE_ENUMPROCW lpLocaleEnumProc,DWORD dwFlags);
WINBOOL EnumSystemLocalesW(LOCALE_ENUMPROCW lpLocaleEnumProc, DWORD dwFlags);
//C WINBOOL EnumSystemCodePagesA(CODEPAGE_ENUMPROCA lpCodePageEnumProc,DWORD dwFlags);
WINBOOL EnumSystemCodePagesA(CODEPAGE_ENUMPROCA lpCodePageEnumProc, DWORD dwFlags);
//C WINBOOL EnumSystemCodePagesW(CODEPAGE_ENUMPROCW lpCodePageEnumProc,DWORD dwFlags);
WINBOOL EnumSystemCodePagesW(CODEPAGE_ENUMPROCW lpCodePageEnumProc, DWORD dwFlags);
//C WINBOOL IsNormalizedString(NORM_FORM NormForm,LPCWSTR lpString,int cwLength);
WINBOOL IsNormalizedString(NORM_FORM NormForm, LPCWSTR lpString, int cwLength);
//C int NormalizeString(NORM_FORM NormForm,LPCWSTR lpSrcString,int cwSrcLength,LPWSTR lpDstString,int cwDstLength);
int NormalizeString(NORM_FORM NormForm, LPCWSTR lpSrcString, int cwSrcLength, LPWSTR lpDstString, int cwDstLength);
//C int IdnToAscii(DWORD dwFlags,LPCWSTR lpUnicodeCharStr,int cchUnicodeChar,LPWSTR lpASCIICharStr,int cchASCIIChar);
int IdnToAscii(DWORD dwFlags, LPCWSTR lpUnicodeCharStr, int cchUnicodeChar, LPWSTR lpASCIICharStr, int cchASCIIChar);
//C int IdnToNameprepUnicode(DWORD dwFlags,LPCWSTR lpUnicodeCharStr,int cchUnicodeChar,LPWSTR lpNameprepCharStr,int cchNameprepChar);
int IdnToNameprepUnicode(DWORD dwFlags, LPCWSTR lpUnicodeCharStr, int cchUnicodeChar, LPWSTR lpNameprepCharStr, int cchNameprepChar);
//C int IdnToUnicode(DWORD dwFlags,LPCWSTR lpASCIICharStr,int cchASCIIChar,LPWSTR lpUnicodeCharStr,int cchUnicodeChar);
int IdnToUnicode(DWORD dwFlags, LPCWSTR lpASCIICharStr, int cchASCIIChar, LPWSTR lpUnicodeCharStr, int cchUnicodeChar);
//C LANGID SetThreadUILanguage(
//C LANGID LangId
//C );
LANGID SetThreadUILanguage(LANGID LangId);
//C typedef struct _COORD {
//C SHORT X;
//C SHORT Y;
//C } COORD,*PCOORD;
struct _COORD
{
SHORT X;
SHORT Y;
}
alias _COORD COORD;
alias _COORD *PCOORD;
//C typedef struct _SMALL_RECT {
//C SHORT Left;
//C SHORT Top;
//C SHORT Right;
//C SHORT Bottom;
//C } SMALL_RECT,*PSMALL_RECT;
struct _SMALL_RECT
{
SHORT Left;
SHORT Top;
SHORT Right;
SHORT Bottom;
}
alias _SMALL_RECT SMALL_RECT;
alias _SMALL_RECT *PSMALL_RECT;
//C typedef struct _KEY_EVENT_RECORD {
//C WINBOOL bKeyDown;
//C WORD wRepeatCount;
//C WORD wVirtualKeyCode;
//C WORD wVirtualScanCode;
//C union {
//C WCHAR UnicodeChar;
//C CHAR AsciiChar;
//C } uChar;
union _N85
{
WCHAR UnicodeChar;
CHAR AsciiChar;
}
//C DWORD dwControlKeyState;
//C } KEY_EVENT_RECORD,*PKEY_EVENT_RECORD;
struct _KEY_EVENT_RECORD
{
WINBOOL bKeyDown;
WORD wRepeatCount;
WORD wVirtualKeyCode;
WORD wVirtualScanCode;
_N85 uChar;
DWORD dwControlKeyState;
}
alias _KEY_EVENT_RECORD KEY_EVENT_RECORD;
alias _KEY_EVENT_RECORD *PKEY_EVENT_RECORD;
//C typedef struct _MOUSE_EVENT_RECORD {
//C COORD dwMousePosition;
//C DWORD dwButtonState;
//C DWORD dwControlKeyState;
//C DWORD dwEventFlags;
//C } MOUSE_EVENT_RECORD,*PMOUSE_EVENT_RECORD;
struct _MOUSE_EVENT_RECORD
{
COORD dwMousePosition;
DWORD dwButtonState;
DWORD dwControlKeyState;
DWORD dwEventFlags;
}
alias _MOUSE_EVENT_RECORD MOUSE_EVENT_RECORD;
alias _MOUSE_EVENT_RECORD *PMOUSE_EVENT_RECORD;
//C typedef struct _WINDOW_BUFFER_SIZE_RECORD {
//C COORD dwSize;
//C } WINDOW_BUFFER_SIZE_RECORD,*PWINDOW_BUFFER_SIZE_RECORD;
struct _WINDOW_BUFFER_SIZE_RECORD
{
COORD dwSize;
}
alias _WINDOW_BUFFER_SIZE_RECORD WINDOW_BUFFER_SIZE_RECORD;
alias _WINDOW_BUFFER_SIZE_RECORD *PWINDOW_BUFFER_SIZE_RECORD;
//C typedef struct _MENU_EVENT_RECORD {
//C UINT dwCommandId;
//C } MENU_EVENT_RECORD,*PMENU_EVENT_RECORD;
struct _MENU_EVENT_RECORD
{
UINT dwCommandId;
}
alias _MENU_EVENT_RECORD MENU_EVENT_RECORD;
alias _MENU_EVENT_RECORD *PMENU_EVENT_RECORD;
//C typedef struct _FOCUS_EVENT_RECORD {
//C WINBOOL bSetFocus;
//C } FOCUS_EVENT_RECORD,*PFOCUS_EVENT_RECORD;
struct _FOCUS_EVENT_RECORD
{
WINBOOL bSetFocus;
}
alias _FOCUS_EVENT_RECORD FOCUS_EVENT_RECORD;
alias _FOCUS_EVENT_RECORD *PFOCUS_EVENT_RECORD;
//C typedef struct _INPUT_RECORD {
//C WORD EventType;
//C union {
//C KEY_EVENT_RECORD KeyEvent;
//C MOUSE_EVENT_RECORD MouseEvent;
//C WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent;
//C MENU_EVENT_RECORD MenuEvent;
//C FOCUS_EVENT_RECORD FocusEvent;
//C } Event;
union _N86
{
KEY_EVENT_RECORD KeyEvent;
MOUSE_EVENT_RECORD MouseEvent;
WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent;
MENU_EVENT_RECORD MenuEvent;
FOCUS_EVENT_RECORD FocusEvent;
}
//C } INPUT_RECORD,*PINPUT_RECORD;
struct _INPUT_RECORD
{
WORD EventType;
_N86 Event;
}
alias _INPUT_RECORD INPUT_RECORD;
alias _INPUT_RECORD *PINPUT_RECORD;
//C typedef struct _CHAR_INFO {
//C union {
//C WCHAR UnicodeChar;
//C CHAR AsciiChar;
//C } Char;
union _N87
{
WCHAR UnicodeChar;
CHAR AsciiChar;
}
//C WORD Attributes;
//C } CHAR_INFO,*PCHAR_INFO;
struct _CHAR_INFO
{
_N87 Char;
WORD Attributes;
}
alias _CHAR_INFO CHAR_INFO;
alias _CHAR_INFO *PCHAR_INFO;
//C typedef struct _CONSOLE_SCREEN_BUFFER_INFO {
//C COORD dwSize;
//C COORD dwCursorPosition;
//C WORD wAttributes;
//C SMALL_RECT srWindow;
//C COORD dwMaximumWindowSize;
//C } CONSOLE_SCREEN_BUFFER_INFO,*PCONSOLE_SCREEN_BUFFER_INFO;
struct _CONSOLE_SCREEN_BUFFER_INFO
{
COORD dwSize;
COORD dwCursorPosition;
WORD wAttributes;
SMALL_RECT srWindow;
COORD dwMaximumWindowSize;
}
alias _CONSOLE_SCREEN_BUFFER_INFO CONSOLE_SCREEN_BUFFER_INFO;
alias _CONSOLE_SCREEN_BUFFER_INFO *PCONSOLE_SCREEN_BUFFER_INFO;
//C typedef struct _CONSOLE_CURSOR_INFO {
//C DWORD dwSize;
//C WINBOOL bVisible;
//C } CONSOLE_CURSOR_INFO,*PCONSOLE_CURSOR_INFO;
struct _CONSOLE_CURSOR_INFO
{
DWORD dwSize;
WINBOOL bVisible;
}
alias _CONSOLE_CURSOR_INFO CONSOLE_CURSOR_INFO;
alias _CONSOLE_CURSOR_INFO *PCONSOLE_CURSOR_INFO;
//C typedef struct _CONSOLE_FONT_INFO {
//C DWORD nFont;
//C COORD dwFontSize;
//C } CONSOLE_FONT_INFO,*PCONSOLE_FONT_INFO;
struct _CONSOLE_FONT_INFO
{
DWORD nFont;
COORD dwFontSize;
}
alias _CONSOLE_FONT_INFO CONSOLE_FONT_INFO;
alias _CONSOLE_FONT_INFO *PCONSOLE_FONT_INFO;
//C typedef struct _CONSOLE_SELECTION_INFO {
//C DWORD dwFlags;
//C COORD dwSelectionAnchor;
//C SMALL_RECT srSelection;
//C } CONSOLE_SELECTION_INFO,*PCONSOLE_SELECTION_INFO;
struct _CONSOLE_SELECTION_INFO
{
DWORD dwFlags;
COORD dwSelectionAnchor;
SMALL_RECT srSelection;
}
alias _CONSOLE_SELECTION_INFO CONSOLE_SELECTION_INFO;
alias _CONSOLE_SELECTION_INFO *PCONSOLE_SELECTION_INFO;
//C typedef WINBOOL ( *PHANDLER_ROUTINE)(DWORD CtrlType);
alias WINBOOL function(DWORD CtrlType)PHANDLER_ROUTINE;
//C WINBOOL PeekConsoleInputA(HANDLE hConsoleInput,PINPUT_RECORD lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsRead);
WINBOOL PeekConsoleInputA(HANDLE hConsoleInput, PINPUT_RECORD lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsRead);
//C WINBOOL PeekConsoleInputW(HANDLE hConsoleInput,PINPUT_RECORD lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsRead);
WINBOOL PeekConsoleInputW(HANDLE hConsoleInput, PINPUT_RECORD lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsRead);
//C WINBOOL ReadConsoleInputA(HANDLE hConsoleInput,PINPUT_RECORD lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsRead);
WINBOOL ReadConsoleInputA(HANDLE hConsoleInput, PINPUT_RECORD lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsRead);
//C WINBOOL ReadConsoleInputW(HANDLE hConsoleInput,PINPUT_RECORD lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsRead);
WINBOOL ReadConsoleInputW(HANDLE hConsoleInput, PINPUT_RECORD lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsRead);
//C WINBOOL WriteConsoleInputA(HANDLE hConsoleInput,const INPUT_RECORD *lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsWritten);
WINBOOL WriteConsoleInputA(HANDLE hConsoleInput, INPUT_RECORD *lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsWritten);
//C WINBOOL WriteConsoleInputW(HANDLE hConsoleInput,const INPUT_RECORD *lpBuffer,DWORD nLength,LPDWORD lpNumberOfEventsWritten);
WINBOOL WriteConsoleInputW(HANDLE hConsoleInput, INPUT_RECORD *lpBuffer, DWORD nLength, LPDWORD lpNumberOfEventsWritten);
//C WINBOOL ReadConsoleOutputA(HANDLE hConsoleOutput,PCHAR_INFO lpBuffer,COORD dwBufferSize,COORD dwBufferCoord,PSMALL_RECT lpReadRegion);
WINBOOL ReadConsoleOutputA(HANDLE hConsoleOutput, PCHAR_INFO lpBuffer, COORD dwBufferSize, COORD dwBufferCoord, PSMALL_RECT lpReadRegion);
//C WINBOOL ReadConsoleOutputW(HANDLE hConsoleOutput,PCHAR_INFO lpBuffer,COORD dwBufferSize,COORD dwBufferCoord,PSMALL_RECT lpReadRegion);
WINBOOL ReadConsoleOutputW(HANDLE hConsoleOutput, PCHAR_INFO lpBuffer, COORD dwBufferSize, COORD dwBufferCoord, PSMALL_RECT lpReadRegion);
//C WINBOOL WriteConsoleOutputA(HANDLE hConsoleOutput,const CHAR_INFO *lpBuffer,COORD dwBufferSize,COORD dwBufferCoord,PSMALL_RECT lpWriteRegion);
WINBOOL WriteConsoleOutputA(HANDLE hConsoleOutput, CHAR_INFO *lpBuffer, COORD dwBufferSize, COORD dwBufferCoord, PSMALL_RECT lpWriteRegion);
//C WINBOOL WriteConsoleOutputW(HANDLE hConsoleOutput,const CHAR_INFO *lpBuffer,COORD dwBufferSize,COORD dwBufferCoord,PSMALL_RECT lpWriteRegion);
WINBOOL WriteConsoleOutputW(HANDLE hConsoleOutput, CHAR_INFO *lpBuffer, COORD dwBufferSize, COORD dwBufferCoord, PSMALL_RECT lpWriteRegion);
//C WINBOOL ReadConsoleOutputCharacterA(HANDLE hConsoleOutput,LPSTR lpCharacter,DWORD nLength,COORD dwReadCoord,LPDWORD lpNumberOfCharsRead);
WINBOOL ReadConsoleOutputCharacterA(HANDLE hConsoleOutput, LPSTR lpCharacter, DWORD nLength, COORD dwReadCoord, LPDWORD lpNumberOfCharsRead);
//C WINBOOL ReadConsoleOutputCharacterW(HANDLE hConsoleOutput,LPWSTR lpCharacter,DWORD nLength,COORD dwReadCoord,LPDWORD lpNumberOfCharsRead);
WINBOOL ReadConsoleOutputCharacterW(HANDLE hConsoleOutput, LPWSTR lpCharacter, DWORD nLength, COORD dwReadCoord, LPDWORD lpNumberOfCharsRead);
//C WINBOOL ReadConsoleOutputAttribute(HANDLE hConsoleOutput,LPWORD lpAttribute,DWORD nLength,COORD dwReadCoord,LPDWORD lpNumberOfAttrsRead);
WINBOOL ReadConsoleOutputAttribute(HANDLE hConsoleOutput, LPWORD lpAttribute, DWORD nLength, COORD dwReadCoord, LPDWORD lpNumberOfAttrsRead);
//C WINBOOL WriteConsoleOutputCharacterA(HANDLE hConsoleOutput,LPCSTR lpCharacter,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfCharsWritten);
WINBOOL WriteConsoleOutputCharacterA(HANDLE hConsoleOutput, LPCSTR lpCharacter, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfCharsWritten);
//C WINBOOL WriteConsoleOutputCharacterW(HANDLE hConsoleOutput,LPCWSTR lpCharacter,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfCharsWritten);
WINBOOL WriteConsoleOutputCharacterW(HANDLE hConsoleOutput, LPCWSTR lpCharacter, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfCharsWritten);
//C WINBOOL WriteConsoleOutputAttribute(HANDLE hConsoleOutput,const WORD *lpAttribute,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfAttrsWritten);
WINBOOL WriteConsoleOutputAttribute(HANDLE hConsoleOutput, WORD *lpAttribute, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfAttrsWritten);
//C WINBOOL FillConsoleOutputCharacterA(HANDLE hConsoleOutput,CHAR cCharacter,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfCharsWritten);
WINBOOL FillConsoleOutputCharacterA(HANDLE hConsoleOutput, CHAR cCharacter, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfCharsWritten);
//C WINBOOL FillConsoleOutputCharacterW(HANDLE hConsoleOutput,WCHAR cCharacter,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfCharsWritten);
WINBOOL FillConsoleOutputCharacterW(HANDLE hConsoleOutput, WCHAR cCharacter, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfCharsWritten);
//C WINBOOL FillConsoleOutputAttribute(HANDLE hConsoleOutput,WORD wAttribute,DWORD nLength,COORD dwWriteCoord,LPDWORD lpNumberOfAttrsWritten);
WINBOOL FillConsoleOutputAttribute(HANDLE hConsoleOutput, WORD wAttribute, DWORD nLength, COORD dwWriteCoord, LPDWORD lpNumberOfAttrsWritten);
//C WINBOOL GetConsoleMode(HANDLE hConsoleHandle,LPDWORD lpMode);
WINBOOL GetConsoleMode(HANDLE hConsoleHandle, LPDWORD lpMode);
//C WINBOOL GetNumberOfConsoleInputEvents(HANDLE hConsoleInput,LPDWORD lpNumberOfEvents);
WINBOOL GetNumberOfConsoleInputEvents(HANDLE hConsoleInput, LPDWORD lpNumberOfEvents);
//C WINBOOL GetConsoleScreenBufferInfo(HANDLE hConsoleOutput,PCONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo);
WINBOOL GetConsoleScreenBufferInfo(HANDLE hConsoleOutput, PCONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo);
//C COORD GetLargestConsoleWindowSize(HANDLE hConsoleOutput);
COORD GetLargestConsoleWindowSize(HANDLE hConsoleOutput);
//C WINBOOL GetConsoleCursorInfo(HANDLE hConsoleOutput,PCONSOLE_CURSOR_INFO lpConsoleCursorInfo);
WINBOOL GetConsoleCursorInfo(HANDLE hConsoleOutput, PCONSOLE_CURSOR_INFO lpConsoleCursorInfo);
//C WINBOOL GetCurrentConsoleFont(HANDLE hConsoleOutput,WINBOOL bMaximumWindow,PCONSOLE_FONT_INFO lpConsoleCurrentFont);
WINBOOL GetCurrentConsoleFont(HANDLE hConsoleOutput, WINBOOL bMaximumWindow, PCONSOLE_FONT_INFO lpConsoleCurrentFont);
//C COORD GetConsoleFontSize(HANDLE hConsoleOutput,DWORD nFont);
COORD GetConsoleFontSize(HANDLE hConsoleOutput, DWORD nFont);
//C WINBOOL GetConsoleSelectionInfo(PCONSOLE_SELECTION_INFO lpConsoleSelectionInfo);
WINBOOL GetConsoleSelectionInfo(PCONSOLE_SELECTION_INFO lpConsoleSelectionInfo);
//C WINBOOL GetNumberOfConsoleMouseButtons(LPDWORD lpNumberOfMouseButtons);
WINBOOL GetNumberOfConsoleMouseButtons(LPDWORD lpNumberOfMouseButtons);
//C WINBOOL SetConsoleMode(HANDLE hConsoleHandle,DWORD dwMode);
WINBOOL SetConsoleMode(HANDLE hConsoleHandle, DWORD dwMode);
//C WINBOOL SetConsoleActiveScreenBuffer(HANDLE hConsoleOutput);
WINBOOL SetConsoleActiveScreenBuffer(HANDLE hConsoleOutput);
//C WINBOOL FlushConsoleInputBuffer(HANDLE hConsoleInput);
WINBOOL FlushConsoleInputBuffer(HANDLE hConsoleInput);
//C WINBOOL SetConsoleScreenBufferSize(HANDLE hConsoleOutput,COORD dwSize);
WINBOOL SetConsoleScreenBufferSize(HANDLE hConsoleOutput, COORD dwSize);
//C WINBOOL SetConsoleCursorPosition(HANDLE hConsoleOutput,COORD dwCursorPosition);
WINBOOL SetConsoleCursorPosition(HANDLE hConsoleOutput, COORD dwCursorPosition);
//C WINBOOL SetConsoleCursorInfo(HANDLE hConsoleOutput,const CONSOLE_CURSOR_INFO *lpConsoleCursorInfo);
WINBOOL SetConsoleCursorInfo(HANDLE hConsoleOutput, CONSOLE_CURSOR_INFO *lpConsoleCursorInfo);
//C WINBOOL ScrollConsoleScreenBufferA(HANDLE hConsoleOutput,const SMALL_RECT *lpScrollRectangle,const SMALL_RECT *lpClipRectangle,COORD dwDestinationOrigin,const CHAR_INFO *lpFill);
WINBOOL ScrollConsoleScreenBufferA(HANDLE hConsoleOutput, SMALL_RECT *lpScrollRectangle, SMALL_RECT *lpClipRectangle, COORD dwDestinationOrigin, CHAR_INFO *lpFill);
//C WINBOOL ScrollConsoleScreenBufferW(HANDLE hConsoleOutput,const SMALL_RECT *lpScrollRectangle,const SMALL_RECT *lpClipRectangle,COORD dwDestinationOrigin,const CHAR_INFO *lpFill);
WINBOOL ScrollConsoleScreenBufferW(HANDLE hConsoleOutput, SMALL_RECT *lpScrollRectangle, SMALL_RECT *lpClipRectangle, COORD dwDestinationOrigin, CHAR_INFO *lpFill);
//C WINBOOL SetConsoleWindowInfo(HANDLE hConsoleOutput,WINBOOL bAbsolute,const SMALL_RECT *lpConsoleWindow);
WINBOOL SetConsoleWindowInfo(HANDLE hConsoleOutput, WINBOOL bAbsolute, SMALL_RECT *lpConsoleWindow);
//C WINBOOL SetConsoleTextAttribute(HANDLE hConsoleOutput,WORD wAttributes);
WINBOOL SetConsoleTextAttribute(HANDLE hConsoleOutput, WORD wAttributes);
//C WINBOOL SetConsoleCtrlHandler(PHANDLER_ROUTINE HandlerRoutine,WINBOOL Add);
WINBOOL SetConsoleCtrlHandler(PHANDLER_ROUTINE HandlerRoutine, WINBOOL Add);
//C WINBOOL GenerateConsoleCtrlEvent(DWORD dwCtrlEvent,DWORD dwProcessGroupId);
WINBOOL GenerateConsoleCtrlEvent(DWORD dwCtrlEvent, DWORD dwProcessGroupId);
//C WINBOOL AllocConsole(void);
WINBOOL AllocConsole();
//C WINBOOL FreeConsole(void);
WINBOOL FreeConsole();
//C WINBOOL AttachConsole(DWORD dwProcessId);
WINBOOL AttachConsole(DWORD dwProcessId);
//C DWORD GetConsoleTitleA(LPSTR lpConsoleTitle,DWORD nSize);
DWORD GetConsoleTitleA(LPSTR lpConsoleTitle, DWORD nSize);
//C DWORD GetConsoleTitleW(LPWSTR lpConsoleTitle,DWORD nSize);
DWORD GetConsoleTitleW(LPWSTR lpConsoleTitle, DWORD nSize);
//C WINBOOL SetConsoleTitleA(LPCSTR lpConsoleTitle);
WINBOOL SetConsoleTitleA(LPCSTR lpConsoleTitle);
//C WINBOOL SetConsoleTitleW(LPCWSTR lpConsoleTitle);
WINBOOL SetConsoleTitleW(LPCWSTR lpConsoleTitle);
//C WINBOOL ReadConsoleA(HANDLE hConsoleInput,LPVOID lpBuffer,DWORD nNumberOfCharsToRead,LPDWORD lpNumberOfCharsRead,LPVOID lpReserved);
WINBOOL ReadConsoleA(HANDLE hConsoleInput, LPVOID lpBuffer, DWORD nNumberOfCharsToRead, LPDWORD lpNumberOfCharsRead, LPVOID lpReserved);
//C WINBOOL ReadConsoleW(HANDLE hConsoleInput,LPVOID lpBuffer,DWORD nNumberOfCharsToRead,LPDWORD lpNumberOfCharsRead,LPVOID lpReserved);
WINBOOL ReadConsoleW(HANDLE hConsoleInput, LPVOID lpBuffer, DWORD nNumberOfCharsToRead, LPDWORD lpNumberOfCharsRead, LPVOID lpReserved);
//C WINBOOL WriteConsoleA(HANDLE hConsoleOutput,const void *lpBuffer,DWORD nNumberOfCharsToWrite,LPDWORD lpNumberOfCharsWritten,LPVOID lpReserved);
WINBOOL WriteConsoleA(HANDLE hConsoleOutput, void *lpBuffer, DWORD nNumberOfCharsToWrite, LPDWORD lpNumberOfCharsWritten, LPVOID lpReserved);
//C WINBOOL WriteConsoleW(HANDLE hConsoleOutput,const void *lpBuffer,DWORD nNumberOfCharsToWrite,LPDWORD lpNumberOfCharsWritten,LPVOID lpReserved);
WINBOOL WriteConsoleW(HANDLE hConsoleOutput, void *lpBuffer, DWORD nNumberOfCharsToWrite, LPDWORD lpNumberOfCharsWritten, LPVOID lpReserved);
//C HANDLE CreateConsoleScreenBuffer(DWORD dwDesiredAccess,DWORD dwShareMode,const SECURITY_ATTRIBUTES *lpSecurityAttributes,DWORD dwFlags,LPVOID lpScreenBufferData);
HANDLE CreateConsoleScreenBuffer(DWORD dwDesiredAccess, DWORD dwShareMode, SECURITY_ATTRIBUTES *lpSecurityAttributes, DWORD dwFlags, LPVOID lpScreenBufferData);
//C UINT GetConsoleCP(void);
UINT GetConsoleCP();
//C WINBOOL SetConsoleCP(UINT wCodePageID);
WINBOOL SetConsoleCP(UINT wCodePageID);
//C UINT GetConsoleOutputCP(void);
UINT GetConsoleOutputCP();
//C WINBOOL SetConsoleOutputCP(UINT wCodePageID);
WINBOOL SetConsoleOutputCP(UINT wCodePageID);
//C WINBOOL GetConsoleDisplayMode(LPDWORD lpModeFlags);
WINBOOL GetConsoleDisplayMode(LPDWORD lpModeFlags);
//C WINBOOL SetConsoleDisplayMode(HANDLE hConsoleOutput,DWORD dwFlags,PCOORD lpNewScreenBufferDimensions);
WINBOOL SetConsoleDisplayMode(HANDLE hConsoleOutput, DWORD dwFlags, PCOORD lpNewScreenBufferDimensions);
//C HWND GetConsoleWindow(void);
HWND GetConsoleWindow();
//C DWORD GetConsoleProcessList(LPDWORD lpdwProcessList,DWORD dwProcessCount);
DWORD GetConsoleProcessList(LPDWORD lpdwProcessList, DWORD dwProcessCount);
//C WINBOOL AddConsoleAliasA(LPSTR Source,LPSTR Target,LPSTR ExeName);
WINBOOL AddConsoleAliasA(LPSTR Source, LPSTR Target, LPSTR ExeName);
//C WINBOOL AddConsoleAliasW(LPWSTR Source,LPWSTR Target,LPWSTR ExeName);
WINBOOL AddConsoleAliasW(LPWSTR Source, LPWSTR Target, LPWSTR ExeName);
//C DWORD GetConsoleAliasA(LPSTR Source,LPSTR TargetBuffer,DWORD TargetBufferLength,LPSTR ExeName);
DWORD GetConsoleAliasA(LPSTR Source, LPSTR TargetBuffer, DWORD TargetBufferLength, LPSTR ExeName);
//C DWORD GetConsoleAliasW(LPWSTR Source,LPWSTR TargetBuffer,DWORD TargetBufferLength,LPWSTR ExeName);
DWORD GetConsoleAliasW(LPWSTR Source, LPWSTR TargetBuffer, DWORD TargetBufferLength, LPWSTR ExeName);
//C DWORD GetConsoleAliasesLengthA(LPSTR ExeName);
DWORD GetConsoleAliasesLengthA(LPSTR ExeName);
//C DWORD GetConsoleAliasesLengthW(LPWSTR ExeName);
DWORD GetConsoleAliasesLengthW(LPWSTR ExeName);
//C DWORD GetConsoleAliasExesLengthA(void);
DWORD GetConsoleAliasExesLengthA();
//C DWORD GetConsoleAliasExesLengthW(void);
DWORD GetConsoleAliasExesLengthW();
//C DWORD GetConsoleAliasesA(LPSTR AliasBuffer,DWORD AliasBufferLength,LPSTR ExeName);
DWORD GetConsoleAliasesA(LPSTR AliasBuffer, DWORD AliasBufferLength, LPSTR ExeName);
//C DWORD GetConsoleAliasesW(LPWSTR AliasBuffer,DWORD AliasBufferLength,LPWSTR ExeName);
DWORD GetConsoleAliasesW(LPWSTR AliasBuffer, DWORD AliasBufferLength, LPWSTR ExeName);
//C DWORD GetConsoleAliasExesA(LPSTR ExeNameBuffer,DWORD ExeNameBufferLength);
DWORD GetConsoleAliasExesA(LPSTR ExeNameBuffer, DWORD ExeNameBufferLength);
//C DWORD GetConsoleAliasExesW(LPWSTR ExeNameBuffer,DWORD ExeNameBufferLength);
DWORD GetConsoleAliasExesW(LPWSTR ExeNameBuffer, DWORD ExeNameBufferLength);
//C typedef struct _CONSOLE_FONT_INFOEX {
//C ULONG cbSize;
//C DWORD nFont;
//C COORD dwFontSize;
//C UINT FontFamily;
//C UINT FontWeight;
//C WCHAR FaceName[32];
//C } CONSOLE_FONT_INFOEX,*PCONSOLE_FONT_INFOEX;
struct _CONSOLE_FONT_INFOEX
{
ULONG cbSize;
DWORD nFont;
COORD dwFontSize;
UINT FontFamily;
UINT FontWeight;
WCHAR [32]FaceName;
}
alias _CONSOLE_FONT_INFOEX CONSOLE_FONT_INFOEX;
alias _CONSOLE_FONT_INFOEX *PCONSOLE_FONT_INFOEX;
//C typedef struct _CONSOLE_HISTORY_INFO {
//C UINT cbSize;
//C UINT HistoryBufferSize;
//C UINT NumberOfHistoryBuffers;
//C DWORD dwFlags;
//C } CONSOLE_HISTORY_INFO,*PCONSOLE_HISTORY_INFO;
struct _CONSOLE_HISTORY_INFO
{
UINT cbSize;
UINT HistoryBufferSize;
UINT NumberOfHistoryBuffers;
DWORD dwFlags;
}
alias _CONSOLE_HISTORY_INFO CONSOLE_HISTORY_INFO;
alias _CONSOLE_HISTORY_INFO *PCONSOLE_HISTORY_INFO;
//C typedef struct _CONSOLE_READCONSOLE_CONTROL {
//C ULONG nLength;
//C ULONG nInitialChars;
//C ULONG dwCtrlWakeupMask;
//C ULONG dwControlKeyState;
//C } CONSOLE_READCONSOLE_CONTROL,*PCONSOLE_READCONSOLE_CONTROL;
struct _CONSOLE_READCONSOLE_CONTROL
{
ULONG nLength;
ULONG nInitialChars;
ULONG dwCtrlWakeupMask;
ULONG dwControlKeyState;
}
alias _CONSOLE_READCONSOLE_CONTROL CONSOLE_READCONSOLE_CONTROL;
alias _CONSOLE_READCONSOLE_CONTROL *PCONSOLE_READCONSOLE_CONTROL;
//C typedef struct _CONSOLE_SCREEN_BUFFER_INFOEX {
//C ULONG cbSize;
//C COORD dwSize;
//C COORD dwCursorPosition;
//C WORD wAttributes;
//C SMALL_RECT srWindow;
//C COORD dwMaximumWindowSize;
//C WORD wPopupAttributes;
//C BOOL bFullscreenSupported;
//C COLORREF ColorTable[16];
//C } CONSOLE_SCREEN_BUFFER_INFOEX,*PCONSOLE_SCREEN_BUFFER_INFOEX;
struct _CONSOLE_SCREEN_BUFFER_INFOEX
{
ULONG cbSize;
COORD dwSize;
COORD dwCursorPosition;
WORD wAttributes;
SMALL_RECT srWindow;
COORD dwMaximumWindowSize;
WORD wPopupAttributes;
BOOL bFullscreenSupported;
COLORREF [16]ColorTable;
}
alias _CONSOLE_SCREEN_BUFFER_INFOEX CONSOLE_SCREEN_BUFFER_INFOEX;
alias _CONSOLE_SCREEN_BUFFER_INFOEX *PCONSOLE_SCREEN_BUFFER_INFOEX;
//C WINBOOL GetConsoleHistoryInfo(
//C PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo
//C );
WINBOOL GetConsoleHistoryInfo(PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo);
//C WINBOOL GetConsoleScreenBufferInfoEx(
//C HANDLE hConsoleOutput,
//C PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx
//C );
WINBOOL GetConsoleScreenBufferInfoEx(HANDLE hConsoleOutput, PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx);
//C WINBOOL GetCurrentConsoleFontEx(
//C HANDLE hConsoleOutput,
//C WINBOOL bMaximumWindow,
//C PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx
//C );
WINBOOL GetCurrentConsoleFontEx(HANDLE hConsoleOutput, WINBOOL bMaximumWindow, PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx);
//C WINBOOL SetConsoleHistoryInfo(
//C PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo
//C );
WINBOOL SetConsoleHistoryInfo(PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo);
//C WINBOOL SetConsoleScreenBufferInfoEx(
//C HANDLE hConsoleOutput,
//C PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx
//C );
WINBOOL SetConsoleScreenBufferInfoEx(HANDLE hConsoleOutput, PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx);
//C WINBOOL SetCurrentConsoleFontEx(
//C HANDLE hConsoleOutput,
//C WINBOOL bMaximumWindow,
//C PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx
//C );
WINBOOL SetCurrentConsoleFontEx(HANDLE hConsoleOutput, WINBOOL bMaximumWindow, PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx);
//C typedef struct tagVS_FIXEDFILEINFO
//C {
//C DWORD dwSignature;
//C DWORD dwStrucVersion;
//C DWORD dwFileVersionMS;
//C DWORD dwFileVersionLS;
//C DWORD dwProductVersionMS;
//C DWORD dwProductVersionLS;
//C DWORD dwFileFlagsMask;
//C DWORD dwFileFlags;
//C DWORD dwFileOS;
//C DWORD dwFileType;
//C DWORD dwFileSubtype;
//C DWORD dwFileDateMS;
//C DWORD dwFileDateLS;
//C } VS_FIXEDFILEINFO;
struct tagVS_FIXEDFILEINFO
{
DWORD dwSignature;
DWORD dwStrucVersion;
DWORD dwFileVersionMS;
DWORD dwFileVersionLS;
DWORD dwProductVersionMS;
DWORD dwProductVersionLS;
DWORD dwFileFlagsMask;
DWORD dwFileFlags;
DWORD dwFileOS;
DWORD dwFileType;
DWORD dwFileSubtype;
DWORD dwFileDateMS;
DWORD dwFileDateLS;
}
alias tagVS_FIXEDFILEINFO VS_FIXEDFILEINFO;
//C DWORD VerFindFileA(DWORD uFlags,LPSTR szFileName,LPSTR szWinDir,LPSTR szAppDir,LPSTR szCurDir,PUINT lpuCurDirLen,LPSTR szDestDir,PUINT lpuDestDirLen);
DWORD VerFindFileA(DWORD uFlags, LPSTR szFileName, LPSTR szWinDir, LPSTR szAppDir, LPSTR szCurDir, PUINT lpuCurDirLen, LPSTR szDestDir, PUINT lpuDestDirLen);
//C DWORD VerFindFileW(DWORD uFlags,LPWSTR szFileName,LPWSTR szWinDir,LPWSTR szAppDir,LPWSTR szCurDir,PUINT lpuCurDirLen,LPWSTR szDestDir,PUINT lpuDestDirLen);
DWORD VerFindFileW(DWORD uFlags, LPWSTR szFileName, LPWSTR szWinDir, LPWSTR szAppDir, LPWSTR szCurDir, PUINT lpuCurDirLen, LPWSTR szDestDir, PUINT lpuDestDirLen);
//C DWORD VerInstallFileA(DWORD uFlags,LPSTR szSrcFileName,LPSTR szDestFileName,LPSTR szSrcDir,LPSTR szDestDir,LPSTR szCurDir,LPSTR szTmpFile,PUINT lpuTmpFileLen);
DWORD VerInstallFileA(DWORD uFlags, LPSTR szSrcFileName, LPSTR szDestFileName, LPSTR szSrcDir, LPSTR szDestDir, LPSTR szCurDir, LPSTR szTmpFile, PUINT lpuTmpFileLen);
//C DWORD VerInstallFileW(DWORD uFlags,LPWSTR szSrcFileName,LPWSTR szDestFileName,LPWSTR szSrcDir,LPWSTR szDestDir,LPWSTR szCurDir,LPWSTR szTmpFile,PUINT lpuTmpFileLen);
DWORD VerInstallFileW(DWORD uFlags, LPWSTR szSrcFileName, LPWSTR szDestFileName, LPWSTR szSrcDir, LPWSTR szDestDir, LPWSTR szCurDir, LPWSTR szTmpFile, PUINT lpuTmpFileLen);
//C DWORD GetFileVersionInfoSizeA(LPCSTR lptstrFilename,LPDWORD lpdwHandle);
DWORD GetFileVersionInfoSizeA(LPCSTR lptstrFilename, LPDWORD lpdwHandle);
//C DWORD GetFileVersionInfoSizeW(LPCWSTR lptstrFilename,LPDWORD lpdwHandle);
DWORD GetFileVersionInfoSizeW(LPCWSTR lptstrFilename, LPDWORD lpdwHandle);
//C WINBOOL GetFileVersionInfoA(LPCSTR lptstrFilename,DWORD dwHandle,DWORD dwLen,LPVOID lpData);
WINBOOL GetFileVersionInfoA(LPCSTR lptstrFilename, DWORD dwHandle, DWORD dwLen, LPVOID lpData);
//C WINBOOL GetFileVersionInfoW(LPCWSTR lptstrFilename,DWORD dwHandle,DWORD dwLen,LPVOID lpData);
WINBOOL GetFileVersionInfoW(LPCWSTR lptstrFilename, DWORD dwHandle, DWORD dwLen, LPVOID lpData);
//C DWORD VerLanguageNameA(DWORD wLang,LPSTR szLang,DWORD nSize);
DWORD VerLanguageNameA(DWORD wLang, LPSTR szLang, DWORD nSize);
//C DWORD VerLanguageNameW(DWORD wLang,LPWSTR szLang,DWORD nSize);
DWORD VerLanguageNameW(DWORD wLang, LPWSTR szLang, DWORD nSize);
//C WINBOOL VerQueryValueA(const LPVOID pBlock,LPCSTR lpSubBlock,LPVOID *lplpBuffer,PUINT puLen);
WINBOOL VerQueryValueA(LPVOID pBlock, LPCSTR lpSubBlock, LPVOID *lplpBuffer, PUINT puLen);
//C WINBOOL VerQueryValueW(const LPVOID pBlock,LPCWSTR lpSubBlock,LPVOID *lplpBuffer,PUINT puLen);
WINBOOL VerQueryValueW(LPVOID pBlock, LPCWSTR lpSubBlock, LPVOID *lplpBuffer, PUINT puLen);
//C typedef ACCESS_MASK REGSAM;
alias ACCESS_MASK REGSAM;
//C typedef LONG LSTATUS;
alias LONG LSTATUS;
//C struct val_context {
//C int valuelen;
//C LPVOID value_context;
//C LPVOID val_buff_ptr;
//C };
struct val_context
{
int valuelen;
LPVOID value_context;
LPVOID val_buff_ptr;
}
//C typedef struct val_context *PVALCONTEXT;
alias val_context *PVALCONTEXT;
//C typedef struct pvalueA {
//C LPSTR pv_valuename;
//C int pv_valuelen;
//C LPVOID pv_value_context;
//C DWORD pv_type;
//C }PVALUEA,*PPVALUEA;
struct pvalueA
{
LPSTR pv_valuename;
int pv_valuelen;
LPVOID pv_value_context;
DWORD pv_type;
}
alias pvalueA PVALUEA;
alias pvalueA *PPVALUEA;
//C typedef struct pvalueW {
//C LPWSTR pv_valuename;
//C int pv_valuelen;
//C LPVOID pv_value_context;
//C DWORD pv_type;
//C }PVALUEW,*PPVALUEW;
struct pvalueW
{
LPWSTR pv_valuename;
int pv_valuelen;
LPVOID pv_value_context;
DWORD pv_type;
}
alias pvalueW PVALUEW;
alias pvalueW *PPVALUEW;
//C typedef PVALUEA PVALUE;
alias PVALUEA PVALUE;
//C typedef PPVALUEA PPVALUE;
alias PPVALUEA PPVALUE;
//C typedef DWORD QUERYHANDLER(LPVOID keycontext,PVALCONTEXT val_list,DWORD num_vals,LPVOID outputbuffer,DWORD *total_outlen,DWORD input_blen);
alias DWORD function(LPVOID keycontext, PVALCONTEXT val_list, DWORD num_vals, LPVOID outputbuffer, DWORD *total_outlen, DWORD input_blen)QUERYHANDLER;
//C typedef QUERYHANDLER *PQUERYHANDLER;
alias DWORD function(LPVOID keycontext, PVALCONTEXT val_list, DWORD num_vals, LPVOID outputbuffer, DWORD *total_outlen, DWORD input_blen)PQUERYHANDLER;
//C typedef struct provider_info {
//C PQUERYHANDLER pi_R0_1val;
//C PQUERYHANDLER pi_R0_allvals;
//C PQUERYHANDLER pi_R3_1val;
//C PQUERYHANDLER pi_R3_allvals;
//C DWORD pi_flags;
//C LPVOID pi_key_context;
//C } REG_PROVIDER;
struct provider_info
{
PQUERYHANDLER pi_R0_1val;
PQUERYHANDLER pi_R0_allvals;
PQUERYHANDLER pi_R3_1val;
PQUERYHANDLER pi_R3_allvals;
DWORD pi_flags;
LPVOID pi_key_context;
}
alias provider_info REG_PROVIDER;
//C typedef struct provider_info *PPROVIDER;
alias provider_info *PPROVIDER;
//C typedef struct value_entA {
//C LPSTR ve_valuename;
//C DWORD ve_valuelen;
//C DWORD_PTR ve_valueptr;
//C DWORD ve_type;
//C } VALENTA,*PVALENTA;
struct value_entA
{
LPSTR ve_valuename;
DWORD ve_valuelen;
DWORD_PTR ve_valueptr;
DWORD ve_type;
}
alias value_entA VALENTA;
alias value_entA *PVALENTA;
//C typedef struct value_entW {
//C LPWSTR ve_valuename;
//C DWORD ve_valuelen;
//C DWORD_PTR ve_valueptr;
//C DWORD ve_type;
//C } VALENTW,*PVALENTW;
struct value_entW
{
LPWSTR ve_valuename;
DWORD ve_valuelen;
DWORD_PTR ve_valueptr;
DWORD ve_type;
}
alias value_entW VALENTW;
alias value_entW *PVALENTW;
//C typedef VALENTA VALENT;
alias VALENTA VALENT;
//C typedef PVALENTA PVALENT;
alias PVALENTA PVALENT;
//C LONG RegCloseKey(HKEY hKey);
LONG RegCloseKey(HKEY hKey);
//C LONG RegOverridePredefKey(HKEY hKey,HKEY hNewHKey);
LONG RegOverridePredefKey(HKEY hKey, HKEY hNewHKey);
//C LONG RegOpenUserClassesRoot(HANDLE hToken,DWORD dwOptions,REGSAM samDesired,PHKEY phkResult);
LONG RegOpenUserClassesRoot(HANDLE hToken, DWORD dwOptions, REGSAM samDesired, PHKEY phkResult);
//C LONG RegOpenCurrentUser(REGSAM samDesired,PHKEY phkResult);
LONG RegOpenCurrentUser(REGSAM samDesired, PHKEY phkResult);
//C LONG RegDisablePredefinedCache();
LONG RegDisablePredefinedCache();
//C LONG RegConnectRegistryA(LPCSTR lpMachineName,HKEY hKey,PHKEY phkResult);
LONG RegConnectRegistryA(LPCSTR lpMachineName, HKEY hKey, PHKEY phkResult);
//C LONG RegConnectRegistryW(LPCWSTR lpMachineName,HKEY hKey,PHKEY phkResult);
LONG RegConnectRegistryW(LPCWSTR lpMachineName, HKEY hKey, PHKEY phkResult);
//C LONG RegConnectRegistryExA(LPCSTR lpMachineName,HKEY hKey,ULONG Flags,PHKEY phkResult);
LONG RegConnectRegistryExA(LPCSTR lpMachineName, HKEY hKey, ULONG Flags, PHKEY phkResult);
//C LONG RegConnectRegistryExW(LPCWSTR lpMachineName,HKEY hKey,ULONG Flags,PHKEY phkResult);
LONG RegConnectRegistryExW(LPCWSTR lpMachineName, HKEY hKey, ULONG Flags, PHKEY phkResult);
//C LONG RegCreateKeyA(HKEY hKey,LPCSTR lpSubKey,PHKEY phkResult);
LONG RegCreateKeyA(HKEY hKey, LPCSTR lpSubKey, PHKEY phkResult);
//C LONG RegCreateKeyW(HKEY hKey,LPCWSTR lpSubKey,PHKEY phkResult);
LONG RegCreateKeyW(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult);
//C LONG RegCreateKeyExA(HKEY hKey,LPCSTR lpSubKey,DWORD Reserved,LPSTR lpClass,DWORD dwOptions,REGSAM samDesired,LPSECURITY_ATTRIBUTES lpSecurityAttributes,PHKEY phkResult,LPDWORD lpdwDisposition);
LONG RegCreateKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD Reserved, LPSTR lpClass, DWORD dwOptions, REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition);
//C LONG RegCreateKeyExW(HKEY hKey,LPCWSTR lpSubKey,DWORD Reserved,LPWSTR lpClass,DWORD dwOptions,REGSAM samDesired,LPSECURITY_ATTRIBUTES lpSecurityAttributes,PHKEY phkResult,LPDWORD lpdwDisposition);
LONG RegCreateKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD Reserved, LPWSTR lpClass, DWORD dwOptions, REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition);
//C LONG RegDeleteKeyA(HKEY hKey,LPCSTR lpSubKey);
LONG RegDeleteKeyA(HKEY hKey, LPCSTR lpSubKey);
//C LONG RegDeleteKeyW(HKEY hKey,LPCWSTR lpSubKey);
LONG RegDeleteKeyW(HKEY hKey, LPCWSTR lpSubKey);
//C LONG RegDeleteKeyExA(HKEY hKey,LPCSTR lpSubKey,REGSAM samDesired,DWORD Reserved);
LONG RegDeleteKeyExA(HKEY hKey, LPCSTR lpSubKey, REGSAM samDesired, DWORD Reserved);
//C LONG RegDeleteKeyExW(HKEY hKey,LPCWSTR lpSubKey,REGSAM samDesired,DWORD Reserved);
LONG RegDeleteKeyExW(HKEY hKey, LPCWSTR lpSubKey, REGSAM samDesired, DWORD Reserved);
//C LONG RegDisableReflectionKey(HKEY hBase);
LONG RegDisableReflectionKey(HKEY hBase);
//C LONG RegEnableReflectionKey(HKEY hBase);
LONG RegEnableReflectionKey(HKEY hBase);
//C LONG RegQueryReflectionKey(HKEY hBase,WINBOOL *bIsReflectionDisabled);
LONG RegQueryReflectionKey(HKEY hBase, WINBOOL *bIsReflectionDisabled);
//C LONG RegDeleteValueA(HKEY hKey,LPCSTR lpValueName);
LONG RegDeleteValueA(HKEY hKey, LPCSTR lpValueName);
//C LONG RegDeleteValueW(HKEY hKey,LPCWSTR lpValueName);
LONG RegDeleteValueW(HKEY hKey, LPCWSTR lpValueName);
//C LONG RegEnumKeyA(HKEY hKey,DWORD dwIndex,LPSTR lpName,DWORD cchName);
LONG RegEnumKeyA(HKEY hKey, DWORD dwIndex, LPSTR lpName, DWORD cchName);
//C LONG RegEnumKeyW(HKEY hKey,DWORD dwIndex,LPWSTR lpName,DWORD cchName);
LONG RegEnumKeyW(HKEY hKey, DWORD dwIndex, LPWSTR lpName, DWORD cchName);
//C LONG RegEnumKeyExA(HKEY hKey,DWORD dwIndex,LPSTR lpName,LPDWORD lpcchName,LPDWORD lpReserved,LPSTR lpClass,LPDWORD lpcchClass,PFILETIME lpftLastWriteTime);
LONG RegEnumKeyExA(HKEY hKey, DWORD dwIndex, LPSTR lpName, LPDWORD lpcchName, LPDWORD lpReserved, LPSTR lpClass, LPDWORD lpcchClass, PFILETIME lpftLastWriteTime);
//C LONG RegEnumKeyExW(HKEY hKey,DWORD dwIndex,LPWSTR lpName,LPDWORD lpcchName,LPDWORD lpReserved,LPWSTR lpClass,LPDWORD lpcchClass,PFILETIME lpftLastWriteTime);
LONG RegEnumKeyExW(HKEY hKey, DWORD dwIndex, LPWSTR lpName, LPDWORD lpcchName, LPDWORD lpReserved, LPWSTR lpClass, LPDWORD lpcchClass, PFILETIME lpftLastWriteTime);
//C LONG RegEnumValueA(HKEY hKey,DWORD dwIndex,LPSTR lpValueName,LPDWORD lpcchValueName,LPDWORD lpReserved,LPDWORD lpType,LPBYTE lpData,LPDWORD lpcbData);
LONG RegEnumValueA(HKEY hKey, DWORD dwIndex, LPSTR lpValueName, LPDWORD lpcchValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData);
//C LONG RegEnumValueW(HKEY hKey,DWORD dwIndex,LPWSTR lpValueName,LPDWORD lpcchValueName,LPDWORD lpReserved,LPDWORD lpType,LPBYTE lpData,LPDWORD lpcbData);
LONG RegEnumValueW(HKEY hKey, DWORD dwIndex, LPWSTR lpValueName, LPDWORD lpcchValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData);
//C LONG RegFlushKey(HKEY hKey);
LONG RegFlushKey(HKEY hKey);
//C LONG RegGetKeySecurity(HKEY hKey,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor,LPDWORD lpcbSecurityDescriptor);
LONG RegGetKeySecurity(HKEY hKey, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor, LPDWORD lpcbSecurityDescriptor);
//C LONG RegLoadKeyA(HKEY hKey,LPCSTR lpSubKey,LPCSTR lpFile);
LONG RegLoadKeyA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpFile);
//C LONG RegLoadKeyW(HKEY hKey,LPCWSTR lpSubKey,LPCWSTR lpFile);
LONG RegLoadKeyW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpFile);
//C LONG RegNotifyChangeKeyValue(HKEY hKey,WINBOOL bWatchSubtree,DWORD dwNotifyFilter,HANDLE hEvent,WINBOOL fAsynchronous);
LONG RegNotifyChangeKeyValue(HKEY hKey, WINBOOL bWatchSubtree, DWORD dwNotifyFilter, HANDLE hEvent, WINBOOL fAsynchronous);
//C LONG RegOpenKeyA(HKEY hKey,LPCSTR lpSubKey,PHKEY phkResult);
LONG RegOpenKeyA(HKEY hKey, LPCSTR lpSubKey, PHKEY phkResult);
//C LONG RegOpenKeyW(HKEY hKey,LPCWSTR lpSubKey,PHKEY phkResult);
LONG RegOpenKeyW(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult);
//C LONG RegOpenKeyExA(HKEY hKey,LPCSTR lpSubKey,DWORD ulOptions,REGSAM samDesired,PHKEY phkResult);
LONG RegOpenKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult);
//C LONG RegOpenKeyExW(HKEY hKey,LPCWSTR lpSubKey,DWORD ulOptions,REGSAM samDesired,PHKEY phkResult);
LONG RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult);
//C LONG RegQueryInfoKeyA(HKEY hKey,LPSTR lpClass,LPDWORD lpcchClass,LPDWORD lpReserved,LPDWORD lpcSubKeys,LPDWORD lpcbMaxSubKeyLen,LPDWORD lpcbMaxClassLen,LPDWORD lpcValues,LPDWORD lpcbMaxValueNameLen,LPDWORD lpcbMaxValueLen,LPDWORD lpcbSecurityDescriptor,PFILETIME lpftLastWriteTime);
LONG RegQueryInfoKeyA(HKEY hKey, LPSTR lpClass, LPDWORD lpcchClass, LPDWORD lpReserved, LPDWORD lpcSubKeys, LPDWORD lpcbMaxSubKeyLen, LPDWORD lpcbMaxClassLen, LPDWORD lpcValues, LPDWORD lpcbMaxValueNameLen, LPDWORD lpcbMaxValueLen, LPDWORD lpcbSecurityDescriptor, PFILETIME lpftLastWriteTime);
//C LONG RegQueryInfoKeyW(HKEY hKey,LPWSTR lpClass,LPDWORD lpcchClass,LPDWORD lpReserved,LPDWORD lpcSubKeys,LPDWORD lpcbMaxSubKeyLen,LPDWORD lpcbMaxClassLen,LPDWORD lpcValues,LPDWORD lpcbMaxValueNameLen,LPDWORD lpcbMaxValueLen,LPDWORD lpcbSecurityDescriptor,PFILETIME lpftLastWriteTime);
LONG RegQueryInfoKeyW(HKEY hKey, LPWSTR lpClass, LPDWORD lpcchClass, LPDWORD lpReserved, LPDWORD lpcSubKeys, LPDWORD lpcbMaxSubKeyLen, LPDWORD lpcbMaxClassLen, LPDWORD lpcValues, LPDWORD lpcbMaxValueNameLen, LPDWORD lpcbMaxValueLen, LPDWORD lpcbSecurityDescriptor, PFILETIME lpftLastWriteTime);
//C LONG RegQueryValueA(HKEY hKey,LPCSTR lpSubKey,LPSTR lpData,PLONG lpcbData);
LONG RegQueryValueA(HKEY hKey, LPCSTR lpSubKey, LPSTR lpData, PLONG lpcbData);
//C LONG RegQueryValueW(HKEY hKey,LPCWSTR lpSubKey,LPWSTR lpData,PLONG lpcbData);
LONG RegQueryValueW(HKEY hKey, LPCWSTR lpSubKey, LPWSTR lpData, PLONG lpcbData);
//C LONG RegQueryMultipleValuesA(HKEY hKey,PVALENTA val_list,DWORD num_vals,LPSTR lpValueBuf,LPDWORD ldwTotsize);
LONG RegQueryMultipleValuesA(HKEY hKey, PVALENTA val_list, DWORD num_vals, LPSTR lpValueBuf, LPDWORD ldwTotsize);
//C LONG RegQueryMultipleValuesW(HKEY hKey,PVALENTW val_list,DWORD num_vals,LPWSTR lpValueBuf,LPDWORD ldwTotsize);
LONG RegQueryMultipleValuesW(HKEY hKey, PVALENTW val_list, DWORD num_vals, LPWSTR lpValueBuf, LPDWORD ldwTotsize);
//C LONG RegQueryValueExA(HKEY hKey,LPCSTR lpValueName,LPDWORD lpReserved,LPDWORD lpType,LPBYTE lpData,LPDWORD lpcbData);
LONG RegQueryValueExA(HKEY hKey, LPCSTR lpValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData);
//C LONG RegQueryValueExW(HKEY hKey,LPCWSTR lpValueName,LPDWORD lpReserved,LPDWORD lpType,LPBYTE lpData,LPDWORD lpcbData);
LONG RegQueryValueExW(HKEY hKey, LPCWSTR lpValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData);
//C LONG RegReplaceKeyA(HKEY hKey,LPCSTR lpSubKey,LPCSTR lpNewFile,LPCSTR lpOldFile);
LONG RegReplaceKeyA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpNewFile, LPCSTR lpOldFile);
//C LONG RegReplaceKeyW(HKEY hKey,LPCWSTR lpSubKey,LPCWSTR lpNewFile,LPCWSTR lpOldFile);
LONG RegReplaceKeyW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpNewFile, LPCWSTR lpOldFile);
//C LONG RegRestoreKeyA(HKEY hKey,LPCSTR lpFile,DWORD dwFlags);
LONG RegRestoreKeyA(HKEY hKey, LPCSTR lpFile, DWORD dwFlags);
//C LONG RegRestoreKeyW(HKEY hKey,LPCWSTR lpFile,DWORD dwFlags);
LONG RegRestoreKeyW(HKEY hKey, LPCWSTR lpFile, DWORD dwFlags);
//C LONG RegSaveKeyA(HKEY hKey,LPCSTR lpFile,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
LONG RegSaveKeyA(HKEY hKey, LPCSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C LONG RegSaveKeyW(HKEY hKey,LPCWSTR lpFile,LPSECURITY_ATTRIBUTES lpSecurityAttributes);
LONG RegSaveKeyW(HKEY hKey, LPCWSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C LONG RegSetKeySecurity(HKEY hKey,SECURITY_INFORMATION SecurityInformation,PSECURITY_DESCRIPTOR pSecurityDescriptor);
LONG RegSetKeySecurity(HKEY hKey, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor);
//C LONG RegSetValueA(HKEY hKey,LPCSTR lpSubKey,DWORD dwType,LPCSTR lpData,DWORD cbData);
LONG RegSetValueA(HKEY hKey, LPCSTR lpSubKey, DWORD dwType, LPCSTR lpData, DWORD cbData);
//C LONG RegSetValueW(HKEY hKey,LPCWSTR lpSubKey,DWORD dwType,LPCWSTR lpData,DWORD cbData);
LONG RegSetValueW(HKEY hKey, LPCWSTR lpSubKey, DWORD dwType, LPCWSTR lpData, DWORD cbData);
//C LONG RegSetValueExA(HKEY hKey,LPCSTR lpValueName,DWORD Reserved,DWORD dwType,const BYTE *lpData,DWORD cbData);
LONG RegSetValueExA(HKEY hKey, LPCSTR lpValueName, DWORD Reserved, DWORD dwType, BYTE *lpData, DWORD cbData);
//C LONG RegSetValueExW(HKEY hKey,LPCWSTR lpValueName,DWORD Reserved,DWORD dwType,const BYTE *lpData,DWORD cbData);
LONG RegSetValueExW(HKEY hKey, LPCWSTR lpValueName, DWORD Reserved, DWORD dwType, BYTE *lpData, DWORD cbData);
//C LONG RegUnLoadKeyA(HKEY hKey,LPCSTR lpSubKey);
LONG RegUnLoadKeyA(HKEY hKey, LPCSTR lpSubKey);
//C LONG RegUnLoadKeyW(HKEY hKey,LPCWSTR lpSubKey);
LONG RegUnLoadKeyW(HKEY hKey, LPCWSTR lpSubKey);
//C LONG RegGetValueA(HKEY hkey,LPCSTR lpSubKey,LPCSTR lpValue,DWORD dwFlags,LPDWORD pdwType,PVOID pvData,LPDWORD pcbData);
LONG RegGetValueA(HKEY hkey, LPCSTR lpSubKey, LPCSTR lpValue, DWORD dwFlags, LPDWORD pdwType, PVOID pvData, LPDWORD pcbData);
//C LONG RegGetValueW(HKEY hkey,LPCWSTR lpSubKey,LPCWSTR lpValue,DWORD dwFlags,LPDWORD pdwType,PVOID pvData,LPDWORD pcbData);
LONG RegGetValueW(HKEY hkey, LPCWSTR lpSubKey, LPCWSTR lpValue, DWORD dwFlags, LPDWORD pdwType, PVOID pvData, LPDWORD pcbData);
//C WINBOOL InitiateSystemShutdownA(LPSTR lpMachineName,LPSTR lpMessage,DWORD dwTimeout,WINBOOL bForceAppsClosed,WINBOOL bRebootAfterShutdown);
WINBOOL InitiateSystemShutdownA(LPSTR lpMachineName, LPSTR lpMessage, DWORD dwTimeout, WINBOOL bForceAppsClosed, WINBOOL bRebootAfterShutdown);
//C WINBOOL InitiateSystemShutdownW(LPWSTR lpMachineName,LPWSTR lpMessage,DWORD dwTimeout,WINBOOL bForceAppsClosed,WINBOOL bRebootAfterShutdown);
WINBOOL InitiateSystemShutdownW(LPWSTR lpMachineName, LPWSTR lpMessage, DWORD dwTimeout, WINBOOL bForceAppsClosed, WINBOOL bRebootAfterShutdown);
//C WINBOOL AbortSystemShutdownA(LPSTR lpMachineName);
WINBOOL AbortSystemShutdownA(LPSTR lpMachineName);
//C WINBOOL AbortSystemShutdownW(LPWSTR lpMachineName);
WINBOOL AbortSystemShutdownW(LPWSTR lpMachineName);
//C WINBOOL InitiateSystemShutdownExA(LPSTR lpMachineName,LPSTR lpMessage,DWORD dwTimeout,WINBOOL bForceAppsClosed,WINBOOL bRebootAfterShutdown,DWORD dwReason);
WINBOOL InitiateSystemShutdownExA(LPSTR lpMachineName, LPSTR lpMessage, DWORD dwTimeout, WINBOOL bForceAppsClosed, WINBOOL bRebootAfterShutdown, DWORD dwReason);
//C WINBOOL InitiateSystemShutdownExW(LPWSTR lpMachineName,LPWSTR lpMessage,DWORD dwTimeout,WINBOOL bForceAppsClosed,WINBOOL bRebootAfterShutdown,DWORD dwReason);
WINBOOL InitiateSystemShutdownExW(LPWSTR lpMachineName, LPWSTR lpMessage, DWORD dwTimeout, WINBOOL bForceAppsClosed, WINBOOL bRebootAfterShutdown, DWORD dwReason);
//C LONG RegSaveKeyExA(HKEY hKey,LPCSTR lpFile,LPSECURITY_ATTRIBUTES lpSecurityAttributes,DWORD Flags);
LONG RegSaveKeyExA(HKEY hKey, LPCSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD Flags);
//C LONG RegSaveKeyExW(HKEY hKey,LPCWSTR lpFile,LPSECURITY_ATTRIBUTES lpSecurityAttributes,DWORD Flags);
LONG RegSaveKeyExW(HKEY hKey, LPCWSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD Flags);
//C LONG Wow64Win32ApiEntry (DWORD dwFuncNumber,DWORD dwFlag,DWORD dwRes);
LONG Wow64Win32ApiEntry(DWORD dwFuncNumber, DWORD dwFlag, DWORD dwRes);
//C typedef struct _NETRESOURCEA {
//C DWORD dwScope;
//C DWORD dwType;
//C DWORD dwDisplayType;
//C DWORD dwUsage;
//C LPSTR lpLocalName;
//C LPSTR lpRemoteName;
//C LPSTR lpComment;
//C LPSTR lpProvider;
//C } NETRESOURCEA,*LPNETRESOURCEA;
struct _NETRESOURCEA
{
DWORD dwScope;
DWORD dwType;
DWORD dwDisplayType;
DWORD dwUsage;
LPSTR lpLocalName;
LPSTR lpRemoteName;
LPSTR lpComment;
LPSTR lpProvider;
}
alias _NETRESOURCEA NETRESOURCEA;
alias _NETRESOURCEA *LPNETRESOURCEA;
//C typedef struct _NETRESOURCEW {
//C DWORD dwScope;
//C DWORD dwType;
//C DWORD dwDisplayType;
//C DWORD dwUsage;
//C LPWSTR lpLocalName;
//C LPWSTR lpRemoteName;
//C LPWSTR lpComment;
//C LPWSTR lpProvider;
//C } NETRESOURCEW,*LPNETRESOURCEW;
struct _NETRESOURCEW
{
DWORD dwScope;
DWORD dwType;
DWORD dwDisplayType;
DWORD dwUsage;
LPWSTR lpLocalName;
LPWSTR lpRemoteName;
LPWSTR lpComment;
LPWSTR lpProvider;
}
alias _NETRESOURCEW NETRESOURCEW;
alias _NETRESOURCEW *LPNETRESOURCEW;
//C typedef NETRESOURCEA NETRESOURCE;
alias NETRESOURCEA NETRESOURCE;
//C typedef LPNETRESOURCEA LPNETRESOURCE;
alias LPNETRESOURCEA LPNETRESOURCE;
//C DWORD WNetAddConnectionA(LPCSTR lpRemoteName,LPCSTR lpPassword,LPCSTR lpLocalName);
DWORD WNetAddConnectionA(LPCSTR lpRemoteName, LPCSTR lpPassword, LPCSTR lpLocalName);
//C DWORD WNetAddConnectionW(LPCWSTR lpRemoteName,LPCWSTR lpPassword,LPCWSTR lpLocalName);
DWORD WNetAddConnectionW(LPCWSTR lpRemoteName, LPCWSTR lpPassword, LPCWSTR lpLocalName);
//C DWORD WNetAddConnection2A(LPNETRESOURCEA lpNetResource,LPCSTR lpPassword,LPCSTR lpUserName,DWORD dwFlags);
DWORD WNetAddConnection2A(LPNETRESOURCEA lpNetResource, LPCSTR lpPassword, LPCSTR lpUserName, DWORD dwFlags);
//C DWORD WNetAddConnection2W(LPNETRESOURCEW lpNetResource,LPCWSTR lpPassword,LPCWSTR lpUserName,DWORD dwFlags);
DWORD WNetAddConnection2W(LPNETRESOURCEW lpNetResource, LPCWSTR lpPassword, LPCWSTR lpUserName, DWORD dwFlags);
//C DWORD WNetAddConnection3A(HWND hwndOwner,LPNETRESOURCEA lpNetResource,LPCSTR lpPassword,LPCSTR lpUserName,DWORD dwFlags);
DWORD WNetAddConnection3A(HWND hwndOwner, LPNETRESOURCEA lpNetResource, LPCSTR lpPassword, LPCSTR lpUserName, DWORD dwFlags);
//C DWORD WNetAddConnection3W(HWND hwndOwner,LPNETRESOURCEW lpNetResource,LPCWSTR lpPassword,LPCWSTR lpUserName,DWORD dwFlags);
DWORD WNetAddConnection3W(HWND hwndOwner, LPNETRESOURCEW lpNetResource, LPCWSTR lpPassword, LPCWSTR lpUserName, DWORD dwFlags);
//C DWORD WNetCancelConnectionA(LPCSTR lpName,WINBOOL fForce);
DWORD WNetCancelConnectionA(LPCSTR lpName, WINBOOL fForce);
//C DWORD WNetCancelConnectionW(LPCWSTR lpName,WINBOOL fForce);
DWORD WNetCancelConnectionW(LPCWSTR lpName, WINBOOL fForce);
//C DWORD WNetCancelConnection2A(LPCSTR lpName,DWORD dwFlags,WINBOOL fForce);
DWORD WNetCancelConnection2A(LPCSTR lpName, DWORD dwFlags, WINBOOL fForce);
//C DWORD WNetCancelConnection2W(LPCWSTR lpName,DWORD dwFlags,WINBOOL fForce);
DWORD WNetCancelConnection2W(LPCWSTR lpName, DWORD dwFlags, WINBOOL fForce);
//C DWORD WNetGetConnectionA(LPCSTR lpLocalName,LPSTR lpRemoteName,LPDWORD lpnLength);
DWORD WNetGetConnectionA(LPCSTR lpLocalName, LPSTR lpRemoteName, LPDWORD lpnLength);
//C DWORD WNetGetConnectionW(LPCWSTR lpLocalName,LPWSTR lpRemoteName,LPDWORD lpnLength);
DWORD WNetGetConnectionW(LPCWSTR lpLocalName, LPWSTR lpRemoteName, LPDWORD lpnLength);
//C DWORD WNetRestoreConnectionA(HWND hwndParent,LPCSTR lpDevice);
DWORD WNetRestoreConnectionA(HWND hwndParent, LPCSTR lpDevice);
//C DWORD WNetRestoreConnectionW(HWND hwndParent,LPCWSTR lpDevice);
DWORD WNetRestoreConnectionW(HWND hwndParent, LPCWSTR lpDevice);
//C DWORD WNetUseConnectionA(HWND hwndOwner,LPNETRESOURCEA lpNetResource,LPCSTR lpPassword,LPCSTR lpUserID,DWORD dwFlags,LPSTR lpAccessName,LPDWORD lpBufferSize,LPDWORD lpResult);
DWORD WNetUseConnectionA(HWND hwndOwner, LPNETRESOURCEA lpNetResource, LPCSTR lpPassword, LPCSTR lpUserID, DWORD dwFlags, LPSTR lpAccessName, LPDWORD lpBufferSize, LPDWORD lpResult);
//C DWORD WNetUseConnectionW(HWND hwndOwner,LPNETRESOURCEW lpNetResource,LPCWSTR lpPassword,LPCWSTR lpUserID,DWORD dwFlags,LPWSTR lpAccessName,LPDWORD lpBufferSize,LPDWORD lpResult);
DWORD WNetUseConnectionW(HWND hwndOwner, LPNETRESOURCEW lpNetResource, LPCWSTR lpPassword, LPCWSTR lpUserID, DWORD dwFlags, LPWSTR lpAccessName, LPDWORD lpBufferSize, LPDWORD lpResult);
//C DWORD WNetConnectionDialog(HWND hwnd,DWORD dwType);
DWORD WNetConnectionDialog(HWND hwnd, DWORD dwType);
//C DWORD WNetDisconnectDialog(HWND hwnd,DWORD dwType);
DWORD WNetDisconnectDialog(HWND hwnd, DWORD dwType);
//C typedef struct _CONNECTDLGSTRUCTA {
//C DWORD cbStructure;
//C HWND hwndOwner;
//C LPNETRESOURCEA lpConnRes;
//C DWORD dwFlags;
//C DWORD dwDevNum;
//C } CONNECTDLGSTRUCTA,*LPCONNECTDLGSTRUCTA;
struct _CONNECTDLGSTRUCTA
{
DWORD cbStructure;
HWND hwndOwner;
LPNETRESOURCEA lpConnRes;
DWORD dwFlags;
DWORD dwDevNum;
}
alias _CONNECTDLGSTRUCTA CONNECTDLGSTRUCTA;
alias _CONNECTDLGSTRUCTA *LPCONNECTDLGSTRUCTA;
//C typedef struct _CONNECTDLGSTRUCTW {
//C DWORD cbStructure;
//C HWND hwndOwner;
//C LPNETRESOURCEW lpConnRes;
//C DWORD dwFlags;
//C DWORD dwDevNum;
//C } CONNECTDLGSTRUCTW,*LPCONNECTDLGSTRUCTW;
struct _CONNECTDLGSTRUCTW
{
DWORD cbStructure;
HWND hwndOwner;
LPNETRESOURCEW lpConnRes;
DWORD dwFlags;
DWORD dwDevNum;
}
alias _CONNECTDLGSTRUCTW CONNECTDLGSTRUCTW;
alias _CONNECTDLGSTRUCTW *LPCONNECTDLGSTRUCTW;
//C typedef CONNECTDLGSTRUCTA CONNECTDLGSTRUCT;
alias CONNECTDLGSTRUCTA CONNECTDLGSTRUCT;
//C typedef LPCONNECTDLGSTRUCTA LPCONNECTDLGSTRUCT;
alias LPCONNECTDLGSTRUCTA LPCONNECTDLGSTRUCT;
//C DWORD WNetConnectionDialog1A(LPCONNECTDLGSTRUCTA lpConnDlgStruct);
DWORD WNetConnectionDialog1A(LPCONNECTDLGSTRUCTA lpConnDlgStruct);
//C DWORD WNetConnectionDialog1W(LPCONNECTDLGSTRUCTW lpConnDlgStruct);
DWORD WNetConnectionDialog1W(LPCONNECTDLGSTRUCTW lpConnDlgStruct);
//C typedef struct _DISCDLGSTRUCTA {
//C DWORD cbStructure;
//C HWND hwndOwner;
//C LPSTR lpLocalName;
//C LPSTR lpRemoteName;
//C DWORD dwFlags;
//C } DISCDLGSTRUCTA,*LPDISCDLGSTRUCTA;
struct _DISCDLGSTRUCTA
{
DWORD cbStructure;
HWND hwndOwner;
LPSTR lpLocalName;
LPSTR lpRemoteName;
DWORD dwFlags;
}
alias _DISCDLGSTRUCTA DISCDLGSTRUCTA;
alias _DISCDLGSTRUCTA *LPDISCDLGSTRUCTA;
//C typedef struct _DISCDLGSTRUCTW {
//C DWORD cbStructure;
//C HWND hwndOwner;
//C LPWSTR lpLocalName;
//C LPWSTR lpRemoteName;
//C DWORD dwFlags;
//C } DISCDLGSTRUCTW,*LPDISCDLGSTRUCTW;
struct _DISCDLGSTRUCTW
{
DWORD cbStructure;
HWND hwndOwner;
LPWSTR lpLocalName;
LPWSTR lpRemoteName;
DWORD dwFlags;
}
alias _DISCDLGSTRUCTW DISCDLGSTRUCTW;
alias _DISCDLGSTRUCTW *LPDISCDLGSTRUCTW;
//C typedef DISCDLGSTRUCTA DISCDLGSTRUCT;
alias DISCDLGSTRUCTA DISCDLGSTRUCT;
//C typedef LPDISCDLGSTRUCTA LPDISCDLGSTRUCT;
alias LPDISCDLGSTRUCTA LPDISCDLGSTRUCT;
//C DWORD WNetDisconnectDialog1A(LPDISCDLGSTRUCTA lpConnDlgStruct);
DWORD WNetDisconnectDialog1A(LPDISCDLGSTRUCTA lpConnDlgStruct);
//C DWORD WNetDisconnectDialog1W(LPDISCDLGSTRUCTW lpConnDlgStruct);
DWORD WNetDisconnectDialog1W(LPDISCDLGSTRUCTW lpConnDlgStruct);
//C DWORD WNetOpenEnumA(DWORD dwScope,DWORD dwType,DWORD dwUsage,LPNETRESOURCEA lpNetResource,LPHANDLE lphEnum);
DWORD WNetOpenEnumA(DWORD dwScope, DWORD dwType, DWORD dwUsage, LPNETRESOURCEA lpNetResource, LPHANDLE lphEnum);
//C DWORD WNetOpenEnumW(DWORD dwScope,DWORD dwType,DWORD dwUsage,LPNETRESOURCEW lpNetResource,LPHANDLE lphEnum);
DWORD WNetOpenEnumW(DWORD dwScope, DWORD dwType, DWORD dwUsage, LPNETRESOURCEW lpNetResource, LPHANDLE lphEnum);
//C DWORD WNetEnumResourceA(HANDLE hEnum,LPDWORD lpcCount,LPVOID lpBuffer,LPDWORD lpBufferSize);
DWORD WNetEnumResourceA(HANDLE hEnum, LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize);
//C DWORD WNetEnumResourceW(HANDLE hEnum,LPDWORD lpcCount,LPVOID lpBuffer,LPDWORD lpBufferSize);
DWORD WNetEnumResourceW(HANDLE hEnum, LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize);
//C DWORD WNetCloseEnum(HANDLE hEnum);
DWORD WNetCloseEnum(HANDLE hEnum);
//C DWORD WNetGetResourceParentA(LPNETRESOURCEA lpNetResource,LPVOID lpBuffer,LPDWORD lpcbBuffer);
DWORD WNetGetResourceParentA(LPNETRESOURCEA lpNetResource, LPVOID lpBuffer, LPDWORD lpcbBuffer);
//C DWORD WNetGetResourceParentW(LPNETRESOURCEW lpNetResource,LPVOID lpBuffer,LPDWORD lpcbBuffer);
DWORD WNetGetResourceParentW(LPNETRESOURCEW lpNetResource, LPVOID lpBuffer, LPDWORD lpcbBuffer);
//C DWORD WNetGetResourceInformationA(LPNETRESOURCEA lpNetResource,LPVOID lpBuffer,LPDWORD lpcbBuffer,LPSTR *lplpSystem);
DWORD WNetGetResourceInformationA(LPNETRESOURCEA lpNetResource, LPVOID lpBuffer, LPDWORD lpcbBuffer, LPSTR *lplpSystem);
//C DWORD WNetGetResourceInformationW(LPNETRESOURCEW lpNetResource,LPVOID lpBuffer,LPDWORD lpcbBuffer,LPWSTR *lplpSystem);
DWORD WNetGetResourceInformationW(LPNETRESOURCEW lpNetResource, LPVOID lpBuffer, LPDWORD lpcbBuffer, LPWSTR *lplpSystem);
//C typedef struct _UNIVERSAL_NAME_INFOA {
//C LPSTR lpUniversalName;
//C } UNIVERSAL_NAME_INFOA,*LPUNIVERSAL_NAME_INFOA;
struct _UNIVERSAL_NAME_INFOA
{
LPSTR lpUniversalName;
}
alias _UNIVERSAL_NAME_INFOA UNIVERSAL_NAME_INFOA;
alias _UNIVERSAL_NAME_INFOA *LPUNIVERSAL_NAME_INFOA;
//C typedef struct _UNIVERSAL_NAME_INFOW {
//C LPWSTR lpUniversalName;
//C } UNIVERSAL_NAME_INFOW,*LPUNIVERSAL_NAME_INFOW;
struct _UNIVERSAL_NAME_INFOW
{
LPWSTR lpUniversalName;
}
alias _UNIVERSAL_NAME_INFOW UNIVERSAL_NAME_INFOW;
alias _UNIVERSAL_NAME_INFOW *LPUNIVERSAL_NAME_INFOW;
//C typedef UNIVERSAL_NAME_INFOA UNIVERSAL_NAME_INFO;
alias UNIVERSAL_NAME_INFOA UNIVERSAL_NAME_INFO;
//C typedef LPUNIVERSAL_NAME_INFOA LPUNIVERSAL_NAME_INFO;
alias LPUNIVERSAL_NAME_INFOA LPUNIVERSAL_NAME_INFO;
//C typedef struct _REMOTE_NAME_INFOA {
//C LPSTR lpUniversalName;
//C LPSTR lpConnectionName;
//C LPSTR lpRemainingPath;
//C } REMOTE_NAME_INFOA,*LPREMOTE_NAME_INFOA;
struct _REMOTE_NAME_INFOA
{
LPSTR lpUniversalName;
LPSTR lpConnectionName;
LPSTR lpRemainingPath;
}
alias _REMOTE_NAME_INFOA REMOTE_NAME_INFOA;
alias _REMOTE_NAME_INFOA *LPREMOTE_NAME_INFOA;
//C typedef struct _REMOTE_NAME_INFOW {
//C LPWSTR lpUniversalName;
//C LPWSTR lpConnectionName;
//C LPWSTR lpRemainingPath;
//C } REMOTE_NAME_INFOW,*LPREMOTE_NAME_INFOW;
struct _REMOTE_NAME_INFOW
{
LPWSTR lpUniversalName;
LPWSTR lpConnectionName;
LPWSTR lpRemainingPath;
}
alias _REMOTE_NAME_INFOW REMOTE_NAME_INFOW;
alias _REMOTE_NAME_INFOW *LPREMOTE_NAME_INFOW;
//C typedef REMOTE_NAME_INFOA REMOTE_NAME_INFO;
alias REMOTE_NAME_INFOA REMOTE_NAME_INFO;
//C typedef LPREMOTE_NAME_INFOA LPREMOTE_NAME_INFO;
alias LPREMOTE_NAME_INFOA LPREMOTE_NAME_INFO;
//C DWORD WNetGetUniversalNameA(LPCSTR lpLocalPath,DWORD dwInfoLevel,LPVOID lpBuffer,LPDWORD lpBufferSize);
DWORD WNetGetUniversalNameA(LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVOID lpBuffer, LPDWORD lpBufferSize);
//C DWORD WNetGetUniversalNameW(LPCWSTR lpLocalPath,DWORD dwInfoLevel,LPVOID lpBuffer,LPDWORD lpBufferSize);
DWORD WNetGetUniversalNameW(LPCWSTR lpLocalPath, DWORD dwInfoLevel, LPVOID lpBuffer, LPDWORD lpBufferSize);
//C DWORD WNetGetUserA(LPCSTR lpName,LPSTR lpUserName,LPDWORD lpnLength);
DWORD WNetGetUserA(LPCSTR lpName, LPSTR lpUserName, LPDWORD lpnLength);
//C DWORD WNetGetUserW(LPCWSTR lpName,LPWSTR lpUserName,LPDWORD lpnLength);
DWORD WNetGetUserW(LPCWSTR lpName, LPWSTR lpUserName, LPDWORD lpnLength);
//C DWORD WNetGetProviderNameA(DWORD dwNetType,LPSTR lpProviderName,LPDWORD lpBufferSize);
DWORD WNetGetProviderNameA(DWORD dwNetType, LPSTR lpProviderName, LPDWORD lpBufferSize);
//C DWORD WNetGetProviderNameW(DWORD dwNetType,LPWSTR lpProviderName,LPDWORD lpBufferSize);
DWORD WNetGetProviderNameW(DWORD dwNetType, LPWSTR lpProviderName, LPDWORD lpBufferSize);
//C typedef struct _NETINFOSTRUCT {
//C DWORD cbStructure;
//C DWORD dwProviderVersion;
//C DWORD dwStatus;
//C DWORD dwCharacteristics;
//C ULONG_PTR dwHandle;
//C WORD wNetType;
//C DWORD dwPrinters;
//C DWORD dwDrives;
//C } NETINFOSTRUCT,*LPNETINFOSTRUCT;
struct _NETINFOSTRUCT
{
DWORD cbStructure;
DWORD dwProviderVersion;
DWORD dwStatus;
DWORD dwCharacteristics;
ULONG_PTR dwHandle;
WORD wNetType;
DWORD dwPrinters;
DWORD dwDrives;
}
alias _NETINFOSTRUCT NETINFOSTRUCT;
alias _NETINFOSTRUCT *LPNETINFOSTRUCT;
//C DWORD WNetGetNetworkInformationA(LPCSTR lpProvider,LPNETINFOSTRUCT lpNetInfoStruct);
DWORD WNetGetNetworkInformationA(LPCSTR lpProvider, LPNETINFOSTRUCT lpNetInfoStruct);
//C DWORD WNetGetNetworkInformationW(LPCWSTR lpProvider,LPNETINFOSTRUCT lpNetInfoStruct);
DWORD WNetGetNetworkInformationW(LPCWSTR lpProvider, LPNETINFOSTRUCT lpNetInfoStruct);
//C typedef UINT ( *PFNGETPROFILEPATHA) (LPCSTR pszUsername,LPSTR pszBuffer,UINT cbBuffer);
alias UINT function(LPCSTR pszUsername, LPSTR pszBuffer, UINT cbBuffer)PFNGETPROFILEPATHA;
//C typedef UINT ( *PFNGETPROFILEPATHW) (LPCWSTR pszUsername,LPWSTR pszBuffer,UINT cbBuffer);
alias UINT function(LPCWSTR pszUsername, LPWSTR pszBuffer, UINT cbBuffer)PFNGETPROFILEPATHW;
//C typedef UINT ( *PFNRECONCILEPROFILEA) (LPCSTR pszCentralFile,LPCSTR pszLocalFile,DWORD dwFlags);
alias UINT function(LPCSTR pszCentralFile, LPCSTR pszLocalFile, DWORD dwFlags)PFNRECONCILEPROFILEA;
//C typedef UINT ( *PFNRECONCILEPROFILEW) (LPCWSTR pszCentralFile,LPCWSTR pszLocalFile,DWORD dwFlags);
alias UINT function(LPCWSTR pszCentralFile, LPCWSTR pszLocalFile, DWORD dwFlags)PFNRECONCILEPROFILEW;
//C typedef WINBOOL ( *PFNPROCESSPOLICIESA) (HWND hwnd,LPCSTR pszPath,LPCSTR pszUsername,LPCSTR pszComputerName,DWORD dwFlags);
alias WINBOOL function(HWND hwnd, LPCSTR pszPath, LPCSTR pszUsername, LPCSTR pszComputerName, DWORD dwFlags)PFNPROCESSPOLICIESA;
//C typedef WINBOOL ( *PFNPROCESSPOLICIESW) (HWND hwnd,LPCWSTR pszPath,LPCWSTR pszUsername,LPCWSTR pszComputerName,DWORD dwFlags);
alias WINBOOL function(HWND hwnd, LPCWSTR pszPath, LPCWSTR pszUsername, LPCWSTR pszComputerName, DWORD dwFlags)PFNPROCESSPOLICIESW;
//C DWORD WNetGetLastErrorA(LPDWORD lpError,LPSTR lpErrorBuf,DWORD nErrorBufSize,LPSTR lpNameBuf,DWORD nNameBufSize);
DWORD WNetGetLastErrorA(LPDWORD lpError, LPSTR lpErrorBuf, DWORD nErrorBufSize, LPSTR lpNameBuf, DWORD nNameBufSize);
//C DWORD WNetGetLastErrorW(LPDWORD lpError,LPWSTR lpErrorBuf,DWORD nErrorBufSize,LPWSTR lpNameBuf,DWORD nNameBufSize);
DWORD WNetGetLastErrorW(LPDWORD lpError, LPWSTR lpErrorBuf, DWORD nErrorBufSize, LPWSTR lpNameBuf, DWORD nNameBufSize);
//C typedef struct _NETCONNECTINFOSTRUCT {
//C DWORD cbStructure;
//C DWORD dwFlags;
//C DWORD dwSpeed;
//C DWORD dwDelay;
//C DWORD dwOptDataSize;
//C } NETCONNECTINFOSTRUCT,*LPNETCONNECTINFOSTRUCT;
struct _NETCONNECTINFOSTRUCT
{
DWORD cbStructure;
DWORD dwFlags;
DWORD dwSpeed;
DWORD dwDelay;
DWORD dwOptDataSize;
}
alias _NETCONNECTINFOSTRUCT NETCONNECTINFOSTRUCT;
alias _NETCONNECTINFOSTRUCT *LPNETCONNECTINFOSTRUCT;
//C DWORD MultinetGetConnectionPerformanceA(LPNETRESOURCEA lpNetResource,LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct);
DWORD MultinetGetConnectionPerformanceA(LPNETRESOURCEA lpNetResource, LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct);
//C DWORD MultinetGetConnectionPerformanceW(LPNETRESOURCEW lpNetResource,LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct);
DWORD MultinetGetConnectionPerformanceW(LPNETRESOURCEW lpNetResource, LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct);
//C typedef struct {
//C unsigned short bAppReturnCode:8,reserved:6,fBusy:1,fAck:1;
//C } DDEACK;
struct _N88
{
ushort __bitfield1;
ushort bAppReturnCode() { return (__bitfield1 >> 0) & 0xff; }
ushort reserved() { return (__bitfield1 >> 8) & 0x3f; }
ushort fBusy() { return (__bitfield1 >> 14) & 0x1; }
ushort fAck() { return (__bitfield1 >> 15) & 0x1; }
}
alias _N88 DDEACK;
//C typedef struct {
//C unsigned short reserved:14,fDeferUpd:1,fAckReq:1;
//C short cfFormat;
//C } DDEADVISE;
struct _N89
{
ushort __bitfield1;
ushort reserved() { return (__bitfield1 >> 0) & 0x3fff; }
ushort fDeferUpd() { return (__bitfield1 >> 14) & 0x1; }
ushort fAckReq() { return (__bitfield1 >> 15) & 0x1; }
short cfFormat;
}
alias _N89 DDEADVISE;
//C typedef struct {
//C unsigned short unused:12,fResponse:1,fRelease:1,reserved:1,fAckReq:1;
//C short cfFormat;
//C BYTE Value[1];
//C } DDEDATA;
struct _N90
{
ushort __bitfield1;
ushort unused() { return (__bitfield1 >> 0) & 0xfff; }
ushort fResponse() { return (__bitfield1 >> 12) & 0x1; }
ushort fRelease() { return (__bitfield1 >> 13) & 0x1; }
ushort reserved() { return (__bitfield1 >> 14) & 0x1; }
ushort fAckReq() { return (__bitfield1 >> 15) & 0x1; }
short cfFormat;
BYTE [1]Value;
}
alias _N90 DDEDATA;
//C typedef struct {
//C unsigned short unused:13,fRelease:1,fReserved:2;
//C short cfFormat;
//C BYTE Value[1];
//C } DDEPOKE;
struct _N91
{
ushort __bitfield1;
ushort unused() { return (__bitfield1 >> 0) & 0x1fff; }
ushort fRelease() { return (__bitfield1 >> 13) & 0x1; }
ushort fReserved() { return (__bitfield1 >> 14) & 0x3; }
short cfFormat;
BYTE [1]Value;
}
alias _N91 DDEPOKE;
//C typedef struct {
//C unsigned short unused:13,fRelease:1,fDeferUpd:1,fAckReq:1;
//C short cfFormat;
//C } DDELN;
struct _N92
{
ushort __bitfield1;
ushort unused() { return (__bitfield1 >> 0) & 0x1fff; }
ushort fRelease() { return (__bitfield1 >> 13) & 0x1; }
ushort fDeferUpd() { return (__bitfield1 >> 14) & 0x1; }
ushort fAckReq() { return (__bitfield1 >> 15) & 0x1; }
short cfFormat;
}
alias _N92 DDELN;
//C typedef struct {
//C unsigned short unused:12,fAck:1,fRelease:1,fReserved:1,fAckReq:1;
//C short cfFormat;
//C BYTE rgb[1];
//C } DDEUP;
struct _N93
{
ushort __bitfield1;
ushort unused() { return (__bitfield1 >> 0) & 0xfff; }
ushort fAck() { return (__bitfield1 >> 12) & 0x1; }
ushort fRelease() { return (__bitfield1 >> 13) & 0x1; }
ushort fReserved() { return (__bitfield1 >> 14) & 0x1; }
ushort fAckReq() { return (__bitfield1 >> 15) & 0x1; }
short cfFormat;
BYTE [1]rgb;
}
alias _N93 DDEUP;
//C WINBOOL DdeSetQualityOfService(HWND hwndClient,const SECURITY_QUALITY_OF_SERVICE *pqosNew,PSECURITY_QUALITY_OF_SERVICE pqosPrev);
WINBOOL DdeSetQualityOfService(HWND hwndClient, SECURITY_QUALITY_OF_SERVICE *pqosNew, PSECURITY_QUALITY_OF_SERVICE pqosPrev);
//C WINBOOL ImpersonateDdeClientWindow(HWND hWndClient,HWND hWndServer);
WINBOOL ImpersonateDdeClientWindow(HWND hWndClient, HWND hWndServer);
//C LPARAM PackDDElParam(UINT msg,UINT_PTR uiLo,UINT_PTR uiHi);
LPARAM PackDDElParam(UINT msg, UINT_PTR uiLo, UINT_PTR uiHi);
//C WINBOOL UnpackDDElParam(UINT msg,LPARAM lParam,PUINT_PTR puiLo,PUINT_PTR puiHi);
WINBOOL UnpackDDElParam(UINT msg, LPARAM lParam, PUINT_PTR puiLo, PUINT_PTR puiHi);
//C WINBOOL FreeDDElParam(UINT msg,LPARAM lParam);
WINBOOL FreeDDElParam(UINT msg, LPARAM lParam);
//C LPARAM ReuseDDElParam(LPARAM lParam,UINT msgIn,UINT msgOut,UINT_PTR uiLo,UINT_PTR uiHi);
LPARAM ReuseDDElParam(LPARAM lParam, UINT msgIn, UINT msgOut, UINT_PTR uiLo, UINT_PTR uiHi);
//C struct HCONVLIST__ { int unused; }; typedef struct HCONVLIST__ *HCONVLIST;
struct HCONVLIST__
{
int unused;
}
alias HCONVLIST__ *HCONVLIST;
//C struct HCONV__ { int unused; }; typedef struct HCONV__ *HCONV;
struct HCONV__
{
int unused;
}
alias HCONV__ *HCONV;
//C struct HSZ__ { int unused; }; typedef struct HSZ__ *HSZ;
struct HSZ__
{
int unused;
}
alias HSZ__ *HSZ;
//C struct HDDEDATA__ { int unused; }; typedef struct HDDEDATA__ *HDDEDATA;
struct HDDEDATA__
{
int unused;
}
alias HDDEDATA__ *HDDEDATA;
//C typedef struct tagHSZPAIR {
//C HSZ hszSvc;
//C HSZ hszTopic;
//C } HSZPAIR,*PHSZPAIR;
struct tagHSZPAIR
{
HSZ hszSvc;
HSZ hszTopic;
}
alias tagHSZPAIR HSZPAIR;
alias tagHSZPAIR *PHSZPAIR;
//C typedef struct tagCONVCONTEXT {
//C UINT cb;
//C UINT wFlags;
//C UINT wCountryID;
//C int iCodePage;
//C DWORD dwLangID;
//C DWORD dwSecurity;
//C SECURITY_QUALITY_OF_SERVICE qos;
//C } CONVCONTEXT,*PCONVCONTEXT;
struct tagCONVCONTEXT
{
UINT cb;
UINT wFlags;
UINT wCountryID;
int iCodePage;
DWORD dwLangID;
DWORD dwSecurity;
SECURITY_QUALITY_OF_SERVICE qos;
}
alias tagCONVCONTEXT CONVCONTEXT;
alias tagCONVCONTEXT *PCONVCONTEXT;
//C typedef struct tagCONVINFO {
//C DWORD cb;
//C DWORD_PTR hUser;
//C HCONV hConvPartner;
//C HSZ hszSvcPartner;
//C HSZ hszServiceReq;
//C HSZ hszTopic;
//C HSZ hszItem;
//C UINT wFmt;
//C UINT wType;
//C UINT wStatus;
//C UINT wConvst;
//C UINT wLastError;
//C HCONVLIST hConvList;
//C CONVCONTEXT ConvCtxt;
//C HWND hwnd;
//C HWND hwndPartner;
//C } CONVINFO,*PCONVINFO;
struct tagCONVINFO
{
DWORD cb;
DWORD_PTR hUser;
HCONV hConvPartner;
HSZ hszSvcPartner;
HSZ hszServiceReq;
HSZ hszTopic;
HSZ hszItem;
UINT wFmt;
UINT wType;
UINT wStatus;
UINT wConvst;
UINT wLastError;
HCONVLIST hConvList;
CONVCONTEXT ConvCtxt;
HWND hwnd;
HWND hwndPartner;
}
alias tagCONVINFO CONVINFO;
alias tagCONVINFO *PCONVINFO;
//C typedef HDDEDATA FNCALLBACK(UINT wType,UINT wFmt,HCONV hConv,HSZ hsz1,HSZ hsz2,HDDEDATA hData,ULONG_PTR dwData1,ULONG_PTR dwData2);
alias HDDEDATA function(UINT wType, UINT wFmt, HCONV hConv, HSZ hsz1, HSZ hsz2, HDDEDATA hData, ULONG_PTR dwData1, ULONG_PTR dwData2)FNCALLBACK;
//C typedef HDDEDATA ( *PFNCALLBACK)(UINT wType,UINT wFmt,HCONV hConv,HSZ hsz1,HSZ hsz2,HDDEDATA hData,ULONG_PTR dwData1,ULONG_PTR dwData2);
alias HDDEDATA function(UINT wType, UINT wFmt, HCONV hConv, HSZ hsz1, HSZ hsz2, HDDEDATA hData, ULONG_PTR dwData1, ULONG_PTR dwData2)PFNCALLBACK;
//C UINT DdeInitializeA(LPDWORD pidInst,PFNCALLBACK pfnCallback,DWORD afCmd,DWORD ulRes);
UINT DdeInitializeA(LPDWORD pidInst, PFNCALLBACK pfnCallback, DWORD afCmd, DWORD ulRes);
//C UINT DdeInitializeW(LPDWORD pidInst,PFNCALLBACK pfnCallback,DWORD afCmd,DWORD ulRes);
UINT DdeInitializeW(LPDWORD pidInst, PFNCALLBACK pfnCallback, DWORD afCmd, DWORD ulRes);
//C WINBOOL DdeUninitialize(DWORD idInst);
WINBOOL DdeUninitialize(DWORD idInst);
//C HCONVLIST DdeConnectList(DWORD idInst,HSZ hszService,HSZ hszTopic,HCONVLIST hConvList,PCONVCONTEXT pCC);
HCONVLIST DdeConnectList(DWORD idInst, HSZ hszService, HSZ hszTopic, HCONVLIST hConvList, PCONVCONTEXT pCC);
//C HCONV DdeQueryNextServer(HCONVLIST hConvList,HCONV hConvPrev);
HCONV DdeQueryNextServer(HCONVLIST hConvList, HCONV hConvPrev);
//C WINBOOL DdeDisconnectList(HCONVLIST hConvList);
WINBOOL DdeDisconnectList(HCONVLIST hConvList);
//C HCONV DdeConnect(DWORD idInst,HSZ hszService,HSZ hszTopic,PCONVCONTEXT pCC);
HCONV DdeConnect(DWORD idInst, HSZ hszService, HSZ hszTopic, PCONVCONTEXT pCC);
//C WINBOOL DdeDisconnect(HCONV hConv);
WINBOOL DdeDisconnect(HCONV hConv);
//C HCONV DdeReconnect(HCONV hConv);
HCONV DdeReconnect(HCONV hConv);
//C UINT DdeQueryConvInfo(HCONV hConv,DWORD idTransaction,PCONVINFO pConvInfo);
UINT DdeQueryConvInfo(HCONV hConv, DWORD idTransaction, PCONVINFO pConvInfo);
//C WINBOOL DdeSetUserHandle(HCONV hConv,DWORD id,DWORD_PTR hUser);
WINBOOL DdeSetUserHandle(HCONV hConv, DWORD id, DWORD_PTR hUser);
//C WINBOOL DdeAbandonTransaction(DWORD idInst,HCONV hConv,DWORD idTransaction);
WINBOOL DdeAbandonTransaction(DWORD idInst, HCONV hConv, DWORD idTransaction);
//C WINBOOL DdePostAdvise(DWORD idInst,HSZ hszTopic,HSZ hszItem);
WINBOOL DdePostAdvise(DWORD idInst, HSZ hszTopic, HSZ hszItem);
//C WINBOOL DdeEnableCallback(DWORD idInst,HCONV hConv,UINT wCmd);
WINBOOL DdeEnableCallback(DWORD idInst, HCONV hConv, UINT wCmd);
//C WINBOOL DdeImpersonateClient(HCONV hConv);
WINBOOL DdeImpersonateClient(HCONV hConv);
//C HDDEDATA DdeNameService(DWORD idInst,HSZ hsz1,HSZ hsz2,UINT afCmd);
HDDEDATA DdeNameService(DWORD idInst, HSZ hsz1, HSZ hsz2, UINT afCmd);
//C HDDEDATA DdeClientTransaction(LPBYTE pData,DWORD cbData,HCONV hConv,HSZ hszItem,UINT wFmt,UINT wType,DWORD dwTimeout,LPDWORD pdwResult);
HDDEDATA DdeClientTransaction(LPBYTE pData, DWORD cbData, HCONV hConv, HSZ hszItem, UINT wFmt, UINT wType, DWORD dwTimeout, LPDWORD pdwResult);
//C HDDEDATA DdeCreateDataHandle(DWORD idInst,LPBYTE pSrc,DWORD cb,DWORD cbOff,HSZ hszItem,UINT wFmt,UINT afCmd);
HDDEDATA DdeCreateDataHandle(DWORD idInst, LPBYTE pSrc, DWORD cb, DWORD cbOff, HSZ hszItem, UINT wFmt, UINT afCmd);
//C HDDEDATA DdeAddData(HDDEDATA hData,LPBYTE pSrc,DWORD cb,DWORD cbOff);
HDDEDATA DdeAddData(HDDEDATA hData, LPBYTE pSrc, DWORD cb, DWORD cbOff);
//C DWORD DdeGetData(HDDEDATA hData,LPBYTE pDst,DWORD cbMax,DWORD cbOff);
DWORD DdeGetData(HDDEDATA hData, LPBYTE pDst, DWORD cbMax, DWORD cbOff);
//C LPBYTE DdeAccessData(HDDEDATA hData,LPDWORD pcbDataSize);
LPBYTE DdeAccessData(HDDEDATA hData, LPDWORD pcbDataSize);
//C WINBOOL DdeUnaccessData(HDDEDATA hData);
WINBOOL DdeUnaccessData(HDDEDATA hData);
//C WINBOOL DdeFreeDataHandle(HDDEDATA hData);
WINBOOL DdeFreeDataHandle(HDDEDATA hData);
//C UINT DdeGetLastError(DWORD idInst);
UINT DdeGetLastError(DWORD idInst);
//C HSZ DdeCreateStringHandleA(DWORD idInst,LPCSTR psz,int iCodePage);
HSZ DdeCreateStringHandleA(DWORD idInst, LPCSTR psz, int iCodePage);
//C HSZ DdeCreateStringHandleW(DWORD idInst,LPCWSTR psz,int iCodePage);
HSZ DdeCreateStringHandleW(DWORD idInst, LPCWSTR psz, int iCodePage);
//C DWORD DdeQueryStringA(DWORD idInst,HSZ hsz,LPSTR psz,DWORD cchMax,int iCodePage);
DWORD DdeQueryStringA(DWORD idInst, HSZ hsz, LPSTR psz, DWORD cchMax, int iCodePage);
//C DWORD DdeQueryStringW(DWORD idInst,HSZ hsz,LPWSTR psz,DWORD cchMax,int iCodePage);
DWORD DdeQueryStringW(DWORD idInst, HSZ hsz, LPWSTR psz, DWORD cchMax, int iCodePage);
//C WINBOOL DdeFreeStringHandle(DWORD idInst,HSZ hsz);
WINBOOL DdeFreeStringHandle(DWORD idInst, HSZ hsz);
//C WINBOOL DdeKeepStringHandle(DWORD idInst,HSZ hsz);
WINBOOL DdeKeepStringHandle(DWORD idInst, HSZ hsz);
//C int DdeCmpStringHandles(HSZ hsz1,HSZ hsz2);
int DdeCmpStringHandles(HSZ hsz1, HSZ hsz2);
//C typedef struct tagDDEML_MSG_HOOK_DATA {
//C UINT_PTR uiLo;
//C UINT_PTR uiHi;
//C DWORD cbData;
//C DWORD Data[8];
//C } DDEML_MSG_HOOK_DATA,*PDDEML_MSG_HOOK_DATA;
struct tagDDEML_MSG_HOOK_DATA
{
UINT_PTR uiLo;
UINT_PTR uiHi;
DWORD cbData;
DWORD [8]Data;
}
alias tagDDEML_MSG_HOOK_DATA DDEML_MSG_HOOK_DATA;
alias tagDDEML_MSG_HOOK_DATA *PDDEML_MSG_HOOK_DATA;
//C typedef struct tagMONMSGSTRUCT {
//C UINT cb;
//C HWND hwndTo;
//C DWORD dwTime;
//C HANDLE hTask;
//C UINT wMsg;
//C WPARAM wParam;
//C LPARAM lParam;
//C DDEML_MSG_HOOK_DATA dmhd;
//C } MONMSGSTRUCT,*PMONMSGSTRUCT;
struct tagMONMSGSTRUCT
{
UINT cb;
HWND hwndTo;
DWORD dwTime;
HANDLE hTask;
UINT wMsg;
WPARAM wParam;
LPARAM lParam;
DDEML_MSG_HOOK_DATA dmhd;
}
alias tagMONMSGSTRUCT MONMSGSTRUCT;
alias tagMONMSGSTRUCT *PMONMSGSTRUCT;
//C typedef struct tagMONCBSTRUCT {
//C UINT cb;
//C DWORD dwTime;
//C HANDLE hTask;
//C DWORD dwRet;
//C UINT wType;
//C UINT wFmt;
//C HCONV hConv;
//C HSZ hsz1;
//C HSZ hsz2;
//C HDDEDATA hData;
//C ULONG_PTR dwData1;
//C ULONG_PTR dwData2;
//C CONVCONTEXT cc;
//C DWORD cbData;
//C DWORD Data[8];
//C } MONCBSTRUCT,*PMONCBSTRUCT;
struct tagMONCBSTRUCT
{
UINT cb;
DWORD dwTime;
HANDLE hTask;
DWORD dwRet;
UINT wType;
UINT wFmt;
HCONV hConv;
HSZ hsz1;
HSZ hsz2;
HDDEDATA hData;
ULONG_PTR dwData1;
ULONG_PTR dwData2;
CONVCONTEXT cc;
DWORD cbData;
DWORD [8]Data;
}
alias tagMONCBSTRUCT MONCBSTRUCT;
alias tagMONCBSTRUCT *PMONCBSTRUCT;
//C typedef struct tagMONHSZSTRUCTA {
//C UINT cb;
//C WINBOOL fsAction;
//C DWORD dwTime;
//C HSZ hsz;
//C HANDLE hTask;
//C CHAR str[1];
//C } MONHSZSTRUCTA,*PMONHSZSTRUCTA;
struct tagMONHSZSTRUCTA
{
UINT cb;
WINBOOL fsAction;
DWORD dwTime;
HSZ hsz;
HANDLE hTask;
CHAR [1]str;
}
alias tagMONHSZSTRUCTA MONHSZSTRUCTA;
alias tagMONHSZSTRUCTA *PMONHSZSTRUCTA;
//C typedef struct tagMONHSZSTRUCTW {
//C UINT cb;
//C WINBOOL fsAction;
//C DWORD dwTime;
//C HSZ hsz;
//C HANDLE hTask;
//C WCHAR str[1];
//C } MONHSZSTRUCTW,*PMONHSZSTRUCTW;
struct tagMONHSZSTRUCTW
{
UINT cb;
WINBOOL fsAction;
DWORD dwTime;
HSZ hsz;
HANDLE hTask;
WCHAR [1]str;
}
alias tagMONHSZSTRUCTW MONHSZSTRUCTW;
alias tagMONHSZSTRUCTW *PMONHSZSTRUCTW;
//C typedef MONHSZSTRUCTA MONHSZSTRUCT;
alias MONHSZSTRUCTA MONHSZSTRUCT;
//C typedef PMONHSZSTRUCTA PMONHSZSTRUCT;
alias PMONHSZSTRUCTA PMONHSZSTRUCT;
//C typedef struct tagMONERRSTRUCT {
//C UINT cb;
//C UINT wLastError;
//C DWORD dwTime;
//C HANDLE hTask;
//C } MONERRSTRUCT,*PMONERRSTRUCT;
struct tagMONERRSTRUCT
{
UINT cb;
UINT wLastError;
DWORD dwTime;
HANDLE hTask;
}
alias tagMONERRSTRUCT MONERRSTRUCT;
alias tagMONERRSTRUCT *PMONERRSTRUCT;
//C typedef struct tagMONLINKSTRUCT {
//C UINT cb;
//C DWORD dwTime;
//C HANDLE hTask;
//C WINBOOL fEstablished;
//C WINBOOL fNoData;
//C HSZ hszSvc;
//C HSZ hszTopic;
//C HSZ hszItem;
//C UINT wFmt;
//C WINBOOL fServer;
//C HCONV hConvServer;
//C HCONV hConvClient;
//C } MONLINKSTRUCT,*PMONLINKSTRUCT;
struct tagMONLINKSTRUCT
{
UINT cb;
DWORD dwTime;
HANDLE hTask;
WINBOOL fEstablished;
WINBOOL fNoData;
HSZ hszSvc;
HSZ hszTopic;
HSZ hszItem;
UINT wFmt;
WINBOOL fServer;
HCONV hConvServer;
HCONV hConvClient;
}
alias tagMONLINKSTRUCT MONLINKSTRUCT;
alias tagMONLINKSTRUCT *PMONLINKSTRUCT;
//C typedef struct tagMONCONVSTRUCT {
//C UINT cb;
//C WINBOOL fConnect;
//C DWORD dwTime;
//C HANDLE hTask;
//C HSZ hszSvc;
//C HSZ hszTopic;
//C HCONV hConvClient;
//C HCONV hConvServer;
//C } MONCONVSTRUCT,*PMONCONVSTRUCT;
struct tagMONCONVSTRUCT
{
UINT cb;
WINBOOL fConnect;
DWORD dwTime;
HANDLE hTask;
HSZ hszSvc;
HSZ hszTopic;
HCONV hConvClient;
HCONV hConvServer;
}
alias tagMONCONVSTRUCT MONCONVSTRUCT;
alias tagMONCONVSTRUCT *PMONCONVSTRUCT;
//C typedef struct tagCRGB {
//C BYTE bRed;
//C BYTE bGreen;
//C BYTE bBlue;
//C BYTE bExtra;
//C } CRGB;
struct tagCRGB
{
BYTE bRed;
BYTE bGreen;
BYTE bBlue;
BYTE bExtra;
}
alias tagCRGB CRGB;
//C INT LZStart(void);
INT LZStart();
//C void LZDone(void);
void LZDone();
//C LONG CopyLZFile(INT,INT);
LONG CopyLZFile(INT , INT );
//C LONG LZCopy(INT,INT);
LONG LZCopy(INT , INT );
//C INT LZInit();
INT LZInit(INT );
//C INT GetExpandedNameA(LPSTR,LPSTR);
INT GetExpandedNameA(LPSTR , LPSTR );
//C INT GetExpandedNameW(LPWSTR,LPWSTR);
INT GetExpandedNameW(LPWSTR , LPWSTR );
//C INT LZOpenFileA(LPSTR,LPOFSTRUCT,WORD);
INT LZOpenFileA(LPSTR , LPOFSTRUCT , WORD );
//C INT LZOpenFileW(LPWSTR,LPOFSTRUCT,WORD);
INT LZOpenFileW(LPWSTR , LPOFSTRUCT , WORD );
//C LONG LZSeek(INT,LONG,INT);
LONG LZSeek(INT , LONG , INT );
//C INT LZRead(INT,LPSTR,INT);
INT LZRead(INT , LPSTR , INT );
//C void LZClose();
void LZClose(INT );
//C typedef UINT MMVERSION;
alias UINT MMVERSION;
//C typedef UINT MMRESULT;
alias UINT MMRESULT;
//C typedef UINT *LPUINT;
alias UINT *LPUINT;
//C typedef struct mmtime_tag {
//C UINT wType;
//C union {
//C DWORD ms;
//C DWORD sample;
//C DWORD cb;
//C DWORD ticks;
//C struct {
//C BYTE hour;
//C BYTE min;
//C BYTE sec;
//C BYTE frame;
//C BYTE fps;
//C BYTE dummy;
//C BYTE pad[2];
//C } smpte;
struct _N95
{
BYTE hour;
BYTE min;
BYTE sec;
BYTE frame;
BYTE fps;
BYTE dummy;
BYTE [2]pad;
}
//C struct {
//C DWORD songptrpos;
//C } midi;
struct _N96
{
DWORD songptrpos;
}
//C } u;
union _N94
{
DWORD ms;
DWORD sample;
DWORD cb;
DWORD ticks;
_N95 smpte;
_N96 midi;
}
//C } MMTIME,*PMMTIME,*NPMMTIME,*LPMMTIME;
struct mmtime_tag
{
UINT wType;
_N94 u;
}
alias mmtime_tag MMTIME;
alias mmtime_tag *PMMTIME;
alias mmtime_tag *NPMMTIME;
alias mmtime_tag *LPMMTIME;
//C struct HDRVR__ { int unused; }; typedef struct HDRVR__ *HDRVR;
struct HDRVR__
{
int unused;
}
alias HDRVR__ *HDRVR;
//C typedef struct DRVCONFIGINFOEX {
//C DWORD dwDCISize;
//C LPCWSTR lpszDCISectionName;
//C LPCWSTR lpszDCIAliasName;
//C DWORD dnDevNode;
//C } DRVCONFIGINFOEX,*PDRVCONFIGINFOEX,*NPDRVCONFIGINFOEX,*LPDRVCONFIGINFOEX;
struct DRVCONFIGINFOEX
{
DWORD dwDCISize;
LPCWSTR lpszDCISectionName;
LPCWSTR lpszDCIAliasName;
DWORD dnDevNode;
}
alias DRVCONFIGINFOEX *PDRVCONFIGINFOEX;
alias DRVCONFIGINFOEX *NPDRVCONFIGINFOEX;
alias DRVCONFIGINFOEX *LPDRVCONFIGINFOEX;
//C typedef struct tagDRVCONFIGINFO {
//C DWORD dwDCISize;
//C LPCWSTR lpszDCISectionName;
//C LPCWSTR lpszDCIAliasName;
//C } DRVCONFIGINFO,*PDRVCONFIGINFO,*NPDRVCONFIGINFO,*LPDRVCONFIGINFO;
struct tagDRVCONFIGINFO
{
DWORD dwDCISize;
LPCWSTR lpszDCISectionName;
LPCWSTR lpszDCIAliasName;
}
alias tagDRVCONFIGINFO DRVCONFIGINFO;
alias tagDRVCONFIGINFO *PDRVCONFIGINFO;
alias tagDRVCONFIGINFO *NPDRVCONFIGINFO;
alias tagDRVCONFIGINFO *LPDRVCONFIGINFO;
//C typedef LRESULT ( *DRIVERPROC)(DWORD_PTR,HDRVR,UINT,LPARAM,LPARAM);
alias LRESULT function(DWORD_PTR , HDRVR , UINT , LPARAM , LPARAM )DRIVERPROC;
//C LRESULT CloseDriver(HDRVR hDriver,LPARAM lParam1,LPARAM lParam2);
LRESULT CloseDriver(HDRVR hDriver, LPARAM lParam1, LPARAM lParam2);
//C HDRVR OpenDriver(LPCWSTR szDriverName,LPCWSTR szSectionName,LPARAM lParam2);
HDRVR OpenDriver(LPCWSTR szDriverName, LPCWSTR szSectionName, LPARAM lParam2);
//C LRESULT SendDriverMessage(HDRVR hDriver,UINT message,LPARAM lParam1,LPARAM lParam2);
LRESULT SendDriverMessage(HDRVR hDriver, UINT message, LPARAM lParam1, LPARAM lParam2);
//C HMODULE DrvGetModuleHandle(HDRVR hDriver);
HMODULE DrvGetModuleHandle(HDRVR hDriver);
//C HMODULE GetDriverModuleHandle(HDRVR hDriver);
HMODULE GetDriverModuleHandle(HDRVR hDriver);
//C LRESULT DefDriverProc(DWORD_PTR dwDriverIdentifier,HDRVR hdrvr,UINT uMsg,LPARAM lParam1,LPARAM lParam2);
LRESULT DefDriverProc(DWORD_PTR dwDriverIdentifier, HDRVR hdrvr, UINT uMsg, LPARAM lParam1, LPARAM lParam2);
//C typedef void ( DRVCALLBACK)(HDRVR hdrvr,UINT uMsg,DWORD_PTR dwUser,DWORD_PTR dw1,DWORD_PTR dw2);
alias void function(HDRVR hdrvr, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)DRVCALLBACK;
//C typedef DRVCALLBACK *LPDRVCALLBACK;
alias void function(HDRVR hdrvr, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)LPDRVCALLBACK;
//C typedef DRVCALLBACK *PDRVCALLBACK;
alias void function(HDRVR hdrvr, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)PDRVCALLBACK;
//C WINBOOL sndPlaySoundA(LPCSTR pszSound,UINT fuSound);
WINBOOL sndPlaySoundA(LPCSTR pszSound, UINT fuSound);
//C WINBOOL sndPlaySoundW(LPCWSTR pszSound,UINT fuSound);
WINBOOL sndPlaySoundW(LPCWSTR pszSound, UINT fuSound);
//C WINBOOL PlaySoundA(LPCSTR pszSound,HMODULE hmod,DWORD fdwSound);
WINBOOL PlaySoundA(LPCSTR pszSound, HMODULE hmod, DWORD fdwSound);
//C WINBOOL PlaySoundW(LPCWSTR pszSound,HMODULE hmod,DWORD fdwSound);
WINBOOL PlaySoundW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound);
//C struct HWAVE__ { int unused; }; typedef struct HWAVE__ *HWAVE;
struct HWAVE__
{
int unused;
}
alias HWAVE__ *HWAVE;
//C struct HWAVEIN__ { int unused; }; typedef struct HWAVEIN__ *HWAVEIN;
struct HWAVEIN__
{
int unused;
}
alias HWAVEIN__ *HWAVEIN;
//C struct HWAVEOUT__ { int unused; }; typedef struct HWAVEOUT__ *HWAVEOUT;
struct HWAVEOUT__
{
int unused;
}
alias HWAVEOUT__ *HWAVEOUT;
//C typedef HWAVEIN *LPHWAVEIN;
alias HWAVEIN *LPHWAVEIN;
//C typedef HWAVEOUT *LPHWAVEOUT;
alias HWAVEOUT *LPHWAVEOUT;
//C typedef DRVCALLBACK WAVECALLBACK;
alias DRVCALLBACK WAVECALLBACK;
//C typedef WAVECALLBACK *LPWAVECALLBACK;
alias void function(HDRVR hdrvr, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)LPWAVECALLBACK;
//C typedef struct wavehdr_tag {
//C LPSTR lpData;
//C DWORD dwBufferLength;
//C DWORD dwBytesRecorded;
//C DWORD_PTR dwUser;
//C DWORD dwFlags;
//C DWORD dwLoops;
//C struct wavehdr_tag *lpNext;
//C DWORD_PTR reserved;
//C } WAVEHDR,*PWAVEHDR,*NPWAVEHDR,*LPWAVEHDR;
struct wavehdr_tag
{
LPSTR lpData;
DWORD dwBufferLength;
DWORD dwBytesRecorded;
DWORD_PTR dwUser;
DWORD dwFlags;
DWORD dwLoops;
wavehdr_tag *lpNext;
DWORD_PTR reserved;
}
alias wavehdr_tag WAVEHDR;
alias wavehdr_tag *PWAVEHDR;
alias wavehdr_tag *NPWAVEHDR;
alias wavehdr_tag *LPWAVEHDR;
//C typedef struct tagWAVEOUTCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C DWORD dwSupport;
//C } WAVEOUTCAPSA,*PWAVEOUTCAPSA,*NPWAVEOUTCAPSA,*LPWAVEOUTCAPSA;
struct tagWAVEOUTCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
DWORD dwSupport;
}
alias tagWAVEOUTCAPSA WAVEOUTCAPSA;
alias tagWAVEOUTCAPSA *PWAVEOUTCAPSA;
alias tagWAVEOUTCAPSA *NPWAVEOUTCAPSA;
alias tagWAVEOUTCAPSA *LPWAVEOUTCAPSA;
//C typedef struct tagWAVEOUTCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C DWORD dwSupport;
//C } WAVEOUTCAPSW,*PWAVEOUTCAPSW,*NPWAVEOUTCAPSW,*LPWAVEOUTCAPSW;
struct tagWAVEOUTCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
DWORD dwSupport;
}
alias tagWAVEOUTCAPSW WAVEOUTCAPSW;
alias tagWAVEOUTCAPSW *PWAVEOUTCAPSW;
alias tagWAVEOUTCAPSW *NPWAVEOUTCAPSW;
alias tagWAVEOUTCAPSW *LPWAVEOUTCAPSW;
//C typedef WAVEOUTCAPSA WAVEOUTCAPS;
alias WAVEOUTCAPSA WAVEOUTCAPS;
//C typedef PWAVEOUTCAPSA PWAVEOUTCAPS;
alias PWAVEOUTCAPSA PWAVEOUTCAPS;
//C typedef NPWAVEOUTCAPSA NPWAVEOUTCAPS;
alias NPWAVEOUTCAPSA NPWAVEOUTCAPS;
//C typedef LPWAVEOUTCAPSA LPWAVEOUTCAPS;
alias LPWAVEOUTCAPSA LPWAVEOUTCAPS;
//C typedef struct tagWAVEOUTCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } WAVEOUTCAPS2A,*PWAVEOUTCAPS2A,*NPWAVEOUTCAPS2A,*LPWAVEOUTCAPS2A;
struct tagWAVEOUTCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagWAVEOUTCAPS2A WAVEOUTCAPS2A;
alias tagWAVEOUTCAPS2A *PWAVEOUTCAPS2A;
alias tagWAVEOUTCAPS2A *NPWAVEOUTCAPS2A;
alias tagWAVEOUTCAPS2A *LPWAVEOUTCAPS2A;
//C typedef struct tagWAVEOUTCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } WAVEOUTCAPS2W,*PWAVEOUTCAPS2W,*NPWAVEOUTCAPS2W,*LPWAVEOUTCAPS2W;
struct tagWAVEOUTCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagWAVEOUTCAPS2W WAVEOUTCAPS2W;
alias tagWAVEOUTCAPS2W *PWAVEOUTCAPS2W;
alias tagWAVEOUTCAPS2W *NPWAVEOUTCAPS2W;
alias tagWAVEOUTCAPS2W *LPWAVEOUTCAPS2W;
//C typedef WAVEOUTCAPS2A WAVEOUTCAPS2;
alias WAVEOUTCAPS2A WAVEOUTCAPS2;
//C typedef PWAVEOUTCAPS2A PWAVEOUTCAPS2;
alias PWAVEOUTCAPS2A PWAVEOUTCAPS2;
//C typedef NPWAVEOUTCAPS2A NPWAVEOUTCAPS2;
alias NPWAVEOUTCAPS2A NPWAVEOUTCAPS2;
//C typedef LPWAVEOUTCAPS2A LPWAVEOUTCAPS2;
alias LPWAVEOUTCAPS2A LPWAVEOUTCAPS2;
//C typedef struct tagWAVEINCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C } WAVEINCAPSA,*PWAVEINCAPSA,*NPWAVEINCAPSA,*LPWAVEINCAPSA;
struct tagWAVEINCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
}
alias tagWAVEINCAPSA WAVEINCAPSA;
alias tagWAVEINCAPSA *PWAVEINCAPSA;
alias tagWAVEINCAPSA *NPWAVEINCAPSA;
alias tagWAVEINCAPSA *LPWAVEINCAPSA;
//C typedef struct tagWAVEINCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C } WAVEINCAPSW,*PWAVEINCAPSW,*NPWAVEINCAPSW,*LPWAVEINCAPSW;
struct tagWAVEINCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
}
alias tagWAVEINCAPSW WAVEINCAPSW;
alias tagWAVEINCAPSW *PWAVEINCAPSW;
alias tagWAVEINCAPSW *NPWAVEINCAPSW;
alias tagWAVEINCAPSW *LPWAVEINCAPSW;
//C typedef WAVEINCAPSA WAVEINCAPS;
alias WAVEINCAPSA WAVEINCAPS;
//C typedef PWAVEINCAPSA PWAVEINCAPS;
alias PWAVEINCAPSA PWAVEINCAPS;
//C typedef NPWAVEINCAPSA NPWAVEINCAPS;
alias NPWAVEINCAPSA NPWAVEINCAPS;
//C typedef LPWAVEINCAPSA LPWAVEINCAPS;
alias LPWAVEINCAPSA LPWAVEINCAPS;
//C typedef struct tagWAVEINCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } WAVEINCAPS2A,*PWAVEINCAPS2A,*NPWAVEINCAPS2A,*LPWAVEINCAPS2A;
struct tagWAVEINCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagWAVEINCAPS2A WAVEINCAPS2A;
alias tagWAVEINCAPS2A *PWAVEINCAPS2A;
alias tagWAVEINCAPS2A *NPWAVEINCAPS2A;
alias tagWAVEINCAPS2A *LPWAVEINCAPS2A;
//C typedef struct tagWAVEINCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwFormats;
//C WORD wChannels;
//C WORD wReserved1;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } WAVEINCAPS2W,*PWAVEINCAPS2W,*NPWAVEINCAPS2W,*LPWAVEINCAPS2W;
struct tagWAVEINCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwFormats;
WORD wChannels;
WORD wReserved1;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagWAVEINCAPS2W WAVEINCAPS2W;
alias tagWAVEINCAPS2W *PWAVEINCAPS2W;
alias tagWAVEINCAPS2W *NPWAVEINCAPS2W;
alias tagWAVEINCAPS2W *LPWAVEINCAPS2W;
//C typedef WAVEINCAPS2A WAVEINCAPS2;
alias WAVEINCAPS2A WAVEINCAPS2;
//C typedef PWAVEINCAPS2A PWAVEINCAPS2;
alias PWAVEINCAPS2A PWAVEINCAPS2;
//C typedef NPWAVEINCAPS2A NPWAVEINCAPS2;
alias NPWAVEINCAPS2A NPWAVEINCAPS2;
//C typedef LPWAVEINCAPS2A LPWAVEINCAPS2;
alias LPWAVEINCAPS2A LPWAVEINCAPS2;
//C typedef struct waveformat_tag {
//C WORD wFormatTag;
//C WORD nChannels;
//C DWORD nSamplesPerSec;
//C DWORD nAvgBytesPerSec;
//C WORD nBlockAlign;
//C } WAVEFORMAT,*PWAVEFORMAT,*NPWAVEFORMAT,*LPWAVEFORMAT;
struct waveformat_tag
{
WORD wFormatTag;
WORD nChannels;
DWORD nSamplesPerSec;
DWORD nAvgBytesPerSec;
WORD nBlockAlign;
}
alias waveformat_tag WAVEFORMAT;
alias waveformat_tag *PWAVEFORMAT;
alias waveformat_tag *NPWAVEFORMAT;
alias waveformat_tag *LPWAVEFORMAT;
//C typedef struct pcmwaveformat_tag {
//C WAVEFORMAT wf;
//C WORD wBitsPerSample;
//C } PCMWAVEFORMAT,*PPCMWAVEFORMAT,*NPPCMWAVEFORMAT,*LPPCMWAVEFORMAT;
struct pcmwaveformat_tag
{
WAVEFORMAT wf;
WORD wBitsPerSample;
}
alias pcmwaveformat_tag PCMWAVEFORMAT;
alias pcmwaveformat_tag *PPCMWAVEFORMAT;
alias pcmwaveformat_tag *NPPCMWAVEFORMAT;
alias pcmwaveformat_tag *LPPCMWAVEFORMAT;
//C typedef struct tWAVEFORMATEX {
//C WORD wFormatTag;
//C WORD nChannels;
//C DWORD nSamplesPerSec;
//C DWORD nAvgBytesPerSec;
//C WORD nBlockAlign;
//C WORD wBitsPerSample;
//C WORD cbSize;
//C } WAVEFORMATEX,*PWAVEFORMATEX,*NPWAVEFORMATEX,*LPWAVEFORMATEX;
struct tWAVEFORMATEX
{
WORD wFormatTag;
WORD nChannels;
DWORD nSamplesPerSec;
DWORD nAvgBytesPerSec;
WORD nBlockAlign;
WORD wBitsPerSample;
WORD cbSize;
}
alias tWAVEFORMATEX WAVEFORMATEX;
alias tWAVEFORMATEX *PWAVEFORMATEX;
alias tWAVEFORMATEX *NPWAVEFORMATEX;
alias tWAVEFORMATEX *LPWAVEFORMATEX;
//C typedef const WAVEFORMATEX *LPCWAVEFORMATEX;
alias WAVEFORMATEX *LPCWAVEFORMATEX;
//C UINT waveOutGetNumDevs(void);
UINT waveOutGetNumDevs();
//C MMRESULT waveOutGetDevCapsA(UINT_PTR uDeviceID,LPWAVEOUTCAPSA pwoc,UINT cbwoc);
MMRESULT waveOutGetDevCapsA(UINT_PTR uDeviceID, LPWAVEOUTCAPSA pwoc, UINT cbwoc);
//C MMRESULT waveOutGetDevCapsW(UINT_PTR uDeviceID,LPWAVEOUTCAPSW pwoc,UINT cbwoc);
MMRESULT waveOutGetDevCapsW(UINT_PTR uDeviceID, LPWAVEOUTCAPSW pwoc, UINT cbwoc);
//C MMRESULT waveOutGetVolume(HWAVEOUT hwo,LPDWORD pdwVolume);
MMRESULT waveOutGetVolume(HWAVEOUT hwo, LPDWORD pdwVolume);
//C MMRESULT waveOutSetVolume(HWAVEOUT hwo,DWORD dwVolume);
MMRESULT waveOutSetVolume(HWAVEOUT hwo, DWORD dwVolume);
//C MMRESULT waveOutGetErrorTextA(MMRESULT mmrError,LPSTR pszText,UINT cchText);
MMRESULT waveOutGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText);
//C MMRESULT waveOutGetErrorTextW(MMRESULT mmrError,LPWSTR pszText,UINT cchText);
MMRESULT waveOutGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText);
//C MMRESULT waveOutOpen(LPHWAVEOUT phwo,UINT uDeviceID,LPCWAVEFORMATEX pwfx,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT waveOutOpen(LPHWAVEOUT phwo, UINT uDeviceID, LPCWAVEFORMATEX pwfx, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT waveOutClose(HWAVEOUT hwo);
MMRESULT waveOutClose(HWAVEOUT hwo);
//C MMRESULT waveOutPrepareHeader(HWAVEOUT hwo,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveOutPrepareHeader(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveOutUnprepareHeader(HWAVEOUT hwo,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveOutUnprepareHeader(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveOutWrite(HWAVEOUT hwo,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveOutWrite(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveOutPause(HWAVEOUT hwo);
MMRESULT waveOutPause(HWAVEOUT hwo);
//C MMRESULT waveOutRestart(HWAVEOUT hwo);
MMRESULT waveOutRestart(HWAVEOUT hwo);
//C MMRESULT waveOutReset(HWAVEOUT hwo);
MMRESULT waveOutReset(HWAVEOUT hwo);
//C MMRESULT waveOutBreakLoop(HWAVEOUT hwo);
MMRESULT waveOutBreakLoop(HWAVEOUT hwo);
//C MMRESULT waveOutGetPosition(HWAVEOUT hwo,LPMMTIME pmmt,UINT cbmmt);
MMRESULT waveOutGetPosition(HWAVEOUT hwo, LPMMTIME pmmt, UINT cbmmt);
//C MMRESULT waveOutGetPitch(HWAVEOUT hwo,LPDWORD pdwPitch);
MMRESULT waveOutGetPitch(HWAVEOUT hwo, LPDWORD pdwPitch);
//C MMRESULT waveOutSetPitch(HWAVEOUT hwo,DWORD dwPitch);
MMRESULT waveOutSetPitch(HWAVEOUT hwo, DWORD dwPitch);
//C MMRESULT waveOutGetPlaybackRate(HWAVEOUT hwo,LPDWORD pdwRate);
MMRESULT waveOutGetPlaybackRate(HWAVEOUT hwo, LPDWORD pdwRate);
//C MMRESULT waveOutSetPlaybackRate(HWAVEOUT hwo,DWORD dwRate);
MMRESULT waveOutSetPlaybackRate(HWAVEOUT hwo, DWORD dwRate);
//C MMRESULT waveOutGetID(HWAVEOUT hwo,LPUINT puDeviceID);
MMRESULT waveOutGetID(HWAVEOUT hwo, LPUINT puDeviceID);
//C MMRESULT waveOutMessage(HWAVEOUT hwo,UINT uMsg,DWORD_PTR dw1,DWORD_PTR dw2);
MMRESULT waveOutMessage(HWAVEOUT hwo, UINT uMsg, DWORD_PTR dw1, DWORD_PTR dw2);
//C UINT waveInGetNumDevs(void);
UINT waveInGetNumDevs();
//C MMRESULT waveInGetDevCapsA(UINT_PTR uDeviceID,LPWAVEINCAPSA pwic,UINT cbwic);
MMRESULT waveInGetDevCapsA(UINT_PTR uDeviceID, LPWAVEINCAPSA pwic, UINT cbwic);
//C MMRESULT waveInGetDevCapsW(UINT_PTR uDeviceID,LPWAVEINCAPSW pwic,UINT cbwic);
MMRESULT waveInGetDevCapsW(UINT_PTR uDeviceID, LPWAVEINCAPSW pwic, UINT cbwic);
//C MMRESULT waveInGetErrorTextA(MMRESULT mmrError,LPSTR pszText,UINT cchText);
MMRESULT waveInGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText);
//C MMRESULT waveInGetErrorTextW(MMRESULT mmrError,LPWSTR pszText,UINT cchText);
MMRESULT waveInGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText);
//C MMRESULT waveInOpen(LPHWAVEIN phwi,UINT uDeviceID,LPCWAVEFORMATEX pwfx,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT waveInOpen(LPHWAVEIN phwi, UINT uDeviceID, LPCWAVEFORMATEX pwfx, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT waveInClose(HWAVEIN hwi);
MMRESULT waveInClose(HWAVEIN hwi);
//C MMRESULT waveInPrepareHeader(HWAVEIN hwi,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveInPrepareHeader(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveInUnprepareHeader(HWAVEIN hwi,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveInUnprepareHeader(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveInAddBuffer(HWAVEIN hwi,LPWAVEHDR pwh,UINT cbwh);
MMRESULT waveInAddBuffer(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh);
//C MMRESULT waveInStart(HWAVEIN hwi);
MMRESULT waveInStart(HWAVEIN hwi);
//C MMRESULT waveInStop(HWAVEIN hwi);
MMRESULT waveInStop(HWAVEIN hwi);
//C MMRESULT waveInReset(HWAVEIN hwi);
MMRESULT waveInReset(HWAVEIN hwi);
//C MMRESULT waveInGetPosition(HWAVEIN hwi,LPMMTIME pmmt,UINT cbmmt);
MMRESULT waveInGetPosition(HWAVEIN hwi, LPMMTIME pmmt, UINT cbmmt);
//C MMRESULT waveInGetID(HWAVEIN hwi,LPUINT puDeviceID);
MMRESULT waveInGetID(HWAVEIN hwi, LPUINT puDeviceID);
//C MMRESULT waveInMessage(HWAVEIN hwi,UINT uMsg,DWORD_PTR dw1,DWORD_PTR dw2);
MMRESULT waveInMessage(HWAVEIN hwi, UINT uMsg, DWORD_PTR dw1, DWORD_PTR dw2);
//C struct HMIDI__ { int unused; }; typedef struct HMIDI__ *HMIDI;
struct HMIDI__
{
int unused;
}
alias HMIDI__ *HMIDI;
//C struct HMIDIIN__ { int unused; }; typedef struct HMIDIIN__ *HMIDIIN;
struct HMIDIIN__
{
int unused;
}
alias HMIDIIN__ *HMIDIIN;
//C struct HMIDIOUT__ { int unused; }; typedef struct HMIDIOUT__ *HMIDIOUT;
struct HMIDIOUT__
{
int unused;
}
alias HMIDIOUT__ *HMIDIOUT;
//C struct HMIDISTRM__ { int unused; }; typedef struct HMIDISTRM__ *HMIDISTRM;
struct HMIDISTRM__
{
int unused;
}
alias HMIDISTRM__ *HMIDISTRM;
//C typedef HMIDI *LPHMIDI;
alias HMIDI *LPHMIDI;
//C typedef HMIDIIN *LPHMIDIIN;
alias HMIDIIN *LPHMIDIIN;
//C typedef HMIDIOUT *LPHMIDIOUT;
alias HMIDIOUT *LPHMIDIOUT;
//C typedef HMIDISTRM *LPHMIDISTRM;
alias HMIDISTRM *LPHMIDISTRM;
//C typedef DRVCALLBACK MIDICALLBACK;
alias DRVCALLBACK MIDICALLBACK;
//C typedef MIDICALLBACK *LPMIDICALLBACK;
alias void function(HDRVR hdrvr, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)LPMIDICALLBACK;
//C typedef WORD PATCHARRAY[128];
alias WORD [128]PATCHARRAY;
//C typedef WORD *LPPATCHARRAY;
alias WORD *LPPATCHARRAY;
//C typedef WORD KEYARRAY[128];
alias WORD [128]KEYARRAY;
//C typedef WORD *LPKEYARRAY;
alias WORD *LPKEYARRAY;
//C typedef struct tagMIDIOUTCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C WORD wTechnology;
//C WORD wVoices;
//C WORD wNotes;
//C WORD wChannelMask;
//C DWORD dwSupport;
//C } MIDIOUTCAPSA,*PMIDIOUTCAPSA,*NPMIDIOUTCAPSA,*LPMIDIOUTCAPSA;
struct tagMIDIOUTCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
WORD wTechnology;
WORD wVoices;
WORD wNotes;
WORD wChannelMask;
DWORD dwSupport;
}
alias tagMIDIOUTCAPSA MIDIOUTCAPSA;
alias tagMIDIOUTCAPSA *PMIDIOUTCAPSA;
alias tagMIDIOUTCAPSA *NPMIDIOUTCAPSA;
alias tagMIDIOUTCAPSA *LPMIDIOUTCAPSA;
//C typedef struct tagMIDIOUTCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C WORD wTechnology;
//C WORD wVoices;
//C WORD wNotes;
//C WORD wChannelMask;
//C DWORD dwSupport;
//C } MIDIOUTCAPSW,*PMIDIOUTCAPSW,*NPMIDIOUTCAPSW,*LPMIDIOUTCAPSW;
struct tagMIDIOUTCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
WORD wTechnology;
WORD wVoices;
WORD wNotes;
WORD wChannelMask;
DWORD dwSupport;
}
alias tagMIDIOUTCAPSW MIDIOUTCAPSW;
alias tagMIDIOUTCAPSW *PMIDIOUTCAPSW;
alias tagMIDIOUTCAPSW *NPMIDIOUTCAPSW;
alias tagMIDIOUTCAPSW *LPMIDIOUTCAPSW;
//C typedef MIDIOUTCAPSA MIDIOUTCAPS;
alias MIDIOUTCAPSA MIDIOUTCAPS;
//C typedef PMIDIOUTCAPSA PMIDIOUTCAPS;
alias PMIDIOUTCAPSA PMIDIOUTCAPS;
//C typedef NPMIDIOUTCAPSA NPMIDIOUTCAPS;
alias NPMIDIOUTCAPSA NPMIDIOUTCAPS;
//C typedef LPMIDIOUTCAPSA LPMIDIOUTCAPS;
alias LPMIDIOUTCAPSA LPMIDIOUTCAPS;
//C typedef struct tagMIDIOUTCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C WORD wTechnology;
//C WORD wVoices;
//C WORD wNotes;
//C WORD wChannelMask;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIDIOUTCAPS2A,*PMIDIOUTCAPS2A,*NPMIDIOUTCAPS2A,*LPMIDIOUTCAPS2A;
struct tagMIDIOUTCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
WORD wTechnology;
WORD wVoices;
WORD wNotes;
WORD wChannelMask;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIDIOUTCAPS2A MIDIOUTCAPS2A;
alias tagMIDIOUTCAPS2A *PMIDIOUTCAPS2A;
alias tagMIDIOUTCAPS2A *NPMIDIOUTCAPS2A;
alias tagMIDIOUTCAPS2A *LPMIDIOUTCAPS2A;
//C typedef struct tagMIDIOUTCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C WORD wTechnology;
//C WORD wVoices;
//C WORD wNotes;
//C WORD wChannelMask;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIDIOUTCAPS2W,*PMIDIOUTCAPS2W,*NPMIDIOUTCAPS2W,*LPMIDIOUTCAPS2W;
struct tagMIDIOUTCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
WORD wTechnology;
WORD wVoices;
WORD wNotes;
WORD wChannelMask;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIDIOUTCAPS2W MIDIOUTCAPS2W;
alias tagMIDIOUTCAPS2W *PMIDIOUTCAPS2W;
alias tagMIDIOUTCAPS2W *NPMIDIOUTCAPS2W;
alias tagMIDIOUTCAPS2W *LPMIDIOUTCAPS2W;
//C typedef MIDIOUTCAPS2A MIDIOUTCAPS2;
alias MIDIOUTCAPS2A MIDIOUTCAPS2;
//C typedef PMIDIOUTCAPS2A PMIDIOUTCAPS2;
alias PMIDIOUTCAPS2A PMIDIOUTCAPS2;
//C typedef NPMIDIOUTCAPS2A NPMIDIOUTCAPS2;
alias NPMIDIOUTCAPS2A NPMIDIOUTCAPS2;
//C typedef LPMIDIOUTCAPS2A LPMIDIOUTCAPS2;
alias LPMIDIOUTCAPS2A LPMIDIOUTCAPS2;
//C typedef struct tagMIDIINCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwSupport;
//C } MIDIINCAPSA,*PMIDIINCAPSA,*NPMIDIINCAPSA,*LPMIDIINCAPSA;
struct tagMIDIINCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwSupport;
}
alias tagMIDIINCAPSA MIDIINCAPSA;
alias tagMIDIINCAPSA *PMIDIINCAPSA;
alias tagMIDIINCAPSA *NPMIDIINCAPSA;
alias tagMIDIINCAPSA *LPMIDIINCAPSA;
//C typedef struct tagMIDIINCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwSupport;
//C } MIDIINCAPSW,*PMIDIINCAPSW,*NPMIDIINCAPSW,*LPMIDIINCAPSW;
struct tagMIDIINCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwSupport;
}
alias tagMIDIINCAPSW MIDIINCAPSW;
alias tagMIDIINCAPSW *PMIDIINCAPSW;
alias tagMIDIINCAPSW *NPMIDIINCAPSW;
alias tagMIDIINCAPSW *LPMIDIINCAPSW;
//C typedef MIDIINCAPSA MIDIINCAPS;
alias MIDIINCAPSA MIDIINCAPS;
//C typedef PMIDIINCAPSA PMIDIINCAPS;
alias PMIDIINCAPSA PMIDIINCAPS;
//C typedef NPMIDIINCAPSA NPMIDIINCAPS;
alias NPMIDIINCAPSA NPMIDIINCAPS;
//C typedef LPMIDIINCAPSA LPMIDIINCAPS;
alias LPMIDIINCAPSA LPMIDIINCAPS;
//C typedef struct tagMIDIINCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIDIINCAPS2A,*PMIDIINCAPS2A,*NPMIDIINCAPS2A,*LPMIDIINCAPS2A;
struct tagMIDIINCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIDIINCAPS2A MIDIINCAPS2A;
alias tagMIDIINCAPS2A *PMIDIINCAPS2A;
alias tagMIDIINCAPS2A *NPMIDIINCAPS2A;
alias tagMIDIINCAPS2A *LPMIDIINCAPS2A;
//C typedef struct tagMIDIINCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIDIINCAPS2W,*PMIDIINCAPS2W,*NPMIDIINCAPS2W,*LPMIDIINCAPS2W;
struct tagMIDIINCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIDIINCAPS2W MIDIINCAPS2W;
alias tagMIDIINCAPS2W *PMIDIINCAPS2W;
alias tagMIDIINCAPS2W *NPMIDIINCAPS2W;
alias tagMIDIINCAPS2W *LPMIDIINCAPS2W;
//C typedef MIDIINCAPS2A MIDIINCAPS2;
alias MIDIINCAPS2A MIDIINCAPS2;
//C typedef PMIDIINCAPS2A PMIDIINCAPS2;
alias PMIDIINCAPS2A PMIDIINCAPS2;
//C typedef NPMIDIINCAPS2A NPMIDIINCAPS2;
alias NPMIDIINCAPS2A NPMIDIINCAPS2;
//C typedef LPMIDIINCAPS2A LPMIDIINCAPS2;
alias LPMIDIINCAPS2A LPMIDIINCAPS2;
//C typedef struct midihdr_tag {
//C LPSTR lpData;
//C DWORD dwBufferLength;
//C DWORD dwBytesRecorded;
//C DWORD_PTR dwUser;
//C DWORD dwFlags;
//C struct midihdr_tag *lpNext;
//C DWORD_PTR reserved;
//C DWORD dwOffset;
//C DWORD_PTR dwReserved[8];
//C } MIDIHDR,*PMIDIHDR,*NPMIDIHDR,*LPMIDIHDR;
struct midihdr_tag
{
LPSTR lpData;
DWORD dwBufferLength;
DWORD dwBytesRecorded;
DWORD_PTR dwUser;
DWORD dwFlags;
midihdr_tag *lpNext;
DWORD_PTR reserved;
DWORD dwOffset;
DWORD_PTR [8]dwReserved;
}
alias midihdr_tag MIDIHDR;
alias midihdr_tag *PMIDIHDR;
alias midihdr_tag *NPMIDIHDR;
alias midihdr_tag *LPMIDIHDR;
//C typedef struct midievent_tag {
//C DWORD dwDeltaTime;
//C DWORD dwStreamID;
//C DWORD dwEvent;
//C DWORD dwParms[1];
//C } MIDIEVENT;
struct midievent_tag
{
DWORD dwDeltaTime;
DWORD dwStreamID;
DWORD dwEvent;
DWORD [1]dwParms;
}
alias midievent_tag MIDIEVENT;
//C typedef struct midistrmbuffver_tag {
//C DWORD dwVersion;
//C DWORD dwMid;
//C DWORD dwOEMVersion;
//C } MIDISTRMBUFFVER;
struct midistrmbuffver_tag
{
DWORD dwVersion;
DWORD dwMid;
DWORD dwOEMVersion;
}
alias midistrmbuffver_tag MIDISTRMBUFFVER;
//C typedef struct midiproptimediv_tag {
//C DWORD cbStruct;
//C DWORD dwTimeDiv;
//C } MIDIPROPTIMEDIV,*LPMIDIPROPTIMEDIV;
struct midiproptimediv_tag
{
DWORD cbStruct;
DWORD dwTimeDiv;
}
alias midiproptimediv_tag MIDIPROPTIMEDIV;
alias midiproptimediv_tag *LPMIDIPROPTIMEDIV;
//C typedef struct midiproptempo_tag {
//C DWORD cbStruct;
//C DWORD dwTempo;
//C } MIDIPROPTEMPO,*LPMIDIPROPTEMPO;
struct midiproptempo_tag
{
DWORD cbStruct;
DWORD dwTempo;
}
alias midiproptempo_tag MIDIPROPTEMPO;
alias midiproptempo_tag *LPMIDIPROPTEMPO;
//C UINT midiOutGetNumDevs(void);
UINT midiOutGetNumDevs();
//C MMRESULT midiStreamOpen(LPHMIDISTRM phms,LPUINT puDeviceID,DWORD cMidi,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT midiStreamOpen(LPHMIDISTRM phms, LPUINT puDeviceID, DWORD cMidi, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT midiStreamClose(HMIDISTRM hms);
MMRESULT midiStreamClose(HMIDISTRM hms);
//C MMRESULT midiStreamProperty(HMIDISTRM hms,LPBYTE lppropdata,DWORD dwProperty);
MMRESULT midiStreamProperty(HMIDISTRM hms, LPBYTE lppropdata, DWORD dwProperty);
//C MMRESULT midiStreamPosition(HMIDISTRM hms,LPMMTIME lpmmt,UINT cbmmt);
MMRESULT midiStreamPosition(HMIDISTRM hms, LPMMTIME lpmmt, UINT cbmmt);
//C MMRESULT midiStreamOut(HMIDISTRM hms,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiStreamOut(HMIDISTRM hms, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiStreamPause(HMIDISTRM hms);
MMRESULT midiStreamPause(HMIDISTRM hms);
//C MMRESULT midiStreamRestart(HMIDISTRM hms);
MMRESULT midiStreamRestart(HMIDISTRM hms);
//C MMRESULT midiStreamStop(HMIDISTRM hms);
MMRESULT midiStreamStop(HMIDISTRM hms);
//C MMRESULT midiConnect(HMIDI hmi,HMIDIOUT hmo,LPVOID pReserved);
MMRESULT midiConnect(HMIDI hmi, HMIDIOUT hmo, LPVOID pReserved);
//C MMRESULT midiDisconnect(HMIDI hmi,HMIDIOUT hmo,LPVOID pReserved);
MMRESULT midiDisconnect(HMIDI hmi, HMIDIOUT hmo, LPVOID pReserved);
//C MMRESULT midiOutGetDevCapsA(UINT_PTR uDeviceID,LPMIDIOUTCAPSA pmoc,UINT cbmoc);
MMRESULT midiOutGetDevCapsA(UINT_PTR uDeviceID, LPMIDIOUTCAPSA pmoc, UINT cbmoc);
//C MMRESULT midiOutGetDevCapsW(UINT_PTR uDeviceID,LPMIDIOUTCAPSW pmoc,UINT cbmoc);
MMRESULT midiOutGetDevCapsW(UINT_PTR uDeviceID, LPMIDIOUTCAPSW pmoc, UINT cbmoc);
//C MMRESULT midiOutGetVolume(HMIDIOUT hmo,LPDWORD pdwVolume);
MMRESULT midiOutGetVolume(HMIDIOUT hmo, LPDWORD pdwVolume);
//C MMRESULT midiOutSetVolume(HMIDIOUT hmo,DWORD dwVolume);
MMRESULT midiOutSetVolume(HMIDIOUT hmo, DWORD dwVolume);
//C MMRESULT midiOutGetErrorTextA(MMRESULT mmrError,LPSTR pszText,UINT cchText);
MMRESULT midiOutGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText);
//C MMRESULT midiOutGetErrorTextW(MMRESULT mmrError,LPWSTR pszText,UINT cchText);
MMRESULT midiOutGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText);
//C MMRESULT midiOutOpen(LPHMIDIOUT phmo,UINT uDeviceID,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT midiOutOpen(LPHMIDIOUT phmo, UINT uDeviceID, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT midiOutClose(HMIDIOUT hmo);
MMRESULT midiOutClose(HMIDIOUT hmo);
//C MMRESULT midiOutPrepareHeader(HMIDIOUT hmo,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiOutPrepareHeader(HMIDIOUT hmo, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiOutUnprepareHeader(HMIDIOUT hmo,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiOutUnprepareHeader(HMIDIOUT hmo, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiOutShortMsg(HMIDIOUT hmo,DWORD dwMsg);
MMRESULT midiOutShortMsg(HMIDIOUT hmo, DWORD dwMsg);
//C MMRESULT midiOutLongMsg(HMIDIOUT hmo,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiOutLongMsg(HMIDIOUT hmo, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiOutReset(HMIDIOUT hmo);
MMRESULT midiOutReset(HMIDIOUT hmo);
//C MMRESULT midiOutCachePatches(HMIDIOUT hmo,UINT uBank,LPWORD pwpa,UINT fuCache);
MMRESULT midiOutCachePatches(HMIDIOUT hmo, UINT uBank, LPWORD pwpa, UINT fuCache);
//C MMRESULT midiOutCacheDrumPatches(HMIDIOUT hmo,UINT uPatch,LPWORD pwkya,UINT fuCache);
MMRESULT midiOutCacheDrumPatches(HMIDIOUT hmo, UINT uPatch, LPWORD pwkya, UINT fuCache);
//C MMRESULT midiOutGetID(HMIDIOUT hmo,LPUINT puDeviceID);
MMRESULT midiOutGetID(HMIDIOUT hmo, LPUINT puDeviceID);
//C MMRESULT midiOutMessage(HMIDIOUT hmo,UINT uMsg,DWORD_PTR dw1,DWORD_PTR dw2);
MMRESULT midiOutMessage(HMIDIOUT hmo, UINT uMsg, DWORD_PTR dw1, DWORD_PTR dw2);
//C UINT midiInGetNumDevs(void);
UINT midiInGetNumDevs();
//C MMRESULT midiInGetDevCapsA(UINT_PTR uDeviceID,LPMIDIINCAPSA pmic,UINT cbmic);
MMRESULT midiInGetDevCapsA(UINT_PTR uDeviceID, LPMIDIINCAPSA pmic, UINT cbmic);
//C MMRESULT midiInGetDevCapsW(UINT_PTR uDeviceID,LPMIDIINCAPSW pmic,UINT cbmic);
MMRESULT midiInGetDevCapsW(UINT_PTR uDeviceID, LPMIDIINCAPSW pmic, UINT cbmic);
//C MMRESULT midiInGetErrorTextA(MMRESULT mmrError,LPSTR pszText,UINT cchText);
MMRESULT midiInGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText);
//C MMRESULT midiInGetErrorTextW(MMRESULT mmrError,LPWSTR pszText,UINT cchText);
MMRESULT midiInGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText);
//C MMRESULT midiInOpen(LPHMIDIIN phmi,UINT uDeviceID,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT midiInOpen(LPHMIDIIN phmi, UINT uDeviceID, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT midiInClose(HMIDIIN hmi);
MMRESULT midiInClose(HMIDIIN hmi);
//C MMRESULT midiInPrepareHeader(HMIDIIN hmi,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiInPrepareHeader(HMIDIIN hmi, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiInUnprepareHeader(HMIDIIN hmi,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiInUnprepareHeader(HMIDIIN hmi, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiInAddBuffer(HMIDIIN hmi,LPMIDIHDR pmh,UINT cbmh);
MMRESULT midiInAddBuffer(HMIDIIN hmi, LPMIDIHDR pmh, UINT cbmh);
//C MMRESULT midiInStart(HMIDIIN hmi);
MMRESULT midiInStart(HMIDIIN hmi);
//C MMRESULT midiInStop(HMIDIIN hmi);
MMRESULT midiInStop(HMIDIIN hmi);
//C MMRESULT midiInReset(HMIDIIN hmi);
MMRESULT midiInReset(HMIDIIN hmi);
//C MMRESULT midiInGetID(HMIDIIN hmi,LPUINT puDeviceID);
MMRESULT midiInGetID(HMIDIIN hmi, LPUINT puDeviceID);
//C MMRESULT midiInMessage(HMIDIIN hmi,UINT uMsg,DWORD_PTR dw1,DWORD_PTR dw2);
MMRESULT midiInMessage(HMIDIIN hmi, UINT uMsg, DWORD_PTR dw1, DWORD_PTR dw2);
//C typedef struct tagAUXCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C WORD wTechnology;
//C WORD wReserved1;
//C DWORD dwSupport;
//C } AUXCAPSA,*PAUXCAPSA,*NPAUXCAPSA,*LPAUXCAPSA;
struct tagAUXCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
WORD wTechnology;
WORD wReserved1;
DWORD dwSupport;
}
alias tagAUXCAPSA AUXCAPSA;
alias tagAUXCAPSA *PAUXCAPSA;
alias tagAUXCAPSA *NPAUXCAPSA;
alias tagAUXCAPSA *LPAUXCAPSA;
//C typedef struct tagAUXCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C WORD wTechnology;
//C WORD wReserved1;
//C DWORD dwSupport;
//C } AUXCAPSW,*PAUXCAPSW,*NPAUXCAPSW,*LPAUXCAPSW;
struct tagAUXCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
WORD wTechnology;
WORD wReserved1;
DWORD dwSupport;
}
alias tagAUXCAPSW AUXCAPSW;
alias tagAUXCAPSW *PAUXCAPSW;
alias tagAUXCAPSW *NPAUXCAPSW;
alias tagAUXCAPSW *LPAUXCAPSW;
//C typedef AUXCAPSA AUXCAPS;
alias AUXCAPSA AUXCAPS;
//C typedef PAUXCAPSA PAUXCAPS;
alias PAUXCAPSA PAUXCAPS;
//C typedef NPAUXCAPSA NPAUXCAPS;
alias NPAUXCAPSA NPAUXCAPS;
//C typedef LPAUXCAPSA LPAUXCAPS;
alias LPAUXCAPSA LPAUXCAPS;
//C typedef struct tagAUXCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C WORD wTechnology;
//C WORD wReserved1;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } AUXCAPS2A,*PAUXCAPS2A,*NPAUXCAPS2A,*LPAUXCAPS2A;
struct tagAUXCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
WORD wTechnology;
WORD wReserved1;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagAUXCAPS2A AUXCAPS2A;
alias tagAUXCAPS2A *PAUXCAPS2A;
alias tagAUXCAPS2A *NPAUXCAPS2A;
alias tagAUXCAPS2A *LPAUXCAPS2A;
//C typedef struct tagAUXCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C WORD wTechnology;
//C WORD wReserved1;
//C DWORD dwSupport;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } AUXCAPS2W,*PAUXCAPS2W,*NPAUXCAPS2W,*LPAUXCAPS2W;
struct tagAUXCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
WORD wTechnology;
WORD wReserved1;
DWORD dwSupport;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagAUXCAPS2W AUXCAPS2W;
alias tagAUXCAPS2W *PAUXCAPS2W;
alias tagAUXCAPS2W *NPAUXCAPS2W;
alias tagAUXCAPS2W *LPAUXCAPS2W;
//C typedef AUXCAPS2A AUXCAPS2;
alias AUXCAPS2A AUXCAPS2;
//C typedef PAUXCAPS2A PAUXCAPS2;
alias PAUXCAPS2A PAUXCAPS2;
//C typedef NPAUXCAPS2A NPAUXCAPS2;
alias NPAUXCAPS2A NPAUXCAPS2;
//C typedef LPAUXCAPS2A LPAUXCAPS2;
alias LPAUXCAPS2A LPAUXCAPS2;
//C UINT auxGetNumDevs(void);
UINT auxGetNumDevs();
//C MMRESULT auxGetDevCapsA(UINT_PTR uDeviceID,LPAUXCAPSA pac,UINT cbac);
MMRESULT auxGetDevCapsA(UINT_PTR uDeviceID, LPAUXCAPSA pac, UINT cbac);
//C MMRESULT auxGetDevCapsW(UINT_PTR uDeviceID,LPAUXCAPSW pac,UINT cbac);
MMRESULT auxGetDevCapsW(UINT_PTR uDeviceID, LPAUXCAPSW pac, UINT cbac);
//C MMRESULT auxSetVolume(UINT uDeviceID,DWORD dwVolume);
MMRESULT auxSetVolume(UINT uDeviceID, DWORD dwVolume);
//C MMRESULT auxGetVolume(UINT uDeviceID,LPDWORD pdwVolume);
MMRESULT auxGetVolume(UINT uDeviceID, LPDWORD pdwVolume);
//C MMRESULT auxOutMessage(UINT uDeviceID,UINT uMsg,DWORD_PTR dw1,DWORD_PTR dw2);
MMRESULT auxOutMessage(UINT uDeviceID, UINT uMsg, DWORD_PTR dw1, DWORD_PTR dw2);
//C struct HMIXEROBJ__ { int unused; }; typedef struct HMIXEROBJ__ *HMIXEROBJ;
struct HMIXEROBJ__
{
int unused;
}
alias HMIXEROBJ__ *HMIXEROBJ;
//C typedef HMIXEROBJ *LPHMIXEROBJ;
alias HMIXEROBJ *LPHMIXEROBJ;
//C struct HMIXER__ { int unused; }; typedef struct HMIXER__ *HMIXER;
struct HMIXER__
{
int unused;
}
alias HMIXER__ *HMIXER;
//C typedef HMIXER *LPHMIXER;
alias HMIXER *LPHMIXER;
//C UINT mixerGetNumDevs(void);
UINT mixerGetNumDevs();
//C typedef struct tagMIXERCAPSA {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD fdwSupport;
//C DWORD cDestinations;
//C } MIXERCAPSA,*PMIXERCAPSA,*LPMIXERCAPSA;
struct tagMIXERCAPSA
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD fdwSupport;
DWORD cDestinations;
}
alias tagMIXERCAPSA MIXERCAPSA;
alias tagMIXERCAPSA *PMIXERCAPSA;
alias tagMIXERCAPSA *LPMIXERCAPSA;
//C typedef struct tagMIXERCAPSW {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD fdwSupport;
//C DWORD cDestinations;
//C } MIXERCAPSW,*PMIXERCAPSW,*LPMIXERCAPSW;
struct tagMIXERCAPSW
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD fdwSupport;
DWORD cDestinations;
}
alias tagMIXERCAPSW MIXERCAPSW;
alias tagMIXERCAPSW *PMIXERCAPSW;
alias tagMIXERCAPSW *LPMIXERCAPSW;
//C typedef MIXERCAPSA MIXERCAPS;
alias MIXERCAPSA MIXERCAPS;
//C typedef PMIXERCAPSA PMIXERCAPS;
alias PMIXERCAPSA PMIXERCAPS;
//C typedef LPMIXERCAPSA LPMIXERCAPS;
alias LPMIXERCAPSA LPMIXERCAPS;
//C typedef struct tagMIXERCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C DWORD fdwSupport;
//C DWORD cDestinations;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIXERCAPS2A,*PMIXERCAPS2A,*LPMIXERCAPS2A;
struct tagMIXERCAPS2A
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
DWORD fdwSupport;
DWORD cDestinations;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIXERCAPS2A MIXERCAPS2A;
alias tagMIXERCAPS2A *PMIXERCAPS2A;
alias tagMIXERCAPS2A *LPMIXERCAPS2A;
//C typedef struct tagMIXERCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C DWORD fdwSupport;
//C DWORD cDestinations;
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } MIXERCAPS2W,*PMIXERCAPS2W,*LPMIXERCAPS2W;
struct tagMIXERCAPS2W
{
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
DWORD fdwSupport;
DWORD cDestinations;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagMIXERCAPS2W MIXERCAPS2W;
alias tagMIXERCAPS2W *PMIXERCAPS2W;
alias tagMIXERCAPS2W *LPMIXERCAPS2W;
//C typedef MIXERCAPS2A MIXERCAPS2;
alias MIXERCAPS2A MIXERCAPS2;
//C typedef PMIXERCAPS2A PMIXERCAPS2;
alias PMIXERCAPS2A PMIXERCAPS2;
//C typedef LPMIXERCAPS2A LPMIXERCAPS2;
alias LPMIXERCAPS2A LPMIXERCAPS2;
//C MMRESULT mixerGetDevCapsA(UINT_PTR uMxId,LPMIXERCAPSA pmxcaps,UINT cbmxcaps);
MMRESULT mixerGetDevCapsA(UINT_PTR uMxId, LPMIXERCAPSA pmxcaps, UINT cbmxcaps);
//C MMRESULT mixerGetDevCapsW(UINT_PTR uMxId,LPMIXERCAPSW pmxcaps,UINT cbmxcaps);
MMRESULT mixerGetDevCapsW(UINT_PTR uMxId, LPMIXERCAPSW pmxcaps, UINT cbmxcaps);
//C MMRESULT mixerOpen(LPHMIXER phmx,UINT uMxId,DWORD_PTR dwCallback,DWORD_PTR dwInstance,DWORD fdwOpen);
MMRESULT mixerOpen(LPHMIXER phmx, UINT uMxId, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen);
//C MMRESULT mixerClose(HMIXER hmx);
MMRESULT mixerClose(HMIXER hmx);
//C DWORD mixerMessage(HMIXER hmx,UINT uMsg,DWORD_PTR dwParam1,DWORD_PTR dwParam2);
DWORD mixerMessage(HMIXER hmx, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
//C typedef struct tagMIXERLINEA {
//C DWORD cbStruct;
//C DWORD dwDestination;
//C DWORD dwSource;
//C DWORD dwLineID;
//C DWORD fdwLine;
//C DWORD_PTR dwUser;
//C DWORD dwComponentType;
//C DWORD cChannels;
//C DWORD cConnections;
//C DWORD cControls;
//C CHAR szShortName[16];
//C CHAR szName[64];
//C struct {
//C DWORD dwType;
//C DWORD dwDeviceID;
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C CHAR szPname[32];
//C } Target;
struct _N97
{
DWORD dwType;
DWORD dwDeviceID;
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
CHAR [32]szPname;
}
//C } MIXERLINEA,*PMIXERLINEA,*LPMIXERLINEA;
struct tagMIXERLINEA
{
DWORD cbStruct;
DWORD dwDestination;
DWORD dwSource;
DWORD dwLineID;
DWORD fdwLine;
DWORD_PTR dwUser;
DWORD dwComponentType;
DWORD cChannels;
DWORD cConnections;
DWORD cControls;
CHAR [16]szShortName;
CHAR [64]szName;
_N97 Target;
}
alias tagMIXERLINEA MIXERLINEA;
alias tagMIXERLINEA *PMIXERLINEA;
alias tagMIXERLINEA *LPMIXERLINEA;
//C typedef struct tagMIXERLINEW {
//C DWORD cbStruct;
//C DWORD dwDestination;
//C DWORD dwSource;
//C DWORD dwLineID;
//C DWORD fdwLine;
//C DWORD_PTR dwUser;
//C DWORD dwComponentType;
//C DWORD cChannels;
//C DWORD cConnections;
//C DWORD cControls;
//C WCHAR szShortName[16];
//C WCHAR szName[64];
//C struct {
//C DWORD dwType;
//C DWORD dwDeviceID;
//C WORD wMid;
//C WORD wPid;
//C MMVERSION vDriverVersion;
//C WCHAR szPname[32];
//C } Target;
struct _N98
{
DWORD dwType;
DWORD dwDeviceID;
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR [32]szPname;
}
//C } MIXERLINEW,*PMIXERLINEW,*LPMIXERLINEW;
struct tagMIXERLINEW
{
DWORD cbStruct;
DWORD dwDestination;
DWORD dwSource;
DWORD dwLineID;
DWORD fdwLine;
DWORD_PTR dwUser;
DWORD dwComponentType;
DWORD cChannels;
DWORD cConnections;
DWORD cControls;
WCHAR [16]szShortName;
WCHAR [64]szName;
_N98 Target;
}
alias tagMIXERLINEW MIXERLINEW;
alias tagMIXERLINEW *PMIXERLINEW;
alias tagMIXERLINEW *LPMIXERLINEW;
//C typedef MIXERLINEA MIXERLINE;
alias MIXERLINEA MIXERLINE;
//C typedef PMIXERLINEA PMIXERLINE;
alias PMIXERLINEA PMIXERLINE;
//C typedef LPMIXERLINEA LPMIXERLINE;
alias LPMIXERLINEA LPMIXERLINE;
//C MMRESULT mixerGetLineInfoA(HMIXEROBJ hmxobj,LPMIXERLINEA pmxl,DWORD fdwInfo);
MMRESULT mixerGetLineInfoA(HMIXEROBJ hmxobj, LPMIXERLINEA pmxl, DWORD fdwInfo);
//C MMRESULT mixerGetLineInfoW(HMIXEROBJ hmxobj,LPMIXERLINEW pmxl,DWORD fdwInfo);
MMRESULT mixerGetLineInfoW(HMIXEROBJ hmxobj, LPMIXERLINEW pmxl, DWORD fdwInfo);
//C MMRESULT mixerGetID(HMIXEROBJ hmxobj,UINT *puMxId,DWORD fdwId);
MMRESULT mixerGetID(HMIXEROBJ hmxobj, UINT *puMxId, DWORD fdwId);
//C typedef struct tagMIXERCONTROLA {
//C DWORD cbStruct;
//C DWORD dwControlID;
//C DWORD dwControlType;
//C DWORD fdwControl;
//C DWORD cMultipleItems;
//C CHAR szShortName[16];
//C CHAR szName[64];
//C union {
//C struct {
//C LONG lMinimum;
//C LONG lMaximum;
//C } ;
struct _N100
{
LONG lMinimum;
LONG lMaximum;
}
//C struct {
//C DWORD dwMinimum;
//C DWORD dwMaximum;
//C } ;
struct _N101
{
DWORD dwMinimum;
DWORD dwMaximum;
}
//C DWORD dwReserved[6];
//C } Bounds;
union _N99
{
LONG lMinimum;
LONG lMaximum;
DWORD dwMinimum;
DWORD dwMaximum;
DWORD [6]dwReserved;
}
//C union {
//C DWORD cSteps;
//C DWORD cbCustomData;
//C DWORD dwReserved[6];
//C } Metrics;
union _N102
{
DWORD cSteps;
DWORD cbCustomData;
DWORD [6]dwReserved;
}
//C } MIXERCONTROLA,*PMIXERCONTROLA,*LPMIXERCONTROLA;
struct tagMIXERCONTROLA
{
DWORD cbStruct;
DWORD dwControlID;
DWORD dwControlType;
DWORD fdwControl;
DWORD cMultipleItems;
CHAR [16]szShortName;
CHAR [64]szName;
_N99 Bounds;
_N102 Metrics;
}
alias tagMIXERCONTROLA MIXERCONTROLA;
alias tagMIXERCONTROLA *PMIXERCONTROLA;
alias tagMIXERCONTROLA *LPMIXERCONTROLA;
//C typedef struct tagMIXERCONTROLW {
//C DWORD cbStruct;
//C DWORD dwControlID;
//C DWORD dwControlType;
//C DWORD fdwControl;
//C DWORD cMultipleItems;
//C WCHAR szShortName[16];
//C WCHAR szName[64];
//C union {
//C struct {
//C LONG lMinimum;
//C LONG lMaximum;
//C } ;
struct _N104
{
LONG lMinimum;
LONG lMaximum;
}
//C struct {
//C DWORD dwMinimum;
//C DWORD dwMaximum;
//C } ;
struct _N105
{
DWORD dwMinimum;
DWORD dwMaximum;
}
//C DWORD dwReserved[6];
//C } Bounds;
union _N103
{
LONG lMinimum;
LONG lMaximum;
DWORD dwMinimum;
DWORD dwMaximum;
DWORD [6]dwReserved;
}
//C union {
//C DWORD cSteps;
//C DWORD cbCustomData;
//C DWORD dwReserved[6];
//C } Metrics;
union _N106
{
DWORD cSteps;
DWORD cbCustomData;
DWORD [6]dwReserved;
}
//C } MIXERCONTROLW,*PMIXERCONTROLW,*LPMIXERCONTROLW;
struct tagMIXERCONTROLW
{
DWORD cbStruct;
DWORD dwControlID;
DWORD dwControlType;
DWORD fdwControl;
DWORD cMultipleItems;
WCHAR [16]szShortName;
WCHAR [64]szName;
_N103 Bounds;
_N106 Metrics;
}
alias tagMIXERCONTROLW MIXERCONTROLW;
alias tagMIXERCONTROLW *PMIXERCONTROLW;
alias tagMIXERCONTROLW *LPMIXERCONTROLW;
//C typedef MIXERCONTROLA MIXERCONTROL;
alias MIXERCONTROLA MIXERCONTROL;
//C typedef PMIXERCONTROLA PMIXERCONTROL;
alias PMIXERCONTROLA PMIXERCONTROL;
//C typedef LPMIXERCONTROLA LPMIXERCONTROL;
alias LPMIXERCONTROLA LPMIXERCONTROL;
//C typedef struct tagMIXERLINECONTROLSA {
//C DWORD cbStruct;
//C DWORD dwLineID;
//C union {
//C DWORD dwControlID;
//C DWORD dwControlType;
//C } ;
union _N107
{
DWORD dwControlID;
DWORD dwControlType;
}
//C DWORD cControls;
//C DWORD cbmxctrl;
//C LPMIXERCONTROLA pamxctrl;
//C } MIXERLINECONTROLSA,*PMIXERLINECONTROLSA,*LPMIXERLINECONTROLSA;
struct tagMIXERLINECONTROLSA
{
DWORD cbStruct;
DWORD dwLineID;
DWORD dwControlID;
DWORD dwControlType;
DWORD cControls;
DWORD cbmxctrl;
LPMIXERCONTROLA pamxctrl;
}
alias tagMIXERLINECONTROLSA MIXERLINECONTROLSA;
alias tagMIXERLINECONTROLSA *PMIXERLINECONTROLSA;
alias tagMIXERLINECONTROLSA *LPMIXERLINECONTROLSA;
//C typedef struct tagMIXERLINECONTROLSW {
//C DWORD cbStruct;
//C DWORD dwLineID;
//C union {
//C DWORD dwControlID;
//C DWORD dwControlType;
//C } ;
union _N108
{
DWORD dwControlID;
DWORD dwControlType;
}
//C DWORD cControls;
//C DWORD cbmxctrl;
//C LPMIXERCONTROLW pamxctrl;
//C } MIXERLINECONTROLSW,*PMIXERLINECONTROLSW,*LPMIXERLINECONTROLSW;
struct tagMIXERLINECONTROLSW
{
DWORD cbStruct;
DWORD dwLineID;
DWORD dwControlID;
DWORD dwControlType;
DWORD cControls;
DWORD cbmxctrl;
LPMIXERCONTROLW pamxctrl;
}
alias tagMIXERLINECONTROLSW MIXERLINECONTROLSW;
alias tagMIXERLINECONTROLSW *PMIXERLINECONTROLSW;
alias tagMIXERLINECONTROLSW *LPMIXERLINECONTROLSW;
//C typedef MIXERLINECONTROLSA MIXERLINECONTROLS;
alias MIXERLINECONTROLSA MIXERLINECONTROLS;
//C typedef PMIXERLINECONTROLSA PMIXERLINECONTROLS;
alias PMIXERLINECONTROLSA PMIXERLINECONTROLS;
//C typedef LPMIXERLINECONTROLSA LPMIXERLINECONTROLS;
alias LPMIXERLINECONTROLSA LPMIXERLINECONTROLS;
//C MMRESULT mixerGetLineControlsA(HMIXEROBJ hmxobj,LPMIXERLINECONTROLSA pmxlc,DWORD fdwControls);
MMRESULT mixerGetLineControlsA(HMIXEROBJ hmxobj, LPMIXERLINECONTROLSA pmxlc, DWORD fdwControls);
//C MMRESULT mixerGetLineControlsW(HMIXEROBJ hmxobj,LPMIXERLINECONTROLSW pmxlc,DWORD fdwControls);
MMRESULT mixerGetLineControlsW(HMIXEROBJ hmxobj, LPMIXERLINECONTROLSW pmxlc, DWORD fdwControls);
//C typedef struct tMIXERCONTROLDETAILS {
//C DWORD cbStruct;
//C DWORD dwControlID;
//C DWORD cChannels;
//C union {
//C HWND hwndOwner;
//C DWORD cMultipleItems;
//C } ;
union _N109
{
HWND hwndOwner;
DWORD cMultipleItems;
}
//C DWORD cbDetails;
//C LPVOID paDetails;
//C } MIXERCONTROLDETAILS,*PMIXERCONTROLDETAILS,*LPMIXERCONTROLDETAILS;
struct tMIXERCONTROLDETAILS
{
DWORD cbStruct;
DWORD dwControlID;
DWORD cChannels;
HWND hwndOwner;
DWORD cMultipleItems;
DWORD cbDetails;
LPVOID paDetails;
}
alias tMIXERCONTROLDETAILS MIXERCONTROLDETAILS;
alias tMIXERCONTROLDETAILS *PMIXERCONTROLDETAILS;
alias tMIXERCONTROLDETAILS *LPMIXERCONTROLDETAILS;
//C typedef struct tagMIXERCONTROLDETAILS_LISTTEXTA {
//C DWORD dwParam1;
//C DWORD dwParam2;
//C CHAR szName[64];
//C } MIXERCONTROLDETAILS_LISTTEXTA,*PMIXERCONTROLDETAILS_LISTTEXTA,*LPMIXERCONTROLDETAILS_LISTTEXTA;
struct tagMIXERCONTROLDETAILS_LISTTEXTA
{
DWORD dwParam1;
DWORD dwParam2;
CHAR [64]szName;
}
alias tagMIXERCONTROLDETAILS_LISTTEXTA MIXERCONTROLDETAILS_LISTTEXTA;
alias tagMIXERCONTROLDETAILS_LISTTEXTA *PMIXERCONTROLDETAILS_LISTTEXTA;
alias tagMIXERCONTROLDETAILS_LISTTEXTA *LPMIXERCONTROLDETAILS_LISTTEXTA;
//C typedef struct tagMIXERCONTROLDETAILS_LISTTEXTW {
//C DWORD dwParam1;
//C DWORD dwParam2;
//C WCHAR szName[64];
//C } MIXERCONTROLDETAILS_LISTTEXTW,*PMIXERCONTROLDETAILS_LISTTEXTW,*LPMIXERCONTROLDETAILS_LISTTEXTW;
struct tagMIXERCONTROLDETAILS_LISTTEXTW
{
DWORD dwParam1;
DWORD dwParam2;
WCHAR [64]szName;
}
alias tagMIXERCONTROLDETAILS_LISTTEXTW MIXERCONTROLDETAILS_LISTTEXTW;
alias tagMIXERCONTROLDETAILS_LISTTEXTW *PMIXERCONTROLDETAILS_LISTTEXTW;
alias tagMIXERCONTROLDETAILS_LISTTEXTW *LPMIXERCONTROLDETAILS_LISTTEXTW;
//C typedef MIXERCONTROLDETAILS_LISTTEXTA MIXERCONTROLDETAILS_LISTTEXT;
alias MIXERCONTROLDETAILS_LISTTEXTA MIXERCONTROLDETAILS_LISTTEXT;
//C typedef PMIXERCONTROLDETAILS_LISTTEXTA PMIXERCONTROLDETAILS_LISTTEXT;
alias PMIXERCONTROLDETAILS_LISTTEXTA PMIXERCONTROLDETAILS_LISTTEXT;
//C typedef LPMIXERCONTROLDETAILS_LISTTEXTA LPMIXERCONTROLDETAILS_LISTTEXT;
alias LPMIXERCONTROLDETAILS_LISTTEXTA LPMIXERCONTROLDETAILS_LISTTEXT;
//C typedef struct tMIXERCONTROLDETAILS_BOOLEAN {
//C LONG fValue;
//C } MIXERCONTROLDETAILS_BOOLEAN,*PMIXERCONTROLDETAILS_BOOLEAN,*LPMIXERCONTROLDETAILS_BOOLEAN;
struct tMIXERCONTROLDETAILS_BOOLEAN
{
LONG fValue;
}
alias tMIXERCONTROLDETAILS_BOOLEAN MIXERCONTROLDETAILS_BOOLEAN;
alias tMIXERCONTROLDETAILS_BOOLEAN *PMIXERCONTROLDETAILS_BOOLEAN;
alias tMIXERCONTROLDETAILS_BOOLEAN *LPMIXERCONTROLDETAILS_BOOLEAN;
//C typedef struct tMIXERCONTROLDETAILS_SIGNED {
//C LONG lValue;
//C } MIXERCONTROLDETAILS_SIGNED,*PMIXERCONTROLDETAILS_SIGNED,*LPMIXERCONTROLDETAILS_SIGNED;
struct tMIXERCONTROLDETAILS_SIGNED
{
LONG lValue;
}
alias tMIXERCONTROLDETAILS_SIGNED MIXERCONTROLDETAILS_SIGNED;
alias tMIXERCONTROLDETAILS_SIGNED *PMIXERCONTROLDETAILS_SIGNED;
alias tMIXERCONTROLDETAILS_SIGNED *LPMIXERCONTROLDETAILS_SIGNED;
//C typedef struct tMIXERCONTROLDETAILS_UNSIGNED {
//C DWORD dwValue;
//C } MIXERCONTROLDETAILS_UNSIGNED,*PMIXERCONTROLDETAILS_UNSIGNED,*LPMIXERCONTROLDETAILS_UNSIGNED;
struct tMIXERCONTROLDETAILS_UNSIGNED
{
DWORD dwValue;
}
alias tMIXERCONTROLDETAILS_UNSIGNED MIXERCONTROLDETAILS_UNSIGNED;
alias tMIXERCONTROLDETAILS_UNSIGNED *PMIXERCONTROLDETAILS_UNSIGNED;
alias tMIXERCONTROLDETAILS_UNSIGNED *LPMIXERCONTROLDETAILS_UNSIGNED;
//C MMRESULT mixerGetControlDetailsA(HMIXEROBJ hmxobj,LPMIXERCONTROLDETAILS pmxcd,DWORD fdwDetails);
MMRESULT mixerGetControlDetailsA(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails);
//C MMRESULT mixerGetControlDetailsW(HMIXEROBJ hmxobj,LPMIXERCONTROLDETAILS pmxcd,DWORD fdwDetails);
MMRESULT mixerGetControlDetailsW(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails);
//C MMRESULT mixerSetControlDetails(HMIXEROBJ hmxobj,LPMIXERCONTROLDETAILS pmxcd,DWORD fdwDetails);
MMRESULT mixerSetControlDetails(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails);
//C typedef void ( TIMECALLBACK)(UINT uTimerID,UINT uMsg,DWORD_PTR dwUser,DWORD_PTR dw1,DWORD_PTR dw2);
alias void function(UINT uTimerID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)TIMECALLBACK;
//C typedef TIMECALLBACK *LPTIMECALLBACK;
alias void function(UINT uTimerID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)LPTIMECALLBACK;
//C typedef struct timecaps_tag {
//C UINT wPeriodMin;
//C UINT wPeriodMax;
//C } TIMECAPS,*PTIMECAPS,*NPTIMECAPS,*LPTIMECAPS;
struct timecaps_tag
{
UINT wPeriodMin;
UINT wPeriodMax;
}
alias timecaps_tag TIMECAPS;
alias timecaps_tag *PTIMECAPS;
alias timecaps_tag *NPTIMECAPS;
alias timecaps_tag *LPTIMECAPS;
//C MMRESULT timeGetSystemTime(LPMMTIME pmmt,UINT cbmmt);
MMRESULT timeGetSystemTime(LPMMTIME pmmt, UINT cbmmt);
//C DWORD timeGetTime(void);
DWORD timeGetTime();
//C MMRESULT timeSetEvent(UINT uDelay,UINT uResolution,LPTIMECALLBACK fptc,DWORD_PTR dwUser,UINT fuEvent);
MMRESULT timeSetEvent(UINT uDelay, UINT uResolution, LPTIMECALLBACK fptc, DWORD_PTR dwUser, UINT fuEvent);
//C MMRESULT timeKillEvent(UINT uTimerID);
MMRESULT timeKillEvent(UINT uTimerID);
//C MMRESULT timeGetDevCaps(LPTIMECAPS ptc,UINT cbtc);
MMRESULT timeGetDevCaps(LPTIMECAPS ptc, UINT cbtc);
//C MMRESULT timeBeginPeriod(UINT uPeriod);
MMRESULT timeBeginPeriod(UINT uPeriod);
//C MMRESULT timeEndPeriod(UINT uPeriod);
MMRESULT timeEndPeriod(UINT uPeriod);
//C typedef struct tagJOYCAPSA {
//C WORD wMid;
//C WORD wPid;
//C CHAR szPname[32];
//C UINT wXmin;
//C UINT wXmax;
//C UINT wYmin;
//C UINT wYmax;
//C UINT wZmin;
//C UINT wZmax;
//C UINT wNumButtons;
//C UINT wPeriodMin;
//C UINT wPeriodMax;
//C UINT wRmin;
//C UINT wRmax;
//C UINT wUmin;
//C UINT wUmax;
//C UINT wVmin;
//C UINT wVmax;
//C UINT wCaps;
//C UINT wMaxAxes;
//C UINT wNumAxes;
//C UINT wMaxButtons;
//C CHAR szRegKey[32];
//C CHAR szOEMVxD[260];
//C } JOYCAPSA,*PJOYCAPSA,*NPJOYCAPSA,*LPJOYCAPSA;
struct tagJOYCAPSA
{
WORD wMid;
WORD wPid;
CHAR [32]szPname;
UINT wXmin;
UINT wXmax;
UINT wYmin;
UINT wYmax;
UINT wZmin;
UINT wZmax;
UINT wNumButtons;
UINT wPeriodMin;
UINT wPeriodMax;
UINT wRmin;
UINT wRmax;
UINT wUmin;
UINT wUmax;
UINT wVmin;
UINT wVmax;
UINT wCaps;
UINT wMaxAxes;
UINT wNumAxes;
UINT wMaxButtons;
CHAR [32]szRegKey;
CHAR [260]szOEMVxD;
}
alias tagJOYCAPSA JOYCAPSA;
alias tagJOYCAPSA *PJOYCAPSA;
alias tagJOYCAPSA *NPJOYCAPSA;
alias tagJOYCAPSA *LPJOYCAPSA;
//C typedef struct tagJOYCAPSW {
//C WORD wMid;
//C WORD wPid;
//C WCHAR szPname[32];
//C UINT wXmin;
//C UINT wXmax;
//C UINT wYmin;
//C UINT wYmax;
//C UINT wZmin;
//C UINT wZmax;
//C UINT wNumButtons;
//C UINT wPeriodMin;
//C UINT wPeriodMax;
//C UINT wRmin;
//C UINT wRmax;
//C UINT wUmin;
//C UINT wUmax;
//C UINT wVmin;
//C UINT wVmax;
//C UINT wCaps;
//C UINT wMaxAxes;
//C UINT wNumAxes;
//C UINT wMaxButtons;
//C WCHAR szRegKey[32];
//C WCHAR szOEMVxD[260];
//C } JOYCAPSW,*PJOYCAPSW,*NPJOYCAPSW,*LPJOYCAPSW;
struct tagJOYCAPSW
{
WORD wMid;
WORD wPid;
WCHAR [32]szPname;
UINT wXmin;
UINT wXmax;
UINT wYmin;
UINT wYmax;
UINT wZmin;
UINT wZmax;
UINT wNumButtons;
UINT wPeriodMin;
UINT wPeriodMax;
UINT wRmin;
UINT wRmax;
UINT wUmin;
UINT wUmax;
UINT wVmin;
UINT wVmax;
UINT wCaps;
UINT wMaxAxes;
UINT wNumAxes;
UINT wMaxButtons;
WCHAR [32]szRegKey;
WCHAR [260]szOEMVxD;
}
alias tagJOYCAPSW JOYCAPSW;
alias tagJOYCAPSW *PJOYCAPSW;
alias tagJOYCAPSW *NPJOYCAPSW;
alias tagJOYCAPSW *LPJOYCAPSW;
//C typedef JOYCAPSA JOYCAPS;
alias JOYCAPSA JOYCAPS;
//C typedef PJOYCAPSA PJOYCAPS;
alias PJOYCAPSA PJOYCAPS;
//C typedef NPJOYCAPSA NPJOYCAPS;
alias NPJOYCAPSA NPJOYCAPS;
//C typedef LPJOYCAPSA LPJOYCAPS;
alias LPJOYCAPSA LPJOYCAPS;
//C typedef struct tagJOYCAPS2A {
//C WORD wMid;
//C WORD wPid;
//C CHAR szPname[32];
//C UINT wXmin;
//C UINT wXmax;
//C UINT wYmin;
//C UINT wYmax;
//C UINT wZmin;
//C UINT wZmax;
//C UINT wNumButtons;
//C UINT wPeriodMin;
//C UINT wPeriodMax;
//C UINT wRmin;
//C UINT wRmax;
//C UINT wUmin;
//C UINT wUmax;
//C UINT wVmin;
//C UINT wVmax;
//C UINT wCaps;
//C UINT wMaxAxes;
//C UINT wNumAxes;
//C UINT wMaxButtons;
//C CHAR szRegKey[32];
//C CHAR szOEMVxD[260];
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } JOYCAPS2A,*PJOYCAPS2A,*NPJOYCAPS2A,*LPJOYCAPS2A;
struct tagJOYCAPS2A
{
WORD wMid;
WORD wPid;
CHAR [32]szPname;
UINT wXmin;
UINT wXmax;
UINT wYmin;
UINT wYmax;
UINT wZmin;
UINT wZmax;
UINT wNumButtons;
UINT wPeriodMin;
UINT wPeriodMax;
UINT wRmin;
UINT wRmax;
UINT wUmin;
UINT wUmax;
UINT wVmin;
UINT wVmax;
UINT wCaps;
UINT wMaxAxes;
UINT wNumAxes;
UINT wMaxButtons;
CHAR [32]szRegKey;
CHAR [260]szOEMVxD;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagJOYCAPS2A JOYCAPS2A;
alias tagJOYCAPS2A *PJOYCAPS2A;
alias tagJOYCAPS2A *NPJOYCAPS2A;
alias tagJOYCAPS2A *LPJOYCAPS2A;
//C typedef struct tagJOYCAPS2W {
//C WORD wMid;
//C WORD wPid;
//C WCHAR szPname[32];
//C UINT wXmin;
//C UINT wXmax;
//C UINT wYmin;
//C UINT wYmax;
//C UINT wZmin;
//C UINT wZmax;
//C UINT wNumButtons;
//C UINT wPeriodMin;
//C UINT wPeriodMax;
//C UINT wRmin;
//C UINT wRmax;
//C UINT wUmin;
//C UINT wUmax;
//C UINT wVmin;
//C UINT wVmax;
//C UINT wCaps;
//C UINT wMaxAxes;
//C UINT wNumAxes;
//C UINT wMaxButtons;
//C WCHAR szRegKey[32];
//C WCHAR szOEMVxD[260];
//C GUID ManufacturerGuid;
//C GUID ProductGuid;
//C GUID NameGuid;
//C } JOYCAPS2W,*PJOYCAPS2W,*NPJOYCAPS2W,*LPJOYCAPS2W;
struct tagJOYCAPS2W
{
WORD wMid;
WORD wPid;
WCHAR [32]szPname;
UINT wXmin;
UINT wXmax;
UINT wYmin;
UINT wYmax;
UINT wZmin;
UINT wZmax;
UINT wNumButtons;
UINT wPeriodMin;
UINT wPeriodMax;
UINT wRmin;
UINT wRmax;
UINT wUmin;
UINT wUmax;
UINT wVmin;
UINT wVmax;
UINT wCaps;
UINT wMaxAxes;
UINT wNumAxes;
UINT wMaxButtons;
WCHAR [32]szRegKey;
WCHAR [260]szOEMVxD;
GUID ManufacturerGuid;
GUID ProductGuid;
GUID NameGuid;
}
alias tagJOYCAPS2W JOYCAPS2W;
alias tagJOYCAPS2W *PJOYCAPS2W;
alias tagJOYCAPS2W *NPJOYCAPS2W;
alias tagJOYCAPS2W *LPJOYCAPS2W;
//C typedef JOYCAPS2A JOYCAPS2;
alias JOYCAPS2A JOYCAPS2;
//C typedef PJOYCAPS2A PJOYCAPS2;
alias PJOYCAPS2A PJOYCAPS2;
//C typedef NPJOYCAPS2A NPJOYCAPS2;
alias NPJOYCAPS2A NPJOYCAPS2;
//C typedef LPJOYCAPS2A LPJOYCAPS2;
alias LPJOYCAPS2A LPJOYCAPS2;
//C typedef struct joyinfo_tag {
//C UINT wXpos;
//C UINT wYpos;
//C UINT wZpos;
//C UINT wButtons;
//C } JOYINFO,*PJOYINFO,*NPJOYINFO,*LPJOYINFO;
struct joyinfo_tag
{
UINT wXpos;
UINT wYpos;
UINT wZpos;
UINT wButtons;
}
alias joyinfo_tag JOYINFO;
alias joyinfo_tag *PJOYINFO;
alias joyinfo_tag *NPJOYINFO;
alias joyinfo_tag *LPJOYINFO;
//C typedef struct joyinfoex_tag {
//C DWORD dwSize;
//C DWORD dwFlags;
//C DWORD dwXpos;
//C DWORD dwYpos;
//C DWORD dwZpos;
//C DWORD dwRpos;
//C DWORD dwUpos;
//C DWORD dwVpos;
//C DWORD dwButtons;
//C DWORD dwButtonNumber;
//C DWORD dwPOV;
//C DWORD dwReserved1;
//C DWORD dwReserved2;
//C } JOYINFOEX,*PJOYINFOEX,*NPJOYINFOEX,*LPJOYINFOEX;
struct joyinfoex_tag
{
DWORD dwSize;
DWORD dwFlags;
DWORD dwXpos;
DWORD dwYpos;
DWORD dwZpos;
DWORD dwRpos;
DWORD dwUpos;
DWORD dwVpos;
DWORD dwButtons;
DWORD dwButtonNumber;
DWORD dwPOV;
DWORD dwReserved1;
DWORD dwReserved2;
}
alias joyinfoex_tag JOYINFOEX;
alias joyinfoex_tag *PJOYINFOEX;
alias joyinfoex_tag *NPJOYINFOEX;
alias joyinfoex_tag *LPJOYINFOEX;
//C UINT joyGetNumDevs(void);
UINT joyGetNumDevs();
//C MMRESULT joyGetDevCapsA(UINT_PTR uJoyID,LPJOYCAPSA pjc,UINT cbjc);
MMRESULT joyGetDevCapsA(UINT_PTR uJoyID, LPJOYCAPSA pjc, UINT cbjc);
//C MMRESULT joyGetDevCapsW(UINT_PTR uJoyID,LPJOYCAPSW pjc,UINT cbjc);
MMRESULT joyGetDevCapsW(UINT_PTR uJoyID, LPJOYCAPSW pjc, UINT cbjc);
//C MMRESULT joyGetPos(UINT uJoyID,LPJOYINFO pji);
MMRESULT joyGetPos(UINT uJoyID, LPJOYINFO pji);
//C MMRESULT joyGetPosEx(UINT uJoyID,LPJOYINFOEX pji);
MMRESULT joyGetPosEx(UINT uJoyID, LPJOYINFOEX pji);
//C MMRESULT joyGetThreshold(UINT uJoyID,LPUINT puThreshold);
MMRESULT joyGetThreshold(UINT uJoyID, LPUINT puThreshold);
//C MMRESULT joyReleaseCapture(UINT uJoyID);
MMRESULT joyReleaseCapture(UINT uJoyID);
//C MMRESULT joySetCapture(HWND hwnd,UINT uJoyID,UINT uPeriod,WINBOOL fChanged);
MMRESULT joySetCapture(HWND hwnd, UINT uJoyID, UINT uPeriod, WINBOOL fChanged);
//C MMRESULT joySetThreshold(UINT uJoyID,UINT uThreshold);
MMRESULT joySetThreshold(UINT uJoyID, UINT uThreshold);
//C typedef DWORD FOURCC;
alias DWORD FOURCC;
//C typedef char *HPSTR;
alias char *HPSTR;
//C struct HMMIO__ { int unused; }; typedef struct HMMIO__ *HMMIO;
struct HMMIO__
{
int unused;
}
alias HMMIO__ *HMMIO;
//C typedef LRESULT ( MMIOPROC)(LPSTR lpmmioinfo,UINT uMsg,LPARAM lParam1,LPARAM lParam2);
alias LRESULT function(LPSTR lpmmioinfo, UINT uMsg, LPARAM lParam1, LPARAM lParam2)MMIOPROC;
//C typedef MMIOPROC *LPMMIOPROC;
alias LRESULT function(LPSTR lpmmioinfo, UINT uMsg, LPARAM lParam1, LPARAM lParam2)LPMMIOPROC;
//C typedef struct _MMIOINFO {
//C DWORD dwFlags;
//C FOURCC fccIOProc;
//C LPMMIOPROC pIOProc;
//C UINT wErrorRet;
//C HTASK htask;
//C LONG cchBuffer;
//C HPSTR pchBuffer;
//C HPSTR pchNext;
//C HPSTR pchEndRead;
//C HPSTR pchEndWrite;
//C LONG lBufOffset;
//C LONG lDiskOffset;
//C DWORD adwInfo[3];
//C DWORD dwReserved1;
//C DWORD dwReserved2;
//C HMMIO hmmio;
//C } MMIOINFO,*PMMIOINFO,*NPMMIOINFO,*LPMMIOINFO;
struct _MMIOINFO
{
DWORD dwFlags;
FOURCC fccIOProc;
LPMMIOPROC pIOProc;
UINT wErrorRet;
HTASK htask;
LONG cchBuffer;
HPSTR pchBuffer;
HPSTR pchNext;
HPSTR pchEndRead;
HPSTR pchEndWrite;
LONG lBufOffset;
LONG lDiskOffset;
DWORD [3]adwInfo;
DWORD dwReserved1;
DWORD dwReserved2;
HMMIO hmmio;
}
alias _MMIOINFO MMIOINFO;
alias _MMIOINFO *PMMIOINFO;
alias _MMIOINFO *NPMMIOINFO;
alias _MMIOINFO *LPMMIOINFO;
//C typedef const MMIOINFO *LPCMMIOINFO;
alias MMIOINFO *LPCMMIOINFO;
//C typedef struct _MMCKINFO {
//C FOURCC ckid;
//C DWORD cksize;
//C FOURCC fccType;
//C DWORD dwDataOffset;
//C DWORD dwFlags;
//C } MMCKINFO,*PMMCKINFO,*NPMMCKINFO,*LPMMCKINFO;
struct _MMCKINFO
{
FOURCC ckid;
DWORD cksize;
FOURCC fccType;
DWORD dwDataOffset;
DWORD dwFlags;
}
alias _MMCKINFO MMCKINFO;
alias _MMCKINFO *PMMCKINFO;
alias _MMCKINFO *NPMMCKINFO;
alias _MMCKINFO *LPMMCKINFO;
//C typedef const MMCKINFO *LPCMMCKINFO;
alias MMCKINFO *LPCMMCKINFO;
//C FOURCC mmioStringToFOURCCA(LPCSTR sz,UINT uFlags);
FOURCC mmioStringToFOURCCA(LPCSTR sz, UINT uFlags);
//C FOURCC mmioStringToFOURCCW(LPCWSTR sz,UINT uFlags);
FOURCC mmioStringToFOURCCW(LPCWSTR sz, UINT uFlags);
//C LPMMIOPROC mmioInstallIOProcA(FOURCC fccIOProc,LPMMIOPROC pIOProc,DWORD dwFlags);
LPMMIOPROC mmioInstallIOProcA(FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags);
//C LPMMIOPROC mmioInstallIOProcW(FOURCC fccIOProc,LPMMIOPROC pIOProc,DWORD dwFlags);
LPMMIOPROC mmioInstallIOProcW(FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags);
//C HMMIO mmioOpenA(LPSTR pszFileName,LPMMIOINFO pmmioinfo,DWORD fdwOpen);
HMMIO mmioOpenA(LPSTR pszFileName, LPMMIOINFO pmmioinfo, DWORD fdwOpen);
//C HMMIO mmioOpenW(LPWSTR pszFileName,LPMMIOINFO pmmioinfo,DWORD fdwOpen);
HMMIO mmioOpenW(LPWSTR pszFileName, LPMMIOINFO pmmioinfo, DWORD fdwOpen);
//C MMRESULT mmioRenameA(LPCSTR pszFileName,LPCSTR pszNewFileName,LPCMMIOINFO pmmioinfo,DWORD fdwRename);
MMRESULT mmioRenameA(LPCSTR pszFileName, LPCSTR pszNewFileName, LPCMMIOINFO pmmioinfo, DWORD fdwRename);
//C MMRESULT mmioRenameW(LPCWSTR pszFileName,LPCWSTR pszNewFileName,LPCMMIOINFO pmmioinfo,DWORD fdwRename);
MMRESULT mmioRenameW(LPCWSTR pszFileName, LPCWSTR pszNewFileName, LPCMMIOINFO pmmioinfo, DWORD fdwRename);
//C MMRESULT mmioClose(HMMIO hmmio,UINT fuClose);
MMRESULT mmioClose(HMMIO hmmio, UINT fuClose);
//C LONG mmioRead(HMMIO hmmio,HPSTR pch,LONG cch);
LONG mmioRead(HMMIO hmmio, HPSTR pch, LONG cch);
//C LONG mmioWrite(HMMIO hmmio,const char *pch,LONG cch);
LONG mmioWrite(HMMIO hmmio, char *pch, LONG cch);
//C LONG mmioSeek(HMMIO hmmio,LONG lOffset,int iOrigin);
LONG mmioSeek(HMMIO hmmio, LONG lOffset, int iOrigin);
//C MMRESULT mmioGetInfo(HMMIO hmmio,LPMMIOINFO pmmioinfo,UINT fuInfo);
MMRESULT mmioGetInfo(HMMIO hmmio, LPMMIOINFO pmmioinfo, UINT fuInfo);
//C MMRESULT mmioSetInfo(HMMIO hmmio,LPCMMIOINFO pmmioinfo,UINT fuInfo);
MMRESULT mmioSetInfo(HMMIO hmmio, LPCMMIOINFO pmmioinfo, UINT fuInfo);
//C MMRESULT mmioSetBuffer(HMMIO hmmio,LPSTR pchBuffer,LONG cchBuffer,UINT fuBuffer);
MMRESULT mmioSetBuffer(HMMIO hmmio, LPSTR pchBuffer, LONG cchBuffer, UINT fuBuffer);
//C MMRESULT mmioFlush(HMMIO hmmio,UINT fuFlush);
MMRESULT mmioFlush(HMMIO hmmio, UINT fuFlush);
//C MMRESULT mmioAdvance(HMMIO hmmio,LPMMIOINFO pmmioinfo,UINT fuAdvance);
MMRESULT mmioAdvance(HMMIO hmmio, LPMMIOINFO pmmioinfo, UINT fuAdvance);
//C LRESULT mmioSendMessage(HMMIO hmmio,UINT uMsg,LPARAM lParam1,LPARAM lParam2);
LRESULT mmioSendMessage(HMMIO hmmio, UINT uMsg, LPARAM lParam1, LPARAM lParam2);
//C MMRESULT mmioDescend(HMMIO hmmio,LPMMCKINFO pmmcki,const MMCKINFO *pmmckiParent,UINT fuDescend);
MMRESULT mmioDescend(HMMIO hmmio, LPMMCKINFO pmmcki, MMCKINFO *pmmckiParent, UINT fuDescend);
//C MMRESULT mmioAscend(HMMIO hmmio,LPMMCKINFO pmmcki,UINT fuAscend);
MMRESULT mmioAscend(HMMIO hmmio, LPMMCKINFO pmmcki, UINT fuAscend);
//C MMRESULT mmioCreateChunk(HMMIO hmmio,LPMMCKINFO pmmcki,UINT fuCreate);
MMRESULT mmioCreateChunk(HMMIO hmmio, LPMMCKINFO pmmcki, UINT fuCreate);
//C typedef DWORD MCIERROR;
alias DWORD MCIERROR;
//C typedef UINT MCIDEVICEID;
alias UINT MCIDEVICEID;
//C typedef UINT ( *YIELDPROC)(MCIDEVICEID mciId,DWORD dwYieldData);
alias UINT function(MCIDEVICEID mciId, DWORD dwYieldData)YIELDPROC;
//C MCIERROR mciSendCommandA(MCIDEVICEID mciId,UINT uMsg,DWORD_PTR dwParam1,DWORD_PTR dwParam2);
MCIERROR mciSendCommandA(MCIDEVICEID mciId, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
//C MCIERROR mciSendCommandW(MCIDEVICEID mciId,UINT uMsg,DWORD_PTR dwParam1,DWORD_PTR dwParam2);
MCIERROR mciSendCommandW(MCIDEVICEID mciId, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
//C MCIERROR mciSendStringA(LPCSTR lpstrCommand,LPSTR lpstrReturnString,UINT uReturnLength,HWND hwndCallback);
MCIERROR mciSendStringA(LPCSTR lpstrCommand, LPSTR lpstrReturnString, UINT uReturnLength, HWND hwndCallback);
//C MCIERROR mciSendStringW(LPCWSTR lpstrCommand,LPWSTR lpstrReturnString,UINT uReturnLength,HWND hwndCallback);
MCIERROR mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrReturnString, UINT uReturnLength, HWND hwndCallback);
//C MCIDEVICEID mciGetDeviceIDA(LPCSTR pszDevice);
MCIDEVICEID mciGetDeviceIDA(LPCSTR pszDevice);
//C MCIDEVICEID mciGetDeviceIDW(LPCWSTR pszDevice);
MCIDEVICEID mciGetDeviceIDW(LPCWSTR pszDevice);
//C MCIDEVICEID mciGetDeviceIDFromElementIDA(DWORD dwElementID,LPCSTR lpstrType);
MCIDEVICEID mciGetDeviceIDFromElementIDA(DWORD dwElementID, LPCSTR lpstrType);
//C MCIDEVICEID mciGetDeviceIDFromElementIDW(DWORD dwElementID,LPCWSTR lpstrType);
MCIDEVICEID mciGetDeviceIDFromElementIDW(DWORD dwElementID, LPCWSTR lpstrType);
//C WINBOOL mciGetErrorStringA(MCIERROR mcierr,LPSTR pszText,UINT cchText);
WINBOOL mciGetErrorStringA(MCIERROR mcierr, LPSTR pszText, UINT cchText);
//C WINBOOL mciGetErrorStringW(MCIERROR mcierr,LPWSTR pszText,UINT cchText);
WINBOOL mciGetErrorStringW(MCIERROR mcierr, LPWSTR pszText, UINT cchText);
//C WINBOOL mciSetYieldProc(MCIDEVICEID mciId,YIELDPROC fpYieldProc,DWORD dwYieldData);
WINBOOL mciSetYieldProc(MCIDEVICEID mciId, YIELDPROC fpYieldProc, DWORD dwYieldData);
//C HTASK mciGetCreatorTask(MCIDEVICEID mciId);
HTASK mciGetCreatorTask(MCIDEVICEID mciId);
//C YIELDPROC mciGetYieldProc(MCIDEVICEID mciId,LPDWORD pdwYieldData);
YIELDPROC mciGetYieldProc(MCIDEVICEID mciId, LPDWORD pdwYieldData);
//C typedef struct tagMCI_GENERIC_PARMS {
//C DWORD_PTR dwCallback;
//C } MCI_GENERIC_PARMS,*PMCI_GENERIC_PARMS,*LPMCI_GENERIC_PARMS;
struct tagMCI_GENERIC_PARMS
{
DWORD_PTR dwCallback;
}
alias tagMCI_GENERIC_PARMS MCI_GENERIC_PARMS;
alias tagMCI_GENERIC_PARMS *PMCI_GENERIC_PARMS;
alias tagMCI_GENERIC_PARMS *LPMCI_GENERIC_PARMS;
//C typedef struct tagMCI_OPEN_PARMSA {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCSTR lpstrDeviceType;
//C LPCSTR lpstrElementName;
//C LPCSTR lpstrAlias;
//C } MCI_OPEN_PARMSA,*PMCI_OPEN_PARMSA,*LPMCI_OPEN_PARMSA;
struct tagMCI_OPEN_PARMSA
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCSTR lpstrDeviceType;
LPCSTR lpstrElementName;
LPCSTR lpstrAlias;
}
alias tagMCI_OPEN_PARMSA MCI_OPEN_PARMSA;
alias tagMCI_OPEN_PARMSA *PMCI_OPEN_PARMSA;
alias tagMCI_OPEN_PARMSA *LPMCI_OPEN_PARMSA;
//C typedef struct tagMCI_OPEN_PARMSW {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCWSTR lpstrDeviceType;
//C LPCWSTR lpstrElementName;
//C LPCWSTR lpstrAlias;
//C } MCI_OPEN_PARMSW,*PMCI_OPEN_PARMSW,*LPMCI_OPEN_PARMSW;
struct tagMCI_OPEN_PARMSW
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCWSTR lpstrDeviceType;
LPCWSTR lpstrElementName;
LPCWSTR lpstrAlias;
}
alias tagMCI_OPEN_PARMSW MCI_OPEN_PARMSW;
alias tagMCI_OPEN_PARMSW *PMCI_OPEN_PARMSW;
alias tagMCI_OPEN_PARMSW *LPMCI_OPEN_PARMSW;
//C typedef MCI_OPEN_PARMSA MCI_OPEN_PARMS;
alias MCI_OPEN_PARMSA MCI_OPEN_PARMS;
//C typedef PMCI_OPEN_PARMSA PMCI_OPEN_PARMS;
alias PMCI_OPEN_PARMSA PMCI_OPEN_PARMS;
//C typedef LPMCI_OPEN_PARMSA LPMCI_OPEN_PARMS;
alias LPMCI_OPEN_PARMSA LPMCI_OPEN_PARMS;
//C typedef struct tagMCI_PLAY_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrom;
//C DWORD dwTo;
//C } MCI_PLAY_PARMS,*PMCI_PLAY_PARMS,*LPMCI_PLAY_PARMS;
struct tagMCI_PLAY_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrom;
DWORD dwTo;
}
alias tagMCI_PLAY_PARMS MCI_PLAY_PARMS;
alias tagMCI_PLAY_PARMS *PMCI_PLAY_PARMS;
alias tagMCI_PLAY_PARMS *LPMCI_PLAY_PARMS;
//C typedef struct tagMCI_SEEK_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwTo;
//C } MCI_SEEK_PARMS,*PMCI_SEEK_PARMS,*LPMCI_SEEK_PARMS;
struct tagMCI_SEEK_PARMS
{
DWORD_PTR dwCallback;
DWORD dwTo;
}
alias tagMCI_SEEK_PARMS MCI_SEEK_PARMS;
alias tagMCI_SEEK_PARMS *PMCI_SEEK_PARMS;
alias tagMCI_SEEK_PARMS *LPMCI_SEEK_PARMS;
//C typedef struct tagMCI_STATUS_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD_PTR dwReturn;
//C DWORD dwItem;
//C DWORD dwTrack;
//C } MCI_STATUS_PARMS,*PMCI_STATUS_PARMS,*LPMCI_STATUS_PARMS;
struct tagMCI_STATUS_PARMS
{
DWORD_PTR dwCallback;
DWORD_PTR dwReturn;
DWORD dwItem;
DWORD dwTrack;
}
alias tagMCI_STATUS_PARMS MCI_STATUS_PARMS;
alias tagMCI_STATUS_PARMS *PMCI_STATUS_PARMS;
alias tagMCI_STATUS_PARMS *LPMCI_STATUS_PARMS;
//C typedef struct tagMCI_INFO_PARMSA {
//C DWORD_PTR dwCallback;
//C LPSTR lpstrReturn;
//C DWORD dwRetSize;
//C } MCI_INFO_PARMSA,*LPMCI_INFO_PARMSA;
struct tagMCI_INFO_PARMSA
{
DWORD_PTR dwCallback;
LPSTR lpstrReturn;
DWORD dwRetSize;
}
alias tagMCI_INFO_PARMSA MCI_INFO_PARMSA;
alias tagMCI_INFO_PARMSA *LPMCI_INFO_PARMSA;
//C typedef struct tagMCI_INFO_PARMSW {
//C DWORD_PTR dwCallback;
//C LPWSTR lpstrReturn;
//C DWORD dwRetSize;
//C } MCI_INFO_PARMSW,*LPMCI_INFO_PARMSW;
struct tagMCI_INFO_PARMSW
{
DWORD_PTR dwCallback;
LPWSTR lpstrReturn;
DWORD dwRetSize;
}
alias tagMCI_INFO_PARMSW MCI_INFO_PARMSW;
alias tagMCI_INFO_PARMSW *LPMCI_INFO_PARMSW;
//C typedef MCI_INFO_PARMSA MCI_INFO_PARMS;
alias MCI_INFO_PARMSA MCI_INFO_PARMS;
//C typedef LPMCI_INFO_PARMSA LPMCI_INFO_PARMS;
alias LPMCI_INFO_PARMSA LPMCI_INFO_PARMS;
//C typedef struct tagMCI_GETDEVCAPS_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwReturn;
//C DWORD dwItem;
//C } MCI_GETDEVCAPS_PARMS,*PMCI_GETDEVCAPS_PARMS,*LPMCI_GETDEVCAPS_PARMS;
struct tagMCI_GETDEVCAPS_PARMS
{
DWORD_PTR dwCallback;
DWORD dwReturn;
DWORD dwItem;
}
alias tagMCI_GETDEVCAPS_PARMS MCI_GETDEVCAPS_PARMS;
alias tagMCI_GETDEVCAPS_PARMS *PMCI_GETDEVCAPS_PARMS;
alias tagMCI_GETDEVCAPS_PARMS *LPMCI_GETDEVCAPS_PARMS;
//C typedef struct tagMCI_SYSINFO_PARMSA {
//C DWORD_PTR dwCallback;
//C LPSTR lpstrReturn;
//C DWORD dwRetSize;
//C DWORD dwNumber;
//C UINT wDeviceType;
//C } MCI_SYSINFO_PARMSA,*PMCI_SYSINFO_PARMSA,*LPMCI_SYSINFO_PARMSA;
struct tagMCI_SYSINFO_PARMSA
{
DWORD_PTR dwCallback;
LPSTR lpstrReturn;
DWORD dwRetSize;
DWORD dwNumber;
UINT wDeviceType;
}
alias tagMCI_SYSINFO_PARMSA MCI_SYSINFO_PARMSA;
alias tagMCI_SYSINFO_PARMSA *PMCI_SYSINFO_PARMSA;
alias tagMCI_SYSINFO_PARMSA *LPMCI_SYSINFO_PARMSA;
//C typedef struct tagMCI_SYSINFO_PARMSW {
//C DWORD_PTR dwCallback;
//C LPWSTR lpstrReturn;
//C DWORD dwRetSize;
//C DWORD dwNumber;
//C UINT wDeviceType;
//C } MCI_SYSINFO_PARMSW,*PMCI_SYSINFO_PARMSW,*LPMCI_SYSINFO_PARMSW;
struct tagMCI_SYSINFO_PARMSW
{
DWORD_PTR dwCallback;
LPWSTR lpstrReturn;
DWORD dwRetSize;
DWORD dwNumber;
UINT wDeviceType;
}
alias tagMCI_SYSINFO_PARMSW MCI_SYSINFO_PARMSW;
alias tagMCI_SYSINFO_PARMSW *PMCI_SYSINFO_PARMSW;
alias tagMCI_SYSINFO_PARMSW *LPMCI_SYSINFO_PARMSW;
//C typedef MCI_SYSINFO_PARMSA MCI_SYSINFO_PARMS;
alias MCI_SYSINFO_PARMSA MCI_SYSINFO_PARMS;
//C typedef PMCI_SYSINFO_PARMSA PMCI_SYSINFO_PARMS;
alias PMCI_SYSINFO_PARMSA PMCI_SYSINFO_PARMS;
//C typedef LPMCI_SYSINFO_PARMSA LPMCI_SYSINFO_PARMS;
alias LPMCI_SYSINFO_PARMSA LPMCI_SYSINFO_PARMS;
//C typedef struct tagMCI_SET_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwTimeFormat;
//C DWORD dwAudio;
//C } MCI_SET_PARMS,*PMCI_SET_PARMS,*LPMCI_SET_PARMS;
struct tagMCI_SET_PARMS
{
DWORD_PTR dwCallback;
DWORD dwTimeFormat;
DWORD dwAudio;
}
alias tagMCI_SET_PARMS MCI_SET_PARMS;
alias tagMCI_SET_PARMS *PMCI_SET_PARMS;
alias tagMCI_SET_PARMS *LPMCI_SET_PARMS;
//C typedef struct tagMCI_BREAK_PARMS {
//C DWORD_PTR dwCallback;
//C int nVirtKey;
//C HWND hwndBreak;
//C } MCI_BREAK_PARMS,*PMCI_BREAK_PARMS,*LPMCI_BREAK_PARMS;
struct tagMCI_BREAK_PARMS
{
DWORD_PTR dwCallback;
int nVirtKey;
HWND hwndBreak;
}
alias tagMCI_BREAK_PARMS MCI_BREAK_PARMS;
alias tagMCI_BREAK_PARMS *PMCI_BREAK_PARMS;
alias tagMCI_BREAK_PARMS *LPMCI_BREAK_PARMS;
//C typedef struct tagMCI_SAVE_PARMSA {
//C DWORD_PTR dwCallback;
//C LPCSTR lpfilename;
//C } MCI_SAVE_PARMSA,*PMCI_SAVE_PARMSA,*LPMCI_SAVE_PARMSA;
struct tagMCI_SAVE_PARMSA
{
DWORD_PTR dwCallback;
LPCSTR lpfilename;
}
alias tagMCI_SAVE_PARMSA MCI_SAVE_PARMSA;
alias tagMCI_SAVE_PARMSA *PMCI_SAVE_PARMSA;
alias tagMCI_SAVE_PARMSA *LPMCI_SAVE_PARMSA;
//C typedef struct tagMCI_SAVE_PARMSW {
//C DWORD_PTR dwCallback;
//C LPCWSTR lpfilename;
//C } MCI_SAVE_PARMSW,*PMCI_SAVE_PARMSW,*LPMCI_SAVE_PARMSW;
struct tagMCI_SAVE_PARMSW
{
DWORD_PTR dwCallback;
LPCWSTR lpfilename;
}
alias tagMCI_SAVE_PARMSW MCI_SAVE_PARMSW;
alias tagMCI_SAVE_PARMSW *PMCI_SAVE_PARMSW;
alias tagMCI_SAVE_PARMSW *LPMCI_SAVE_PARMSW;
//C typedef MCI_SAVE_PARMSA MCI_SAVE_PARMS;
alias MCI_SAVE_PARMSA MCI_SAVE_PARMS;
//C typedef PMCI_SAVE_PARMSA PMCI_SAVE_PARMS;
alias PMCI_SAVE_PARMSA PMCI_SAVE_PARMS;
//C typedef LPMCI_SAVE_PARMSA LPMCI_SAVE_PARMS;
alias LPMCI_SAVE_PARMSA LPMCI_SAVE_PARMS;
//C typedef struct tagMCI_LOAD_PARMSA {
//C DWORD_PTR dwCallback;
//C LPCSTR lpfilename;
//C } MCI_LOAD_PARMSA,*PMCI_LOAD_PARMSA,*LPMCI_LOAD_PARMSA;
struct tagMCI_LOAD_PARMSA
{
DWORD_PTR dwCallback;
LPCSTR lpfilename;
}
alias tagMCI_LOAD_PARMSA MCI_LOAD_PARMSA;
alias tagMCI_LOAD_PARMSA *PMCI_LOAD_PARMSA;
alias tagMCI_LOAD_PARMSA *LPMCI_LOAD_PARMSA;
//C typedef struct tagMCI_LOAD_PARMSW {
//C DWORD_PTR dwCallback;
//C LPCWSTR lpfilename;
//C } MCI_LOAD_PARMSW,*PMCI_LOAD_PARMSW,*LPMCI_LOAD_PARMSW;
struct tagMCI_LOAD_PARMSW
{
DWORD_PTR dwCallback;
LPCWSTR lpfilename;
}
alias tagMCI_LOAD_PARMSW MCI_LOAD_PARMSW;
alias tagMCI_LOAD_PARMSW *PMCI_LOAD_PARMSW;
alias tagMCI_LOAD_PARMSW *LPMCI_LOAD_PARMSW;
//C typedef MCI_LOAD_PARMSA MCI_LOAD_PARMS;
alias MCI_LOAD_PARMSA MCI_LOAD_PARMS;
//C typedef PMCI_LOAD_PARMSA PMCI_LOAD_PARMS;
alias PMCI_LOAD_PARMSA PMCI_LOAD_PARMS;
//C typedef LPMCI_LOAD_PARMSA LPMCI_LOAD_PARMS;
alias LPMCI_LOAD_PARMSA LPMCI_LOAD_PARMS;
//C typedef struct tagMCI_RECORD_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrom;
//C DWORD dwTo;
//C } MCI_RECORD_PARMS,*LPMCI_RECORD_PARMS;
struct tagMCI_RECORD_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrom;
DWORD dwTo;
}
alias tagMCI_RECORD_PARMS MCI_RECORD_PARMS;
alias tagMCI_RECORD_PARMS *LPMCI_RECORD_PARMS;
//C typedef struct tagMCI_VD_PLAY_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrom;
//C DWORD dwTo;
//C DWORD dwSpeed;
//C } MCI_VD_PLAY_PARMS,*PMCI_VD_PLAY_PARMS,*LPMCI_VD_PLAY_PARMS;
struct tagMCI_VD_PLAY_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrom;
DWORD dwTo;
DWORD dwSpeed;
}
alias tagMCI_VD_PLAY_PARMS MCI_VD_PLAY_PARMS;
alias tagMCI_VD_PLAY_PARMS *PMCI_VD_PLAY_PARMS;
alias tagMCI_VD_PLAY_PARMS *LPMCI_VD_PLAY_PARMS;
//C typedef struct tagMCI_VD_STEP_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrames;
//C } MCI_VD_STEP_PARMS,*PMCI_VD_STEP_PARMS,*LPMCI_VD_STEP_PARMS;
struct tagMCI_VD_STEP_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrames;
}
alias tagMCI_VD_STEP_PARMS MCI_VD_STEP_PARMS;
alias tagMCI_VD_STEP_PARMS *PMCI_VD_STEP_PARMS;
alias tagMCI_VD_STEP_PARMS *LPMCI_VD_STEP_PARMS;
//C typedef struct tagMCI_VD_ESCAPE_PARMSA {
//C DWORD_PTR dwCallback;
//C LPCSTR lpstrCommand;
//C } MCI_VD_ESCAPE_PARMSA,*PMCI_VD_ESCAPE_PARMSA,*LPMCI_VD_ESCAPE_PARMSA;
struct tagMCI_VD_ESCAPE_PARMSA
{
DWORD_PTR dwCallback;
LPCSTR lpstrCommand;
}
alias tagMCI_VD_ESCAPE_PARMSA MCI_VD_ESCAPE_PARMSA;
alias tagMCI_VD_ESCAPE_PARMSA *PMCI_VD_ESCAPE_PARMSA;
alias tagMCI_VD_ESCAPE_PARMSA *LPMCI_VD_ESCAPE_PARMSA;
//C typedef struct tagMCI_VD_ESCAPE_PARMSW {
//C DWORD_PTR dwCallback;
//C LPCWSTR lpstrCommand;
//C } MCI_VD_ESCAPE_PARMSW,*PMCI_VD_ESCAPE_PARMSW,*LPMCI_VD_ESCAPE_PARMSW;
struct tagMCI_VD_ESCAPE_PARMSW
{
DWORD_PTR dwCallback;
LPCWSTR lpstrCommand;
}
alias tagMCI_VD_ESCAPE_PARMSW MCI_VD_ESCAPE_PARMSW;
alias tagMCI_VD_ESCAPE_PARMSW *PMCI_VD_ESCAPE_PARMSW;
alias tagMCI_VD_ESCAPE_PARMSW *LPMCI_VD_ESCAPE_PARMSW;
//C typedef MCI_VD_ESCAPE_PARMSA MCI_VD_ESCAPE_PARMS;
alias MCI_VD_ESCAPE_PARMSA MCI_VD_ESCAPE_PARMS;
//C typedef PMCI_VD_ESCAPE_PARMSA PMCI_VD_ESCAPE_PARMS;
alias PMCI_VD_ESCAPE_PARMSA PMCI_VD_ESCAPE_PARMS;
//C typedef LPMCI_VD_ESCAPE_PARMSA LPMCI_VD_ESCAPE_PARMS;
alias LPMCI_VD_ESCAPE_PARMSA LPMCI_VD_ESCAPE_PARMS;
//C typedef struct tagMCI_WAVE_OPEN_PARMSA {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCSTR lpstrDeviceType;
//C LPCSTR lpstrElementName;
//C LPCSTR lpstrAlias;
//C DWORD dwBufferSeconds;
//C } MCI_WAVE_OPEN_PARMSA,*PMCI_WAVE_OPEN_PARMSA,*LPMCI_WAVE_OPEN_PARMSA;
struct tagMCI_WAVE_OPEN_PARMSA
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCSTR lpstrDeviceType;
LPCSTR lpstrElementName;
LPCSTR lpstrAlias;
DWORD dwBufferSeconds;
}
alias tagMCI_WAVE_OPEN_PARMSA MCI_WAVE_OPEN_PARMSA;
alias tagMCI_WAVE_OPEN_PARMSA *PMCI_WAVE_OPEN_PARMSA;
alias tagMCI_WAVE_OPEN_PARMSA *LPMCI_WAVE_OPEN_PARMSA;
//C typedef struct tagMCI_WAVE_OPEN_PARMSW {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCWSTR lpstrDeviceType;
//C LPCWSTR lpstrElementName;
//C LPCWSTR lpstrAlias;
//C DWORD dwBufferSeconds;
//C } MCI_WAVE_OPEN_PARMSW,*PMCI_WAVE_OPEN_PARMSW,*LPMCI_WAVE_OPEN_PARMSW;
struct tagMCI_WAVE_OPEN_PARMSW
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCWSTR lpstrDeviceType;
LPCWSTR lpstrElementName;
LPCWSTR lpstrAlias;
DWORD dwBufferSeconds;
}
alias tagMCI_WAVE_OPEN_PARMSW MCI_WAVE_OPEN_PARMSW;
alias tagMCI_WAVE_OPEN_PARMSW *PMCI_WAVE_OPEN_PARMSW;
alias tagMCI_WAVE_OPEN_PARMSW *LPMCI_WAVE_OPEN_PARMSW;
//C typedef MCI_WAVE_OPEN_PARMSA MCI_WAVE_OPEN_PARMS;
alias MCI_WAVE_OPEN_PARMSA MCI_WAVE_OPEN_PARMS;
//C typedef PMCI_WAVE_OPEN_PARMSA PMCI_WAVE_OPEN_PARMS;
alias PMCI_WAVE_OPEN_PARMSA PMCI_WAVE_OPEN_PARMS;
//C typedef LPMCI_WAVE_OPEN_PARMSA LPMCI_WAVE_OPEN_PARMS;
alias LPMCI_WAVE_OPEN_PARMSA LPMCI_WAVE_OPEN_PARMS;
//C typedef struct tagMCI_WAVE_DELETE_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrom;
//C DWORD dwTo;
//C } MCI_WAVE_DELETE_PARMS,*PMCI_WAVE_DELETE_PARMS,*LPMCI_WAVE_DELETE_PARMS;
struct tagMCI_WAVE_DELETE_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrom;
DWORD dwTo;
}
alias tagMCI_WAVE_DELETE_PARMS MCI_WAVE_DELETE_PARMS;
alias tagMCI_WAVE_DELETE_PARMS *PMCI_WAVE_DELETE_PARMS;
alias tagMCI_WAVE_DELETE_PARMS *LPMCI_WAVE_DELETE_PARMS;
//C typedef struct tagMCI_WAVE_SET_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwTimeFormat;
//C DWORD dwAudio;
//C UINT wInput;
//C UINT wOutput;
//C WORD wFormatTag;
//C WORD wReserved2;
//C WORD nChannels;
//C WORD wReserved3;
//C DWORD nSamplesPerSec;
//C DWORD nAvgBytesPerSec;
//C WORD nBlockAlign;
//C WORD wReserved4;
//C WORD wBitsPerSample;
//C WORD wReserved5;
//C } MCI_WAVE_SET_PARMS,*PMCI_WAVE_SET_PARMS,*LPMCI_WAVE_SET_PARMS;
struct tagMCI_WAVE_SET_PARMS
{
DWORD_PTR dwCallback;
DWORD dwTimeFormat;
DWORD dwAudio;
UINT wInput;
UINT wOutput;
WORD wFormatTag;
WORD wReserved2;
WORD nChannels;
WORD wReserved3;
DWORD nSamplesPerSec;
DWORD nAvgBytesPerSec;
WORD nBlockAlign;
WORD wReserved4;
WORD wBitsPerSample;
WORD wReserved5;
}
alias tagMCI_WAVE_SET_PARMS MCI_WAVE_SET_PARMS;
alias tagMCI_WAVE_SET_PARMS *PMCI_WAVE_SET_PARMS;
alias tagMCI_WAVE_SET_PARMS *LPMCI_WAVE_SET_PARMS;
//C typedef struct tagMCI_SEQ_SET_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwTimeFormat;
//C DWORD dwAudio;
//C DWORD dwTempo;
//C DWORD dwPort;
//C DWORD dwSlave;
//C DWORD dwMaster;
//C DWORD dwOffset;
//C } MCI_SEQ_SET_PARMS,*PMCI_SEQ_SET_PARMS,*LPMCI_SEQ_SET_PARMS;
struct tagMCI_SEQ_SET_PARMS
{
DWORD_PTR dwCallback;
DWORD dwTimeFormat;
DWORD dwAudio;
DWORD dwTempo;
DWORD dwPort;
DWORD dwSlave;
DWORD dwMaster;
DWORD dwOffset;
}
alias tagMCI_SEQ_SET_PARMS MCI_SEQ_SET_PARMS;
alias tagMCI_SEQ_SET_PARMS *PMCI_SEQ_SET_PARMS;
alias tagMCI_SEQ_SET_PARMS *LPMCI_SEQ_SET_PARMS;
//C typedef struct tagMCI_ANIM_OPEN_PARMSA {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCSTR lpstrDeviceType;
//C LPCSTR lpstrElementName;
//C LPCSTR lpstrAlias;
//C DWORD dwStyle;
//C HWND hWndParent;
//C } MCI_ANIM_OPEN_PARMSA,*PMCI_ANIM_OPEN_PARMSA,*LPMCI_ANIM_OPEN_PARMSA;
struct tagMCI_ANIM_OPEN_PARMSA
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCSTR lpstrDeviceType;
LPCSTR lpstrElementName;
LPCSTR lpstrAlias;
DWORD dwStyle;
HWND hWndParent;
}
alias tagMCI_ANIM_OPEN_PARMSA MCI_ANIM_OPEN_PARMSA;
alias tagMCI_ANIM_OPEN_PARMSA *PMCI_ANIM_OPEN_PARMSA;
alias tagMCI_ANIM_OPEN_PARMSA *LPMCI_ANIM_OPEN_PARMSA;
//C typedef struct tagMCI_ANIM_OPEN_PARMSW {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCWSTR lpstrDeviceType;
//C LPCWSTR lpstrElementName;
//C LPCWSTR lpstrAlias;
//C DWORD dwStyle;
//C HWND hWndParent;
//C } MCI_ANIM_OPEN_PARMSW,*PMCI_ANIM_OPEN_PARMSW,*LPMCI_ANIM_OPEN_PARMSW;
struct tagMCI_ANIM_OPEN_PARMSW
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCWSTR lpstrDeviceType;
LPCWSTR lpstrElementName;
LPCWSTR lpstrAlias;
DWORD dwStyle;
HWND hWndParent;
}
alias tagMCI_ANIM_OPEN_PARMSW MCI_ANIM_OPEN_PARMSW;
alias tagMCI_ANIM_OPEN_PARMSW *PMCI_ANIM_OPEN_PARMSW;
alias tagMCI_ANIM_OPEN_PARMSW *LPMCI_ANIM_OPEN_PARMSW;
//C typedef MCI_ANIM_OPEN_PARMSA MCI_ANIM_OPEN_PARMS;
alias MCI_ANIM_OPEN_PARMSA MCI_ANIM_OPEN_PARMS;
//C typedef PMCI_ANIM_OPEN_PARMSA PMCI_ANIM_OPEN_PARMS;
alias PMCI_ANIM_OPEN_PARMSA PMCI_ANIM_OPEN_PARMS;
//C typedef LPMCI_ANIM_OPEN_PARMSA LPMCI_ANIM_OPEN_PARMS;
alias LPMCI_ANIM_OPEN_PARMSA LPMCI_ANIM_OPEN_PARMS;
//C typedef struct tagMCI_ANIM_PLAY_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrom;
//C DWORD dwTo;
//C DWORD dwSpeed;
//C } MCI_ANIM_PLAY_PARMS,*PMCI_ANIM_PLAY_PARMS,*LPMCI_ANIM_PLAY_PARMS;
struct tagMCI_ANIM_PLAY_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrom;
DWORD dwTo;
DWORD dwSpeed;
}
alias tagMCI_ANIM_PLAY_PARMS MCI_ANIM_PLAY_PARMS;
alias tagMCI_ANIM_PLAY_PARMS *PMCI_ANIM_PLAY_PARMS;
alias tagMCI_ANIM_PLAY_PARMS *LPMCI_ANIM_PLAY_PARMS;
//C typedef struct tagMCI_ANIM_STEP_PARMS {
//C DWORD_PTR dwCallback;
//C DWORD dwFrames;
//C } MCI_ANIM_STEP_PARMS,*PMCI_ANIM_STEP_PARMS,*LPMCI_ANIM_STEP_PARMS;
struct tagMCI_ANIM_STEP_PARMS
{
DWORD_PTR dwCallback;
DWORD dwFrames;
}
alias tagMCI_ANIM_STEP_PARMS MCI_ANIM_STEP_PARMS;
alias tagMCI_ANIM_STEP_PARMS *PMCI_ANIM_STEP_PARMS;
alias tagMCI_ANIM_STEP_PARMS *LPMCI_ANIM_STEP_PARMS;
//C typedef struct tagMCI_ANIM_WINDOW_PARMSA {
//C DWORD_PTR dwCallback;
//C HWND hWnd;
//C UINT nCmdShow;
//C LPCSTR lpstrText;
//C } MCI_ANIM_WINDOW_PARMSA,*PMCI_ANIM_WINDOW_PARMSA,*LPMCI_ANIM_WINDOW_PARMSA;
struct tagMCI_ANIM_WINDOW_PARMSA
{
DWORD_PTR dwCallback;
HWND hWnd;
UINT nCmdShow;
LPCSTR lpstrText;
}
alias tagMCI_ANIM_WINDOW_PARMSA MCI_ANIM_WINDOW_PARMSA;
alias tagMCI_ANIM_WINDOW_PARMSA *PMCI_ANIM_WINDOW_PARMSA;
alias tagMCI_ANIM_WINDOW_PARMSA *LPMCI_ANIM_WINDOW_PARMSA;
//C typedef struct tagMCI_ANIM_WINDOW_PARMSW {
//C DWORD_PTR dwCallback;
//C HWND hWnd;
//C UINT nCmdShow;
//C LPCWSTR lpstrText;
//C } MCI_ANIM_WINDOW_PARMSW,*PMCI_ANIM_WINDOW_PARMSW,*LPMCI_ANIM_WINDOW_PARMSW;
struct tagMCI_ANIM_WINDOW_PARMSW
{
DWORD_PTR dwCallback;
HWND hWnd;
UINT nCmdShow;
LPCWSTR lpstrText;
}
alias tagMCI_ANIM_WINDOW_PARMSW MCI_ANIM_WINDOW_PARMSW;
alias tagMCI_ANIM_WINDOW_PARMSW *PMCI_ANIM_WINDOW_PARMSW;
alias tagMCI_ANIM_WINDOW_PARMSW *LPMCI_ANIM_WINDOW_PARMSW;
//C typedef MCI_ANIM_WINDOW_PARMSA MCI_ANIM_WINDOW_PARMS;
alias MCI_ANIM_WINDOW_PARMSA MCI_ANIM_WINDOW_PARMS;
//C typedef PMCI_ANIM_WINDOW_PARMSA PMCI_ANIM_WINDOW_PARMS;
alias PMCI_ANIM_WINDOW_PARMSA PMCI_ANIM_WINDOW_PARMS;
//C typedef LPMCI_ANIM_WINDOW_PARMSA LPMCI_ANIM_WINDOW_PARMS;
alias LPMCI_ANIM_WINDOW_PARMSA LPMCI_ANIM_WINDOW_PARMS;
//C typedef struct tagMCI_ANIM_RECT_PARMS {
//C DWORD_PTR dwCallback;
//C RECT rc;
//C } MCI_ANIM_RECT_PARMS;
struct tagMCI_ANIM_RECT_PARMS
{
DWORD_PTR dwCallback;
RECT rc;
}
alias tagMCI_ANIM_RECT_PARMS MCI_ANIM_RECT_PARMS;
//C typedef MCI_ANIM_RECT_PARMS *PMCI_ANIM_RECT_PARMS;
alias MCI_ANIM_RECT_PARMS *PMCI_ANIM_RECT_PARMS;
//C typedef MCI_ANIM_RECT_PARMS *LPMCI_ANIM_RECT_PARMS;
alias MCI_ANIM_RECT_PARMS *LPMCI_ANIM_RECT_PARMS;
//C typedef struct tagMCI_ANIM_UPDATE_PARMS {
//C DWORD_PTR dwCallback;
//C RECT rc;
//C HDC hDC;
//C } MCI_ANIM_UPDATE_PARMS,*PMCI_ANIM_UPDATE_PARMS,*LPMCI_ANIM_UPDATE_PARMS;
struct tagMCI_ANIM_UPDATE_PARMS
{
DWORD_PTR dwCallback;
RECT rc;
HDC hDC;
}
alias tagMCI_ANIM_UPDATE_PARMS MCI_ANIM_UPDATE_PARMS;
alias tagMCI_ANIM_UPDATE_PARMS *PMCI_ANIM_UPDATE_PARMS;
alias tagMCI_ANIM_UPDATE_PARMS *LPMCI_ANIM_UPDATE_PARMS;
//C typedef struct tagMCI_OVLY_OPEN_PARMSA {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCSTR lpstrDeviceType;
//C LPCSTR lpstrElementName;
//C LPCSTR lpstrAlias;
//C DWORD dwStyle;
//C HWND hWndParent;
//C } MCI_OVLY_OPEN_PARMSA,*PMCI_OVLY_OPEN_PARMSA,*LPMCI_OVLY_OPEN_PARMSA;
struct tagMCI_OVLY_OPEN_PARMSA
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCSTR lpstrDeviceType;
LPCSTR lpstrElementName;
LPCSTR lpstrAlias;
DWORD dwStyle;
HWND hWndParent;
}
alias tagMCI_OVLY_OPEN_PARMSA MCI_OVLY_OPEN_PARMSA;
alias tagMCI_OVLY_OPEN_PARMSA *PMCI_OVLY_OPEN_PARMSA;
alias tagMCI_OVLY_OPEN_PARMSA *LPMCI_OVLY_OPEN_PARMSA;
//C typedef struct tagMCI_OVLY_OPEN_PARMSW {
//C DWORD_PTR dwCallback;
//C MCIDEVICEID wDeviceID;
//C LPCWSTR lpstrDeviceType;
//C LPCWSTR lpstrElementName;
//C LPCWSTR lpstrAlias;
//C DWORD dwStyle;
//C HWND hWndParent;
//C } MCI_OVLY_OPEN_PARMSW,*PMCI_OVLY_OPEN_PARMSW,*LPMCI_OVLY_OPEN_PARMSW;
struct tagMCI_OVLY_OPEN_PARMSW
{
DWORD_PTR dwCallback;
MCIDEVICEID wDeviceID;
LPCWSTR lpstrDeviceType;
LPCWSTR lpstrElementName;
LPCWSTR lpstrAlias;
DWORD dwStyle;
HWND hWndParent;
}
alias tagMCI_OVLY_OPEN_PARMSW MCI_OVLY_OPEN_PARMSW;
alias tagMCI_OVLY_OPEN_PARMSW *PMCI_OVLY_OPEN_PARMSW;
alias tagMCI_OVLY_OPEN_PARMSW *LPMCI_OVLY_OPEN_PARMSW;
//C typedef MCI_OVLY_OPEN_PARMSA MCI_OVLY_OPEN_PARMS;
alias MCI_OVLY_OPEN_PARMSA MCI_OVLY_OPEN_PARMS;
//C typedef PMCI_OVLY_OPEN_PARMSA PMCI_OVLY_OPEN_PARMS;
alias PMCI_OVLY_OPEN_PARMSA PMCI_OVLY_OPEN_PARMS;
//C typedef LPMCI_OVLY_OPEN_PARMSA LPMCI_OVLY_OPEN_PARMS;
alias LPMCI_OVLY_OPEN_PARMSA LPMCI_OVLY_OPEN_PARMS;
//C typedef struct tagMCI_OVLY_WINDOW_PARMSA {
//C DWORD_PTR dwCallback;
//C HWND hWnd;
//C UINT nCmdShow;
//C LPCSTR lpstrText;
//C } MCI_OVLY_WINDOW_PARMSA,*PMCI_OVLY_WINDOW_PARMSA,*LPMCI_OVLY_WINDOW_PARMSA;
struct tagMCI_OVLY_WINDOW_PARMSA
{
DWORD_PTR dwCallback;
HWND hWnd;
UINT nCmdShow;
LPCSTR lpstrText;
}
alias tagMCI_OVLY_WINDOW_PARMSA MCI_OVLY_WINDOW_PARMSA;
alias tagMCI_OVLY_WINDOW_PARMSA *PMCI_OVLY_WINDOW_PARMSA;
alias tagMCI_OVLY_WINDOW_PARMSA *LPMCI_OVLY_WINDOW_PARMSA;
//C typedef struct tagMCI_OVLY_WINDOW_PARMSW {
//C DWORD_PTR dwCallback;
//C HWND hWnd;
//C UINT nCmdShow;
//C LPCWSTR lpstrText;
//C } MCI_OVLY_WINDOW_PARMSW,*PMCI_OVLY_WINDOW_PARMSW,*LPMCI_OVLY_WINDOW_PARMSW;
struct tagMCI_OVLY_WINDOW_PARMSW
{
DWORD_PTR dwCallback;
HWND hWnd;
UINT nCmdShow;
LPCWSTR lpstrText;
}
alias tagMCI_OVLY_WINDOW_PARMSW MCI_OVLY_WINDOW_PARMSW;
alias tagMCI_OVLY_WINDOW_PARMSW *PMCI_OVLY_WINDOW_PARMSW;
alias tagMCI_OVLY_WINDOW_PARMSW *LPMCI_OVLY_WINDOW_PARMSW;
//C typedef MCI_OVLY_WINDOW_PARMSA MCI_OVLY_WINDOW_PARMS;
alias MCI_OVLY_WINDOW_PARMSA MCI_OVLY_WINDOW_PARMS;
//C typedef PMCI_OVLY_WINDOW_PARMSA PMCI_OVLY_WINDOW_PARMS;
alias PMCI_OVLY_WINDOW_PARMSA PMCI_OVLY_WINDOW_PARMS;
//C typedef LPMCI_OVLY_WINDOW_PARMSA LPMCI_OVLY_WINDOW_PARMS;
alias LPMCI_OVLY_WINDOW_PARMSA LPMCI_OVLY_WINDOW_PARMS;
//C typedef struct tagMCI_OVLY_RECT_PARMS {
//C DWORD_PTR dwCallback;
//C RECT rc;
//C } MCI_OVLY_RECT_PARMS,*PMCI_OVLY_RECT_PARMS,*LPMCI_OVLY_RECT_PARMS;
struct tagMCI_OVLY_RECT_PARMS
{
DWORD_PTR dwCallback;
RECT rc;
}
alias tagMCI_OVLY_RECT_PARMS MCI_OVLY_RECT_PARMS;
alias tagMCI_OVLY_RECT_PARMS *PMCI_OVLY_RECT_PARMS;
alias tagMCI_OVLY_RECT_PARMS *LPMCI_OVLY_RECT_PARMS;
//C typedef struct tagMCI_OVLY_SAVE_PARMSA {
//C DWORD_PTR dwCallback;
//C LPCSTR lpfilename;
//C RECT rc;
//C } MCI_OVLY_SAVE_PARMSA,*PMCI_OVLY_SAVE_PARMSA,*LPMCI_OVLY_SAVE_PARMSA;
struct tagMCI_OVLY_SAVE_PARMSA
{
DWORD_PTR dwCallback;
LPCSTR lpfilename;
RECT rc;
}
alias tagMCI_OVLY_SAVE_PARMSA MCI_OVLY_SAVE_PARMSA;
alias tagMCI_OVLY_SAVE_PARMSA *PMCI_OVLY_SAVE_PARMSA;
alias tagMCI_OVLY_SAVE_PARMSA *LPMCI_OVLY_SAVE_PARMSA;
//C typedef struct tagMCI_OVLY_SAVE_PARMSW {
//C DWORD_PTR dwCallback;
//C LPCWSTR lpfilename;
//C RECT rc;
//C } MCI_OVLY_SAVE_PARMSW,*PMCI_OVLY_SAVE_PARMSW,*LPMCI_OVLY_SAVE_PARMSW;
struct tagMCI_OVLY_SAVE_PARMSW
{
DWORD_PTR dwCallback;
LPCWSTR lpfilename;
RECT rc;
}
alias tagMCI_OVLY_SAVE_PARMSW MCI_OVLY_SAVE_PARMSW;
alias tagMCI_OVLY_SAVE_PARMSW *PMCI_OVLY_SAVE_PARMSW;
alias tagMCI_OVLY_SAVE_PARMSW *LPMCI_OVLY_SAVE_PARMSW;
//C typedef MCI_OVLY_SAVE_PARMSA MCI_OVLY_SAVE_PARMS;
alias MCI_OVLY_SAVE_PARMSA MCI_OVLY_SAVE_PARMS;
//C typedef PMCI_OVLY_SAVE_PARMSA PMCI_OVLY_SAVE_PARMS;
alias PMCI_OVLY_SAVE_PARMSA PMCI_OVLY_SAVE_PARMS;
//C typedef LPMCI_OVLY_SAVE_PARMSA LPMCI_OVLY_SAVE_PARMS;
alias LPMCI_OVLY_SAVE_PARMSA LPMCI_OVLY_SAVE_PARMS;
//C typedef struct tagMCI_OVLY_LOAD_PARMSA {
//C DWORD_PTR dwCallback;
//C LPCSTR lpfilename;
//C RECT rc;
//C } MCI_OVLY_LOAD_PARMSA,*PMCI_OVLY_LOAD_PARMSA,*LPMCI_OVLY_LOAD_PARMSA;
struct tagMCI_OVLY_LOAD_PARMSA
{
DWORD_PTR dwCallback;
LPCSTR lpfilename;
RECT rc;
}
alias tagMCI_OVLY_LOAD_PARMSA MCI_OVLY_LOAD_PARMSA;
alias tagMCI_OVLY_LOAD_PARMSA *PMCI_OVLY_LOAD_PARMSA;
alias tagMCI_OVLY_LOAD_PARMSA *LPMCI_OVLY_LOAD_PARMSA;
//C typedef struct tagMCI_OVLY_LOAD_PARMSW {
//C DWORD_PTR dwCallback;
//C LPCWSTR lpfilename;
//C RECT rc;
//C } MCI_OVLY_LOAD_PARMSW,*PMCI_OVLY_LOAD_PARMSW,*LPMCI_OVLY_LOAD_PARMSW;
struct tagMCI_OVLY_LOAD_PARMSW
{
DWORD_PTR dwCallback;
LPCWSTR lpfilename;
RECT rc;
}
alias tagMCI_OVLY_LOAD_PARMSW MCI_OVLY_LOAD_PARMSW;
alias tagMCI_OVLY_LOAD_PARMSW *PMCI_OVLY_LOAD_PARMSW;
alias tagMCI_OVLY_LOAD_PARMSW *LPMCI_OVLY_LOAD_PARMSW;
//C typedef MCI_OVLY_LOAD_PARMSA MCI_OVLY_LOAD_PARMS;
alias MCI_OVLY_LOAD_PARMSA MCI_OVLY_LOAD_PARMS;
//C typedef PMCI_OVLY_LOAD_PARMSA PMCI_OVLY_LOAD_PARMS;
alias PMCI_OVLY_LOAD_PARMSA PMCI_OVLY_LOAD_PARMS;
//C typedef LPMCI_OVLY_LOAD_PARMSA LPMCI_OVLY_LOAD_PARMS;
alias LPMCI_OVLY_LOAD_PARMSA LPMCI_OVLY_LOAD_PARMS;
//C typedef struct _NCB {
//C UCHAR ncb_command;
//C UCHAR ncb_retcode;
//C UCHAR ncb_lsn;
//C UCHAR ncb_num;
//C PUCHAR ncb_buffer;
//C WORD ncb_length;
//C UCHAR ncb_callname[16];
//C UCHAR ncb_name[16];
//C UCHAR ncb_rto;
//C UCHAR ncb_sto;
//C void ( *ncb_post)(struct _NCB *);
//C UCHAR ncb_lana_num;
//C UCHAR ncb_cmd_cplt;
//C UCHAR ncb_reserve[18];
//C HANDLE ncb_event;
//C } NCB,*PNCB;
struct _NCB
{
UCHAR ncb_command;
UCHAR ncb_retcode;
UCHAR ncb_lsn;
UCHAR ncb_num;
PUCHAR ncb_buffer;
WORD ncb_length;
UCHAR [16]ncb_callname;
UCHAR [16]ncb_name;
UCHAR ncb_rto;
UCHAR ncb_sto;
void function(_NCB *)ncb_post;
UCHAR ncb_lana_num;
UCHAR ncb_cmd_cplt;
UCHAR [18]ncb_reserve;
HANDLE ncb_event;
}
alias _NCB NCB;
alias _NCB *PNCB;
//C typedef struct _ADAPTER_STATUS {
//C UCHAR adapter_address[6];
//C UCHAR rev_major;
//C UCHAR reserved0;
//C UCHAR adapter_type;
//C UCHAR rev_minor;
//C WORD duration;
//C WORD frmr_recv;
//C WORD frmr_xmit;
//C WORD iframe_recv_err;
//C WORD xmit_aborts;
//C DWORD xmit_success;
//C DWORD recv_success;
//C WORD iframe_xmit_err;
//C WORD recv_buff_unavail;
//C WORD t1_timeouts;
//C WORD ti_timeouts;
//C DWORD reserved1;
//C WORD free_ncbs;
//C WORD max_cfg_ncbs;
//C WORD max_ncbs;
//C WORD xmit_buf_unavail;
//C WORD max_dgram_size;
//C WORD pending_sess;
//C WORD max_cfg_sess;
//C WORD max_sess;
//C WORD max_sess_pkt_size;
//C WORD name_count;
//C } ADAPTER_STATUS,*PADAPTER_STATUS;
struct _ADAPTER_STATUS
{
UCHAR [6]adapter_address;
UCHAR rev_major;
UCHAR reserved0;
UCHAR adapter_type;
UCHAR rev_minor;
WORD duration;
WORD frmr_recv;
WORD frmr_xmit;
WORD iframe_recv_err;
WORD xmit_aborts;
DWORD xmit_success;
DWORD recv_success;
WORD iframe_xmit_err;
WORD recv_buff_unavail;
WORD t1_timeouts;
WORD ti_timeouts;
DWORD reserved1;
WORD free_ncbs;
WORD max_cfg_ncbs;
WORD max_ncbs;
WORD xmit_buf_unavail;
WORD max_dgram_size;
WORD pending_sess;
WORD max_cfg_sess;
WORD max_sess;
WORD max_sess_pkt_size;
WORD name_count;
}
alias _ADAPTER_STATUS ADAPTER_STATUS;
alias _ADAPTER_STATUS *PADAPTER_STATUS;
//C typedef struct _NAME_BUFFER {
//C UCHAR name[16];
//C UCHAR name_num;
//C UCHAR name_flags;
//C } NAME_BUFFER,*PNAME_BUFFER;
struct _NAME_BUFFER
{
UCHAR [16]name;
UCHAR name_num;
UCHAR name_flags;
}
alias _NAME_BUFFER NAME_BUFFER;
alias _NAME_BUFFER *PNAME_BUFFER;
//C typedef struct _SESSION_HEADER {
//C UCHAR sess_name;
//C UCHAR num_sess;
//C UCHAR rcv_dg_outstanding;
//C UCHAR rcv_any_outstanding;
//C } SESSION_HEADER,*PSESSION_HEADER;
struct _SESSION_HEADER
{
UCHAR sess_name;
UCHAR num_sess;
UCHAR rcv_dg_outstanding;
UCHAR rcv_any_outstanding;
}
alias _SESSION_HEADER SESSION_HEADER;
alias _SESSION_HEADER *PSESSION_HEADER;
//C typedef struct _SESSION_BUFFER {
//C UCHAR lsn;
//C UCHAR state;
//C UCHAR local_name[16];
//C UCHAR remote_name[16];
//C UCHAR rcvs_outstanding;
//C UCHAR sends_outstanding;
//C } SESSION_BUFFER,*PSESSION_BUFFER;
struct _SESSION_BUFFER
{
UCHAR lsn;
UCHAR state;
UCHAR [16]local_name;
UCHAR [16]remote_name;
UCHAR rcvs_outstanding;
UCHAR sends_outstanding;
}
alias _SESSION_BUFFER SESSION_BUFFER;
alias _SESSION_BUFFER *PSESSION_BUFFER;
//C typedef struct _LANA_ENUM {
//C UCHAR length;
//C UCHAR lana[254 +1];
//C } LANA_ENUM,*PLANA_ENUM;
struct _LANA_ENUM
{
UCHAR length;
UCHAR [255]lana;
}
alias _LANA_ENUM LANA_ENUM;
alias _LANA_ENUM *PLANA_ENUM;
//C typedef struct _FIND_NAME_HEADER {
//C WORD node_count;
//C UCHAR reserved;
//C UCHAR unique_group;
//C } FIND_NAME_HEADER,*PFIND_NAME_HEADER;
struct _FIND_NAME_HEADER
{
WORD node_count;
UCHAR reserved;
UCHAR unique_group;
}
alias _FIND_NAME_HEADER FIND_NAME_HEADER;
alias _FIND_NAME_HEADER *PFIND_NAME_HEADER;
//C typedef struct _FIND_NAME_BUFFER {
//C UCHAR length;
//C UCHAR access_control;
//C UCHAR frame_control;
//C UCHAR destination_addr[6];
//C UCHAR source_addr[6];
//C UCHAR routing_info[18];
//C } FIND_NAME_BUFFER,*PFIND_NAME_BUFFER;
struct _FIND_NAME_BUFFER
{
UCHAR length;
UCHAR access_control;
UCHAR frame_control;
UCHAR [6]destination_addr;
UCHAR [6]source_addr;
UCHAR [18]routing_info;
}
alias _FIND_NAME_BUFFER FIND_NAME_BUFFER;
alias _FIND_NAME_BUFFER *PFIND_NAME_BUFFER;
//C typedef struct _ACTION_HEADER {
//C ULONG transport_id;
//C USHORT action_code;
//C USHORT reserved;
//C } ACTION_HEADER,*PACTION_HEADER;
struct _ACTION_HEADER
{
ULONG transport_id;
USHORT action_code;
USHORT reserved;
}
alias _ACTION_HEADER ACTION_HEADER;
alias _ACTION_HEADER *PACTION_HEADER;
//C UCHAR Netbios(PNCB pncb);
UCHAR Netbios(PNCB pncb);
//C typedef void *I_RPC_HANDLE;
alias void *I_RPC_HANDLE;
//C typedef long RPC_STATUS;
alias int RPC_STATUS;
//C typedef unsigned char *RPC_CSTR;
alias ubyte *RPC_CSTR;
//C typedef unsigned short *RPC_WSTR;
alias ushort *RPC_WSTR;
//C typedef I_RPC_HANDLE RPC_BINDING_HANDLE;
alias I_RPC_HANDLE RPC_BINDING_HANDLE;
//C typedef RPC_BINDING_HANDLE handle_t;
alias RPC_BINDING_HANDLE handle_t;
//C typedef GUID UUID;
alias GUID UUID;
//C typedef struct _RPC_BINDING_VECTOR {
//C unsigned long Count;
//C RPC_BINDING_HANDLE BindingH[1];
//C } RPC_BINDING_VECTOR;
struct _RPC_BINDING_VECTOR
{
uint Count;
RPC_BINDING_HANDLE [1]BindingH;
}
alias _RPC_BINDING_VECTOR RPC_BINDING_VECTOR;
//C typedef struct _UUID_VECTOR {
//C unsigned long Count;
//C UUID *Uuid[1];
//C } UUID_VECTOR;
struct _UUID_VECTOR
{
uint Count;
UUID *[1]Uuid;
}
alias _UUID_VECTOR UUID_VECTOR;
//C typedef void *RPC_IF_HANDLE;
alias void *RPC_IF_HANDLE;
//C typedef struct _RPC_IF_ID {
//C UUID Uuid;
//C unsigned short VersMajor;
//C unsigned short VersMinor;
//C } RPC_IF_ID;
struct _RPC_IF_ID
{
UUID Uuid;
ushort VersMajor;
ushort VersMinor;
}
alias _RPC_IF_ID RPC_IF_ID;
//C typedef struct _RPC_PROTSEQ_VECTORA {
//C unsigned int Count;
//C unsigned char *Protseq[1];
//C } RPC_PROTSEQ_VECTORA;
struct _RPC_PROTSEQ_VECTORA
{
uint Count;
ubyte *[1]Protseq;
}
alias _RPC_PROTSEQ_VECTORA RPC_PROTSEQ_VECTORA;
//C typedef struct _RPC_PROTSEQ_VECTORW {
//C unsigned int Count;
//C unsigned short *Protseq[1];
//C } RPC_PROTSEQ_VECTORW;
struct _RPC_PROTSEQ_VECTORW
{
uint Count;
ushort *[1]Protseq;
}
alias _RPC_PROTSEQ_VECTORW RPC_PROTSEQ_VECTORW;
//C typedef struct _RPC_POLICY {
//C unsigned int Length;
//C unsigned long EndpointFlags;
//C unsigned long NICFlags;
//C } RPC_POLICY,*PRPC_POLICY;
struct _RPC_POLICY
{
uint Length;
uint EndpointFlags;
uint NICFlags;
}
alias _RPC_POLICY RPC_POLICY;
alias _RPC_POLICY *PRPC_POLICY;
//C typedef void RPC_OBJECT_INQ_FN(UUID *ObjectUuid,UUID *TypeUuid,RPC_STATUS *Status);
alias void function(UUID *ObjectUuid, UUID *TypeUuid, RPC_STATUS *Status)RPC_OBJECT_INQ_FN;
//C typedef RPC_STATUS RPC_IF_CALLBACK_FN(RPC_IF_HANDLE InterfaceUuid,void *Context);
alias RPC_STATUS function(RPC_IF_HANDLE InterfaceUuid, void *Context)RPC_IF_CALLBACK_FN;
//C typedef void RPC_SECURITY_CALLBACK_FN(void *Context);
alias void function(void *Context)RPC_SECURITY_CALLBACK_FN;
//C typedef struct {
//C unsigned int Count;
//C unsigned long Stats[1];
//C } RPC_STATS_VECTOR;
struct _N110
{
uint Count;
uint [1]Stats;
}
alias _N110 RPC_STATS_VECTOR;
//C typedef struct {
//C unsigned long Count;
//C RPC_IF_ID *IfId[1];
//C } RPC_IF_ID_VECTOR;
struct _N111
{
uint Count;
RPC_IF_ID *[1]IfId;
}
alias _N111 RPC_IF_ID_VECTOR;
//C RPC_STATUS RpcBindingCopy(RPC_BINDING_HANDLE SourceBinding,RPC_BINDING_HANDLE *DestinationBinding);
RPC_STATUS RpcBindingCopy(RPC_BINDING_HANDLE SourceBinding, RPC_BINDING_HANDLE *DestinationBinding);
//C RPC_STATUS RpcBindingFree(RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcBindingFree(RPC_BINDING_HANDLE *Binding);
//C RPC_STATUS RpcBindingSetOption(RPC_BINDING_HANDLE hBinding,unsigned long option,ULONG_PTR optionValue);
RPC_STATUS RpcBindingSetOption(RPC_BINDING_HANDLE hBinding, uint option, ULONG_PTR optionValue);
//C RPC_STATUS RpcBindingInqOption(RPC_BINDING_HANDLE hBinding,unsigned long option,ULONG_PTR *pOptionValue);
RPC_STATUS RpcBindingInqOption(RPC_BINDING_HANDLE hBinding, uint option, ULONG_PTR *pOptionValue);
//C RPC_STATUS RpcBindingFromStringBindingA(RPC_CSTR StringBinding,RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcBindingFromStringBindingA(RPC_CSTR StringBinding, RPC_BINDING_HANDLE *Binding);
//C RPC_STATUS RpcBindingFromStringBindingW(RPC_WSTR StringBinding,RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcBindingFromStringBindingW(RPC_WSTR StringBinding, RPC_BINDING_HANDLE *Binding);
//C RPC_STATUS RpcSsGetContextBinding(void *ContextHandle,RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcSsGetContextBinding(void *ContextHandle, RPC_BINDING_HANDLE *Binding);
//C RPC_STATUS RpcBindingInqObject(RPC_BINDING_HANDLE Binding,UUID *ObjectUuid);
RPC_STATUS RpcBindingInqObject(RPC_BINDING_HANDLE Binding, UUID *ObjectUuid);
//C RPC_STATUS RpcBindingReset(RPC_BINDING_HANDLE Binding);
RPC_STATUS RpcBindingReset(RPC_BINDING_HANDLE Binding);
//C RPC_STATUS RpcBindingSetObject(RPC_BINDING_HANDLE Binding,UUID *ObjectUuid);
RPC_STATUS RpcBindingSetObject(RPC_BINDING_HANDLE Binding, UUID *ObjectUuid);
//C RPC_STATUS RpcMgmtInqDefaultProtectLevel(unsigned long AuthnSvc,unsigned long *AuthnLevel);
RPC_STATUS RpcMgmtInqDefaultProtectLevel(uint AuthnSvc, uint *AuthnLevel);
//C RPC_STATUS RpcBindingToStringBindingA(RPC_BINDING_HANDLE Binding,RPC_CSTR *StringBinding);
RPC_STATUS RpcBindingToStringBindingA(RPC_BINDING_HANDLE Binding, RPC_CSTR *StringBinding);
//C RPC_STATUS RpcBindingToStringBindingW(RPC_BINDING_HANDLE Binding,RPC_WSTR *StringBinding);
RPC_STATUS RpcBindingToStringBindingW(RPC_BINDING_HANDLE Binding, RPC_WSTR *StringBinding);
//C RPC_STATUS RpcBindingVectorFree(RPC_BINDING_VECTOR **BindingVector);
RPC_STATUS RpcBindingVectorFree(RPC_BINDING_VECTOR **BindingVector);
//C RPC_STATUS RpcStringBindingComposeA(RPC_CSTR ObjUuid,RPC_CSTR Protseq,RPC_CSTR NetworkAddr,RPC_CSTR Endpoint,RPC_CSTR Options,RPC_CSTR *StringBinding);
RPC_STATUS RpcStringBindingComposeA(RPC_CSTR ObjUuid, RPC_CSTR Protseq, RPC_CSTR NetworkAddr, RPC_CSTR Endpoint, RPC_CSTR Options, RPC_CSTR *StringBinding);
//C RPC_STATUS RpcStringBindingComposeW(RPC_WSTR ObjUuid,RPC_WSTR Protseq,RPC_WSTR NetworkAddr,RPC_WSTR Endpoint,RPC_WSTR Options,RPC_WSTR *StringBinding);
RPC_STATUS RpcStringBindingComposeW(RPC_WSTR ObjUuid, RPC_WSTR Protseq, RPC_WSTR NetworkAddr, RPC_WSTR Endpoint, RPC_WSTR Options, RPC_WSTR *StringBinding);
//C RPC_STATUS RpcStringBindingParseA(RPC_CSTR StringBinding,RPC_CSTR *ObjUuid,RPC_CSTR *Protseq,RPC_CSTR *NetworkAddr,RPC_CSTR *Endpoint,RPC_CSTR *NetworkOptions);
RPC_STATUS RpcStringBindingParseA(RPC_CSTR StringBinding, RPC_CSTR *ObjUuid, RPC_CSTR *Protseq, RPC_CSTR *NetworkAddr, RPC_CSTR *Endpoint, RPC_CSTR *NetworkOptions);
//C RPC_STATUS RpcStringBindingParseW(RPC_WSTR StringBinding,RPC_WSTR *ObjUuid,RPC_WSTR *Protseq,RPC_WSTR *NetworkAddr,RPC_WSTR *Endpoint,RPC_WSTR *NetworkOptions);
RPC_STATUS RpcStringBindingParseW(RPC_WSTR StringBinding, RPC_WSTR *ObjUuid, RPC_WSTR *Protseq, RPC_WSTR *NetworkAddr, RPC_WSTR *Endpoint, RPC_WSTR *NetworkOptions);
//C RPC_STATUS RpcStringFreeA(RPC_CSTR *String);
RPC_STATUS RpcStringFreeA(RPC_CSTR *String);
//C RPC_STATUS RpcStringFreeW(RPC_WSTR *String);
RPC_STATUS RpcStringFreeW(RPC_WSTR *String);
//C RPC_STATUS RpcIfInqId(RPC_IF_HANDLE RpcIfHandle,RPC_IF_ID *RpcIfId);
RPC_STATUS RpcIfInqId(RPC_IF_HANDLE RpcIfHandle, RPC_IF_ID *RpcIfId);
//C RPC_STATUS RpcNetworkIsProtseqValidA(RPC_CSTR Protseq);
RPC_STATUS RpcNetworkIsProtseqValidA(RPC_CSTR Protseq);
//C RPC_STATUS RpcNetworkIsProtseqValidW(RPC_WSTR Protseq);
RPC_STATUS RpcNetworkIsProtseqValidW(RPC_WSTR Protseq);
//C RPC_STATUS RpcMgmtInqComTimeout(RPC_BINDING_HANDLE Binding,unsigned int *Timeout);
RPC_STATUS RpcMgmtInqComTimeout(RPC_BINDING_HANDLE Binding, uint *Timeout);
//C RPC_STATUS RpcMgmtSetComTimeout(RPC_BINDING_HANDLE Binding,unsigned int Timeout);
RPC_STATUS RpcMgmtSetComTimeout(RPC_BINDING_HANDLE Binding, uint Timeout);
//C RPC_STATUS RpcMgmtSetCancelTimeout(long Timeout);
RPC_STATUS RpcMgmtSetCancelTimeout(int Timeout);
//C RPC_STATUS RpcNetworkInqProtseqsA (RPC_PROTSEQ_VECTORA **ProtseqVector);
RPC_STATUS RpcNetworkInqProtseqsA(RPC_PROTSEQ_VECTORA **ProtseqVector);
//C RPC_STATUS RpcNetworkInqProtseqsW (RPC_PROTSEQ_VECTORW **ProtseqVector);
RPC_STATUS RpcNetworkInqProtseqsW(RPC_PROTSEQ_VECTORW **ProtseqVector);
//C RPC_STATUS RpcObjectInqType(UUID *ObjUuid,UUID *TypeUuid);
RPC_STATUS RpcObjectInqType(UUID *ObjUuid, UUID *TypeUuid);
//C RPC_STATUS RpcObjectSetInqFn(RPC_OBJECT_INQ_FN *InquiryFn);
RPC_STATUS RpcObjectSetInqFn(void function(UUID *ObjectUuid, UUID *TypeUuid, RPC_STATUS *Status)InquiryFn);
//C RPC_STATUS RpcObjectSetType(UUID *ObjUuid,UUID *TypeUuid);
RPC_STATUS RpcObjectSetType(UUID *ObjUuid, UUID *TypeUuid);
//C RPC_STATUS RpcProtseqVectorFreeA(RPC_PROTSEQ_VECTORA **ProtseqVector);
RPC_STATUS RpcProtseqVectorFreeA(RPC_PROTSEQ_VECTORA **ProtseqVector);
//C RPC_STATUS RpcProtseqVectorFreeW(RPC_PROTSEQ_VECTORW **ProtseqVector);
RPC_STATUS RpcProtseqVectorFreeW(RPC_PROTSEQ_VECTORW **ProtseqVector);
//C RPC_STATUS RpcServerInqBindings (RPC_BINDING_VECTOR **BindingVector);
RPC_STATUS RpcServerInqBindings(RPC_BINDING_VECTOR **BindingVector);
//C RPC_STATUS RpcServerInqIf(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,void **MgrEpv);
RPC_STATUS RpcServerInqIf(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, void **MgrEpv);
//C RPC_STATUS RpcServerListen(unsigned int MinimumCallThreads,unsigned int MaxCalls,unsigned int DontWait);
RPC_STATUS RpcServerListen(uint MinimumCallThreads, uint MaxCalls, uint DontWait);
//C RPC_STATUS RpcServerRegisterIf(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,void *MgrEpv);
RPC_STATUS RpcServerRegisterIf(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, void *MgrEpv);
//C RPC_STATUS RpcServerRegisterIfEx(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,void *MgrEpv,unsigned int Flags,unsigned int MaxCalls,RPC_IF_CALLBACK_FN *IfCallback);
RPC_STATUS RpcServerRegisterIfEx(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, void *MgrEpv, uint Flags, uint MaxCalls, RPC_STATUS function(RPC_IF_HANDLE InterfaceUuid, void *Context)IfCallback);
//C RPC_STATUS RpcServerRegisterIf2(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,void *MgrEpv,unsigned int Flags,unsigned int MaxCalls,unsigned int MaxRpcSize,RPC_IF_CALLBACK_FN *IfCallbackFn);
RPC_STATUS RpcServerRegisterIf2(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, void *MgrEpv, uint Flags, uint MaxCalls, uint MaxRpcSize, RPC_STATUS function(RPC_IF_HANDLE InterfaceUuid, void *Context)IfCallbackFn);
//C RPC_STATUS RpcServerUnregisterIf(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,unsigned int WaitForCallsToComplete);
RPC_STATUS RpcServerUnregisterIf(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, uint WaitForCallsToComplete);
//C RPC_STATUS RpcServerUnregisterIfEx(RPC_IF_HANDLE IfSpec,UUID *MgrTypeUuid,int RundownContextHandles);
RPC_STATUS RpcServerUnregisterIfEx(RPC_IF_HANDLE IfSpec, UUID *MgrTypeUuid, int RundownContextHandles);
//C RPC_STATUS RpcServerUseAllProtseqs(unsigned int MaxCalls,void *SecurityDescriptor);
RPC_STATUS RpcServerUseAllProtseqs(uint MaxCalls, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseAllProtseqsEx(unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseAllProtseqsEx(uint MaxCalls, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseAllProtseqsIf(unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor);
RPC_STATUS RpcServerUseAllProtseqsIf(uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseAllProtseqsIfEx(unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseAllProtseqsIfEx(uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqA(RPC_CSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqA(RPC_CSTR Protseq, uint MaxCalls, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqExA(RPC_CSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqExA(RPC_CSTR Protseq, uint MaxCalls, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqW(RPC_WSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqW(RPC_WSTR Protseq, uint MaxCalls, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqExW(RPC_WSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqExW(RPC_WSTR Protseq, uint MaxCalls, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqEpA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqEpA(RPC_CSTR Protseq, uint MaxCalls, RPC_CSTR Endpoint, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqEpExA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqEpExA(RPC_CSTR Protseq, uint MaxCalls, RPC_CSTR Endpoint, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqEpW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqEpW(RPC_WSTR Protseq, uint MaxCalls, RPC_WSTR Endpoint, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqEpExW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqEpExW(RPC_WSTR Protseq, uint MaxCalls, RPC_WSTR Endpoint, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqIfA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqIfA(RPC_CSTR Protseq, uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqIfExA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqIfExA(RPC_CSTR Protseq, uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor, PRPC_POLICY Policy);
//C RPC_STATUS RpcServerUseProtseqIfW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor);
RPC_STATUS RpcServerUseProtseqIfW(RPC_WSTR Protseq, uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor);
//C RPC_STATUS RpcServerUseProtseqIfExW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
RPC_STATUS RpcServerUseProtseqIfExW(RPC_WSTR Protseq, uint MaxCalls, RPC_IF_HANDLE IfSpec, void *SecurityDescriptor, PRPC_POLICY Policy);
//C void RpcServerYield ();
void RpcServerYield();
//C RPC_STATUS RpcMgmtStatsVectorFree(RPC_STATS_VECTOR **StatsVector);
RPC_STATUS RpcMgmtStatsVectorFree(RPC_STATS_VECTOR **StatsVector);
//C RPC_STATUS RpcMgmtInqStats(RPC_BINDING_HANDLE Binding,RPC_STATS_VECTOR **Statistics);
RPC_STATUS RpcMgmtInqStats(RPC_BINDING_HANDLE Binding, RPC_STATS_VECTOR **Statistics);
//C RPC_STATUS RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding);
RPC_STATUS RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding);
//C RPC_STATUS RpcMgmtStopServerListening(RPC_BINDING_HANDLE Binding);
RPC_STATUS RpcMgmtStopServerListening(RPC_BINDING_HANDLE Binding);
//C RPC_STATUS RpcMgmtWaitServerListen(void);
RPC_STATUS RpcMgmtWaitServerListen();
//C RPC_STATUS RpcMgmtSetServerStackSize(unsigned long ThreadStackSize);
RPC_STATUS RpcMgmtSetServerStackSize(uint ThreadStackSize);
//C void RpcSsDontSerializeContext(void);
void RpcSsDontSerializeContext();
//C RPC_STATUS RpcMgmtEnableIdleCleanup(void);
RPC_STATUS RpcMgmtEnableIdleCleanup();
//C RPC_STATUS RpcMgmtInqIfIds(RPC_BINDING_HANDLE Binding,RPC_IF_ID_VECTOR **IfIdVector);
RPC_STATUS RpcMgmtInqIfIds(RPC_BINDING_HANDLE Binding, RPC_IF_ID_VECTOR **IfIdVector);
//C RPC_STATUS RpcIfIdVectorFree(RPC_IF_ID_VECTOR **IfIdVector);
RPC_STATUS RpcIfIdVectorFree(RPC_IF_ID_VECTOR **IfIdVector);
//C RPC_STATUS RpcMgmtInqServerPrincNameA(RPC_BINDING_HANDLE Binding,unsigned long AuthnSvc,RPC_CSTR *ServerPrincName);
RPC_STATUS RpcMgmtInqServerPrincNameA(RPC_BINDING_HANDLE Binding, uint AuthnSvc, RPC_CSTR *ServerPrincName);
//C RPC_STATUS RpcMgmtInqServerPrincNameW(RPC_BINDING_HANDLE Binding,unsigned long AuthnSvc,RPC_WSTR *ServerPrincName);
RPC_STATUS RpcMgmtInqServerPrincNameW(RPC_BINDING_HANDLE Binding, uint AuthnSvc, RPC_WSTR *ServerPrincName);
//C RPC_STATUS RpcServerInqDefaultPrincNameA(unsigned long AuthnSvc,RPC_CSTR *PrincName);
RPC_STATUS RpcServerInqDefaultPrincNameA(uint AuthnSvc, RPC_CSTR *PrincName);
//C RPC_STATUS RpcServerInqDefaultPrincNameW(unsigned long AuthnSvc,RPC_WSTR *PrincName);
RPC_STATUS RpcServerInqDefaultPrincNameW(uint AuthnSvc, RPC_WSTR *PrincName);
//C RPC_STATUS RpcEpResolveBinding(RPC_BINDING_HANDLE Binding,RPC_IF_HANDLE IfSpec);
RPC_STATUS RpcEpResolveBinding(RPC_BINDING_HANDLE Binding, RPC_IF_HANDLE IfSpec);
//C RPC_STATUS RpcNsBindingInqEntryNameA(RPC_BINDING_HANDLE Binding,unsigned long EntryNameSyntax,RPC_CSTR *EntryName);
RPC_STATUS RpcNsBindingInqEntryNameA(RPC_BINDING_HANDLE Binding, uint EntryNameSyntax, RPC_CSTR *EntryName);
//C RPC_STATUS RpcNsBindingInqEntryNameW(RPC_BINDING_HANDLE Binding,unsigned long EntryNameSyntax,RPC_WSTR *EntryName);
RPC_STATUS RpcNsBindingInqEntryNameW(RPC_BINDING_HANDLE Binding, uint EntryNameSyntax, RPC_WSTR *EntryName);
//C typedef void *RPC_AUTH_IDENTITY_HANDLE;
alias void *RPC_AUTH_IDENTITY_HANDLE;
//C typedef void *RPC_AUTHZ_HANDLE;
alias void *RPC_AUTHZ_HANDLE;
//C typedef struct _RPC_SECURITY_QOS {
//C unsigned long Version;
//C unsigned long Capabilities;
//C unsigned long IdentityTracking;
//C unsigned long ImpersonationType;
//C } RPC_SECURITY_QOS,*PRPC_SECURITY_QOS;
struct _RPC_SECURITY_QOS
{
uint Version;
uint Capabilities;
uint IdentityTracking;
uint ImpersonationType;
}
alias _RPC_SECURITY_QOS RPC_SECURITY_QOS;
alias _RPC_SECURITY_QOS *PRPC_SECURITY_QOS;
//C typedef struct _SEC_WINNT_AUTH_IDENTITY_W {
//C unsigned short *User;
//C unsigned long UserLength;
//C unsigned short *Domain;
//C unsigned long DomainLength;
//C unsigned short *Password;
//C unsigned long PasswordLength;
//C unsigned long Flags;
//C } SEC_WINNT_AUTH_IDENTITY_W,*PSEC_WINNT_AUTH_IDENTITY_W;
struct _SEC_WINNT_AUTH_IDENTITY_W
{
ushort *User;
uint UserLength;
ushort *Domain;
uint DomainLength;
ushort *Password;
uint PasswordLength;
uint Flags;
}
alias _SEC_WINNT_AUTH_IDENTITY_W SEC_WINNT_AUTH_IDENTITY_W;
alias _SEC_WINNT_AUTH_IDENTITY_W *PSEC_WINNT_AUTH_IDENTITY_W;
//C typedef struct _SEC_WINNT_AUTH_IDENTITY_A {
//C unsigned char *User;
//C unsigned long UserLength;
//C unsigned char *Domain;
//C unsigned long DomainLength;
//C unsigned char *Password;
//C unsigned long PasswordLength;
//C unsigned long Flags;
//C } SEC_WINNT_AUTH_IDENTITY_A,*PSEC_WINNT_AUTH_IDENTITY_A;
struct _SEC_WINNT_AUTH_IDENTITY_A
{
ubyte *User;
uint UserLength;
ubyte *Domain;
uint DomainLength;
ubyte *Password;
uint PasswordLength;
uint Flags;
}
alias _SEC_WINNT_AUTH_IDENTITY_A SEC_WINNT_AUTH_IDENTITY_A;
alias _SEC_WINNT_AUTH_IDENTITY_A *PSEC_WINNT_AUTH_IDENTITY_A;
//C typedef struct _RPC_HTTP_TRANSPORT_CREDENTIALS_W {
//C SEC_WINNT_AUTH_IDENTITY_W *TransportCredentials;
//C unsigned long Flags;
//C unsigned long AuthenticationTarget;
//C unsigned long NumberOfAuthnSchemes;
//C unsigned long *AuthnSchemes;
//C unsigned short *ServerCertificateSubject;
//C } RPC_HTTP_TRANSPORT_CREDENTIALS_W,*PRPC_HTTP_TRANSPORT_CREDENTIALS_W;
struct _RPC_HTTP_TRANSPORT_CREDENTIALS_W
{
SEC_WINNT_AUTH_IDENTITY_W *TransportCredentials;
uint Flags;
uint AuthenticationTarget;
uint NumberOfAuthnSchemes;
uint *AuthnSchemes;
ushort *ServerCertificateSubject;
}
alias _RPC_HTTP_TRANSPORT_CREDENTIALS_W RPC_HTTP_TRANSPORT_CREDENTIALS_W;
alias _RPC_HTTP_TRANSPORT_CREDENTIALS_W *PRPC_HTTP_TRANSPORT_CREDENTIALS_W;
//C typedef struct _RPC_HTTP_TRANSPORT_CREDENTIALS_A {
//C SEC_WINNT_AUTH_IDENTITY_A *TransportCredentials;
//C unsigned long Flags;
//C unsigned long AuthenticationTarget;
//C unsigned long NumberOfAuthnSchemes;
//C unsigned long *AuthnSchemes;
//C unsigned char *ServerCertificateSubject;
//C } RPC_HTTP_TRANSPORT_CREDENTIALS_A,*PRPC_HTTP_TRANSPORT_CREDENTIALS_A;
struct _RPC_HTTP_TRANSPORT_CREDENTIALS_A
{
SEC_WINNT_AUTH_IDENTITY_A *TransportCredentials;
uint Flags;
uint AuthenticationTarget;
uint NumberOfAuthnSchemes;
uint *AuthnSchemes;
ubyte *ServerCertificateSubject;
}
alias _RPC_HTTP_TRANSPORT_CREDENTIALS_A RPC_HTTP_TRANSPORT_CREDENTIALS_A;
alias _RPC_HTTP_TRANSPORT_CREDENTIALS_A *PRPC_HTTP_TRANSPORT_CREDENTIALS_A;
//C typedef struct _RPC_SECURITY_QOS_V2_W {
//C unsigned long Version;
//C unsigned long Capabilities;
//C unsigned long IdentityTracking;
//C unsigned long ImpersonationType;
//C unsigned long AdditionalSecurityInfoType;
//C union {
//C RPC_HTTP_TRANSPORT_CREDENTIALS_W *HttpCredentials;
//C } u;
union _N112
{
RPC_HTTP_TRANSPORT_CREDENTIALS_W *HttpCredentials;
}
//C } RPC_SECURITY_QOS_V2_W,*PRPC_SECURITY_QOS_V2_W;
struct _RPC_SECURITY_QOS_V2_W
{
uint Version;
uint Capabilities;
uint IdentityTracking;
uint ImpersonationType;
uint AdditionalSecurityInfoType;
_N112 u;
}
alias _RPC_SECURITY_QOS_V2_W RPC_SECURITY_QOS_V2_W;
alias _RPC_SECURITY_QOS_V2_W *PRPC_SECURITY_QOS_V2_W;
//C typedef struct _RPC_SECURITY_QOS_V2_A {
//C unsigned long Version;
//C unsigned long Capabilities;
//C unsigned long IdentityTracking;
//C unsigned long ImpersonationType;
//C unsigned long AdditionalSecurityInfoType;
//C union {
//C RPC_HTTP_TRANSPORT_CREDENTIALS_A *HttpCredentials;
//C } u;
union _N113
{
RPC_HTTP_TRANSPORT_CREDENTIALS_A *HttpCredentials;
}
//C } RPC_SECURITY_QOS_V2_A,*PRPC_SECURITY_QOS_V2_A;
struct _RPC_SECURITY_QOS_V2_A
{
uint Version;
uint Capabilities;
uint IdentityTracking;
uint ImpersonationType;
uint AdditionalSecurityInfoType;
_N113 u;
}
alias _RPC_SECURITY_QOS_V2_A RPC_SECURITY_QOS_V2_A;
alias _RPC_SECURITY_QOS_V2_A *PRPC_SECURITY_QOS_V2_A;
//C typedef struct _RPC_SECURITY_QOS_V3_W {
//C unsigned long Version;
//C unsigned long Capabilities;
//C unsigned long IdentityTracking;
//C unsigned long ImpersonationType;
//C unsigned long AdditionalSecurityInfoType;
//C union {
//C RPC_HTTP_TRANSPORT_CREDENTIALS_W *HttpCredentials;
//C } u;
union _N114
{
RPC_HTTP_TRANSPORT_CREDENTIALS_W *HttpCredentials;
}
//C void *Sid;
//C } RPC_SECURITY_QOS_V3_W,*PRPC_SECURITY_QOS_V3_W;
struct _RPC_SECURITY_QOS_V3_W
{
uint Version;
uint Capabilities;
uint IdentityTracking;
uint ImpersonationType;
uint AdditionalSecurityInfoType;
_N114 u;
void *Sid;
}
alias _RPC_SECURITY_QOS_V3_W RPC_SECURITY_QOS_V3_W;
alias _RPC_SECURITY_QOS_V3_W *PRPC_SECURITY_QOS_V3_W;
//C typedef struct _RPC_SECURITY_QOS_V3_A {
//C unsigned long Version;
//C unsigned long Capabilities;
//C unsigned long IdentityTracking;
//C unsigned long ImpersonationType;
//C unsigned long AdditionalSecurityInfoType;
//C union {
//C RPC_HTTP_TRANSPORT_CREDENTIALS_A *HttpCredentials;
//C } u;
union _N115
{
RPC_HTTP_TRANSPORT_CREDENTIALS_A *HttpCredentials;
}
//C void *Sid;
//C } RPC_SECURITY_QOS_V3_A,*PRPC_SECURITY_QOS_V3_A;
struct _RPC_SECURITY_QOS_V3_A
{
uint Version;
uint Capabilities;
uint IdentityTracking;
uint ImpersonationType;
uint AdditionalSecurityInfoType;
_N115 u;
void *Sid;
}
alias _RPC_SECURITY_QOS_V3_A RPC_SECURITY_QOS_V3_A;
alias _RPC_SECURITY_QOS_V3_A *PRPC_SECURITY_QOS_V3_A;
//C typedef enum _RPC_HTTP_REDIRECTOR_STAGE {
//C RPCHTTP_RS_REDIRECT = 1,RPCHTTP_RS_ACCESS_1,RPCHTTP_RS_SESSION,RPCHTTP_RS_ACCESS_2,RPCHTTP_RS_INTERFACE
//C } RPC_HTTP_REDIRECTOR_STAGE;
enum _RPC_HTTP_REDIRECTOR_STAGE
{
RPCHTTP_RS_REDIRECT = 1,
RPCHTTP_RS_ACCESS_1,
RPCHTTP_RS_SESSION,
RPCHTTP_RS_ACCESS_2,
RPCHTTP_RS_INTERFACE,
}
alias _RPC_HTTP_REDIRECTOR_STAGE RPC_HTTP_REDIRECTOR_STAGE;
//C typedef RPC_STATUS ( *RPC_NEW_HTTP_PROXY_CHANNEL)(RPC_HTTP_REDIRECTOR_STAGE RedirectorStage,unsigned short *ServerName,unsigned short *ServerPort,unsigned short *RemoteUser,unsigned short *AuthType,void *ResourceUuid,void *Metadata,void *SessionId,void *Interface,void *Reserved,unsigned long Flags,unsigned short **NewServerName,unsigned short **NewServerPort);
alias RPC_STATUS function(RPC_HTTP_REDIRECTOR_STAGE RedirectorStage, ushort *ServerName, ushort *ServerPort, ushort *RemoteUser, ushort *AuthType, void *ResourceUuid, void *Metadata, void *SessionId, void *Interface, void *Reserved, uint Flags, ushort **NewServerName, ushort **NewServerPort)RPC_NEW_HTTP_PROXY_CHANNEL;
//C typedef void ( *RPC_HTTP_PROXY_FREE_STRING)(unsigned short *String);
alias void function(ushort *String)RPC_HTTP_PROXY_FREE_STRING;
//C RPC_STATUS RpcImpersonateClient(RPC_BINDING_HANDLE BindingHandle);
RPC_STATUS RpcImpersonateClient(RPC_BINDING_HANDLE BindingHandle);
//C RPC_STATUS RpcRevertToSelfEx(RPC_BINDING_HANDLE BindingHandle);
RPC_STATUS RpcRevertToSelfEx(RPC_BINDING_HANDLE BindingHandle);
//C RPC_STATUS RpcRevertToSelf();
RPC_STATUS RpcRevertToSelf();
//C RPC_STATUS RpcBindingInqAuthClientA(RPC_BINDING_HANDLE ClientBinding,RPC_AUTHZ_HANDLE *Privs,RPC_CSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,unsigned long *AuthzSvc);
RPC_STATUS RpcBindingInqAuthClientA(RPC_BINDING_HANDLE ClientBinding, RPC_AUTHZ_HANDLE *Privs, RPC_CSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, uint *AuthzSvc);
//C RPC_STATUS RpcBindingInqAuthClientW(RPC_BINDING_HANDLE ClientBinding,RPC_AUTHZ_HANDLE *Privs,RPC_WSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,unsigned long *AuthzSvc);
RPC_STATUS RpcBindingInqAuthClientW(RPC_BINDING_HANDLE ClientBinding, RPC_AUTHZ_HANDLE *Privs, RPC_WSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, uint *AuthzSvc);
//C RPC_STATUS RpcBindingInqAuthClientExA(RPC_BINDING_HANDLE ClientBinding,RPC_AUTHZ_HANDLE *Privs,RPC_CSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,unsigned long *AuthzSvc,unsigned long Flags);
RPC_STATUS RpcBindingInqAuthClientExA(RPC_BINDING_HANDLE ClientBinding, RPC_AUTHZ_HANDLE *Privs, RPC_CSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, uint *AuthzSvc, uint Flags);
//C RPC_STATUS RpcBindingInqAuthClientExW(RPC_BINDING_HANDLE ClientBinding,RPC_AUTHZ_HANDLE *Privs,RPC_WSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,unsigned long *AuthzSvc,unsigned long Flags);
RPC_STATUS RpcBindingInqAuthClientExW(RPC_BINDING_HANDLE ClientBinding, RPC_AUTHZ_HANDLE *Privs, RPC_WSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, uint *AuthzSvc, uint Flags);
//C RPC_STATUS RpcBindingInqAuthInfoA(RPC_BINDING_HANDLE Binding,RPC_CSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,RPC_AUTH_IDENTITY_HANDLE *AuthIdentity,unsigned long *AuthzSvc);
RPC_STATUS RpcBindingInqAuthInfoA(RPC_BINDING_HANDLE Binding, RPC_CSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, RPC_AUTH_IDENTITY_HANDLE *AuthIdentity, uint *AuthzSvc);
//C RPC_STATUS RpcBindingInqAuthInfoW(RPC_BINDING_HANDLE Binding,RPC_WSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,RPC_AUTH_IDENTITY_HANDLE *AuthIdentity,unsigned long *AuthzSvc);
RPC_STATUS RpcBindingInqAuthInfoW(RPC_BINDING_HANDLE Binding, RPC_WSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, RPC_AUTH_IDENTITY_HANDLE *AuthIdentity, uint *AuthzSvc);
//C RPC_STATUS RpcBindingSetAuthInfoA(RPC_BINDING_HANDLE Binding,RPC_CSTR ServerPrincName,unsigned long AuthnLevel,unsigned long AuthnSvc,RPC_AUTH_IDENTITY_HANDLE AuthIdentity,unsigned long AuthzSvc);
RPC_STATUS RpcBindingSetAuthInfoA(RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName, uint AuthnLevel, uint AuthnSvc, RPC_AUTH_IDENTITY_HANDLE AuthIdentity, uint AuthzSvc);
//C RPC_STATUS RpcBindingSetAuthInfoExA(RPC_BINDING_HANDLE Binding,RPC_CSTR ServerPrincName,unsigned long AuthnLevel,unsigned long AuthnSvc,RPC_AUTH_IDENTITY_HANDLE AuthIdentity,unsigned long AuthzSvc,RPC_SECURITY_QOS *SecurityQos);
RPC_STATUS RpcBindingSetAuthInfoExA(RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName, uint AuthnLevel, uint AuthnSvc, RPC_AUTH_IDENTITY_HANDLE AuthIdentity, uint AuthzSvc, RPC_SECURITY_QOS *SecurityQos);
//C RPC_STATUS RpcBindingSetAuthInfoW(RPC_BINDING_HANDLE Binding,RPC_WSTR ServerPrincName,unsigned long AuthnLevel,unsigned long AuthnSvc,RPC_AUTH_IDENTITY_HANDLE AuthIdentity,unsigned long AuthzSvc);
RPC_STATUS RpcBindingSetAuthInfoW(RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName, uint AuthnLevel, uint AuthnSvc, RPC_AUTH_IDENTITY_HANDLE AuthIdentity, uint AuthzSvc);
//C RPC_STATUS RpcBindingSetAuthInfoExW(RPC_BINDING_HANDLE Binding,RPC_WSTR ServerPrincName,unsigned long AuthnLevel,unsigned long AuthnSvc,RPC_AUTH_IDENTITY_HANDLE AuthIdentity,unsigned long AuthzSvc,RPC_SECURITY_QOS *SecurityQOS);
RPC_STATUS RpcBindingSetAuthInfoExW(RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName, uint AuthnLevel, uint AuthnSvc, RPC_AUTH_IDENTITY_HANDLE AuthIdentity, uint AuthzSvc, RPC_SECURITY_QOS *SecurityQOS);
//C RPC_STATUS RpcBindingInqAuthInfoExA(RPC_BINDING_HANDLE Binding,RPC_CSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,RPC_AUTH_IDENTITY_HANDLE *AuthIdentity,unsigned long *AuthzSvc,unsigned long RpcQosVersion,RPC_SECURITY_QOS *SecurityQOS);
RPC_STATUS RpcBindingInqAuthInfoExA(RPC_BINDING_HANDLE Binding, RPC_CSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, RPC_AUTH_IDENTITY_HANDLE *AuthIdentity, uint *AuthzSvc, uint RpcQosVersion, RPC_SECURITY_QOS *SecurityQOS);
//C RPC_STATUS RpcBindingInqAuthInfoExW(RPC_BINDING_HANDLE Binding,RPC_WSTR *ServerPrincName,unsigned long *AuthnLevel,unsigned long *AuthnSvc,RPC_AUTH_IDENTITY_HANDLE *AuthIdentity,unsigned long *AuthzSvc,unsigned long RpcQosVersion,RPC_SECURITY_QOS *SecurityQOS);
RPC_STATUS RpcBindingInqAuthInfoExW(RPC_BINDING_HANDLE Binding, RPC_WSTR *ServerPrincName, uint *AuthnLevel, uint *AuthnSvc, RPC_AUTH_IDENTITY_HANDLE *AuthIdentity, uint *AuthzSvc, uint RpcQosVersion, RPC_SECURITY_QOS *SecurityQOS);
//C typedef void ( *RPC_AUTH_KEY_RETRIEVAL_FN)(void *Arg,unsigned short *ServerPrincName,unsigned long KeyVer,void **Key,RPC_STATUS *Status);
alias void function(void *Arg, ushort *ServerPrincName, uint KeyVer, void **Key, RPC_STATUS *Status)RPC_AUTH_KEY_RETRIEVAL_FN;
//C RPC_STATUS RpcServerRegisterAuthInfoA(RPC_CSTR ServerPrincName,unsigned long AuthnSvc,RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn,void *Arg);
RPC_STATUS RpcServerRegisterAuthInfoA(RPC_CSTR ServerPrincName, uint AuthnSvc, RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn, void *Arg);
//C RPC_STATUS RpcServerRegisterAuthInfoW(RPC_WSTR ServerPrincName,unsigned long AuthnSvc,RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn,void *Arg);
RPC_STATUS RpcServerRegisterAuthInfoW(RPC_WSTR ServerPrincName, uint AuthnSvc, RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn, void *Arg);
//C typedef struct {
//C unsigned char *UserName;
//C unsigned char *ComputerName;
//C unsigned short Privilege;
//C unsigned long AuthFlags;
//C } RPC_CLIENT_INFORMATION1,*PRPC_CLIENT_INFORMATION1;
struct _N116
{
ubyte *UserName;
ubyte *ComputerName;
ushort Privilege;
uint AuthFlags;
}
alias _N116 RPC_CLIENT_INFORMATION1;
alias _N116 *PRPC_CLIENT_INFORMATION1;
//C RPC_STATUS RpcBindingServerFromClient(RPC_BINDING_HANDLE ClientBinding,RPC_BINDING_HANDLE *ServerBinding);
RPC_STATUS RpcBindingServerFromClient(RPC_BINDING_HANDLE ClientBinding, RPC_BINDING_HANDLE *ServerBinding);
//C void RpcRaiseException(RPC_STATUS exception);
void RpcRaiseException(RPC_STATUS exception);
//C RPC_STATUS RpcTestCancel();
RPC_STATUS RpcTestCancel();
//C RPC_STATUS RpcServerTestCancel(RPC_BINDING_HANDLE BindingHandle);
RPC_STATUS RpcServerTestCancel(RPC_BINDING_HANDLE BindingHandle);
//C RPC_STATUS RpcCancelThread(void *Thread);
RPC_STATUS RpcCancelThread(void *Thread);
//C RPC_STATUS RpcCancelThreadEx(void *Thread,long Timeout);
RPC_STATUS RpcCancelThreadEx(void *Thread, int Timeout);
//C RPC_STATUS UuidCreate(UUID *Uuid);
RPC_STATUS UuidCreate(UUID *Uuid);
//C RPC_STATUS UuidCreateSequential(UUID *Uuid);
RPC_STATUS UuidCreateSequential(UUID *Uuid);
//C RPC_STATUS UuidToStringA(UUID *Uuid,RPC_CSTR *StringUuid);
RPC_STATUS UuidToStringA(UUID *Uuid, RPC_CSTR *StringUuid);
//C RPC_STATUS UuidFromStringA(RPC_CSTR StringUuid,UUID *Uuid);
RPC_STATUS UuidFromStringA(RPC_CSTR StringUuid, UUID *Uuid);
//C RPC_STATUS UuidToStringW(UUID *Uuid,RPC_WSTR *StringUuid);
RPC_STATUS UuidToStringW(UUID *Uuid, RPC_WSTR *StringUuid);
//C RPC_STATUS UuidFromStringW(RPC_WSTR StringUuid,UUID *Uuid);
RPC_STATUS UuidFromStringW(RPC_WSTR StringUuid, UUID *Uuid);
//C signed int UuidCompare(UUID *Uuid1,UUID *Uuid2,RPC_STATUS *Status);
int UuidCompare(UUID *Uuid1, UUID *Uuid2, RPC_STATUS *Status);
//C RPC_STATUS UuidCreateNil(UUID *NilUuid);
RPC_STATUS UuidCreateNil(UUID *NilUuid);
//C int UuidEqual(UUID *Uuid1,UUID *Uuid2,RPC_STATUS *Status);
int UuidEqual(UUID *Uuid1, UUID *Uuid2, RPC_STATUS *Status);
//C unsigned short UuidHash(UUID *Uuid,RPC_STATUS *Status);
ushort UuidHash(UUID *Uuid, RPC_STATUS *Status);
//C int UuidIsNil(UUID *Uuid,RPC_STATUS *Status);
int UuidIsNil(UUID *Uuid, RPC_STATUS *Status);
//C RPC_STATUS RpcEpRegisterNoReplaceA(RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVector,UUID_VECTOR *UuidVector,RPC_CSTR Annotation);
RPC_STATUS RpcEpRegisterNoReplaceA(RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVector, UUID_VECTOR *UuidVector, RPC_CSTR Annotation);
//C RPC_STATUS RpcEpRegisterNoReplaceW(RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVector,UUID_VECTOR *UuidVector,RPC_WSTR Annotation);
RPC_STATUS RpcEpRegisterNoReplaceW(RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVector, UUID_VECTOR *UuidVector, RPC_WSTR Annotation);
//C RPC_STATUS RpcEpRegisterA(RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVector,UUID_VECTOR *UuidVector,RPC_CSTR Annotation);
RPC_STATUS RpcEpRegisterA(RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVector, UUID_VECTOR *UuidVector, RPC_CSTR Annotation);
//C RPC_STATUS RpcEpRegisterW(RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVector,UUID_VECTOR *UuidVector,RPC_WSTR Annotation);
RPC_STATUS RpcEpRegisterW(RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVector, UUID_VECTOR *UuidVector, RPC_WSTR Annotation);
//C RPC_STATUS RpcEpUnregister(RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVector,UUID_VECTOR *UuidVector);
RPC_STATUS RpcEpUnregister(RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVector, UUID_VECTOR *UuidVector);
//C RPC_STATUS DceErrorInqTextA(RPC_STATUS RpcStatus,RPC_CSTR ErrorText);
RPC_STATUS DceErrorInqTextA(RPC_STATUS RpcStatus, RPC_CSTR ErrorText);
//C RPC_STATUS DceErrorInqTextW(RPC_STATUS RpcStatus,RPC_WSTR ErrorText);
RPC_STATUS DceErrorInqTextW(RPC_STATUS RpcStatus, RPC_WSTR ErrorText);
//C typedef I_RPC_HANDLE *RPC_EP_INQ_HANDLE;
alias I_RPC_HANDLE *RPC_EP_INQ_HANDLE;
//C RPC_STATUS RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE EpBinding,unsigned long InquiryType,RPC_IF_ID *IfId,unsigned long VersOption,UUID *ObjectUuid,RPC_EP_INQ_HANDLE *InquiryContext);
RPC_STATUS RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE EpBinding, uint InquiryType, RPC_IF_ID *IfId, uint VersOption, UUID *ObjectUuid, RPC_EP_INQ_HANDLE *InquiryContext);
//C RPC_STATUS RpcMgmtEpEltInqDone(RPC_EP_INQ_HANDLE *InquiryContext);
RPC_STATUS RpcMgmtEpEltInqDone(RPC_EP_INQ_HANDLE *InquiryContext);
//C RPC_STATUS RpcMgmtEpEltInqNextA(RPC_EP_INQ_HANDLE InquiryContext,RPC_IF_ID *IfId,RPC_BINDING_HANDLE *Binding,UUID *ObjectUuid,RPC_CSTR *Annotation);
RPC_STATUS RpcMgmtEpEltInqNextA(RPC_EP_INQ_HANDLE InquiryContext, RPC_IF_ID *IfId, RPC_BINDING_HANDLE *Binding, UUID *ObjectUuid, RPC_CSTR *Annotation);
//C RPC_STATUS RpcMgmtEpEltInqNextW(RPC_EP_INQ_HANDLE InquiryContext,RPC_IF_ID *IfId,RPC_BINDING_HANDLE *Binding,UUID *ObjectUuid,RPC_WSTR *Annotation);
RPC_STATUS RpcMgmtEpEltInqNextW(RPC_EP_INQ_HANDLE InquiryContext, RPC_IF_ID *IfId, RPC_BINDING_HANDLE *Binding, UUID *ObjectUuid, RPC_WSTR *Annotation);
//C RPC_STATUS RpcMgmtEpUnregister(RPC_BINDING_HANDLE EpBinding,RPC_IF_ID *IfId,RPC_BINDING_HANDLE Binding,UUID *ObjectUuid);
RPC_STATUS RpcMgmtEpUnregister(RPC_BINDING_HANDLE EpBinding, RPC_IF_ID *IfId, RPC_BINDING_HANDLE Binding, UUID *ObjectUuid);
//C typedef int ( *RPC_MGMT_AUTHORIZATION_FN)(RPC_BINDING_HANDLE ClientBinding,unsigned long RequestedMgmtOperation,RPC_STATUS *Status);
alias int function(RPC_BINDING_HANDLE ClientBinding, uint RequestedMgmtOperation, RPC_STATUS *Status)RPC_MGMT_AUTHORIZATION_FN;
//C RPC_STATUS RpcMgmtSetAuthorizationFn(RPC_MGMT_AUTHORIZATION_FN AuthorizationFn);
RPC_STATUS RpcMgmtSetAuthorizationFn(RPC_MGMT_AUTHORIZATION_FN AuthorizationFn);
//C typedef struct _RPC_VERSION {
//C unsigned short MajorVersion;
//C unsigned short MinorVersion;
//C } RPC_VERSION;
struct _RPC_VERSION
{
ushort MajorVersion;
ushort MinorVersion;
}
alias _RPC_VERSION RPC_VERSION;
//C typedef struct _RPC_SYNTAX_IDENTIFIER {
//C GUID SyntaxGUID;
//C RPC_VERSION SyntaxVersion;
//C } RPC_SYNTAX_IDENTIFIER,*PRPC_SYNTAX_IDENTIFIER;
struct _RPC_SYNTAX_IDENTIFIER
{
GUID SyntaxGUID;
RPC_VERSION SyntaxVersion;
}
alias _RPC_SYNTAX_IDENTIFIER RPC_SYNTAX_IDENTIFIER;
alias _RPC_SYNTAX_IDENTIFIER *PRPC_SYNTAX_IDENTIFIER;
//C typedef struct _RPC_MESSAGE {
//C RPC_BINDING_HANDLE Handle;
//C unsigned long DataRepresentation;
//C void *Buffer;
//C unsigned int BufferLength;
//C unsigned int ProcNum;
//C PRPC_SYNTAX_IDENTIFIER TransferSyntax;
//C void *RpcInterfaceInformation;
//C void *ReservedForRuntime;
//C void *ManagerEpv;
//C void *ImportContext;
//C unsigned long RpcFlags;
//C } RPC_MESSAGE,*PRPC_MESSAGE;
struct _RPC_MESSAGE
{
RPC_BINDING_HANDLE Handle;
uint DataRepresentation;
void *Buffer;
uint BufferLength;
uint ProcNum;
PRPC_SYNTAX_IDENTIFIER TransferSyntax;
void *RpcInterfaceInformation;
void *ReservedForRuntime;
void *ManagerEpv;
void *ImportContext;
uint RpcFlags;
}
alias _RPC_MESSAGE RPC_MESSAGE;
alias _RPC_MESSAGE *PRPC_MESSAGE;
//C typedef RPC_STATUS RPC_FORWARD_FUNCTION(UUID *InterfaceId,RPC_VERSION *InterfaceVersion,UUID *ObjectId,unsigned char *Rpcpro,void **ppDestEndpoint);
alias RPC_STATUS function(UUID *InterfaceId, RPC_VERSION *InterfaceVersion, UUID *ObjectId, ubyte *Rpcpro, void **ppDestEndpoint)RPC_FORWARD_FUNCTION;
//C enum RPC_ADDRESS_CHANGE_TYPE {
//C PROTOCOL_NOT_LOADED = 1,PROTOCOL_LOADED,PROTOCOL_ADDRESS_CHANGE
//C };
enum RPC_ADDRESS_CHANGE_TYPE
{
PROTOCOL_NOT_LOADED = 1,
PROTOCOL_LOADED,
PROTOCOL_ADDRESS_CHANGE,
}
//C typedef void RPC_ADDRESS_CHANGE_FN(void *arg);
alias void function(void *arg)RPC_ADDRESS_CHANGE_FN;
//C typedef void ( *RPC_DISPATCH_FUNCTION)(PRPC_MESSAGE Message);
alias void function(PRPC_MESSAGE Message)RPC_DISPATCH_FUNCTION;
//C typedef struct {
//C unsigned int DispatchTableCount;
//C RPC_DISPATCH_FUNCTION *DispatchTable;
//C LONG_PTR Reserved;
//C } RPC_DISPATCH_TABLE,*PRPC_DISPATCH_TABLE;
struct _N117
{
uint DispatchTableCount;
RPC_DISPATCH_FUNCTION *DispatchTable;
LONG_PTR Reserved;
}
alias _N117 RPC_DISPATCH_TABLE;
alias _N117 *PRPC_DISPATCH_TABLE;
//C typedef struct _RPC_PROTSEQ_ENDPOINT {
//C unsigned char *RpcProtocolSequence;
//C unsigned char *Endpoint;
//C } RPC_PROTSEQ_ENDPOINT,*PRPC_PROTSEQ_ENDPOINT;
struct _RPC_PROTSEQ_ENDPOINT
{
ubyte *RpcProtocolSequence;
ubyte *Endpoint;
}
alias _RPC_PROTSEQ_ENDPOINT RPC_PROTSEQ_ENDPOINT;
alias _RPC_PROTSEQ_ENDPOINT *PRPC_PROTSEQ_ENDPOINT;
//C typedef struct _RPC_SERVER_INTERFACE {
//C unsigned int Length;
//C RPC_SYNTAX_IDENTIFIER InterfaceId;
//C RPC_SYNTAX_IDENTIFIER TransferSyntax;
//C PRPC_DISPATCH_TABLE DispatchTable;
//C unsigned int RpcProtseqEndpointCount;
//C PRPC_PROTSEQ_ENDPOINT RpcProtseqEndpoint;
//C void *DefaultManagerEpv;
//C void const *InterpreterInfo;
//C unsigned int Flags;
//C } RPC_SERVER_INTERFACE,*PRPC_SERVER_INTERFACE;
struct _RPC_SERVER_INTERFACE
{
uint Length;
RPC_SYNTAX_IDENTIFIER InterfaceId;
RPC_SYNTAX_IDENTIFIER TransferSyntax;
PRPC_DISPATCH_TABLE DispatchTable;
uint RpcProtseqEndpointCount;
PRPC_PROTSEQ_ENDPOINT RpcProtseqEndpoint;
void *DefaultManagerEpv;
void *InterpreterInfo;
uint Flags;
}
alias _RPC_SERVER_INTERFACE RPC_SERVER_INTERFACE;
alias _RPC_SERVER_INTERFACE *PRPC_SERVER_INTERFACE;
//C typedef struct _RPC_CLIENT_INTERFACE {
//C unsigned int Length;
//C RPC_SYNTAX_IDENTIFIER InterfaceId;
//C RPC_SYNTAX_IDENTIFIER TransferSyntax;
//C PRPC_DISPATCH_TABLE DispatchTable;
//C unsigned int RpcProtseqEndpointCount;
//C PRPC_PROTSEQ_ENDPOINT RpcProtseqEndpoint;
//C ULONG_PTR Reserved;
//C void const *InterpreterInfo;
//C unsigned int Flags;
//C } RPC_CLIENT_INTERFACE,*PRPC_CLIENT_INTERFACE;
struct _RPC_CLIENT_INTERFACE
{
uint Length;
RPC_SYNTAX_IDENTIFIER InterfaceId;
RPC_SYNTAX_IDENTIFIER TransferSyntax;
PRPC_DISPATCH_TABLE DispatchTable;
uint RpcProtseqEndpointCount;
PRPC_PROTSEQ_ENDPOINT RpcProtseqEndpoint;
ULONG_PTR Reserved;
void *InterpreterInfo;
uint Flags;
}
alias _RPC_CLIENT_INTERFACE RPC_CLIENT_INTERFACE;
alias _RPC_CLIENT_INTERFACE *PRPC_CLIENT_INTERFACE;
//C RPC_STATUS I_RpcNegotiateTransferSyntax(RPC_MESSAGE *Message);
RPC_STATUS I_RpcNegotiateTransferSyntax(RPC_MESSAGE *Message);
//C RPC_STATUS I_RpcGetBuffer(RPC_MESSAGE *Message);
RPC_STATUS I_RpcGetBuffer(RPC_MESSAGE *Message);
//C RPC_STATUS I_RpcGetBufferWithObject(RPC_MESSAGE *Message,UUID *ObjectUuid);
RPC_STATUS I_RpcGetBufferWithObject(RPC_MESSAGE *Message, UUID *ObjectUuid);
//C RPC_STATUS I_RpcSendReceive(RPC_MESSAGE *Message);
RPC_STATUS I_RpcSendReceive(RPC_MESSAGE *Message);
//C RPC_STATUS I_RpcFreeBuffer(RPC_MESSAGE *Message);
RPC_STATUS I_RpcFreeBuffer(RPC_MESSAGE *Message);
//C RPC_STATUS I_RpcSend(PRPC_MESSAGE Message);
RPC_STATUS I_RpcSend(PRPC_MESSAGE Message);
//C RPC_STATUS I_RpcReceive(PRPC_MESSAGE Message,unsigned int Size);
RPC_STATUS I_RpcReceive(PRPC_MESSAGE Message, uint Size);
//C RPC_STATUS I_RpcFreePipeBuffer(RPC_MESSAGE *Message);
RPC_STATUS I_RpcFreePipeBuffer(RPC_MESSAGE *Message);
//C RPC_STATUS I_RpcReallocPipeBuffer(PRPC_MESSAGE Message,unsigned int NewSize);
RPC_STATUS I_RpcReallocPipeBuffer(PRPC_MESSAGE Message, uint NewSize);
//C typedef void *I_RPC_MUTEX;
alias void *I_RPC_MUTEX;
//C void I_RpcRequestMutex(I_RPC_MUTEX *Mutex);
void I_RpcRequestMutex(I_RPC_MUTEX *Mutex);
//C void I_RpcClearMutex(I_RPC_MUTEX Mutex);
void I_RpcClearMutex(I_RPC_MUTEX Mutex);
//C void I_RpcDeleteMutex(I_RPC_MUTEX Mutex);
void I_RpcDeleteMutex(I_RPC_MUTEX Mutex);
//C void * I_RpcAllocate(unsigned int Size);
void * I_RpcAllocate(uint Size);
//C void I_RpcFree(void *Object);
void I_RpcFree(void *Object);
//C void I_RpcPauseExecution(unsigned long Milliseconds);
void I_RpcPauseExecution(uint Milliseconds);
//C RPC_STATUS I_RpcGetExtendedError();
RPC_STATUS I_RpcGetExtendedError();
//C typedef void ( *PRPC_RUNDOWN)(void *AssociationContext);
alias void function(void *AssociationContext)PRPC_RUNDOWN;
//C RPC_STATUS I_RpcMonitorAssociation(RPC_BINDING_HANDLE Handle,PRPC_RUNDOWN RundownRoutine,void *Context);
RPC_STATUS I_RpcMonitorAssociation(RPC_BINDING_HANDLE Handle, PRPC_RUNDOWN RundownRoutine, void *Context);
//C RPC_STATUS I_RpcStopMonitorAssociation(RPC_BINDING_HANDLE Handle);
RPC_STATUS I_RpcStopMonitorAssociation(RPC_BINDING_HANDLE Handle);
//C RPC_BINDING_HANDLE I_RpcGetCurrentCallHandle(void);
RPC_BINDING_HANDLE I_RpcGetCurrentCallHandle();
//C RPC_STATUS I_RpcGetAssociationContext(RPC_BINDING_HANDLE BindingHandle,void **AssociationContext);
RPC_STATUS I_RpcGetAssociationContext(RPC_BINDING_HANDLE BindingHandle, void **AssociationContext);
//C void * I_RpcGetServerContextList(RPC_BINDING_HANDLE BindingHandle);
void * I_RpcGetServerContextList(RPC_BINDING_HANDLE BindingHandle);
//C void I_RpcSetServerContextList(RPC_BINDING_HANDLE BindingHandle,void *ServerContextList);
void I_RpcSetServerContextList(RPC_BINDING_HANDLE BindingHandle, void *ServerContextList);
//C RPC_STATUS I_RpcNsInterfaceExported(unsigned long EntryNameSyntax,unsigned short *EntryName,RPC_SERVER_INTERFACE *RpcInterfaceInformation);
RPC_STATUS I_RpcNsInterfaceExported(uint EntryNameSyntax, ushort *EntryName, RPC_SERVER_INTERFACE *RpcInterfaceInformation);
//C RPC_STATUS I_RpcNsInterfaceUnexported(unsigned long EntryNameSyntax,unsigned short *EntryName,RPC_SERVER_INTERFACE *RpcInterfaceInformation);
RPC_STATUS I_RpcNsInterfaceUnexported(uint EntryNameSyntax, ushort *EntryName, RPC_SERVER_INTERFACE *RpcInterfaceInformation);
//C RPC_STATUS I_RpcBindingToStaticStringBindingW(RPC_BINDING_HANDLE Binding,unsigned short **StringBinding);
RPC_STATUS I_RpcBindingToStaticStringBindingW(RPC_BINDING_HANDLE Binding, ushort **StringBinding);
//C RPC_STATUS I_RpcBindingInqSecurityContext(RPC_BINDING_HANDLE Binding,void **SecurityContextHandle);
RPC_STATUS I_RpcBindingInqSecurityContext(RPC_BINDING_HANDLE Binding, void **SecurityContextHandle);
//C RPC_STATUS I_RpcBindingInqWireIdForSnego(RPC_BINDING_HANDLE Binding,RPC_CSTR WireId);
RPC_STATUS I_RpcBindingInqWireIdForSnego(RPC_BINDING_HANDLE Binding, RPC_CSTR WireId);
//C RPC_STATUS I_RpcBindingInqMarshalledTargetInfo (RPC_BINDING_HANDLE Binding,unsigned long *MarshalledTargetInfoLength,RPC_CSTR *MarshalledTargetInfo);
RPC_STATUS I_RpcBindingInqMarshalledTargetInfo(RPC_BINDING_HANDLE Binding, uint *MarshalledTargetInfoLength, RPC_CSTR *MarshalledTargetInfo);
//C RPC_STATUS I_RpcBindingInqLocalClientPID(RPC_BINDING_HANDLE Binding,unsigned long *Pid);
RPC_STATUS I_RpcBindingInqLocalClientPID(RPC_BINDING_HANDLE Binding, uint *Pid);
//C RPC_STATUS I_RpcBindingHandleToAsyncHandle(RPC_BINDING_HANDLE Binding,void **AsyncHandle);
RPC_STATUS I_RpcBindingHandleToAsyncHandle(RPC_BINDING_HANDLE Binding, void **AsyncHandle);
//C RPC_STATUS I_RpcNsBindingSetEntryNameW(RPC_BINDING_HANDLE Binding,unsigned long EntryNameSyntax,RPC_WSTR EntryName);
RPC_STATUS I_RpcNsBindingSetEntryNameW(RPC_BINDING_HANDLE Binding, uint EntryNameSyntax, RPC_WSTR EntryName);
//C RPC_STATUS I_RpcNsBindingSetEntryNameA(RPC_BINDING_HANDLE Binding,unsigned long EntryNameSyntax,RPC_CSTR EntryName);
RPC_STATUS I_RpcNsBindingSetEntryNameA(RPC_BINDING_HANDLE Binding, uint EntryNameSyntax, RPC_CSTR EntryName);
//C RPC_STATUS I_RpcServerUseProtseqEp2A(RPC_CSTR NetworkAddress,RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,void *Policy);
RPC_STATUS I_RpcServerUseProtseqEp2A(RPC_CSTR NetworkAddress, RPC_CSTR Protseq, uint MaxCalls, RPC_CSTR Endpoint, void *SecurityDescriptor, void *Policy);
//C RPC_STATUS I_RpcServerUseProtseqEp2W(RPC_WSTR NetworkAddress,RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,void *Policy);
RPC_STATUS I_RpcServerUseProtseqEp2W(RPC_WSTR NetworkAddress, RPC_WSTR Protseq, uint MaxCalls, RPC_WSTR Endpoint, void *SecurityDescriptor, void *Policy);
//C RPC_STATUS I_RpcServerUseProtseq2W(RPC_WSTR NetworkAddress,RPC_WSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,void *Policy);
RPC_STATUS I_RpcServerUseProtseq2W(RPC_WSTR NetworkAddress, RPC_WSTR Protseq, uint MaxCalls, void *SecurityDescriptor, void *Policy);
//C RPC_STATUS I_RpcServerUseProtseq2A(RPC_CSTR NetworkAddress,RPC_CSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,void *Policy);
RPC_STATUS I_RpcServerUseProtseq2A(RPC_CSTR NetworkAddress, RPC_CSTR Protseq, uint MaxCalls, void *SecurityDescriptor, void *Policy);
//C RPC_STATUS I_RpcBindingInqDynamicEndpointW(RPC_BINDING_HANDLE Binding,RPC_WSTR *DynamicEndpoint);
RPC_STATUS I_RpcBindingInqDynamicEndpointW(RPC_BINDING_HANDLE Binding, RPC_WSTR *DynamicEndpoint);
//C RPC_STATUS I_RpcBindingInqDynamicEndpointA(RPC_BINDING_HANDLE Binding,RPC_CSTR *DynamicEndpoint);
RPC_STATUS I_RpcBindingInqDynamicEndpointA(RPC_BINDING_HANDLE Binding, RPC_CSTR *DynamicEndpoint);
//C RPC_STATUS I_RpcServerCheckClientRestriction(RPC_BINDING_HANDLE Context);
RPC_STATUS I_RpcServerCheckClientRestriction(RPC_BINDING_HANDLE Context);
//C RPC_STATUS I_RpcBindingInqTransportType(RPC_BINDING_HANDLE Binding,unsigned int *Type);
RPC_STATUS I_RpcBindingInqTransportType(RPC_BINDING_HANDLE Binding, uint *Type);
//C typedef struct _RPC_TRANSFER_SYNTAX {
//C UUID Uuid;
//C unsigned short VersMajor;
//C unsigned short VersMinor;
//C } RPC_TRANSFER_SYNTAX;
struct _RPC_TRANSFER_SYNTAX
{
UUID Uuid;
ushort VersMajor;
ushort VersMinor;
}
alias _RPC_TRANSFER_SYNTAX RPC_TRANSFER_SYNTAX;
//C RPC_STATUS I_RpcIfInqTransferSyntaxes(RPC_IF_HANDLE RpcIfHandle,RPC_TRANSFER_SYNTAX *TransferSyntaxes,unsigned int TransferSyntaxSize,unsigned int *TransferSyntaxCount);
RPC_STATUS I_RpcIfInqTransferSyntaxes(RPC_IF_HANDLE RpcIfHandle, RPC_TRANSFER_SYNTAX *TransferSyntaxes, uint TransferSyntaxSize, uint *TransferSyntaxCount);
//C RPC_STATUS I_UuidCreate(UUID *Uuid);
RPC_STATUS I_UuidCreate(UUID *Uuid);
//C RPC_STATUS I_RpcBindingCopy(RPC_BINDING_HANDLE SourceBinding,RPC_BINDING_HANDLE *DestinationBinding);
RPC_STATUS I_RpcBindingCopy(RPC_BINDING_HANDLE SourceBinding, RPC_BINDING_HANDLE *DestinationBinding);
//C RPC_STATUS I_RpcBindingIsClientLocal(RPC_BINDING_HANDLE BindingHandle,unsigned int *ClientLocalFlag);
RPC_STATUS I_RpcBindingIsClientLocal(RPC_BINDING_HANDLE BindingHandle, uint *ClientLocalFlag);
//C RPC_STATUS I_RpcBindingInqConnId(RPC_BINDING_HANDLE Binding,void **ConnId,int *pfFirstCall);
RPC_STATUS I_RpcBindingInqConnId(RPC_BINDING_HANDLE Binding, void **ConnId, int *pfFirstCall);
//C void I_RpcSsDontSerializeContext(void);
void I_RpcSsDontSerializeContext();
//C RPC_STATUS I_RpcLaunchDatagramReceiveThread(void *pAddress);
RPC_STATUS I_RpcLaunchDatagramReceiveThread(void *pAddress);
//C RPC_STATUS I_RpcServerRegisterForwardFunction(RPC_FORWARD_FUNCTION *pForwardFunction);
RPC_STATUS I_RpcServerRegisterForwardFunction(RPC_STATUS function(UUID *InterfaceId, RPC_VERSION *InterfaceVersion, UUID *ObjectId, ubyte *Rpcpro, void **ppDestEndpoint)pForwardFunction);
//C RPC_ADDRESS_CHANGE_FN * I_RpcServerInqAddressChangeFn();
void function(void *arg) I_RpcServerInqAddressChangeFn();
//C RPC_STATUS I_RpcServerSetAddressChangeFn(RPC_ADDRESS_CHANGE_FN *pAddressChangeFn);
RPC_STATUS I_RpcServerSetAddressChangeFn(void function(void *arg)pAddressChangeFn);
//C RPC_STATUS I_RpcServerInqLocalConnAddress(RPC_BINDING_HANDLE Binding,void *Buffer,unsigned long *BufferSize,unsigned long *AddressFormat);
RPC_STATUS I_RpcServerInqLocalConnAddress(RPC_BINDING_HANDLE Binding, void *Buffer, uint *BufferSize, uint *AddressFormat);
//C void I_RpcSessionStrictContextHandle();
void I_RpcSessionStrictContextHandle();
//C RPC_STATUS I_RpcTurnOnEEInfoPropagation(void);
RPC_STATUS I_RpcTurnOnEEInfoPropagation();
//C RPC_STATUS I_RpcConnectionInqSockBuffSize(unsigned long *RecvBuffSize,unsigned long *SendBuffSize);
RPC_STATUS I_RpcConnectionInqSockBuffSize(uint *RecvBuffSize, uint *SendBuffSize);
//C RPC_STATUS I_RpcConnectionSetSockBuffSize(unsigned long RecvBuffSize,unsigned long SendBuffSize);
RPC_STATUS I_RpcConnectionSetSockBuffSize(uint RecvBuffSize, uint SendBuffSize);
//C typedef void (*RPCLT_PDU_FILTER_FUNC)(void *Buffer,unsigned int BufferLength,int fDatagram);
alias void function(void *Buffer, uint BufferLength, int fDatagram)RPCLT_PDU_FILTER_FUNC;
//C typedef void ( *RPC_SETFILTER_FUNC)(RPCLT_PDU_FILTER_FUNC pfnFilter);
alias void function(RPCLT_PDU_FILTER_FUNC pfnFilter)RPC_SETFILTER_FUNC;
//C RPC_STATUS I_RpcServerInqTransportType(unsigned int *Type);
RPC_STATUS I_RpcServerInqTransportType(uint *Type);
//C long I_RpcMapWin32Status(RPC_STATUS Status);
int I_RpcMapWin32Status(RPC_STATUS Status);
//C typedef struct _RPC_C_OPT_METADATA_DESCRIPTOR {
//C unsigned long BufferSize;
//C char *Buffer;
//C } RPC_C_OPT_METADATA_DESCRIPTOR;
struct _RPC_C_OPT_METADATA_DESCRIPTOR
{
uint BufferSize;
char *Buffer;
}
alias _RPC_C_OPT_METADATA_DESCRIPTOR RPC_C_OPT_METADATA_DESCRIPTOR;
//C typedef struct _RDR_CALLOUT_STATE {
//C RPC_STATUS LastError;
//C void *LastEEInfo;
//C RPC_HTTP_REDIRECTOR_STAGE LastCalledStage;
//C unsigned short *ServerName;
//C unsigned short *ServerPort;
//C unsigned short *RemoteUser;
//C unsigned short *AuthType;
//C unsigned char ResourceTypePresent;
//C unsigned char MetadataPresent;
//C unsigned char SessionIdPresent;
//C unsigned char InterfacePresent;
//C UUID ResourceType;
//C RPC_C_OPT_METADATA_DESCRIPTOR Metadata;
//C UUID SessionId;
//C RPC_SYNTAX_IDENTIFIER Interface;
//C void *CertContext;
//C } RDR_CALLOUT_STATE;
struct _RDR_CALLOUT_STATE
{
RPC_STATUS LastError;
void *LastEEInfo;
RPC_HTTP_REDIRECTOR_STAGE LastCalledStage;
ushort *ServerName;
ushort *ServerPort;
ushort *RemoteUser;
ushort *AuthType;
ubyte ResourceTypePresent;
ubyte MetadataPresent;
ubyte SessionIdPresent;
ubyte InterfacePresent;
UUID ResourceType;
RPC_C_OPT_METADATA_DESCRIPTOR Metadata;
UUID SessionId;
RPC_SYNTAX_IDENTIFIER Interface;
void *CertContext;
}
alias _RDR_CALLOUT_STATE RDR_CALLOUT_STATE;
//C typedef RPC_STATUS ( *I_RpcProxyIsValidMachineFn)(char *pszMachine,char *pszDotMachine,unsigned long dwPortNumber);
alias RPC_STATUS function(char *pszMachine, char *pszDotMachine, uint dwPortNumber)I_RpcProxyIsValidMachineFn;
//C typedef RPC_STATUS ( *I_RpcProxyGetClientAddressFn)(void *Context,char *Buffer,unsigned long *BufferLength);
alias RPC_STATUS function(void *Context, char *Buffer, uint *BufferLength)I_RpcProxyGetClientAddressFn;
//C typedef RPC_STATUS ( *I_RpcProxyGetConnectionTimeoutFn)(unsigned long *ConnectionTimeout);
alias RPC_STATUS function(uint *ConnectionTimeout)I_RpcProxyGetConnectionTimeoutFn;
//C typedef RPC_STATUS ( *I_RpcPerformCalloutFn)(void *Context,RDR_CALLOUT_STATE *CallOutState,RPC_HTTP_REDIRECTOR_STAGE Stage);
alias RPC_STATUS function(void *Context, RDR_CALLOUT_STATE *CallOutState, RPC_HTTP_REDIRECTOR_STAGE Stage)I_RpcPerformCalloutFn;
//C typedef void ( *I_RpcFreeCalloutStateFn)(RDR_CALLOUT_STATE *CallOutState);
alias void function(RDR_CALLOUT_STATE *CallOutState)I_RpcFreeCalloutStateFn;
//C typedef struct tagI_RpcProxyCallbackInterface {
//C I_RpcProxyIsValidMachineFn IsValidMachineFn;
//C I_RpcProxyGetClientAddressFn GetClientAddressFn;
//C I_RpcProxyGetConnectionTimeoutFn GetConnectionTimeoutFn;
//C I_RpcPerformCalloutFn PerformCalloutFn;
//C I_RpcFreeCalloutStateFn FreeCalloutStateFn;
//C } I_RpcProxyCallbackInterface;
struct tagI_RpcProxyCallbackInterface
{
I_RpcProxyIsValidMachineFn IsValidMachineFn;
I_RpcProxyGetClientAddressFn GetClientAddressFn;
I_RpcProxyGetConnectionTimeoutFn GetConnectionTimeoutFn;
I_RpcPerformCalloutFn PerformCalloutFn;
I_RpcFreeCalloutStateFn FreeCalloutStateFn;
}
alias tagI_RpcProxyCallbackInterface I_RpcProxyCallbackInterface;
//C RPC_STATUS I_RpcProxyNewConnection(unsigned long ConnectionType,unsigned short *ServerAddress,unsigned short *ServerPort,unsigned short *MinConnTimeout,void *ConnectionParameter,RDR_CALLOUT_STATE *CallOutState,I_RpcProxyCallbackInterface *ProxyCallbackInterface);
RPC_STATUS I_RpcProxyNewConnection(uint ConnectionType, ushort *ServerAddress, ushort *ServerPort, ushort *MinConnTimeout, void *ConnectionParameter, RDR_CALLOUT_STATE *CallOutState, I_RpcProxyCallbackInterface *ProxyCallbackInterface);
//C RPC_STATUS I_RpcReplyToClientWithStatus(void *ConnectionParameter,RPC_STATUS RpcStatus);
RPC_STATUS I_RpcReplyToClientWithStatus(void *ConnectionParameter, RPC_STATUS RpcStatus);
//C void I_RpcRecordCalloutFailure(RPC_STATUS RpcStatus,RDR_CALLOUT_STATE *CallOutState,unsigned short *DllName);
void I_RpcRecordCalloutFailure(RPC_STATUS RpcStatus, RDR_CALLOUT_STATE *CallOutState, ushort *DllName);
//C typedef void *RPC_NS_HANDLE;
alias void *RPC_NS_HANDLE;
//C RPC_STATUS RpcNsBindingExportA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVec,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsBindingExportA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVec, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsBindingUnexportA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsBindingUnexportA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsBindingExportW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,RPC_BINDING_VECTOR *BindingVec,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsBindingExportW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *BindingVec, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsBindingUnexportW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsBindingUnexportW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsBindingExportPnPA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectVector);
RPC_STATUS RpcNsBindingExportPnPA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectVector);
//C RPC_STATUS RpcNsBindingUnexportPnPA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectVector);
RPC_STATUS RpcNsBindingUnexportPnPA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectVector);
//C RPC_STATUS RpcNsBindingExportPnPW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectVector);
RPC_STATUS RpcNsBindingExportPnPW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectVector);
//C RPC_STATUS RpcNsBindingUnexportPnPW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,UUID_VECTOR *ObjectVector);
RPC_STATUS RpcNsBindingUnexportPnPW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, UUID_VECTOR *ObjectVector);
//C RPC_STATUS RpcNsBindingLookupBeginA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,UUID *ObjUuid,unsigned long BindingMaxCount,RPC_NS_HANDLE *LookupContext);
RPC_STATUS RpcNsBindingLookupBeginA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, UUID *ObjUuid, uint BindingMaxCount, RPC_NS_HANDLE *LookupContext);
//C RPC_STATUS RpcNsBindingLookupBeginW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,UUID *ObjUuid,unsigned long BindingMaxCount,RPC_NS_HANDLE *LookupContext);
RPC_STATUS RpcNsBindingLookupBeginW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, UUID *ObjUuid, uint BindingMaxCount, RPC_NS_HANDLE *LookupContext);
//C RPC_STATUS RpcNsBindingLookupNext(RPC_NS_HANDLE LookupContext,RPC_BINDING_VECTOR **BindingVec);
RPC_STATUS RpcNsBindingLookupNext(RPC_NS_HANDLE LookupContext, RPC_BINDING_VECTOR **BindingVec);
//C RPC_STATUS RpcNsBindingLookupDone(RPC_NS_HANDLE *LookupContext);
RPC_STATUS RpcNsBindingLookupDone(RPC_NS_HANDLE *LookupContext);
//C RPC_STATUS RpcNsGroupDeleteA(unsigned long GroupNameSyntax,RPC_CSTR GroupName);
RPC_STATUS RpcNsGroupDeleteA(uint GroupNameSyntax, RPC_CSTR GroupName);
//C RPC_STATUS RpcNsGroupMbrAddA(unsigned long GroupNameSyntax,RPC_CSTR GroupName,unsigned long MemberNameSyntax,RPC_CSTR MemberName);
RPC_STATUS RpcNsGroupMbrAddA(uint GroupNameSyntax, RPC_CSTR GroupName, uint MemberNameSyntax, RPC_CSTR MemberName);
//C RPC_STATUS RpcNsGroupMbrRemoveA(unsigned long GroupNameSyntax,RPC_CSTR GroupName,unsigned long MemberNameSyntax,RPC_CSTR MemberName);
RPC_STATUS RpcNsGroupMbrRemoveA(uint GroupNameSyntax, RPC_CSTR GroupName, uint MemberNameSyntax, RPC_CSTR MemberName);
//C RPC_STATUS RpcNsGroupMbrInqBeginA(unsigned long GroupNameSyntax,RPC_CSTR GroupName,unsigned long MemberNameSyntax,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsGroupMbrInqBeginA(uint GroupNameSyntax, RPC_CSTR GroupName, uint MemberNameSyntax, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsGroupMbrInqNextA(RPC_NS_HANDLE InquiryContext,RPC_CSTR *MemberName);
RPC_STATUS RpcNsGroupMbrInqNextA(RPC_NS_HANDLE InquiryContext, RPC_CSTR *MemberName);
//C RPC_STATUS RpcNsGroupDeleteW(unsigned long GroupNameSyntax,RPC_WSTR GroupName);
RPC_STATUS RpcNsGroupDeleteW(uint GroupNameSyntax, RPC_WSTR GroupName);
//C RPC_STATUS RpcNsGroupMbrAddW(unsigned long GroupNameSyntax,RPC_WSTR GroupName,unsigned long MemberNameSyntax,RPC_WSTR MemberName);
RPC_STATUS RpcNsGroupMbrAddW(uint GroupNameSyntax, RPC_WSTR GroupName, uint MemberNameSyntax, RPC_WSTR MemberName);
//C RPC_STATUS RpcNsGroupMbrRemoveW(unsigned long GroupNameSyntax,RPC_WSTR GroupName,unsigned long MemberNameSyntax,RPC_WSTR MemberName);
RPC_STATUS RpcNsGroupMbrRemoveW(uint GroupNameSyntax, RPC_WSTR GroupName, uint MemberNameSyntax, RPC_WSTR MemberName);
//C RPC_STATUS RpcNsGroupMbrInqBeginW(unsigned long GroupNameSyntax,RPC_WSTR GroupName,unsigned long MemberNameSyntax,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsGroupMbrInqBeginW(uint GroupNameSyntax, RPC_WSTR GroupName, uint MemberNameSyntax, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsGroupMbrInqNextW(RPC_NS_HANDLE InquiryContext,RPC_WSTR *MemberName);
RPC_STATUS RpcNsGroupMbrInqNextW(RPC_NS_HANDLE InquiryContext, RPC_WSTR *MemberName);
//C RPC_STATUS RpcNsGroupMbrInqDone(RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsGroupMbrInqDone(RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsProfileDeleteA(unsigned long ProfileNameSyntax,RPC_CSTR ProfileName);
RPC_STATUS RpcNsProfileDeleteA(uint ProfileNameSyntax, RPC_CSTR ProfileName);
//C RPC_STATUS RpcNsProfileEltAddA(unsigned long ProfileNameSyntax,RPC_CSTR ProfileName,RPC_IF_ID *IfId,unsigned long MemberNameSyntax,RPC_CSTR MemberName,unsigned long Priority,RPC_CSTR Annotation);
RPC_STATUS RpcNsProfileEltAddA(uint ProfileNameSyntax, RPC_CSTR ProfileName, RPC_IF_ID *IfId, uint MemberNameSyntax, RPC_CSTR MemberName, uint Priority, RPC_CSTR Annotation);
//C RPC_STATUS RpcNsProfileEltRemoveA(unsigned long ProfileNameSyntax,RPC_CSTR ProfileName,RPC_IF_ID *IfId,unsigned long MemberNameSyntax,RPC_CSTR MemberName);
RPC_STATUS RpcNsProfileEltRemoveA(uint ProfileNameSyntax, RPC_CSTR ProfileName, RPC_IF_ID *IfId, uint MemberNameSyntax, RPC_CSTR MemberName);
//C RPC_STATUS RpcNsProfileEltInqBeginA(unsigned long ProfileNameSyntax,RPC_CSTR ProfileName,unsigned long InquiryType,RPC_IF_ID *IfId,unsigned long VersOption,unsigned long MemberNameSyntax,RPC_CSTR MemberName,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsProfileEltInqBeginA(uint ProfileNameSyntax, RPC_CSTR ProfileName, uint InquiryType, RPC_IF_ID *IfId, uint VersOption, uint MemberNameSyntax, RPC_CSTR MemberName, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsProfileEltInqNextA(RPC_NS_HANDLE InquiryContext,RPC_IF_ID *IfId,RPC_CSTR *MemberName,unsigned long *Priority,RPC_CSTR *Annotation);
RPC_STATUS RpcNsProfileEltInqNextA(RPC_NS_HANDLE InquiryContext, RPC_IF_ID *IfId, RPC_CSTR *MemberName, uint *Priority, RPC_CSTR *Annotation);
//C RPC_STATUS RpcNsProfileDeleteW(unsigned long ProfileNameSyntax,RPC_WSTR ProfileName);
RPC_STATUS RpcNsProfileDeleteW(uint ProfileNameSyntax, RPC_WSTR ProfileName);
//C RPC_STATUS RpcNsProfileEltAddW(unsigned long ProfileNameSyntax,RPC_WSTR ProfileName,RPC_IF_ID *IfId,unsigned long MemberNameSyntax,RPC_WSTR MemberName,unsigned long Priority,RPC_WSTR Annotation);
RPC_STATUS RpcNsProfileEltAddW(uint ProfileNameSyntax, RPC_WSTR ProfileName, RPC_IF_ID *IfId, uint MemberNameSyntax, RPC_WSTR MemberName, uint Priority, RPC_WSTR Annotation);
//C RPC_STATUS RpcNsProfileEltRemoveW(unsigned long ProfileNameSyntax,RPC_WSTR ProfileName,RPC_IF_ID *IfId,unsigned long MemberNameSyntax,RPC_WSTR MemberName);
RPC_STATUS RpcNsProfileEltRemoveW(uint ProfileNameSyntax, RPC_WSTR ProfileName, RPC_IF_ID *IfId, uint MemberNameSyntax, RPC_WSTR MemberName);
//C RPC_STATUS RpcNsProfileEltInqBeginW(unsigned long ProfileNameSyntax,RPC_WSTR ProfileName,unsigned long InquiryType,RPC_IF_ID *IfId,unsigned long VersOption,unsigned long MemberNameSyntax,RPC_WSTR MemberName,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsProfileEltInqBeginW(uint ProfileNameSyntax, RPC_WSTR ProfileName, uint InquiryType, RPC_IF_ID *IfId, uint VersOption, uint MemberNameSyntax, RPC_WSTR MemberName, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsProfileEltInqNextW(RPC_NS_HANDLE InquiryContext,RPC_IF_ID *IfId,RPC_WSTR *MemberName,unsigned long *Priority,RPC_WSTR *Annotation);
RPC_STATUS RpcNsProfileEltInqNextW(RPC_NS_HANDLE InquiryContext, RPC_IF_ID *IfId, RPC_WSTR *MemberName, uint *Priority, RPC_WSTR *Annotation);
//C RPC_STATUS RpcNsProfileEltInqDone(RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsProfileEltInqDone(RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsEntryObjectInqBeginA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsEntryObjectInqBeginA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsEntryObjectInqBeginW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsEntryObjectInqBeginW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsEntryObjectInqNext(RPC_NS_HANDLE InquiryContext,UUID *ObjUuid);
RPC_STATUS RpcNsEntryObjectInqNext(RPC_NS_HANDLE InquiryContext, UUID *ObjUuid);
//C RPC_STATUS RpcNsEntryObjectInqDone(RPC_NS_HANDLE *InquiryContext);
RPC_STATUS RpcNsEntryObjectInqDone(RPC_NS_HANDLE *InquiryContext);
//C RPC_STATUS RpcNsEntryExpandNameA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_CSTR *ExpandedName);
RPC_STATUS RpcNsEntryExpandNameA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_CSTR *ExpandedName);
//C RPC_STATUS RpcNsMgmtBindingUnexportA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_ID *IfId,unsigned long VersOption,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsMgmtBindingUnexportA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_ID *IfId, uint VersOption, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsMgmtEntryCreateA(unsigned long EntryNameSyntax,RPC_CSTR EntryName);
RPC_STATUS RpcNsMgmtEntryCreateA(uint EntryNameSyntax, RPC_CSTR EntryName);
//C RPC_STATUS RpcNsMgmtEntryDeleteA(unsigned long EntryNameSyntax,RPC_CSTR EntryName);
RPC_STATUS RpcNsMgmtEntryDeleteA(uint EntryNameSyntax, RPC_CSTR EntryName);
//C RPC_STATUS RpcNsMgmtEntryInqIfIdsA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_ID_VECTOR **IfIdVec);
RPC_STATUS RpcNsMgmtEntryInqIfIdsA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_ID_VECTOR **IfIdVec);
//C RPC_STATUS RpcNsMgmtHandleSetExpAge(RPC_NS_HANDLE NsHandle,unsigned long ExpirationAge);
RPC_STATUS RpcNsMgmtHandleSetExpAge(RPC_NS_HANDLE NsHandle, uint ExpirationAge);
//C RPC_STATUS RpcNsMgmtInqExpAge(unsigned long *ExpirationAge);
RPC_STATUS RpcNsMgmtInqExpAge(uint *ExpirationAge);
//C RPC_STATUS RpcNsMgmtSetExpAge(unsigned long ExpirationAge);
RPC_STATUS RpcNsMgmtSetExpAge(uint ExpirationAge);
//C RPC_STATUS RpcNsEntryExpandNameW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_WSTR *ExpandedName);
RPC_STATUS RpcNsEntryExpandNameW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_WSTR *ExpandedName);
//C RPC_STATUS RpcNsMgmtBindingUnexportW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_ID *IfId,unsigned long VersOption,UUID_VECTOR *ObjectUuidVec);
RPC_STATUS RpcNsMgmtBindingUnexportW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_ID *IfId, uint VersOption, UUID_VECTOR *ObjectUuidVec);
//C RPC_STATUS RpcNsMgmtEntryCreateW(unsigned long EntryNameSyntax,RPC_WSTR EntryName);
RPC_STATUS RpcNsMgmtEntryCreateW(uint EntryNameSyntax, RPC_WSTR EntryName);
//C RPC_STATUS RpcNsMgmtEntryDeleteW(unsigned long EntryNameSyntax,RPC_WSTR EntryName);
RPC_STATUS RpcNsMgmtEntryDeleteW(uint EntryNameSyntax, RPC_WSTR EntryName);
//C RPC_STATUS RpcNsMgmtEntryInqIfIdsW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_ID_VECTOR **IfIdVec);
RPC_STATUS RpcNsMgmtEntryInqIfIdsW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_ID_VECTOR **IfIdVec);
//C RPC_STATUS RpcNsBindingImportBeginA(unsigned long EntryNameSyntax,RPC_CSTR EntryName,RPC_IF_HANDLE IfSpec,UUID *ObjUuid,RPC_NS_HANDLE *ImportContext);
RPC_STATUS RpcNsBindingImportBeginA(uint EntryNameSyntax, RPC_CSTR EntryName, RPC_IF_HANDLE IfSpec, UUID *ObjUuid, RPC_NS_HANDLE *ImportContext);
//C RPC_STATUS RpcNsBindingImportBeginW(unsigned long EntryNameSyntax,RPC_WSTR EntryName,RPC_IF_HANDLE IfSpec,UUID *ObjUuid,RPC_NS_HANDLE *ImportContext);
RPC_STATUS RpcNsBindingImportBeginW(uint EntryNameSyntax, RPC_WSTR EntryName, RPC_IF_HANDLE IfSpec, UUID *ObjUuid, RPC_NS_HANDLE *ImportContext);
//C RPC_STATUS RpcNsBindingImportNext(RPC_NS_HANDLE ImportContext,RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcNsBindingImportNext(RPC_NS_HANDLE ImportContext, RPC_BINDING_HANDLE *Binding);
//C RPC_STATUS RpcNsBindingImportDone(RPC_NS_HANDLE *ImportContext);
RPC_STATUS RpcNsBindingImportDone(RPC_NS_HANDLE *ImportContext);
//C RPC_STATUS RpcNsBindingSelect(RPC_BINDING_VECTOR *BindingVec,RPC_BINDING_HANDLE *Binding);
RPC_STATUS RpcNsBindingSelect(RPC_BINDING_VECTOR *BindingVec, RPC_BINDING_HANDLE *Binding);
//C typedef enum _RPC_NOTIFICATION_TYPES {
//C RpcNotificationTypeNone,RpcNotificationTypeEvent,RpcNotificationTypeApc,RpcNotificationTypeIoc,RpcNotificationTypeHwnd,
//C RpcNotificationTypeCallback
//C } RPC_NOTIFICATION_TYPES;
enum _RPC_NOTIFICATION_TYPES
{
RpcNotificationTypeNone,
RpcNotificationTypeEvent,
RpcNotificationTypeApc,
RpcNotificationTypeIoc,
RpcNotificationTypeHwnd,
RpcNotificationTypeCallback,
}
alias _RPC_NOTIFICATION_TYPES RPC_NOTIFICATION_TYPES;
//C typedef enum _RPC_ASYNC_EVENT {
//C RpcCallComplete,RpcSendComplete,RpcReceiveComplete
//C } RPC_ASYNC_EVENT;
enum _RPC_ASYNC_EVENT
{
RpcCallComplete,
RpcSendComplete,
RpcReceiveComplete,
}
alias _RPC_ASYNC_EVENT RPC_ASYNC_EVENT;
//C struct _RPC_ASYNC_STATE;
//C typedef void RPCNOTIFICATION_ROUTINE(struct _RPC_ASYNC_STATE *pAsync,void *Context,RPC_ASYNC_EVENT Event);
alias void function(_RPC_ASYNC_STATE *pAsync, void *Context, RPC_ASYNC_EVENT Event)RPCNOTIFICATION_ROUTINE;
//C typedef RPCNOTIFICATION_ROUTINE *PFN_RPCNOTIFICATION_ROUTINE;
alias void function(_RPC_ASYNC_STATE *pAsync, void *Context, RPC_ASYNC_EVENT Event)PFN_RPCNOTIFICATION_ROUTINE;
//C typedef struct _RPC_ASYNC_STATE {
//C unsigned int Size;
//C unsigned long Signature;
//C long Lock;
//C unsigned long Flags;
//C void *StubInfo;
//C void *UserInfo;
//C void *RuntimeInfo;
//C RPC_ASYNC_EVENT Event;
//C RPC_NOTIFICATION_TYPES NotificationType;
//C union {
//C struct {
//C PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
//C HANDLE hThread;
//C } APC;
struct _N119
{
PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
HANDLE hThread;
}
//C struct {
//C HANDLE hIOPort;
//C DWORD dwNumberOfBytesTransferred;
//C DWORD_PTR dwCompletionKey;
//C LPOVERLAPPED lpOverlapped;
//C } IOC;
struct _N120
{
HANDLE hIOPort;
DWORD dwNumberOfBytesTransferred;
DWORD_PTR dwCompletionKey;
LPOVERLAPPED lpOverlapped;
}
//C struct {
//C HWND hWnd;
//C UINT Msg;
//C } HWND;
struct _N121
{
HWND hWnd;
UINT Msg;
}
//C HANDLE hEvent;
//C PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
//C } u;
union _N118
{
_N119 APC;
_N120 IOC;
_N121 HWND;
HANDLE hEvent;
PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
}
//C LONG_PTR Reserved[4];
//C } RPC_ASYNC_STATE,*PRPC_ASYNC_STATE;
struct _RPC_ASYNC_STATE
{
uint Size;
uint Signature;
int Lock;
uint Flags;
void *StubInfo;
void *UserInfo;
void *RuntimeInfo;
RPC_ASYNC_EVENT Event;
RPC_NOTIFICATION_TYPES NotificationType;
_N118 u;
LONG_PTR [4]Reserved;
}
alias _RPC_ASYNC_STATE RPC_ASYNC_STATE;
alias _RPC_ASYNC_STATE *PRPC_ASYNC_STATE;
//C RPC_STATUS RpcAsyncInitializeHandle(PRPC_ASYNC_STATE pAsync,unsigned int Size);
RPC_STATUS RpcAsyncInitializeHandle(PRPC_ASYNC_STATE pAsync, uint Size);
//C RPC_STATUS RpcAsyncRegisterInfo(PRPC_ASYNC_STATE pAsync);
RPC_STATUS RpcAsyncRegisterInfo(PRPC_ASYNC_STATE pAsync);
//C RPC_STATUS RpcAsyncGetCallStatus(PRPC_ASYNC_STATE pAsync);
RPC_STATUS RpcAsyncGetCallStatus(PRPC_ASYNC_STATE pAsync);
//C RPC_STATUS RpcAsyncCompleteCall(PRPC_ASYNC_STATE pAsync,void *Reply);
RPC_STATUS RpcAsyncCompleteCall(PRPC_ASYNC_STATE pAsync, void *Reply);
//C RPC_STATUS RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync,unsigned long ExceptionCode);
RPC_STATUS RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync, uint ExceptionCode);
//C RPC_STATUS RpcAsyncCancelCall(PRPC_ASYNC_STATE pAsync,WINBOOL fAbort);
RPC_STATUS RpcAsyncCancelCall(PRPC_ASYNC_STATE pAsync, WINBOOL fAbort);
//C RPC_STATUS RpcAsyncCleanupThread(DWORD dwTimeout);
RPC_STATUS RpcAsyncCleanupThread(DWORD dwTimeout);
//C typedef enum tagExtendedErrorParamTypes {
//C eeptAnsiString = 1,eeptUnicodeString,eeptLongVal,eeptShortVal,eeptPointerVal,eeptNone,eeptBinary
//C } ExtendedErrorParamTypes;
enum tagExtendedErrorParamTypes
{
eeptAnsiString = 1,
eeptUnicodeString,
eeptLongVal,
eeptShortVal,
eeptPointerVal,
eeptNone,
eeptBinary,
}
alias tagExtendedErrorParamTypes ExtendedErrorParamTypes;
//C typedef struct tagBinaryParam {
//C void *Buffer;
//C short Size;
//C } BinaryParam;
struct tagBinaryParam
{
void *Buffer;
short Size;
}
alias tagBinaryParam BinaryParam;
//C typedef struct tagRPC_EE_INFO_PARAM {
//C ExtendedErrorParamTypes ParameterType;
//C union {
//C LPSTR AnsiString;
//C LPWSTR UnicodeString;
//C long LVal;
//C short SVal;
//C ULONGLONG PVal;
//C BinaryParam BVal;
//C } u;
union _N122
{
LPSTR AnsiString;
LPWSTR UnicodeString;
int LVal;
short SVal;
ULONGLONG PVal;
BinaryParam BVal;
}
//C } RPC_EE_INFO_PARAM;
struct tagRPC_EE_INFO_PARAM
{
ExtendedErrorParamTypes ParameterType;
_N122 u;
}
alias tagRPC_EE_INFO_PARAM RPC_EE_INFO_PARAM;
//C typedef struct tagRPC_EXTENDED_ERROR_INFO {
//C ULONG Version;
//C LPWSTR ComputerName;
//C ULONG ProcessID;
//C union {
//C SYSTEMTIME SystemTime;
//C FILETIME FileTime;
//C } u;
union _N123
{
SYSTEMTIME SystemTime;
FILETIME FileTime;
}
//C ULONG GeneratingComponent;
//C ULONG Status;
//C USHORT DetectionLocation;
//C USHORT Flags;
//C int NumberOfParameters;
//C RPC_EE_INFO_PARAM Parameters[4];
//C } RPC_EXTENDED_ERROR_INFO;
struct tagRPC_EXTENDED_ERROR_INFO
{
ULONG Version;
LPWSTR ComputerName;
ULONG ProcessID;
_N123 u;
ULONG GeneratingComponent;
ULONG Status;
USHORT DetectionLocation;
USHORT Flags;
int NumberOfParameters;
RPC_EE_INFO_PARAM [4]Parameters;
}
alias tagRPC_EXTENDED_ERROR_INFO RPC_EXTENDED_ERROR_INFO;
//C typedef struct tagRPC_ERROR_ENUM_HANDLE {
//C ULONG Signature;
//C void *CurrentPos;
//C void *Head;
//C } RPC_ERROR_ENUM_HANDLE;
struct tagRPC_ERROR_ENUM_HANDLE
{
ULONG Signature;
void *CurrentPos;
void *Head;
}
alias tagRPC_ERROR_ENUM_HANDLE RPC_ERROR_ENUM_HANDLE;
//C RPC_STATUS RpcErrorStartEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
RPC_STATUS RpcErrorStartEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
//C RPC_STATUS RpcErrorGetNextRecord(RPC_ERROR_ENUM_HANDLE *EnumHandle,WINBOOL CopyStrings,RPC_EXTENDED_ERROR_INFO *ErrorInfo);
RPC_STATUS RpcErrorGetNextRecord(RPC_ERROR_ENUM_HANDLE *EnumHandle, WINBOOL CopyStrings, RPC_EXTENDED_ERROR_INFO *ErrorInfo);
//C RPC_STATUS RpcErrorEndEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
RPC_STATUS RpcErrorEndEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
//C RPC_STATUS RpcErrorResetEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
RPC_STATUS RpcErrorResetEnumeration(RPC_ERROR_ENUM_HANDLE *EnumHandle);
//C RPC_STATUS RpcErrorGetNumberOfRecords(RPC_ERROR_ENUM_HANDLE *EnumHandle,int *Records);
RPC_STATUS RpcErrorGetNumberOfRecords(RPC_ERROR_ENUM_HANDLE *EnumHandle, int *Records);
//C RPC_STATUS RpcErrorSaveErrorInfo(RPC_ERROR_ENUM_HANDLE *EnumHandle,PVOID *ErrorBlob,size_t *BlobSize);
RPC_STATUS RpcErrorSaveErrorInfo(RPC_ERROR_ENUM_HANDLE *EnumHandle, PVOID *ErrorBlob, size_t *BlobSize);
//C RPC_STATUS RpcErrorLoadErrorInfo(PVOID ErrorBlob,size_t BlobSize,RPC_ERROR_ENUM_HANDLE *EnumHandle);
RPC_STATUS RpcErrorLoadErrorInfo(PVOID ErrorBlob, size_t BlobSize, RPC_ERROR_ENUM_HANDLE *EnumHandle);
//C RPC_STATUS RpcErrorAddRecord(RPC_EXTENDED_ERROR_INFO *ErrorInfo);
RPC_STATUS RpcErrorAddRecord(RPC_EXTENDED_ERROR_INFO *ErrorInfo);
//C void RpcErrorClearInformation(void);
void RpcErrorClearInformation();
//C RPC_STATUS RpcGetAuthorizationContextForClient(RPC_BINDING_HANDLE ClientBinding,WINBOOL ImpersonateOnReturn,PVOID Reserved1,PLARGE_INTEGER pExpirationTime,LUID Reserved2,DWORD Reserved3,PVOID Reserved4,PVOID *pAuthzClientContext);
RPC_STATUS RpcGetAuthorizationContextForClient(RPC_BINDING_HANDLE ClientBinding, WINBOOL ImpersonateOnReturn, PVOID Reserved1, PLARGE_INTEGER pExpirationTime, LUID Reserved2, DWORD Reserved3, PVOID Reserved4, PVOID *pAuthzClientContext);
//C RPC_STATUS RpcFreeAuthorizationContext(PVOID *pAuthzClientContext);
RPC_STATUS RpcFreeAuthorizationContext(PVOID *pAuthzClientContext);
//C RPC_STATUS RpcSsContextLockExclusive(RPC_BINDING_HANDLE ServerBindingHandle,PVOID UserContext);
RPC_STATUS RpcSsContextLockExclusive(RPC_BINDING_HANDLE ServerBindingHandle, PVOID UserContext);
//C RPC_STATUS RpcSsContextLockShared(RPC_BINDING_HANDLE ServerBindingHandle,PVOID UserContext);
RPC_STATUS RpcSsContextLockShared(RPC_BINDING_HANDLE ServerBindingHandle, PVOID UserContext);
//C typedef struct tagRPC_CALL_ATTRIBUTES_V1_W {
//C unsigned int Version;
//C unsigned long Flags;
//C unsigned long ServerPrincipalNameBufferLength;
//C unsigned short *ServerPrincipalName;
//C unsigned long ClientPrincipalNameBufferLength;
//C unsigned short *ClientPrincipalName;
//C unsigned long AuthenticationLevel;
//C unsigned long AuthenticationService;
//C WINBOOL NullSession;
//C } RPC_CALL_ATTRIBUTES_V1_W;
struct tagRPC_CALL_ATTRIBUTES_V1_W
{
uint Version;
uint Flags;
uint ServerPrincipalNameBufferLength;
ushort *ServerPrincipalName;
uint ClientPrincipalNameBufferLength;
ushort *ClientPrincipalName;
uint AuthenticationLevel;
uint AuthenticationService;
WINBOOL NullSession;
}
alias tagRPC_CALL_ATTRIBUTES_V1_W RPC_CALL_ATTRIBUTES_V1_W;
//C typedef struct tagRPC_CALL_ATTRIBUTES_V1_A {
//C unsigned int Version;
//C unsigned long Flags;
//C unsigned long ServerPrincipalNameBufferLength;
//C unsigned char *ServerPrincipalName;
//C unsigned long ClientPrincipalNameBufferLength;
//C unsigned char *ClientPrincipalName;
//C unsigned long AuthenticationLevel;
//C unsigned long AuthenticationService;
//C WINBOOL NullSession;
//C } RPC_CALL_ATTRIBUTES_V1_A;
struct tagRPC_CALL_ATTRIBUTES_V1_A
{
uint Version;
uint Flags;
uint ServerPrincipalNameBufferLength;
ubyte *ServerPrincipalName;
uint ClientPrincipalNameBufferLength;
ubyte *ClientPrincipalName;
uint AuthenticationLevel;
uint AuthenticationService;
WINBOOL NullSession;
}
alias tagRPC_CALL_ATTRIBUTES_V1_A RPC_CALL_ATTRIBUTES_V1_A;
//C RPC_STATUS RpcServerInqCallAttributesW(RPC_BINDING_HANDLE ClientBinding,void *RpcCallAttributes);
RPC_STATUS RpcServerInqCallAttributesW(RPC_BINDING_HANDLE ClientBinding, void *RpcCallAttributes);
//C RPC_STATUS RpcServerInqCallAttributesA(RPC_BINDING_HANDLE ClientBinding,void *RpcCallAttributes);
RPC_STATUS RpcServerInqCallAttributesA(RPC_BINDING_HANDLE ClientBinding, void *RpcCallAttributes);
//C typedef RPC_CALL_ATTRIBUTES_V1_A RPC_CALL_ATTRIBUTES;
alias RPC_CALL_ATTRIBUTES_V1_A RPC_CALL_ATTRIBUTES;
//C RPC_STATUS I_RpcAsyncSetHandle(PRPC_MESSAGE Message,PRPC_ASYNC_STATE pAsync);
RPC_STATUS I_RpcAsyncSetHandle(PRPC_MESSAGE Message, PRPC_ASYNC_STATE pAsync);
//C RPC_STATUS I_RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync,unsigned long ExceptionCode);
RPC_STATUS I_RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync, uint ExceptionCode);
//C int I_RpcExceptionFilter(unsigned long ExceptionCode);
int I_RpcExceptionFilter(uint ExceptionCode);
//C typedef union _RPC_ASYNC_NOTIFICATION_INFO {
//C struct {
//C PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
//C HANDLE hThread;
//C } APC;
struct _N124
{
PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
HANDLE hThread;
}
//C struct {
//C HANDLE hIOPort;
//C DWORD dwNumberOfBytesTransferred;
//C DWORD_PTR dwCompletionKey;
//C LPOVERLAPPED lpOverlapped;
//C } IOC;
struct _N125
{
HANDLE hIOPort;
DWORD dwNumberOfBytesTransferred;
DWORD_PTR dwCompletionKey;
LPOVERLAPPED lpOverlapped;
}
//C struct {
//C HWND hWnd;
//C UINT Msg;
//C } HWND;
struct _N126
{
HWND hWnd;
UINT Msg;
}
//C HANDLE hEvent;
//C PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
//C } RPC_ASYNC_NOTIFICATION_INFO,*PRPC_ASYNC_NOTIFICATION_INFO;
union _RPC_ASYNC_NOTIFICATION_INFO
{
_N124 APC;
_N125 IOC;
_N126 HWND;
HANDLE hEvent;
PFN_RPCNOTIFICATION_ROUTINE NotificationRoutine;
}
alias _RPC_ASYNC_NOTIFICATION_INFO RPC_ASYNC_NOTIFICATION_INFO;
alias _RPC_ASYNC_NOTIFICATION_INFO *PRPC_ASYNC_NOTIFICATION_INFO;
//C RPC_STATUS RpcBindingBind(
//C PRPC_ASYNC_STATE pAsync,
//C RPC_BINDING_HANDLE Binding,
//C RPC_IF_HANDLE IfSpec
//C );
RPC_STATUS RpcBindingBind(PRPC_ASYNC_STATE pAsync, RPC_BINDING_HANDLE Binding, RPC_IF_HANDLE IfSpec);
//C RPC_STATUS RpcBindingUnbind(
//C RPC_BINDING_HANDLE Binding
//C );
RPC_STATUS RpcBindingUnbind(RPC_BINDING_HANDLE Binding);
//C typedef enum _RpcCallType {
//C rctInvalid,
//C rctNormal,
//C rctTraining,
//C rctGuaranteed
//C } RpcCallType;
enum _RpcCallType
{
rctInvalid,
rctNormal,
rctTraining,
rctGuaranteed,
}
alias _RpcCallType RpcCallType;
//C typedef enum _RpcLocalAddressFormat {
//C rlafInvalid,
//C rlafIPv4,
//C rlafIPv6
//C } RpcLocalAddressFormat;
enum _RpcLocalAddressFormat
{
rlafInvalid,
rlafIPv4,
rlafIPv6,
}
alias _RpcLocalAddressFormat RpcLocalAddressFormat;
//C typedef enum _RPC_NOTIFICATIONS {
//C RpcNotificationCallNone = 0,
//C RpcNotificationClientDisconnect = 1,
//C RpcNotificationCallCancel = 2
//C } RPC_NOTIFICATIONS;
enum _RPC_NOTIFICATIONS
{
RpcNotificationCallNone,
RpcNotificationClientDisconnect,
RpcNotificationCallCancel,
}
alias _RPC_NOTIFICATIONS RPC_NOTIFICATIONS;
//C typedef enum _RpcCallClientLocality {
//C rcclInvalid,
//C rcclLocal,
//C rcclRemote,
//C rcclClientUnknownLocality
//C } RpcCallClientLocality;
enum _RpcCallClientLocality
{
rcclInvalid,
rcclLocal,
rcclRemote,
rcclClientUnknownLocality,
}
alias _RpcCallClientLocality RpcCallClientLocality;
//C RPC_STATUS RpcServerSubscribeForNotification(
//C RPC_BINDING_HANDLE Binding,
//C DWORD Notification,
//C RPC_NOTIFICATION_TYPES NotificationType,
//C RPC_ASYNC_NOTIFICATION_INFO *NotificationInfo
//C );
RPC_STATUS RpcServerSubscribeForNotification(RPC_BINDING_HANDLE Binding, DWORD Notification, RPC_NOTIFICATION_TYPES NotificationType, RPC_ASYNC_NOTIFICATION_INFO *NotificationInfo);
//C RPC_STATUS RpcServerUnsubscribeForNotification(
//C RPC_BINDING_HANDLE Binding,
//C RPC_NOTIFICATIONS Notification,
//C unsigned long *NotificationsQueued
//C );
RPC_STATUS RpcServerUnsubscribeForNotification(RPC_BINDING_HANDLE Binding, RPC_NOTIFICATIONS Notification, uint *NotificationsQueued);
//C struct HDROP__ { int unused; }; typedef struct HDROP__ *HDROP;
struct HDROP__
{
int unused;
}
alias HDROP__ *HDROP;
//C extern UINT DragQueryFileA(HDROP,UINT,LPSTR,UINT);
UINT DragQueryFileA(HDROP , UINT , LPSTR , UINT );
//C extern UINT DragQueryFileW(HDROP,UINT,LPWSTR,UINT);
UINT DragQueryFileW(HDROP , UINT , LPWSTR , UINT );
//C extern WINBOOL DragQueryPoint(HDROP,LPPOINT);
WINBOOL DragQueryPoint(HDROP , LPPOINT );
//C extern void DragFinish(HDROP);
void DragFinish(HDROP );
//C extern void DragAcceptFiles(HWND,WINBOOL);
void DragAcceptFiles(HWND , WINBOOL );
//C extern HINSTANCE ShellExecuteA(HWND hwnd,LPCSTR lpOperation,LPCSTR lpFile,LPCSTR lpParameters,LPCSTR lpDirectory,INT nShowCmd);
HINSTANCE ShellExecuteA(HWND hwnd, LPCSTR lpOperation, LPCSTR lpFile, LPCSTR lpParameters, LPCSTR lpDirectory, INT nShowCmd);
//C extern HINSTANCE ShellExecuteW(HWND hwnd,LPCWSTR lpOperation,LPCWSTR lpFile,LPCWSTR lpParameters,LPCWSTR lpDirectory,INT nShowCmd);
HINSTANCE ShellExecuteW(HWND hwnd, LPCWSTR lpOperation, LPCWSTR lpFile, LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd);
//C extern HINSTANCE FindExecutableA(LPCSTR lpFile,LPCSTR lpDirectory,LPSTR lpResult);
HINSTANCE FindExecutableA(LPCSTR lpFile, LPCSTR lpDirectory, LPSTR lpResult);
//C extern HINSTANCE FindExecutableW(LPCWSTR lpFile,LPCWSTR lpDirectory,LPWSTR lpResult);
HINSTANCE FindExecutableW(LPCWSTR lpFile, LPCWSTR lpDirectory, LPWSTR lpResult);
//C extern LPWSTR * CommandLineToArgvW(LPCWSTR lpCmdLine,int*pNumArgs);
LPWSTR * CommandLineToArgvW(LPCWSTR lpCmdLine, int *pNumArgs);
//C extern INT ShellAboutA(HWND hWnd,LPCSTR szApp,LPCSTR szOtherStuff,HICON hIcon);
INT ShellAboutA(HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon);
//C extern INT ShellAboutW(HWND hWnd,LPCWSTR szApp,LPCWSTR szOtherStuff,HICON hIcon);
INT ShellAboutW(HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff, HICON hIcon);
//C extern HICON DuplicateIcon(HINSTANCE hInst,HICON hIcon);
HICON DuplicateIcon(HINSTANCE hInst, HICON hIcon);
//C extern HICON ExtractAssociatedIconA(HINSTANCE hInst,LPSTR lpIconPath,LPWORD lpiIcon);
HICON ExtractAssociatedIconA(HINSTANCE hInst, LPSTR lpIconPath, LPWORD lpiIcon);
//C extern HICON ExtractAssociatedIconW(HINSTANCE hInst,LPWSTR lpIconPath,LPWORD lpiIcon);
HICON ExtractAssociatedIconW(HINSTANCE hInst, LPWSTR lpIconPath, LPWORD lpiIcon);
//C extern HICON ExtractAssociatedIconExA(HINSTANCE hInst,LPSTR lpIconPath,LPWORD lpiIconIndex,LPWORD lpiIconId);
HICON ExtractAssociatedIconExA(HINSTANCE hInst, LPSTR lpIconPath, LPWORD lpiIconIndex, LPWORD lpiIconId);
//C extern HICON ExtractAssociatedIconExW(HINSTANCE hInst,LPWSTR lpIconPath,LPWORD lpiIconIndex,LPWORD lpiIconId);
HICON ExtractAssociatedIconExW(HINSTANCE hInst, LPWSTR lpIconPath, LPWORD lpiIconIndex, LPWORD lpiIconId);
//C extern HICON ExtractIconA(HINSTANCE hInst,LPCSTR lpszExeFileName,UINT nIconIndex);
HICON ExtractIconA(HINSTANCE hInst, LPCSTR lpszExeFileName, UINT nIconIndex);
//C extern HICON ExtractIconW(HINSTANCE hInst,LPCWSTR lpszExeFileName,UINT nIconIndex);
HICON ExtractIconW(HINSTANCE hInst, LPCWSTR lpszExeFileName, UINT nIconIndex);
//C typedef struct _DRAGINFOA {
//C UINT uSize;
//C POINT pt;
//C WINBOOL fNC;
//C LPSTR lpFileList;
//C DWORD grfKeyState;
//C } DRAGINFOA,*LPDRAGINFOA;
struct _DRAGINFOA
{
UINT uSize;
POINT pt;
WINBOOL fNC;
LPSTR lpFileList;
DWORD grfKeyState;
}
alias _DRAGINFOA DRAGINFOA;
alias _DRAGINFOA *LPDRAGINFOA;
//C typedef struct _DRAGINFOW {
//C UINT uSize;
//C POINT pt;
//C WINBOOL fNC;
//C LPWSTR lpFileList;
//C DWORD grfKeyState;
//C } DRAGINFOW,*LPDRAGINFOW;
struct _DRAGINFOW
{
UINT uSize;
POINT pt;
WINBOOL fNC;
LPWSTR lpFileList;
DWORD grfKeyState;
}
alias _DRAGINFOW DRAGINFOW;
alias _DRAGINFOW *LPDRAGINFOW;
//C typedef DRAGINFOA DRAGINFO;
alias DRAGINFOA DRAGINFO;
//C typedef LPDRAGINFOA LPDRAGINFO;
alias LPDRAGINFOA LPDRAGINFO;
//C typedef struct _AppBarData {
//C DWORD cbSize;
//C HWND hWnd;
//C UINT uCallbackMessage;
//C UINT uEdge;
//C RECT rc;
//C LPARAM lParam;
//C } APPBARDATA,*PAPPBARDATA;
struct _AppBarData
{
DWORD cbSize;
HWND hWnd;
UINT uCallbackMessage;
UINT uEdge;
RECT rc;
LPARAM lParam;
}
alias _AppBarData APPBARDATA;
alias _AppBarData *PAPPBARDATA;
//C extern UINT_PTR SHAppBarMessage(DWORD dwMessage,PAPPBARDATA pData);
UINT_PTR SHAppBarMessage(DWORD dwMessage, PAPPBARDATA pData);
//C extern DWORD DoEnvironmentSubstA(LPSTR szString,UINT cchString);
DWORD DoEnvironmentSubstA(LPSTR szString, UINT cchString);
//C extern DWORD DoEnvironmentSubstW(LPWSTR szString,UINT cchString);
DWORD DoEnvironmentSubstW(LPWSTR szString, UINT cchString);
//C extern UINT ExtractIconExA(LPCSTR lpszFile,int nIconIndex,HICON *phiconLarge,HICON *phiconSmall,UINT nIcons);
UINT ExtractIconExA(LPCSTR lpszFile, int nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIcons);
//C extern UINT ExtractIconExW(LPCWSTR lpszFile,int nIconIndex,HICON *phiconLarge,HICON *phiconSmall,UINT nIcons);
UINT ExtractIconExW(LPCWSTR lpszFile, int nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIcons);
//C typedef WORD FILEOP_FLAGS;
alias WORD FILEOP_FLAGS;
//C typedef WORD PRINTEROP_FLAGS;
alias WORD PRINTEROP_FLAGS;
//C typedef struct _SHFILEOPSTRUCTA {
//C HWND hwnd;
//C UINT wFunc;
//C LPCSTR pFrom;
//C LPCSTR pTo;
//C FILEOP_FLAGS fFlags;
//C WINBOOL fAnyOperationsAborted;
//C LPVOID hNameMappings;
//C LPCSTR lpszProgressTitle;
//C } SHFILEOPSTRUCTA,*LPSHFILEOPSTRUCTA;
struct _SHFILEOPSTRUCTA
{
HWND hwnd;
UINT wFunc;
LPCSTR pFrom;
LPCSTR pTo;
FILEOP_FLAGS fFlags;
WINBOOL fAnyOperationsAborted;
LPVOID hNameMappings;
LPCSTR lpszProgressTitle;
}
alias _SHFILEOPSTRUCTA SHFILEOPSTRUCTA;
alias _SHFILEOPSTRUCTA *LPSHFILEOPSTRUCTA;
//C typedef struct _SHFILEOPSTRUCTW {
//C HWND hwnd;
//C UINT wFunc;
//C LPCWSTR pFrom;
//C LPCWSTR pTo;
//C FILEOP_FLAGS fFlags;
//C WINBOOL fAnyOperationsAborted;
//C LPVOID hNameMappings;
//C LPCWSTR lpszProgressTitle;
//C } SHFILEOPSTRUCTW,*LPSHFILEOPSTRUCTW;
struct _SHFILEOPSTRUCTW
{
HWND hwnd;
UINT wFunc;
LPCWSTR pFrom;
LPCWSTR pTo;
FILEOP_FLAGS fFlags;
WINBOOL fAnyOperationsAborted;
LPVOID hNameMappings;
LPCWSTR lpszProgressTitle;
}
alias _SHFILEOPSTRUCTW SHFILEOPSTRUCTW;
alias _SHFILEOPSTRUCTW *LPSHFILEOPSTRUCTW;
//C typedef SHFILEOPSTRUCTA SHFILEOPSTRUCT;
alias SHFILEOPSTRUCTA SHFILEOPSTRUCT;
//C typedef LPSHFILEOPSTRUCTA LPSHFILEOPSTRUCT;
alias LPSHFILEOPSTRUCTA LPSHFILEOPSTRUCT;
//C extern int SHFileOperationA(LPSHFILEOPSTRUCTA lpFileOp);
int SHFileOperationA(LPSHFILEOPSTRUCTA lpFileOp);
//C extern int SHFileOperationW(LPSHFILEOPSTRUCTW lpFileOp);
int SHFileOperationW(LPSHFILEOPSTRUCTW lpFileOp);
//C extern void SHFreeNameMappings(HANDLE hNameMappings);
void SHFreeNameMappings(HANDLE hNameMappings);
//C typedef struct _SHNAMEMAPPINGA {
//C LPSTR pszOldPath;
//C LPSTR pszNewPath;
//C int cchOldPath;
//C int cchNewPath;
//C } SHNAMEMAPPINGA,*LPSHNAMEMAPPINGA;
struct _SHNAMEMAPPINGA
{
LPSTR pszOldPath;
LPSTR pszNewPath;
int cchOldPath;
int cchNewPath;
}
alias _SHNAMEMAPPINGA SHNAMEMAPPINGA;
alias _SHNAMEMAPPINGA *LPSHNAMEMAPPINGA;
//C typedef struct _SHNAMEMAPPINGW {
//C LPWSTR pszOldPath;
//C LPWSTR pszNewPath;
//C int cchOldPath;
//C int cchNewPath;
//C } SHNAMEMAPPINGW,*LPSHNAMEMAPPINGW;
struct _SHNAMEMAPPINGW
{
LPWSTR pszOldPath;
LPWSTR pszNewPath;
int cchOldPath;
int cchNewPath;
}
alias _SHNAMEMAPPINGW SHNAMEMAPPINGW;
alias _SHNAMEMAPPINGW *LPSHNAMEMAPPINGW;
//C typedef SHNAMEMAPPINGA SHNAMEMAPPING;
alias SHNAMEMAPPINGA SHNAMEMAPPING;
//C typedef LPSHNAMEMAPPINGA LPSHNAMEMAPPING;
alias LPSHNAMEMAPPINGA LPSHNAMEMAPPING;
//C typedef struct _SHELLEXECUTEINFOA {
//C DWORD cbSize;
//C ULONG fMask;
//C HWND hwnd;
//C LPCSTR lpVerb;
//C LPCSTR lpFile;
//C LPCSTR lpParameters;
//C LPCSTR lpDirectory;
//C int nShow;
//C HINSTANCE hInstApp;
//C LPVOID lpIDList;
//C LPCSTR lpClass;
//C HKEY hkeyClass;
//C DWORD dwHotKey;
//C union {
//C HANDLE hIcon;
//C HANDLE hMonitor;
//C } ;
union _N127
{
HANDLE hIcon;
HANDLE hMonitor;
}
//C HANDLE hProcess;
//C } SHELLEXECUTEINFOA,*LPSHELLEXECUTEINFOA;
struct _SHELLEXECUTEINFOA
{
DWORD cbSize;
ULONG fMask;
HWND hwnd;
LPCSTR lpVerb;
LPCSTR lpFile;
LPCSTR lpParameters;
LPCSTR lpDirectory;
int nShow;
HINSTANCE hInstApp;
LPVOID lpIDList;
LPCSTR lpClass;
HKEY hkeyClass;
DWORD dwHotKey;
HANDLE hIcon;
HANDLE hMonitor;
HANDLE hProcess;
}
alias _SHELLEXECUTEINFOA SHELLEXECUTEINFOA;
alias _SHELLEXECUTEINFOA *LPSHELLEXECUTEINFOA;
//C typedef struct _SHELLEXECUTEINFOW {
//C DWORD cbSize;
//C ULONG fMask;
//C HWND hwnd;
//C LPCWSTR lpVerb;
//C LPCWSTR lpFile;
//C LPCWSTR lpParameters;
//C LPCWSTR lpDirectory;
//C int nShow;
//C HINSTANCE hInstApp;
//C LPVOID lpIDList;
//C LPCWSTR lpClass;
//C HKEY hkeyClass;
//C DWORD dwHotKey;
//C union {
//C HANDLE hIcon;
//C HANDLE hMonitor;
//C } ;
union _N128
{
HANDLE hIcon;
HANDLE hMonitor;
}
//C HANDLE hProcess;
//C } SHELLEXECUTEINFOW,*LPSHELLEXECUTEINFOW;
struct _SHELLEXECUTEINFOW
{
DWORD cbSize;
ULONG fMask;
HWND hwnd;
LPCWSTR lpVerb;
LPCWSTR lpFile;
LPCWSTR lpParameters;
LPCWSTR lpDirectory;
int nShow;
HINSTANCE hInstApp;
LPVOID lpIDList;
LPCWSTR lpClass;
HKEY hkeyClass;
DWORD dwHotKey;
HANDLE hIcon;
HANDLE hMonitor;
HANDLE hProcess;
}
alias _SHELLEXECUTEINFOW SHELLEXECUTEINFOW;
alias _SHELLEXECUTEINFOW *LPSHELLEXECUTEINFOW;
//C typedef SHELLEXECUTEINFOA SHELLEXECUTEINFO;
alias SHELLEXECUTEINFOA SHELLEXECUTEINFO;
//C typedef LPSHELLEXECUTEINFOA LPSHELLEXECUTEINFO;
alias LPSHELLEXECUTEINFOA LPSHELLEXECUTEINFO;
//C extern WINBOOL ShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo);
WINBOOL ShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo);
//C extern WINBOOL ShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo);
WINBOOL ShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo);
//C extern void WinExecErrorA(HWND hwnd,int error,LPCSTR lpstrFileName,LPCSTR lpstrTitle);
void WinExecErrorA(HWND hwnd, int error, LPCSTR lpstrFileName, LPCSTR lpstrTitle);
//C extern void WinExecErrorW(HWND hwnd,int error,LPCWSTR lpstrFileName,LPCWSTR lpstrTitle);
void WinExecErrorW(HWND hwnd, int error, LPCWSTR lpstrFileName, LPCWSTR lpstrTitle);
//C typedef struct _SHCREATEPROCESSINFOW {
//C DWORD cbSize;
//C ULONG fMask;
//C HWND hwnd;
//C LPCWSTR pszFile;
//C LPCWSTR pszParameters;
//C LPCWSTR pszCurrentDirectory;
//C HANDLE hUserToken;
//C LPSECURITY_ATTRIBUTES lpProcessAttributes;
//C LPSECURITY_ATTRIBUTES lpThreadAttributes;
//C WINBOOL bInheritHandles;
//C DWORD dwCreationFlags;
//C LPSTARTUPINFOW lpStartupInfo;
//C LPPROCESS_INFORMATION lpProcessInformation;
//C } SHCREATEPROCESSINFOW,*PSHCREATEPROCESSINFOW;
struct _SHCREATEPROCESSINFOW
{
DWORD cbSize;
ULONG fMask;
HWND hwnd;
LPCWSTR pszFile;
LPCWSTR pszParameters;
LPCWSTR pszCurrentDirectory;
HANDLE hUserToken;
LPSECURITY_ATTRIBUTES lpProcessAttributes;
LPSECURITY_ATTRIBUTES lpThreadAttributes;
WINBOOL bInheritHandles;
DWORD dwCreationFlags;
LPSTARTUPINFOW lpStartupInfo;
LPPROCESS_INFORMATION lpProcessInformation;
}
alias _SHCREATEPROCESSINFOW SHCREATEPROCESSINFOW;
alias _SHCREATEPROCESSINFOW *PSHCREATEPROCESSINFOW;
//C extern WINBOOL SHCreateProcessAsUserW(PSHCREATEPROCESSINFOW pscpi);
WINBOOL SHCreateProcessAsUserW(PSHCREATEPROCESSINFOW pscpi);
//C typedef struct _SHQUERYRBINFO {
//C DWORD cbSize;
//C long long i64Size;
//C long long i64NumItems;
//C } SHQUERYRBINFO,*LPSHQUERYRBINFO;
struct _SHQUERYRBINFO
{
DWORD cbSize;
long i64Size;
long i64NumItems;
}
alias _SHQUERYRBINFO SHQUERYRBINFO;
alias _SHQUERYRBINFO *LPSHQUERYRBINFO;
//C extern HRESULT SHQueryRecycleBinA(LPCSTR pszRootPath,LPSHQUERYRBINFO pSHQueryRBInfo);
HRESULT SHQueryRecycleBinA(LPCSTR pszRootPath, LPSHQUERYRBINFO pSHQueryRBInfo);
//C extern HRESULT SHQueryRecycleBinW(LPCWSTR pszRootPath,LPSHQUERYRBINFO pSHQueryRBInfo);
HRESULT SHQueryRecycleBinW(LPCWSTR pszRootPath, LPSHQUERYRBINFO pSHQueryRBInfo);
//C extern HRESULT SHEmptyRecycleBinA(HWND hwnd,LPCSTR pszRootPath,DWORD dwFlags);
HRESULT SHEmptyRecycleBinA(HWND hwnd, LPCSTR pszRootPath, DWORD dwFlags);
//C extern HRESULT SHEmptyRecycleBinW(HWND hwnd,LPCWSTR pszRootPath,DWORD dwFlags);
HRESULT SHEmptyRecycleBinW(HWND hwnd, LPCWSTR pszRootPath, DWORD dwFlags);
//C typedef struct _NOTIFYICONDATAA {
//C DWORD cbSize;
//C HWND hWnd;
//C UINT uID;
//C UINT uFlags;
//C UINT uCallbackMessage;
//C HICON hIcon;
//C CHAR szTip[128];
//C DWORD dwState;
//C DWORD dwStateMask;
//C CHAR szInfo[256];
//C union {
//C UINT uTimeout;
//C UINT uVersion;
//C } ;
union _N129
{
UINT uTimeout;
UINT uVersion;
}
//C CHAR szInfoTitle[64];
//C DWORD dwInfoFlags;
//C GUID guidItem;
//C } NOTIFYICONDATAA,*PNOTIFYICONDATAA;
struct _NOTIFYICONDATAA
{
DWORD cbSize;
HWND hWnd;
UINT uID;
UINT uFlags;
UINT uCallbackMessage;
HICON hIcon;
CHAR [128]szTip;
DWORD dwState;
DWORD dwStateMask;
CHAR [256]szInfo;
UINT uTimeout;
UINT uVersion;
CHAR [64]szInfoTitle;
DWORD dwInfoFlags;
GUID guidItem;
}
alias _NOTIFYICONDATAA NOTIFYICONDATAA;
alias _NOTIFYICONDATAA *PNOTIFYICONDATAA;
//C typedef struct _NOTIFYICONDATAW {
//C DWORD cbSize;
//C HWND hWnd;
//C UINT uID;
//C UINT uFlags;
//C UINT uCallbackMessage;
//C HICON hIcon;
//C WCHAR szTip[128];
//C DWORD dwState;
//C DWORD dwStateMask;
//C WCHAR szInfo[256];
//C union {
//C UINT uTimeout;
//C UINT uVersion;
//C } ;
union _N130
{
UINT uTimeout;
UINT uVersion;
}
//C WCHAR szInfoTitle[64];
//C DWORD dwInfoFlags;
//C GUID guidItem;
//C } NOTIFYICONDATAW,*PNOTIFYICONDATAW;
struct _NOTIFYICONDATAW
{
DWORD cbSize;
HWND hWnd;
UINT uID;
UINT uFlags;
UINT uCallbackMessage;
HICON hIcon;
WCHAR [128]szTip;
DWORD dwState;
DWORD dwStateMask;
WCHAR [256]szInfo;
UINT uTimeout;
UINT uVersion;
WCHAR [64]szInfoTitle;
DWORD dwInfoFlags;
GUID guidItem;
}
alias _NOTIFYICONDATAW NOTIFYICONDATAW;
alias _NOTIFYICONDATAW *PNOTIFYICONDATAW;
//C typedef NOTIFYICONDATAA NOTIFYICONDATA;
alias NOTIFYICONDATAA NOTIFYICONDATA;
//C typedef PNOTIFYICONDATAA PNOTIFYICONDATA;
alias PNOTIFYICONDATAA PNOTIFYICONDATA;
//C extern WINBOOL Shell_NotifyIconA(DWORD dwMessage,PNOTIFYICONDATAA lpData);
WINBOOL Shell_NotifyIconA(DWORD dwMessage, PNOTIFYICONDATAA lpData);
//C extern WINBOOL Shell_NotifyIconW(DWORD dwMessage,PNOTIFYICONDATAW lpData);
WINBOOL Shell_NotifyIconW(DWORD dwMessage, PNOTIFYICONDATAW lpData);
//C typedef struct _SHFILEINFOA {
//C HICON hIcon;
//C int iIcon;
//C DWORD dwAttributes;
//C CHAR szDisplayName[260];
//C CHAR szTypeName[80];
//C } SHFILEINFOA;
struct _SHFILEINFOA
{
HICON hIcon;
int iIcon;
DWORD dwAttributes;
CHAR [260]szDisplayName;
CHAR [80]szTypeName;
}
alias _SHFILEINFOA SHFILEINFOA;
//C typedef struct _SHFILEINFOW {
//C HICON hIcon;
//C int iIcon;
//C DWORD dwAttributes;
//C WCHAR szDisplayName[260];
//C WCHAR szTypeName[80];
//C } SHFILEINFOW;
struct _SHFILEINFOW
{
HICON hIcon;
int iIcon;
DWORD dwAttributes;
WCHAR [260]szDisplayName;
WCHAR [80]szTypeName;
}
alias _SHFILEINFOW SHFILEINFOW;
//C typedef SHFILEINFOA SHFILEINFO;
alias SHFILEINFOA SHFILEINFO;
//C extern DWORD_PTR SHGetFileInfoA(LPCSTR pszPath,DWORD dwFileAttributes,SHFILEINFOA *psfi,UINT cbFileInfo,UINT uFlags);
DWORD_PTR SHGetFileInfoA(LPCSTR pszPath, DWORD dwFileAttributes, SHFILEINFOA *psfi, UINT cbFileInfo, UINT uFlags);
//C extern DWORD_PTR SHGetFileInfoW(LPCWSTR pszPath,DWORD dwFileAttributes,SHFILEINFOW *psfi,UINT cbFileInfo,UINT uFlags);
DWORD_PTR SHGetFileInfoW(LPCWSTR pszPath, DWORD dwFileAttributes, SHFILEINFOW *psfi, UINT cbFileInfo, UINT uFlags);
//C extern WINBOOL SHGetDiskFreeSpaceExA(LPCSTR pszDirectoryName,ULARGE_INTEGER *pulFreeBytesAvailableToCaller,ULARGE_INTEGER *pulTotalNumberOfBytes,ULARGE_INTEGER *pulTotalNumberOfFreeBytes);
WINBOOL SHGetDiskFreeSpaceExA(LPCSTR pszDirectoryName, ULARGE_INTEGER *pulFreeBytesAvailableToCaller, ULARGE_INTEGER *pulTotalNumberOfBytes, ULARGE_INTEGER *pulTotalNumberOfFreeBytes);
//C extern WINBOOL SHGetDiskFreeSpaceExW(LPCWSTR pszDirectoryName,ULARGE_INTEGER *pulFreeBytesAvailableToCaller,ULARGE_INTEGER *pulTotalNumberOfBytes,ULARGE_INTEGER *pulTotalNumberOfFreeBytes);
WINBOOL SHGetDiskFreeSpaceExW(LPCWSTR pszDirectoryName, ULARGE_INTEGER *pulFreeBytesAvailableToCaller, ULARGE_INTEGER *pulTotalNumberOfBytes, ULARGE_INTEGER *pulTotalNumberOfFreeBytes);
//C extern WINBOOL SHGetNewLinkInfoA(LPCSTR pszLinkTo,LPCSTR pszDir,LPSTR pszName,WINBOOL *pfMustCopy,UINT uFlags);
WINBOOL SHGetNewLinkInfoA(LPCSTR pszLinkTo, LPCSTR pszDir, LPSTR pszName, WINBOOL *pfMustCopy, UINT uFlags);
//C extern WINBOOL SHGetNewLinkInfoW(LPCWSTR pszLinkTo,LPCWSTR pszDir,LPWSTR pszName,WINBOOL *pfMustCopy,UINT uFlags);
WINBOOL SHGetNewLinkInfoW(LPCWSTR pszLinkTo, LPCWSTR pszDir, LPWSTR pszName, WINBOOL *pfMustCopy, UINT uFlags);
//C extern WINBOOL SHInvokePrinterCommandA(HWND hwnd,UINT uAction,LPCSTR lpBuf1,LPCSTR lpBuf2,WINBOOL fModal);
WINBOOL SHInvokePrinterCommandA(HWND hwnd, UINT uAction, LPCSTR lpBuf1, LPCSTR lpBuf2, WINBOOL fModal);
//C extern WINBOOL SHInvokePrinterCommandW(HWND hwnd,UINT uAction,LPCWSTR lpBuf1,LPCWSTR lpBuf2,WINBOOL fModal);
WINBOOL SHInvokePrinterCommandW(HWND hwnd, UINT uAction, LPCWSTR lpBuf1, LPCWSTR lpBuf2, WINBOOL fModal);
//C extern HRESULT SHLoadNonloadedIconOverlayIdentifiers(void);
HRESULT SHLoadNonloadedIconOverlayIdentifiers();
//C extern HRESULT SHIsFileAvailableOffline(LPCWSTR pwszPath,LPDWORD pdwStatus);
HRESULT SHIsFileAvailableOffline(LPCWSTR pwszPath, LPDWORD pdwStatus);
//C extern HRESULT SHSetLocalizedName(LPWSTR pszPath,LPCWSTR pszResModule,int idsRes);
HRESULT SHSetLocalizedName(LPWSTR pszPath, LPCWSTR pszResModule, int idsRes);
//C int ShellMessageBoxA(HINSTANCE hAppInst,HWND hWnd,LPCSTR lpcText,LPCSTR lpcTitle,UINT fuStyle,...);
int ShellMessageBoxA(HINSTANCE hAppInst, HWND hWnd, LPCSTR lpcText, LPCSTR lpcTitle, UINT fuStyle,...);
//C int ShellMessageBoxW(HINSTANCE hAppInst,HWND hWnd,LPCWSTR lpcText,LPCWSTR lpcTitle,UINT fuStyle,...);
int ShellMessageBoxW(HINSTANCE hAppInst, HWND hWnd, LPCWSTR lpcText, LPCWSTR lpcTitle, UINT fuStyle,...);
//C extern WINBOOL IsLFNDriveA(LPCSTR pszPath);
WINBOOL IsLFNDriveA(LPCSTR pszPath);
//C extern WINBOOL IsLFNDriveW(LPCWSTR pszPath);
WINBOOL IsLFNDriveW(LPCWSTR pszPath);
//C extern HRESULT SHEnumerateUnreadMailAccountsA(HKEY hKeyUser,DWORD dwIndex,LPSTR pszMailAddress,int cchMailAddress);
HRESULT SHEnumerateUnreadMailAccountsA(HKEY hKeyUser, DWORD dwIndex, LPSTR pszMailAddress, int cchMailAddress);
//C extern HRESULT SHEnumerateUnreadMailAccountsW(HKEY hKeyUser,DWORD dwIndex,LPWSTR pszMailAddress,int cchMailAddress);
HRESULT SHEnumerateUnreadMailAccountsW(HKEY hKeyUser, DWORD dwIndex, LPWSTR pszMailAddress, int cchMailAddress);
//C extern HRESULT SHGetUnreadMailCountA(HKEY hKeyUser,LPCSTR pszMailAddress,DWORD *pdwCount,FILETIME *pFileTime,LPSTR pszShellExecuteCommand,int cchShellExecuteCommand);
HRESULT SHGetUnreadMailCountA(HKEY hKeyUser, LPCSTR pszMailAddress, DWORD *pdwCount, FILETIME *pFileTime, LPSTR pszShellExecuteCommand, int cchShellExecuteCommand);
//C extern HRESULT SHGetUnreadMailCountW(HKEY hKeyUser,LPCWSTR pszMailAddress,DWORD *pdwCount,FILETIME *pFileTime,LPWSTR pszShellExecuteCommand,int cchShellExecuteCommand);
HRESULT SHGetUnreadMailCountW(HKEY hKeyUser, LPCWSTR pszMailAddress, DWORD *pdwCount, FILETIME *pFileTime, LPWSTR pszShellExecuteCommand, int cchShellExecuteCommand);
//C extern HRESULT SHSetUnreadMailCountA(LPCSTR pszMailAddress,DWORD dwCount,LPCSTR pszShellExecuteCommand);
HRESULT SHSetUnreadMailCountA(LPCSTR pszMailAddress, DWORD dwCount, LPCSTR pszShellExecuteCommand);
//C extern HRESULT SHSetUnreadMailCountW(LPCWSTR pszMailAddress,DWORD dwCount,LPCWSTR pszShellExecuteCommand);
HRESULT SHSetUnreadMailCountW(LPCWSTR pszMailAddress, DWORD dwCount, LPCWSTR pszShellExecuteCommand);
//C extern WINBOOL SHTestTokenMembership(HANDLE hToken,ULONG ulRID);
WINBOOL SHTestTokenMembership(HANDLE hToken, ULONG ulRID);
//C extern HRESULT SHGetImageList(int iImageList,const IID *const riid,void **ppvObj);
HRESULT SHGetImageList(int iImageList, IID *riid, void **ppvObj);
//C typedef HRESULT ( *PFNCANSHAREFOLDERW)(LPCWSTR pszPath);
alias HRESULT function(LPCWSTR pszPath)PFNCANSHAREFOLDERW;
//C typedef HRESULT ( *PFNSHOWSHAREFOLDERUIW)(HWND hwndParent,LPCWSTR pszPath);
alias HRESULT function(HWND hwndParent, LPCWSTR pszPath)PFNSHOWSHAREFOLDERUIW;
//C typedef struct _SHSTOCKICONINFO {
//C DWORD cbSize;
//C HICON hIcon;
//C int iSysImageIndex;
//C int iIcon;
//C WCHAR szPath[260];
//C } SHSTOCKICONINFO;
struct _SHSTOCKICONINFO
{
DWORD cbSize;
HICON hIcon;
int iSysImageIndex;
int iIcon;
WCHAR [260]szPath;
}
alias _SHSTOCKICONINFO SHSTOCKICONINFO;
//C typedef enum SHSTOCKICONID {
//C SIID_DOCNOASSOC = 0,
//C SIID_DOCASSOC = 1,
//C SIID_APPLICATION = 2,
//C SIID_FOLDER = 3,
//C SIID_FOLDEROPEN = 4,
//C SIID_DRIVE525 = 5,
//C SIID_DRIVE35 = 6,
//C SIID_DRIVEREMOVE = 7,
//C SIID_DRIVEFIXED = 8,
//C SIID_DRIVENET = 9,
//C SIID_DRIVENETDISABLED = 10,
//C SIID_DRIVECD = 11,
//C SIID_DRIVERAM = 12,
//C SIID_WORLD = 13,
//C SIID_SERVER = 15,
//C SIID_PRINTER = 16,
//C SIID_MYNETWORK = 17,
//C SIID_FIND = 22,
//C SIID_HELP = 23,
//C SIID_SHARE = 28,
//C SIID_LINK = 29,
//C SIID_SLOWFILE = 30,
//C SIID_RECYCLER = 31,
//C SIID_RECYCLERFULL = 32,
//C SIID_MEDIACDAUDIO = 40,
//C SIID_LOCK = 47,
//C SIID_AUTOLIST = 49,
//C SIID_PRINTERNET = 50,
//C SIID_SERVERSHARE = 51,
//C SIID_PRINTERFAX = 52,
//C SIID_PRINTERFAXNET = 53,
//C SIID_PRINTERFILE = 54,
//C SIID_STACK = 55,
//C SIID_MEDIASVCD = 56,
//C SIID_STUFFEDFOLDER = 57,
//C SIID_DRIVEUNKNOWN = 58,
//C SIID_DRIVEDVD = 59,
//C SIID_MEDIADVD = 60,
//C SIID_MEDIADVDRAM = 61,
//C SIID_MEDIADVDRW = 62,
//C SIID_MEDIADVDR = 63,
//C SIID_MEDIADVDROM = 64,
//C SIID_MEDIACDAUDIOPLUS = 65,
//C SIID_MEDIACDRW = 66,
//C SIID_MEDIACDR = 67,
//C SIID_MEDIACDBURN = 68,
//C SIID_MEDIABLANKCD = 69,
//C SIID_MEDIACDROM = 70,
//C SIID_AUDIOFILES = 71,
//C SIID_IMAGEFILES = 72,
//C SIID_VIDEOFILES = 73,
//C SIID_MIXEDFILES = 74,
//C SIID_FOLDERBACK = 75,
//C SIID_FOLDERFRONT = 76,
//C SIID_SHIELD = 77,
//C SIID_WARNING = 78,
//C SIID_INFO = 79,
//C SIID_ERROR = 80,
//C SIID_KEY = 81,
//C SIID_SOFTWARE = 82,
//C SIID_RENAME = 83,
//C SIID_DELETE = 84,
//C SIID_MEDIAAUDIODVD = 85,
//C SIID_MEDIAMOVIEDVD = 86,
//C SIID_MEDIAENHANCEDCD = 87,
//C SIID_MEDIAENHANCEDDVD = 88,
//C SIID_MEDIAHDDVD = 89,
//C SIID_MEDIABLURAY = 90,
//C SIID_MEDIAVCD = 91,
//C SIID_MEDIADVDPLUSR = 92,
//C SIID_MEDIADVDPLUSRW = 93,
//C SIID_DESKTOPPC = 94,
//C SIID_MOBILEPC = 95,
//C SIID_USERS = 96,
//C SIID_MEDIASMARTMEDIA = 97,
//C SIID_MEDIACOMPACTFLASH = 98,
//C SIID_DEVICECELLPHONE = 99,
//C SIID_DEVICECAMERA = 100,
//C SIID_DEVICEVIDEOCAMERA = 101,
//C SIID_DEVICEAUDIOPLAYER = 102,
//C SIID_NETWORKCONNECT = 103,
//C SIID_INTERNET = 104,
//C SIID_ZIPFILE = 105,
//C SIID_SETTINGS = 106,
//C SIID_DRIVEHDDVD = 132,
//C SIID_DRIVEBD = 133,
//C SIID_MEDIAHDDVDROM = 134,
//C SIID_MEDIAHDDVDR = 135,
//C SIID_MEDIAHDDVDRAM = 136,
//C SIID_MEDIABDROM = 137,
//C SIID_MEDIABDR = 138,
//C SIID_MEDIABDRE = 139,
//C SIID_CLUSTEREDDRIVE = 140,
//C SIID_MAX_ICONS = 174
//C } SHSTOCKICONID;
enum SHSTOCKICONID
{
SIID_DOCNOASSOC,
SIID_DOCASSOC,
SIID_APPLICATION,
SIID_FOLDER,
SIID_FOLDEROPEN,
SIID_DRIVE525,
SIID_DRIVE35,
SIID_DRIVEREMOVE,
SIID_DRIVEFIXED,
SIID_DRIVENET,
SIID_DRIVENETDISABLED,
SIID_DRIVECD,
SIID_DRIVERAM,
SIID_WORLD,
SIID_SERVER = 15,
SIID_PRINTER,
SIID_MYNETWORK,
SIID_FIND = 22,
SIID_HELP,
SIID_SHARE = 28,
SIID_LINK,
SIID_SLOWFILE,
SIID_RECYCLER,
SIID_RECYCLERFULL,
SIID_MEDIACDAUDIO = 40,
SIID_LOCK = 47,
SIID_AUTOLIST = 49,
SIID_PRINTERNET,
SIID_SERVERSHARE,
SIID_PRINTERFAX,
SIID_PRINTERFAXNET,
SIID_PRINTERFILE,
SIID_STACK,
SIID_MEDIASVCD,
SIID_STUFFEDFOLDER,
SIID_DRIVEUNKNOWN,
SIID_DRIVEDVD,
SIID_MEDIADVD,
SIID_MEDIADVDRAM,
SIID_MEDIADVDRW,
SIID_MEDIADVDR,
SIID_MEDIADVDROM,
SIID_MEDIACDAUDIOPLUS,
SIID_MEDIACDRW,
SIID_MEDIACDR,
SIID_MEDIACDBURN,
SIID_MEDIABLANKCD,
SIID_MEDIACDROM,
SIID_AUDIOFILES,
SIID_IMAGEFILES,
SIID_VIDEOFILES,
SIID_MIXEDFILES,
SIID_FOLDERBACK,
SIID_FOLDERFRONT,
SIID_SHIELD,
SIID_WARNING,
SIID_INFO,
SIID_ERROR,
SIID_KEY,
SIID_SOFTWARE,
SIID_RENAME,
SIID_DELETE,
SIID_MEDIAAUDIODVD,
SIID_MEDIAMOVIEDVD,
SIID_MEDIAENHANCEDCD,
SIID_MEDIAENHANCEDDVD,
SIID_MEDIAHDDVD,
SIID_MEDIABLURAY,
SIID_MEDIAVCD,
SIID_MEDIADVDPLUSR,
SIID_MEDIADVDPLUSRW,
SIID_DESKTOPPC,
SIID_MOBILEPC,
SIID_USERS,
SIID_MEDIASMARTMEDIA,
SIID_MEDIACOMPACTFLASH,
SIID_DEVICECELLPHONE,
SIID_DEVICECAMERA,
SIID_DEVICEVIDEOCAMERA,
SIID_DEVICEAUDIOPLAYER,
SIID_NETWORKCONNECT,
SIID_INTERNET,
SIID_ZIPFILE,
SIID_SETTINGS,
SIID_DRIVEHDDVD = 132,
SIID_DRIVEBD,
SIID_MEDIAHDDVDROM,
SIID_MEDIAHDDVDR,
SIID_MEDIAHDDVDRAM,
SIID_MEDIABDROM,
SIID_MEDIABDR,
SIID_MEDIABDRE,
SIID_CLUSTEREDDRIVE,
SIID_MAX_ICONS = 174,
}
//C typedef struct _PERF_DATA_BLOCK {
//C WCHAR Signature[4];
//C DWORD LittleEndian;
//C DWORD Version;
//C DWORD Revision;
//C DWORD TotalByteLength;
//C DWORD HeaderLength;
//C DWORD NumObjectTypes;
//C LONG DefaultObject;
//C SYSTEMTIME SystemTime;
//C LARGE_INTEGER PerfTime;
//C LARGE_INTEGER PerfFreq;
//C LARGE_INTEGER PerfTime100nSec;
//C DWORD SystemNameLength;
//C DWORD SystemNameOffset;
//C } PERF_DATA_BLOCK,*PPERF_DATA_BLOCK;
struct _PERF_DATA_BLOCK
{
WCHAR [4]Signature;
DWORD LittleEndian;
DWORD Version;
DWORD Revision;
DWORD TotalByteLength;
DWORD HeaderLength;
DWORD NumObjectTypes;
LONG DefaultObject;
SYSTEMTIME SystemTime;
LARGE_INTEGER PerfTime;
LARGE_INTEGER PerfFreq;
LARGE_INTEGER PerfTime100nSec;
DWORD SystemNameLength;
DWORD SystemNameOffset;
}
alias _PERF_DATA_BLOCK PERF_DATA_BLOCK;
alias _PERF_DATA_BLOCK *PPERF_DATA_BLOCK;
//C typedef struct _PERF_OBJECT_TYPE {
//C DWORD TotalByteLength;
//C DWORD DefinitionLength;
//C DWORD HeaderLength;
//C DWORD ObjectNameTitleIndex;
//C DWORD ObjectNameTitle;
//C DWORD ObjectHelpTitleIndex;
//C DWORD ObjectHelpTitle;
//C DWORD DetailLevel;
//C DWORD NumCounters;
//C LONG DefaultCounter;
//C LONG NumInstances;
//C DWORD CodePage;
//C LARGE_INTEGER PerfTime;
//C LARGE_INTEGER PerfFreq;
//C } PERF_OBJECT_TYPE,*PPERF_OBJECT_TYPE;
struct _PERF_OBJECT_TYPE
{
DWORD TotalByteLength;
DWORD DefinitionLength;
DWORD HeaderLength;
DWORD ObjectNameTitleIndex;
DWORD ObjectNameTitle;
DWORD ObjectHelpTitleIndex;
DWORD ObjectHelpTitle;
DWORD DetailLevel;
DWORD NumCounters;
LONG DefaultCounter;
LONG NumInstances;
DWORD CodePage;
LARGE_INTEGER PerfTime;
LARGE_INTEGER PerfFreq;
}
alias _PERF_OBJECT_TYPE PERF_OBJECT_TYPE;
alias _PERF_OBJECT_TYPE *PPERF_OBJECT_TYPE;
//C typedef struct _PERF_COUNTER_DEFINITION {
//C DWORD ByteLength;
//C DWORD CounterNameTitleIndex;
//C DWORD CounterNameTitle;
//C DWORD CounterHelpTitleIndex;
//C DWORD CounterHelpTitle;
//C LONG DefaultScale;
//C DWORD DetailLevel;
//C DWORD CounterType;
//C DWORD CounterSize;
//C DWORD CounterOffset;
//C } PERF_COUNTER_DEFINITION,*PPERF_COUNTER_DEFINITION;
struct _PERF_COUNTER_DEFINITION
{
DWORD ByteLength;
DWORD CounterNameTitleIndex;
DWORD CounterNameTitle;
DWORD CounterHelpTitleIndex;
DWORD CounterHelpTitle;
LONG DefaultScale;
DWORD DetailLevel;
DWORD CounterType;
DWORD CounterSize;
DWORD CounterOffset;
}
alias _PERF_COUNTER_DEFINITION PERF_COUNTER_DEFINITION;
alias _PERF_COUNTER_DEFINITION *PPERF_COUNTER_DEFINITION;
//C typedef struct _PERF_INSTANCE_DEFINITION {
//C DWORD ByteLength;
//C DWORD ParentObjectTitleIndex;
//C DWORD ParentObjectInstance;
//C LONG UniqueID;
//C DWORD NameOffset;
//C DWORD NameLength;
//C } PERF_INSTANCE_DEFINITION,*PPERF_INSTANCE_DEFINITION;
struct _PERF_INSTANCE_DEFINITION
{
DWORD ByteLength;
DWORD ParentObjectTitleIndex;
DWORD ParentObjectInstance;
LONG UniqueID;
DWORD NameOffset;
DWORD NameLength;
}
alias _PERF_INSTANCE_DEFINITION PERF_INSTANCE_DEFINITION;
alias _PERF_INSTANCE_DEFINITION *PPERF_INSTANCE_DEFINITION;
//C typedef struct _PERF_COUNTER_BLOCK {
//C DWORD ByteLength;
//C } PERF_COUNTER_BLOCK,*PPERF_COUNTER_BLOCK;
struct _PERF_COUNTER_BLOCK
{
DWORD ByteLength;
}
alias _PERF_COUNTER_BLOCK PERF_COUNTER_BLOCK;
alias _PERF_COUNTER_BLOCK *PPERF_COUNTER_BLOCK;
//C typedef DWORD ( PM_OPEN_PROC)(LPWSTR);
alias DWORD function(LPWSTR )PM_OPEN_PROC;
//C typedef DWORD ( PM_COLLECT_PROC)(LPWSTR,LPVOID *,LPDWORD,LPDWORD);
alias DWORD function(LPWSTR , LPVOID *, LPDWORD , LPDWORD )PM_COLLECT_PROC;
//C typedef DWORD ( PM_CLOSE_PROC)(void);
alias DWORD function()PM_CLOSE_PROC;
//C typedef DWORD ( PM_QUERY_PROC)(LPDWORD,LPVOID *,LPDWORD,LPDWORD);
alias DWORD function(LPDWORD , LPVOID *, LPDWORD , LPDWORD )PM_QUERY_PROC;
//C struct timeval
//C {
//C long tv_sec;
//C long tv_usec;
//C };
struct timeval
{
int tv_sec;
int tv_usec;
}
//C typedef unsigned char u_char;
alias ubyte u_char;
//C typedef unsigned short u_short;
alias ushort u_short;
//C typedef unsigned int u_int;
alias uint u_int;
//C typedef unsigned long u_long;
alias uint u_long;
//C typedef unsigned long long u_int64;
alias ulong u_int64;
//C typedef struct in_addr {
//C union {
//C struct { u_char s_b1,s_b2,s_b3,s_b4; } S_un_b;
struct _N132
{
u_char s_b1;
u_char s_b2;
u_char s_b3;
u_char s_b4;
}
//C struct { u_short s_w1,s_w2; } S_un_w;
struct _N133
{
u_short s_w1;
u_short s_w2;
}
//C u_long S_addr;
//C } S_un;
union _N131
{
_N132 S_un_b;
_N133 S_un_w;
u_long S_addr;
}
//C } IN_ADDR,*PIN_ADDR,*LPIN_ADDR;
struct in_addr
{
_N131 S_un;
}
alias in_addr IN_ADDR;
alias in_addr *PIN_ADDR;
alias in_addr *LPIN_ADDR;
//C typedef UINT_PTR SOCKET;
alias UINT_PTR SOCKET;
//C typedef struct fd_set
//C {
//C u_int fd_count;
//C SOCKET fd_array[64];
//C } fd_set;
struct fd_set
{
u_int fd_count;
SOCKET [64]fd_array;
}
//C int __WSAFDIsSet(SOCKET,fd_set *);
int __WSAFDIsSet(SOCKET , fd_set *);
//C typedef struct fd_set FD_SET;
alias fd_set FD_SET;
//C typedef struct fd_set *PFD_SET;
alias fd_set *PFD_SET;
//C typedef struct fd_set *LPFD_SET;
alias fd_set *LPFD_SET;
//C struct hostent {
//C char *h_name;
//C char **h_aliases;
//C short h_addrtype;
//C short h_length;
//C char **h_addr_list;
//C };
struct hostent
{
char *h_name;
char **h_aliases;
short h_addrtype;
short h_length;
char **h_addr_list;
}
//C struct netent {
//C char *n_name;
//C char **n_aliases;
//C short n_addrtype;
//C u_long n_net;
//C };
struct netent
{
char *n_name;
char **n_aliases;
short n_addrtype;
u_long n_net;
}
//C struct servent {
//C char *s_name;
//C char **s_aliases;
//C char *s_proto;
//C short s_port;
//C };
struct servent
{
char *s_name;
char **s_aliases;
char *s_proto;
short s_port;
}
//C struct protoent {
//C char *p_name;
//C char **p_aliases;
//C short p_proto;
//C };
struct protoent
{
char *p_name;
char **p_aliases;
short p_proto;
}
//C struct sockproto {
//C u_short sp_family;
//C u_short sp_protocol;
//C };
struct sockproto
{
u_short sp_family;
u_short sp_protocol;
}
//C struct linger {
//C u_short l_onoff;
//C u_short l_linger;
//C };
struct linger
{
u_short l_onoff;
u_short l_linger;
}
//C struct sockaddr {
//C u_short sa_family;
//C char sa_data[14];
//C };
struct sockaddr
{
u_short sa_family;
char [14]sa_data;
}
//C struct sockaddr_in {
//C short sin_family;
//C u_short sin_port;
//C struct in_addr sin_addr;
//C char sin_zero[8];
//C };
struct sockaddr_in
{
short sin_family;
u_short sin_port;
in_addr sin_addr;
char [8]sin_zero;
}
//C typedef struct hostent HOSTENT;
alias hostent HOSTENT;
//C typedef struct hostent *PHOSTENT;
alias hostent *PHOSTENT;
//C typedef struct hostent *LPHOSTENT;
alias hostent *LPHOSTENT;
//C typedef struct servent SERVENT;
alias servent SERVENT;
//C typedef struct servent *PSERVENT;
alias servent *PSERVENT;
//C typedef struct servent *LPSERVENT;
alias servent *LPSERVENT;
//C typedef struct protoent PROTOENT;
alias protoent PROTOENT;
//C typedef struct protoent *PPROTOENT;
alias protoent *PPROTOENT;
//C typedef struct protoent *LPPROTOENT;
alias protoent *LPPROTOENT;
//C typedef struct sockaddr SOCKADDR;
alias sockaddr SOCKADDR;
//C typedef struct sockaddr *PSOCKADDR;
alias sockaddr *PSOCKADDR;
//C typedef struct sockaddr *LPSOCKADDR;
alias sockaddr *LPSOCKADDR;
//C typedef struct sockaddr_in SOCKADDR_IN;
alias sockaddr_in SOCKADDR_IN;
//C typedef struct sockaddr_in *PSOCKADDR_IN;
alias sockaddr_in *PSOCKADDR_IN;
//C typedef struct sockaddr_in *LPSOCKADDR_IN;
alias sockaddr_in *LPSOCKADDR_IN;
//C typedef struct linger LINGER;
alias linger LINGER;
//C typedef struct linger *PLINGER;
alias linger *PLINGER;
//C typedef struct linger *LPLINGER;
alias linger *LPLINGER;
//C typedef struct timeval TIMEVAL;
alias timeval TIMEVAL;
//C typedef struct timeval *PTIMEVAL;
alias timeval *PTIMEVAL;
//C typedef struct timeval *LPTIMEVAL;
alias timeval *LPTIMEVAL;
//C struct ip_mreq {
//C struct in_addr imr_multiaddr;
//C struct in_addr imr_interface;
//C };
struct ip_mreq
{
in_addr imr_multiaddr;
in_addr imr_interface;
}
//C typedef struct WSAData {
//C WORD wVersion;
//C WORD wHighVersion;
//C unsigned short iMaxSockets;
//C unsigned short iMaxUdpDg;
//C char *lpVendorInfo;
//C char szDescription[256 +1];
//C char szSystemStatus[128 +1];
//C } WSADATA,*LPWSADATA;
struct WSAData
{
WORD wVersion;
WORD wHighVersion;
ushort iMaxSockets;
ushort iMaxUdpDg;
char *lpVendorInfo;
char [257]szDescription;
char [129]szSystemStatus;
}
alias WSAData WSADATA;
alias WSAData *LPWSADATA;
//C typedef struct _TRANSMIT_FILE_BUFFERS {
//C LPVOID Head;
//C DWORD HeadLength;
//C LPVOID Tail;
//C DWORD TailLength;
//C } TRANSMIT_FILE_BUFFERS,*PTRANSMIT_FILE_BUFFERS,*LPTRANSMIT_FILE_BUFFERS;
struct _TRANSMIT_FILE_BUFFERS
{
LPVOID Head;
DWORD HeadLength;
LPVOID Tail;
DWORD TailLength;
}
alias _TRANSMIT_FILE_BUFFERS TRANSMIT_FILE_BUFFERS;
alias _TRANSMIT_FILE_BUFFERS *PTRANSMIT_FILE_BUFFERS;
alias _TRANSMIT_FILE_BUFFERS *LPTRANSMIT_FILE_BUFFERS;
//C SOCKET accept(SOCKET s,struct sockaddr *addr,int *addrlen);
SOCKET accept(SOCKET s, sockaddr *addr, int *addrlen);
//C int bind(SOCKET s,const struct sockaddr *name,int namelen);
int bind(SOCKET s, sockaddr *name, int namelen);
//C int closesocket(SOCKET s);
int closesocket(SOCKET s);
//C int connect(SOCKET s,const struct sockaddr *name,int namelen);
int connect(SOCKET s, sockaddr *name, int namelen);
//C int ioctlsocket(SOCKET s,long cmd,u_long *argp);
int ioctlsocket(SOCKET s, int cmd, u_long *argp);
//C int getpeername(SOCKET s,struct sockaddr *name,int *namelen);
int getpeername(SOCKET s, sockaddr *name, int *namelen);
//C int getsockname(SOCKET s,struct sockaddr *name,int *namelen);
int getsockname(SOCKET s, sockaddr *name, int *namelen);
//C int getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen);
int getsockopt(SOCKET s, int level, int optname, char *optval, int *optlen);
//C u_long htonl(u_long hostlong);
u_long htonl(u_long hostlong);
//C u_short htons(u_short hostshort);
u_short htons(u_short hostshort);
//C unsigned long inet_addr(const char *cp);
uint inet_addr(char *cp);
//C char * inet_ntoa(struct in_addr);
char * inet_ntoa(in_addr);
//C int listen(SOCKET s,int backlog);
int listen(SOCKET s, int backlog);
//C u_long ntohl(u_long netlong);
u_long ntohl(u_long netlong);
//C u_short ntohs(u_short netshort);
u_short ntohs(u_short netshort);
//C int recv(SOCKET s,char *buf,int len,int flags);
int recv(SOCKET s, char *buf, int len, int flags);
//C int recvfrom(SOCKET s,char *buf,int len,int flags,struct sockaddr *from,int *fromlen);
int recvfrom(SOCKET s, char *buf, int len, int flags, sockaddr *from, int *fromlen);
//C int select(int nfds,fd_set *readfds,fd_set *writefds,fd_set *exceptfds,const PTIMEVAL timeout);
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, PTIMEVAL timeout);
//C int send(SOCKET s,const char *buf,int len,int flags);
int send(SOCKET s, char *buf, int len, int flags);
//C int sendto(SOCKET s,const char *buf,int len,int flags,const struct sockaddr *to,int tolen);
int sendto(SOCKET s, char *buf, int len, int flags, sockaddr *to, int tolen);
//C int setsockopt(SOCKET s,int level,int optname,const char *optval,int optlen);
int setsockopt(SOCKET s, int level, int optname, char *optval, int optlen);
//C int shutdown(SOCKET s,int how);
int shutdown(SOCKET s, int how);
//C SOCKET socket(int af,int type,int protocol);
SOCKET socket(int af, int type, int protocol);
//C struct hostent * gethostbyaddr(const char *addr,int len,int type);
hostent * gethostbyaddr(char *addr, int len, int type);
//C struct hostent * gethostbyname(const char *name);
hostent * gethostbyname(char *name);
//C int gethostname(char *name,int namelen);
int gethostname(char *name, int namelen);
//C struct servent * getservbyport(int port,const char *proto);
servent * getservbyport(int port, char *proto);
//C struct servent * getservbyname(const char *name,const char *proto);
servent * getservbyname(char *name, char *proto);
//C struct protoent * getprotobynumber(int number);
protoent * getprotobynumber(int number);
//C struct protoent * getprotobyname(const char *name);
protoent * getprotobyname(char *name);
//C int WSAStartup(WORD wVersionRequested,LPWSADATA lpWSAData);
int WSAStartup(WORD wVersionRequested, LPWSADATA lpWSAData);
//C int WSACleanup(void);
int WSACleanup();
//C void WSASetLastError(int iError);
void WSASetLastError(int iError);
//C int WSAGetLastError(void);
int WSAGetLastError();
//C WINBOOL WSAIsBlocking(void);
WINBOOL WSAIsBlocking();
//C int WSAUnhookBlockingHook(void);
int WSAUnhookBlockingHook();
//C FARPROC WSASetBlockingHook(FARPROC lpBlockFunc);
FARPROC WSASetBlockingHook(FARPROC lpBlockFunc);
//C int WSACancelBlockingCall(void);
int WSACancelBlockingCall();
//C HANDLE WSAAsyncGetServByName(HWND hWnd,u_int wMsg,const char *name,const char *proto,char *buf,int buflen);
HANDLE WSAAsyncGetServByName(HWND hWnd, u_int wMsg, char *name, char *proto, char *buf, int buflen);
//C HANDLE WSAAsyncGetServByPort(HWND hWnd,u_int wMsg,int port,const char *proto,char *buf,int buflen);
HANDLE WSAAsyncGetServByPort(HWND hWnd, u_int wMsg, int port, char *proto, char *buf, int buflen);
//C HANDLE WSAAsyncGetProtoByName(HWND hWnd,u_int wMsg,const char *name,char *buf,int buflen);
HANDLE WSAAsyncGetProtoByName(HWND hWnd, u_int wMsg, char *name, char *buf, int buflen);
//C HANDLE WSAAsyncGetProtoByNumber(HWND hWnd,u_int wMsg,int number,char *buf,int buflen);
HANDLE WSAAsyncGetProtoByNumber(HWND hWnd, u_int wMsg, int number, char *buf, int buflen);
//C HANDLE WSAAsyncGetHostByName(HWND hWnd,u_int wMsg,const char *name,char *buf,int buflen);
HANDLE WSAAsyncGetHostByName(HWND hWnd, u_int wMsg, char *name, char *buf, int buflen);
//C HANDLE WSAAsyncGetHostByAddr(HWND hWnd,u_int wMsg,const char *addr,int len,int type,char *buf,int buflen);
HANDLE WSAAsyncGetHostByAddr(HWND hWnd, u_int wMsg, char *addr, int len, int type, char *buf, int buflen);
//C int WSACancelAsyncRequest(HANDLE hAsyncTaskHandle);
int WSACancelAsyncRequest(HANDLE hAsyncTaskHandle);
//C int WSAAsyncSelect(SOCKET s,HWND hWnd,u_int wMsg,long lEvent);
int WSAAsyncSelect(SOCKET s, HWND hWnd, u_int wMsg, int lEvent);
//C int WSARecvEx(SOCKET s,char *buf,int len,int *flags);
int WSARecvEx(SOCKET s, char *buf, int len, int *flags);
//C WINBOOL TransmitFile(SOCKET hSocket,HANDLE hFile,DWORD nNumberOfBytesToWrite,DWORD nNumberOfBytesPerSend,LPOVERLAPPED lpOverlapped,LPTRANSMIT_FILE_BUFFERS lpTransmitBuffers,DWORD dwReserved);
WINBOOL TransmitFile(SOCKET hSocket, HANDLE hFile, DWORD nNumberOfBytesToWrite, DWORD nNumberOfBytesPerSend, LPOVERLAPPED lpOverlapped, LPTRANSMIT_FILE_BUFFERS lpTransmitBuffers, DWORD dwReserved);
//C WINBOOL AcceptEx(SOCKET sListenSocket,SOCKET sAcceptSocket,PVOID lpOutputBuffer,DWORD dwReceiveDataLength,DWORD dwLocalAddressLength,DWORD dwRemoteAddressLength,LPDWORD lpdwBytesReceived,LPOVERLAPPED lpOverlapped);
WINBOOL AcceptEx(SOCKET sListenSocket, SOCKET sAcceptSocket, PVOID lpOutputBuffer, DWORD dwReceiveDataLength, DWORD dwLocalAddressLength, DWORD dwRemoteAddressLength, LPDWORD lpdwBytesReceived, LPOVERLAPPED lpOverlapped);
//C void GetAcceptExSockaddrs(PVOID lpOutputBuffer,DWORD dwReceiveDataLength,DWORD dwLocalAddressLength,DWORD dwRemoteAddressLength,struct sockaddr **LocalSockaddr,LPINT LocalSockaddrLength,struct sockaddr **RemoteSockaddr,LPINT RemoteSockaddrLength);
void GetAcceptExSockaddrs(PVOID lpOutputBuffer, DWORD dwReceiveDataLength, DWORD dwLocalAddressLength, DWORD dwRemoteAddressLength, sockaddr **LocalSockaddr, LPINT LocalSockaddrLength, sockaddr **RemoteSockaddr, LPINT RemoteSockaddrLength);
//C typedef unsigned int ALG_ID;
alias uint ALG_ID;
//C typedef ULONG_PTR HCRYPTKEY;
alias ULONG_PTR HCRYPTKEY;
//C typedef ULONG_PTR HCRYPTPROV;
alias ULONG_PTR HCRYPTPROV;
//C typedef ULONG_PTR HCRYPTHASH;
alias ULONG_PTR HCRYPTHASH;
//C typedef struct _CMS_KEY_INFO {
//C DWORD dwVersion;
//C ALG_ID Algid;
//C BYTE *pbOID;
//C DWORD cbOID;
//C } CMS_KEY_INFO,*PCMS_KEY_INFO;
struct _CMS_KEY_INFO
{
DWORD dwVersion;
ALG_ID Algid;
BYTE *pbOID;
DWORD cbOID;
}
alias _CMS_KEY_INFO CMS_KEY_INFO;
alias _CMS_KEY_INFO *PCMS_KEY_INFO;
//C typedef struct _HMAC_Info {
//C ALG_ID HashAlgid;
//C BYTE *pbInnerString;
//C DWORD cbInnerString;
//C BYTE *pbOuterString;
//C DWORD cbOuterString;
//C } HMAC_INFO,*PHMAC_INFO;
struct _HMAC_Info
{
ALG_ID HashAlgid;
BYTE *pbInnerString;
DWORD cbInnerString;
BYTE *pbOuterString;
DWORD cbOuterString;
}
alias _HMAC_Info HMAC_INFO;
alias _HMAC_Info *PHMAC_INFO;
//C typedef struct _SCHANNEL_ALG {
//C DWORD dwUse;
//C ALG_ID Algid;
//C DWORD cBits;
//C DWORD dwFlags;
//C DWORD dwReserved;
//C } SCHANNEL_ALG,*PSCHANNEL_ALG;
struct _SCHANNEL_ALG
{
DWORD dwUse;
ALG_ID Algid;
DWORD cBits;
DWORD dwFlags;
DWORD dwReserved;
}
alias _SCHANNEL_ALG SCHANNEL_ALG;
alias _SCHANNEL_ALG *PSCHANNEL_ALG;
//C typedef struct _PROV_ENUMALGS {
//C ALG_ID aiAlgid;
//C DWORD dwBitLen;
//C DWORD dwNameLen;
//C CHAR szName[20];
//C } PROV_ENUMALGS;
struct _PROV_ENUMALGS
{
ALG_ID aiAlgid;
DWORD dwBitLen;
DWORD dwNameLen;
CHAR [20]szName;
}
alias _PROV_ENUMALGS PROV_ENUMALGS;
//C typedef struct _PROV_ENUMALGS_EX {
//C ALG_ID aiAlgid;
//C DWORD dwDefaultLen;
//C DWORD dwMinLen;
//C DWORD dwMaxLen;
//C DWORD dwProtocols;
//C DWORD dwNameLen;
//C CHAR szName[20];
//C DWORD dwLongNameLen;
//C CHAR szLongName[40];
//C } PROV_ENUMALGS_EX;
struct _PROV_ENUMALGS_EX
{
ALG_ID aiAlgid;
DWORD dwDefaultLen;
DWORD dwMinLen;
DWORD dwMaxLen;
DWORD dwProtocols;
DWORD dwNameLen;
CHAR [20]szName;
DWORD dwLongNameLen;
CHAR [40]szLongName;
}
alias _PROV_ENUMALGS_EX PROV_ENUMALGS_EX;
//C typedef struct _PUBLICKEYSTRUC {
//C BYTE bType;
//C BYTE bVersion;
//C WORD reserved;
//C ALG_ID aiKeyAlg;
//C } BLOBHEADER,PUBLICKEYSTRUC;
struct _PUBLICKEYSTRUC
{
BYTE bType;
BYTE bVersion;
WORD reserved;
ALG_ID aiKeyAlg;
}
alias _PUBLICKEYSTRUC BLOBHEADER;
alias _PUBLICKEYSTRUC PUBLICKEYSTRUC;
//C typedef struct _RSAPUBKEY {
//C DWORD magic;
//C DWORD bitlen;
//C DWORD pubexp;
//C } RSAPUBKEY;
struct _RSAPUBKEY
{
DWORD magic;
DWORD bitlen;
DWORD pubexp;
}
alias _RSAPUBKEY RSAPUBKEY;
//C typedef struct _PUBKEY {
//C DWORD magic;
//C DWORD bitlen;
//C } DHPUBKEY,DSSPUBKEY,KEAPUBKEY,TEKPUBKEY;
struct _PUBKEY
{
DWORD magic;
DWORD bitlen;
}
alias _PUBKEY DHPUBKEY;
alias _PUBKEY DSSPUBKEY;
alias _PUBKEY KEAPUBKEY;
alias _PUBKEY TEKPUBKEY;
//C typedef struct _DSSSEED {
//C DWORD counter;
//C BYTE seed[20];
//C } DSSSEED;
struct _DSSSEED
{
DWORD counter;
BYTE [20]seed;
}
alias _DSSSEED DSSSEED;
//C typedef struct _PUBKEYVER3 {
//C DWORD magic;
//C DWORD bitlenP;
//C DWORD bitlenQ;
//C DWORD bitlenJ;
//C DSSSEED DSSSeed;
//C } DHPUBKEY_VER3,DSSPUBKEY_VER3;
struct _PUBKEYVER3
{
DWORD magic;
DWORD bitlenP;
DWORD bitlenQ;
DWORD bitlenJ;
DSSSEED DSSSeed;
}
alias _PUBKEYVER3 DHPUBKEY_VER3;
alias _PUBKEYVER3 DSSPUBKEY_VER3;
//C typedef struct _PRIVKEYVER3 {
//C DWORD magic;
//C DWORD bitlenP;
//C DWORD bitlenQ;
//C DWORD bitlenJ;
//C DWORD bitlenX;
//C DSSSEED DSSSeed;
//C } DHPRIVKEY_VER3,DSSPRIVKEY_VER3;
struct _PRIVKEYVER3
{
DWORD magic;
DWORD bitlenP;
DWORD bitlenQ;
DWORD bitlenJ;
DWORD bitlenX;
DSSSEED DSSSeed;
}
alias _PRIVKEYVER3 DHPRIVKEY_VER3;
alias _PRIVKEYVER3 DSSPRIVKEY_VER3;
//C typedef struct _KEY_TYPE_SUBTYPE {
//C DWORD dwKeySpec;
//C GUID Type;
//C GUID Subtype;
//C } KEY_TYPE_SUBTYPE,*PKEY_TYPE_SUBTYPE;
struct _KEY_TYPE_SUBTYPE
{
DWORD dwKeySpec;
GUID Type;
GUID Subtype;
}
alias _KEY_TYPE_SUBTYPE KEY_TYPE_SUBTYPE;
alias _KEY_TYPE_SUBTYPE *PKEY_TYPE_SUBTYPE;
//C typedef struct _CERT_FORTEZZA_DATA_PROP {
//C unsigned char SerialNumber[8];
//C int CertIndex;
//C unsigned char CertLabel[36];
//C } CERT_FORTEZZA_DATA_PROP;
struct _CERT_FORTEZZA_DATA_PROP
{
ubyte [8]SerialNumber;
int CertIndex;
ubyte [36]CertLabel;
}
alias _CERT_FORTEZZA_DATA_PROP CERT_FORTEZZA_DATA_PROP;
//C typedef struct _CRYPT_RC4_KEY_STATE {
//C unsigned char Key[16];
//C unsigned char SBox[256];
//C unsigned char i;
//C unsigned char j;
//C } CRYPT_RC4_KEY_STATE,*PCRYPT_RC4_KEY_STATE;
struct _CRYPT_RC4_KEY_STATE
{
ubyte [16]Key;
ubyte [256]SBox;
ubyte i;
ubyte j;
}
alias _CRYPT_RC4_KEY_STATE CRYPT_RC4_KEY_STATE;
alias _CRYPT_RC4_KEY_STATE *PCRYPT_RC4_KEY_STATE;
//C typedef struct _CRYPT_DES_KEY_STATE {
//C unsigned char Key[8];
//C unsigned char IV[8];
//C unsigned char Feedback[8];
//C } CRYPT_DES_KEY_STATE,*PCRYPT_DES_KEY_STATE;
struct _CRYPT_DES_KEY_STATE
{
ubyte [8]Key;
ubyte [8]IV;
ubyte [8]Feedback;
}
alias _CRYPT_DES_KEY_STATE CRYPT_DES_KEY_STATE;
alias _CRYPT_DES_KEY_STATE *PCRYPT_DES_KEY_STATE;
//C typedef struct _CRYPT_3DES_KEY_STATE {
//C unsigned char Key[24];
//C unsigned char IV[8];
//C unsigned char Feedback[8];
//C } CRYPT_3DES_KEY_STATE,*PCRYPT_3DES_KEY_STATE;
struct _CRYPT_3DES_KEY_STATE
{
ubyte [24]Key;
ubyte [8]IV;
ubyte [8]Feedback;
}
alias _CRYPT_3DES_KEY_STATE CRYPT_3DES_KEY_STATE;
alias _CRYPT_3DES_KEY_STATE *PCRYPT_3DES_KEY_STATE;
//C typedef struct _CRYPTOAPI_BLOB {
//C DWORD cbData;
//C BYTE *pbData;
//C } CRYPT_INTEGER_BLOB,*PCRYPT_INTEGER_BLOB,CRYPT_UINT_BLOB,*PCRYPT_UINT_BLOB,CRYPT_OBJID_BLOB,*PCRYPT_OBJID_BLOB,CERT_NAME_BLOB,*PCERT_NAME_BLOB,CERT_RDN_VALUE_BLOB,*PCERT_RDN_VALUE_BLOB,CERT_BLOB,*PCERT_BLOB,CRL_BLOB,*PCRL_BLOB,DATA_BLOB,*PDATA_BLOB,CRYPT_DATA_BLOB,*PCRYPT_DATA_BLOB,CRYPT_HASH_BLOB,*PCRYPT_HASH_BLOB,CRYPT_DIGEST_BLOB,*PCRYPT_DIGEST_BLOB,CRYPT_DER_BLOB,*PCRYPT_DER_BLOB,CRYPT_ATTR_BLOB,*PCRYPT_ATTR_BLOB;
struct _CRYPTOAPI_BLOB
{
DWORD cbData;
BYTE *pbData;
}
alias _CRYPTOAPI_BLOB CRYPT_INTEGER_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_INTEGER_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_UINT_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_UINT_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_OBJID_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_OBJID_BLOB;
alias _CRYPTOAPI_BLOB CERT_NAME_BLOB;
alias _CRYPTOAPI_BLOB *PCERT_NAME_BLOB;
alias _CRYPTOAPI_BLOB CERT_RDN_VALUE_BLOB;
alias _CRYPTOAPI_BLOB *PCERT_RDN_VALUE_BLOB;
alias _CRYPTOAPI_BLOB CERT_BLOB;
alias _CRYPTOAPI_BLOB *PCERT_BLOB;
alias _CRYPTOAPI_BLOB CRL_BLOB;
alias _CRYPTOAPI_BLOB *PCRL_BLOB;
alias _CRYPTOAPI_BLOB DATA_BLOB;
alias _CRYPTOAPI_BLOB *PDATA_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_DATA_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_DATA_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_HASH_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_HASH_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_DIGEST_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_DIGEST_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_DER_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_DER_BLOB;
alias _CRYPTOAPI_BLOB CRYPT_ATTR_BLOB;
alias _CRYPTOAPI_BLOB *PCRYPT_ATTR_BLOB;
//C typedef struct _CMS_DH_KEY_INFO {
//C DWORD dwVersion;
//C ALG_ID Algid;
//C LPSTR pszContentEncObjId;
//C CRYPT_DATA_BLOB PubInfo;
//C void *pReserved;
//C } CMS_DH_KEY_INFO,*PCMS_DH_KEY_INFO;
struct _CMS_DH_KEY_INFO
{
DWORD dwVersion;
ALG_ID Algid;
LPSTR pszContentEncObjId;
CRYPT_DATA_BLOB PubInfo;
void *pReserved;
}
alias _CMS_DH_KEY_INFO CMS_DH_KEY_INFO;
alias _CMS_DH_KEY_INFO *PCMS_DH_KEY_INFO;
//C WINBOOL CryptAcquireContextA(HCRYPTPROV *phProv,LPCSTR szContainer,LPCSTR szProvider,DWORD dwProvType,DWORD dwFlags);
WINBOOL CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR szContainer, LPCSTR szProvider, DWORD dwProvType, DWORD dwFlags);
//C WINBOOL CryptAcquireContextW(HCRYPTPROV *phProv,LPCWSTR szContainer,LPCWSTR szProvider,DWORD dwProvType,DWORD dwFlags);
WINBOOL CryptAcquireContextW(HCRYPTPROV *phProv, LPCWSTR szContainer, LPCWSTR szProvider, DWORD dwProvType, DWORD dwFlags);
//C WINBOOL CryptReleaseContext(HCRYPTPROV hProv,DWORD dwFlags);
WINBOOL CryptReleaseContext(HCRYPTPROV hProv, DWORD dwFlags);
//C WINBOOL CryptGenKey(HCRYPTPROV hProv,ALG_ID Algid,DWORD dwFlags,HCRYPTKEY *phKey);
WINBOOL CryptGenKey(HCRYPTPROV hProv, ALG_ID Algid, DWORD dwFlags, HCRYPTKEY *phKey);
//C WINBOOL CryptDeriveKey(HCRYPTPROV hProv,ALG_ID Algid,HCRYPTHASH hBaseData,DWORD dwFlags,HCRYPTKEY *phKey);
WINBOOL CryptDeriveKey(HCRYPTPROV hProv, ALG_ID Algid, HCRYPTHASH hBaseData, DWORD dwFlags, HCRYPTKEY *phKey);
//C WINBOOL CryptDestroyKey(HCRYPTKEY hKey);
WINBOOL CryptDestroyKey(HCRYPTKEY hKey);
//C WINBOOL CryptSetKeyParam(HCRYPTKEY hKey,DWORD dwParam,const BYTE *pbData,DWORD dwFlags);
WINBOOL CryptSetKeyParam(HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, DWORD dwFlags);
//C WINBOOL CryptGetKeyParam(HCRYPTKEY hKey,DWORD dwParam,BYTE *pbData,DWORD *pdwDataLen,DWORD dwFlags);
WINBOOL CryptGetKeyParam(HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, DWORD *pdwDataLen, DWORD dwFlags);
//C WINBOOL CryptSetHashParam(HCRYPTHASH hHash,DWORD dwParam,const BYTE *pbData,DWORD dwFlags);
WINBOOL CryptSetHashParam(HCRYPTHASH hHash, DWORD dwParam, BYTE *pbData, DWORD dwFlags);
//C WINBOOL CryptGetHashParam(HCRYPTHASH hHash,DWORD dwParam,BYTE *pbData,DWORD *pdwDataLen,DWORD dwFlags);
WINBOOL CryptGetHashParam(HCRYPTHASH hHash, DWORD dwParam, BYTE *pbData, DWORD *pdwDataLen, DWORD dwFlags);
//C WINBOOL CryptSetProvParam(HCRYPTPROV hProv,DWORD dwParam,const BYTE *pbData,DWORD dwFlags);
WINBOOL CryptSetProvParam(HCRYPTPROV hProv, DWORD dwParam, BYTE *pbData, DWORD dwFlags);
//C WINBOOL CryptGetProvParam(HCRYPTPROV hProv,DWORD dwParam,BYTE *pbData,DWORD *pdwDataLen,DWORD dwFlags);
WINBOOL CryptGetProvParam(HCRYPTPROV hProv, DWORD dwParam, BYTE *pbData, DWORD *pdwDataLen, DWORD dwFlags);
//C WINBOOL CryptGenRandom(HCRYPTPROV hProv,DWORD dwLen,BYTE *pbBuffer);
WINBOOL CryptGenRandom(HCRYPTPROV hProv, DWORD dwLen, BYTE *pbBuffer);
//C WINBOOL CryptGetUserKey(HCRYPTPROV hProv,DWORD dwKeySpec,HCRYPTKEY *phUserKey);
WINBOOL CryptGetUserKey(HCRYPTPROV hProv, DWORD dwKeySpec, HCRYPTKEY *phUserKey);
//C WINBOOL CryptExportKey(HCRYPTKEY hKey,HCRYPTKEY hExpKey,DWORD dwBlobType,DWORD dwFlags,BYTE *pbData,DWORD *pdwDataLen);
WINBOOL CryptExportKey(HCRYPTKEY hKey, HCRYPTKEY hExpKey, DWORD dwBlobType, DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen);
//C WINBOOL CryptImportKey(HCRYPTPROV hProv,const BYTE *pbData,DWORD dwDataLen,HCRYPTKEY hPubKey,DWORD dwFlags,HCRYPTKEY *phKey);
WINBOOL CryptImportKey(HCRYPTPROV hProv, BYTE *pbData, DWORD dwDataLen, HCRYPTKEY hPubKey, DWORD dwFlags, HCRYPTKEY *phKey);
//C WINBOOL CryptEncrypt(HCRYPTKEY hKey,HCRYPTHASH hHash,WINBOOL Final,DWORD dwFlags,BYTE *pbData,DWORD *pdwDataLen,DWORD dwBufLen);
WINBOOL CryptEncrypt(HCRYPTKEY hKey, HCRYPTHASH hHash, WINBOOL Final, DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen, DWORD dwBufLen);
//C WINBOOL CryptDecrypt(HCRYPTKEY hKey,HCRYPTHASH hHash,WINBOOL Final,DWORD dwFlags,BYTE *pbData,DWORD *pdwDataLen);
WINBOOL CryptDecrypt(HCRYPTKEY hKey, HCRYPTHASH hHash, WINBOOL Final, DWORD dwFlags, BYTE *pbData, DWORD *pdwDataLen);
//C WINBOOL CryptCreateHash(HCRYPTPROV hProv,ALG_ID Algid,HCRYPTKEY hKey,DWORD dwFlags,HCRYPTHASH *phHash);
WINBOOL CryptCreateHash(HCRYPTPROV hProv, ALG_ID Algid, HCRYPTKEY hKey, DWORD dwFlags, HCRYPTHASH *phHash);
//C WINBOOL CryptHashData(HCRYPTHASH hHash,const BYTE *pbData,DWORD dwDataLen,DWORD dwFlags);
WINBOOL CryptHashData(HCRYPTHASH hHash, BYTE *pbData, DWORD dwDataLen, DWORD dwFlags);
//C WINBOOL CryptHashSessionKey(HCRYPTHASH hHash,HCRYPTKEY hKey,DWORD dwFlags);
WINBOOL CryptHashSessionKey(HCRYPTHASH hHash, HCRYPTKEY hKey, DWORD dwFlags);
//C WINBOOL CryptDestroyHash(HCRYPTHASH hHash);
WINBOOL CryptDestroyHash(HCRYPTHASH hHash);
//C WINBOOL CryptSignHashA(HCRYPTHASH hHash,DWORD dwKeySpec,LPCSTR szDescription,DWORD dwFlags,BYTE *pbSignature,DWORD *pdwSigLen);
WINBOOL CryptSignHashA(HCRYPTHASH hHash, DWORD dwKeySpec, LPCSTR szDescription, DWORD dwFlags, BYTE *pbSignature, DWORD *pdwSigLen);
//C WINBOOL CryptSignHashW(HCRYPTHASH hHash,DWORD dwKeySpec,LPCWSTR szDescription,DWORD dwFlags,BYTE *pbSignature,DWORD *pdwSigLen);
WINBOOL CryptSignHashW(HCRYPTHASH hHash, DWORD dwKeySpec, LPCWSTR szDescription, DWORD dwFlags, BYTE *pbSignature, DWORD *pdwSigLen);
//C WINBOOL CryptVerifySignatureA(HCRYPTHASH hHash,const BYTE *pbSignature,DWORD dwSigLen,HCRYPTKEY hPubKey,LPCSTR szDescription,DWORD dwFlags);
WINBOOL CryptVerifySignatureA(HCRYPTHASH hHash, BYTE *pbSignature, DWORD dwSigLen, HCRYPTKEY hPubKey, LPCSTR szDescription, DWORD dwFlags);
//C WINBOOL CryptVerifySignatureW(HCRYPTHASH hHash,const BYTE *pbSignature,DWORD dwSigLen,HCRYPTKEY hPubKey,LPCWSTR szDescription,DWORD dwFlags);
WINBOOL CryptVerifySignatureW(HCRYPTHASH hHash, BYTE *pbSignature, DWORD dwSigLen, HCRYPTKEY hPubKey, LPCWSTR szDescription, DWORD dwFlags);
//C WINBOOL CryptSetProviderA(LPCSTR pszProvName,DWORD dwProvType);
WINBOOL CryptSetProviderA(LPCSTR pszProvName, DWORD dwProvType);
//C WINBOOL CryptSetProviderW(LPCWSTR pszProvName,DWORD dwProvType);
WINBOOL CryptSetProviderW(LPCWSTR pszProvName, DWORD dwProvType);
//C WINBOOL CryptSetProviderExA(LPCSTR pszProvName,DWORD dwProvType,DWORD *pdwReserved,DWORD dwFlags);
WINBOOL CryptSetProviderExA(LPCSTR pszProvName, DWORD dwProvType, DWORD *pdwReserved, DWORD dwFlags);
//C WINBOOL CryptSetProviderExW(LPCWSTR pszProvName,DWORD dwProvType,DWORD *pdwReserved,DWORD dwFlags);
WINBOOL CryptSetProviderExW(LPCWSTR pszProvName, DWORD dwProvType, DWORD *pdwReserved, DWORD dwFlags);
//C WINBOOL CryptGetDefaultProviderA(DWORD dwProvType,DWORD *pdwReserved,DWORD dwFlags,LPSTR pszProvName,DWORD *pcbProvName);
WINBOOL CryptGetDefaultProviderA(DWORD dwProvType, DWORD *pdwReserved, DWORD dwFlags, LPSTR pszProvName, DWORD *pcbProvName);
//C WINBOOL CryptGetDefaultProviderW(DWORD dwProvType,DWORD *pdwReserved,DWORD dwFlags,LPWSTR pszProvName,DWORD *pcbProvName);
WINBOOL CryptGetDefaultProviderW(DWORD dwProvType, DWORD *pdwReserved, DWORD dwFlags, LPWSTR pszProvName, DWORD *pcbProvName);
//C WINBOOL CryptEnumProviderTypesA(DWORD dwIndex,DWORD *pdwReserved,DWORD dwFlags,DWORD *pdwProvType,LPSTR szTypeName,DWORD *pcbTypeName);
WINBOOL CryptEnumProviderTypesA(DWORD dwIndex, DWORD *pdwReserved, DWORD dwFlags, DWORD *pdwProvType, LPSTR szTypeName, DWORD *pcbTypeName);
//C WINBOOL CryptEnumProviderTypesW(DWORD dwIndex,DWORD *pdwReserved,DWORD dwFlags,DWORD *pdwProvType,LPWSTR szTypeName,DWORD *pcbTypeName);
WINBOOL CryptEnumProviderTypesW(DWORD dwIndex, DWORD *pdwReserved, DWORD dwFlags, DWORD *pdwProvType, LPWSTR szTypeName, DWORD *pcbTypeName);
//C WINBOOL CryptEnumProvidersA(DWORD dwIndex,DWORD *pdwReserved,DWORD dwFlags,DWORD *pdwProvType,LPSTR szProvName,DWORD *pcbProvName);
WINBOOL CryptEnumProvidersA(DWORD dwIndex, DWORD *pdwReserved, DWORD dwFlags, DWORD *pdwProvType, LPSTR szProvName, DWORD *pcbProvName);
//C WINBOOL CryptEnumProvidersW(DWORD dwIndex,DWORD *pdwReserved,DWORD dwFlags,DWORD *pdwProvType,LPWSTR szProvName,DWORD *pcbProvName);
WINBOOL CryptEnumProvidersW(DWORD dwIndex, DWORD *pdwReserved, DWORD dwFlags, DWORD *pdwProvType, LPWSTR szProvName, DWORD *pcbProvName);
//C WINBOOL CryptContextAddRef(HCRYPTPROV hProv,DWORD *pdwReserved,DWORD dwFlags);
WINBOOL CryptContextAddRef(HCRYPTPROV hProv, DWORD *pdwReserved, DWORD dwFlags);
//C WINBOOL CryptDuplicateKey(HCRYPTKEY hKey,DWORD *pdwReserved,DWORD dwFlags,HCRYPTKEY *phKey);
WINBOOL CryptDuplicateKey(HCRYPTKEY hKey, DWORD *pdwReserved, DWORD dwFlags, HCRYPTKEY *phKey);
//C WINBOOL CryptDuplicateHash(HCRYPTHASH hHash,DWORD *pdwReserved,DWORD dwFlags,HCRYPTHASH *phHash);
WINBOOL CryptDuplicateHash(HCRYPTHASH hHash, DWORD *pdwReserved, DWORD dwFlags, HCRYPTHASH *phHash);
//C WINBOOL GetEncSChannel(BYTE **pData,DWORD *dwDecSize);
WINBOOL GetEncSChannel(BYTE **pData, DWORD *dwDecSize);
//C typedef struct _CRYPT_BIT_BLOB {
//C DWORD cbData;
//C BYTE *pbData;
//C DWORD cUnusedBits;
//C } CRYPT_BIT_BLOB,*PCRYPT_BIT_BLOB;
struct _CRYPT_BIT_BLOB
{
DWORD cbData;
BYTE *pbData;
DWORD cUnusedBits;
}
alias _CRYPT_BIT_BLOB CRYPT_BIT_BLOB;
alias _CRYPT_BIT_BLOB *PCRYPT_BIT_BLOB;
//C typedef struct _CRYPT_ALGORITHM_IDENTIFIER {
//C LPSTR pszObjId;
//C CRYPT_OBJID_BLOB Parameters;
//C } CRYPT_ALGORITHM_IDENTIFIER,*PCRYPT_ALGORITHM_IDENTIFIER;
struct _CRYPT_ALGORITHM_IDENTIFIER
{
LPSTR pszObjId;
CRYPT_OBJID_BLOB Parameters;
}
alias _CRYPT_ALGORITHM_IDENTIFIER CRYPT_ALGORITHM_IDENTIFIER;
alias _CRYPT_ALGORITHM_IDENTIFIER *PCRYPT_ALGORITHM_IDENTIFIER;
//C typedef struct _CRYPT_OBJID_TABLE {
//C DWORD dwAlgId;
//C LPCSTR pszObjId;
//C } CRYPT_OBJID_TABLE,*PCRYPT_OBJID_TABLE;
struct _CRYPT_OBJID_TABLE
{
DWORD dwAlgId;
LPCSTR pszObjId;
}
alias _CRYPT_OBJID_TABLE CRYPT_OBJID_TABLE;
alias _CRYPT_OBJID_TABLE *PCRYPT_OBJID_TABLE;
//C typedef struct _CRYPT_HASH_INFO {
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C CRYPT_HASH_BLOB Hash;
//C } CRYPT_HASH_INFO,*PCRYPT_HASH_INFO;
struct _CRYPT_HASH_INFO
{
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
CRYPT_HASH_BLOB Hash;
}
alias _CRYPT_HASH_INFO CRYPT_HASH_INFO;
alias _CRYPT_HASH_INFO *PCRYPT_HASH_INFO;
//C typedef struct _CERT_EXTENSION {
//C LPSTR pszObjId;
//C WINBOOL fCritical;
//C CRYPT_OBJID_BLOB Value;
//C } CERT_EXTENSION,*PCERT_EXTENSION;
struct _CERT_EXTENSION
{
LPSTR pszObjId;
WINBOOL fCritical;
CRYPT_OBJID_BLOB Value;
}
alias _CERT_EXTENSION CERT_EXTENSION;
alias _CERT_EXTENSION *PCERT_EXTENSION;
//C typedef struct _CRYPT_ATTRIBUTE_TYPE_VALUE {
//C LPSTR pszObjId;
//C CRYPT_OBJID_BLOB Value;
//C } CRYPT_ATTRIBUTE_TYPE_VALUE,*PCRYPT_ATTRIBUTE_TYPE_VALUE;
struct _CRYPT_ATTRIBUTE_TYPE_VALUE
{
LPSTR pszObjId;
CRYPT_OBJID_BLOB Value;
}
alias _CRYPT_ATTRIBUTE_TYPE_VALUE CRYPT_ATTRIBUTE_TYPE_VALUE;
alias _CRYPT_ATTRIBUTE_TYPE_VALUE *PCRYPT_ATTRIBUTE_TYPE_VALUE;
//C typedef struct _CRYPT_ATTRIBUTE {
//C LPSTR pszObjId;
//C DWORD cValue;
//C PCRYPT_ATTR_BLOB rgValue;
//C } CRYPT_ATTRIBUTE,*PCRYPT_ATTRIBUTE;
struct _CRYPT_ATTRIBUTE
{
LPSTR pszObjId;
DWORD cValue;
PCRYPT_ATTR_BLOB rgValue;
}
alias _CRYPT_ATTRIBUTE CRYPT_ATTRIBUTE;
alias _CRYPT_ATTRIBUTE *PCRYPT_ATTRIBUTE;
//C typedef struct _CRYPT_ATTRIBUTES {
//C DWORD cAttr;
//C PCRYPT_ATTRIBUTE rgAttr;
//C } CRYPT_ATTRIBUTES,*PCRYPT_ATTRIBUTES;
struct _CRYPT_ATTRIBUTES
{
DWORD cAttr;
PCRYPT_ATTRIBUTE rgAttr;
}
alias _CRYPT_ATTRIBUTES CRYPT_ATTRIBUTES;
alias _CRYPT_ATTRIBUTES *PCRYPT_ATTRIBUTES;
//C typedef struct _CERT_RDN_ATTR {
//C LPSTR pszObjId;
//C DWORD dwValueType;
//C CERT_RDN_VALUE_BLOB Value;
//C } CERT_RDN_ATTR,*PCERT_RDN_ATTR;
struct _CERT_RDN_ATTR
{
LPSTR pszObjId;
DWORD dwValueType;
CERT_RDN_VALUE_BLOB Value;
}
alias _CERT_RDN_ATTR CERT_RDN_ATTR;
alias _CERT_RDN_ATTR *PCERT_RDN_ATTR;
//C typedef struct _CERT_RDN {
//C DWORD cRDNAttr;
//C PCERT_RDN_ATTR rgRDNAttr;
//C } CERT_RDN,*PCERT_RDN;
struct _CERT_RDN
{
DWORD cRDNAttr;
PCERT_RDN_ATTR rgRDNAttr;
}
alias _CERT_RDN CERT_RDN;
alias _CERT_RDN *PCERT_RDN;
//C typedef struct _CERT_NAME_INFO {
//C DWORD cRDN;
//C PCERT_RDN rgRDN;
//C } CERT_NAME_INFO,*PCERT_NAME_INFO;
struct _CERT_NAME_INFO
{
DWORD cRDN;
PCERT_RDN rgRDN;
}
alias _CERT_NAME_INFO CERT_NAME_INFO;
alias _CERT_NAME_INFO *PCERT_NAME_INFO;
//C typedef struct _CERT_NAME_VALUE {
//C DWORD dwValueType;
//C CERT_RDN_VALUE_BLOB Value;
//C } CERT_NAME_VALUE,*PCERT_NAME_VALUE;
struct _CERT_NAME_VALUE
{
DWORD dwValueType;
CERT_RDN_VALUE_BLOB Value;
}
alias _CERT_NAME_VALUE CERT_NAME_VALUE;
alias _CERT_NAME_VALUE *PCERT_NAME_VALUE;
//C typedef struct _CERT_PUBLIC_KEY_INFO {
//C CRYPT_ALGORITHM_IDENTIFIER Algorithm;
//C CRYPT_BIT_BLOB PublicKey;
//C } CERT_PUBLIC_KEY_INFO,*PCERT_PUBLIC_KEY_INFO;
struct _CERT_PUBLIC_KEY_INFO
{
CRYPT_ALGORITHM_IDENTIFIER Algorithm;
CRYPT_BIT_BLOB PublicKey;
}
alias _CERT_PUBLIC_KEY_INFO CERT_PUBLIC_KEY_INFO;
alias _CERT_PUBLIC_KEY_INFO *PCERT_PUBLIC_KEY_INFO;
//C typedef struct _CRYPT_PRIVATE_KEY_INFO{
//C DWORD Version;
//C CRYPT_ALGORITHM_IDENTIFIER Algorithm;
//C CRYPT_DER_BLOB PrivateKey;
//C PCRYPT_ATTRIBUTES pAttributes;
//C } CRYPT_PRIVATE_KEY_INFO,*PCRYPT_PRIVATE_KEY_INFO;
struct _CRYPT_PRIVATE_KEY_INFO
{
DWORD Version;
CRYPT_ALGORITHM_IDENTIFIER Algorithm;
CRYPT_DER_BLOB PrivateKey;
PCRYPT_ATTRIBUTES pAttributes;
}
alias _CRYPT_PRIVATE_KEY_INFO CRYPT_PRIVATE_KEY_INFO;
alias _CRYPT_PRIVATE_KEY_INFO *PCRYPT_PRIVATE_KEY_INFO;
//C typedef struct _CRYPT_ENCRYPTED_PRIVATE_KEY_INFO {
//C CRYPT_ALGORITHM_IDENTIFIER EncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedPrivateKey;
//C } CRYPT_ENCRYPTED_PRIVATE_KEY_INFO,*PCRYPT_ENCRYPTED_PRIVATE_KEY_INFO;
struct _CRYPT_ENCRYPTED_PRIVATE_KEY_INFO
{
CRYPT_ALGORITHM_IDENTIFIER EncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedPrivateKey;
}
alias _CRYPT_ENCRYPTED_PRIVATE_KEY_INFO CRYPT_ENCRYPTED_PRIVATE_KEY_INFO;
alias _CRYPT_ENCRYPTED_PRIVATE_KEY_INFO *PCRYPT_ENCRYPTED_PRIVATE_KEY_INFO;
//C typedef WINBOOL ( *PCRYPT_DECRYPT_PRIVATE_KEY_FUNC)(CRYPT_ALGORITHM_IDENTIFIER Algorithm,CRYPT_DATA_BLOB EncryptedPrivateKey,BYTE *pbClearTextKey,DWORD *pcbClearTextKey,LPVOID pVoidDecryptFunc);
alias WINBOOL function(CRYPT_ALGORITHM_IDENTIFIER Algorithm, CRYPT_DATA_BLOB EncryptedPrivateKey, BYTE *pbClearTextKey, DWORD *pcbClearTextKey, LPVOID pVoidDecryptFunc)PCRYPT_DECRYPT_PRIVATE_KEY_FUNC;
//C typedef WINBOOL ( *PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC)(CRYPT_ALGORITHM_IDENTIFIER *pAlgorithm,CRYPT_DATA_BLOB *pClearTextPrivateKey,BYTE *pbEncryptedKey,DWORD *pcbEncryptedKey,LPVOID pVoidEncryptFunc);
alias WINBOOL function(CRYPT_ALGORITHM_IDENTIFIER *pAlgorithm, CRYPT_DATA_BLOB *pClearTextPrivateKey, BYTE *pbEncryptedKey, DWORD *pcbEncryptedKey, LPVOID pVoidEncryptFunc)PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC;
//C typedef WINBOOL ( *PCRYPT_RESOLVE_HCRYPTPROV_FUNC)(CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo,HCRYPTPROV *phCryptProv,LPVOID pVoidResolveFunc);
alias WINBOOL function(CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo, HCRYPTPROV *phCryptProv, LPVOID pVoidResolveFunc)PCRYPT_RESOLVE_HCRYPTPROV_FUNC;
//C typedef struct _CRYPT_PKCS8_IMPORT_PARAMS {
//C CRYPT_DIGEST_BLOB PrivateKey;
//C PCRYPT_RESOLVE_HCRYPTPROV_FUNC pResolvehCryptProvFunc;
//C LPVOID pVoidResolveFunc;
//C PCRYPT_DECRYPT_PRIVATE_KEY_FUNC pDecryptPrivateKeyFunc;
//C LPVOID pVoidDecryptFunc;
//C } CRYPT_PKCS8_IMPORT_PARAMS,*PCRYPT_PKCS8_IMPORT_PARAMS,CRYPT_PRIVATE_KEY_BLOB_AND_PARAMS,*PCRYPT_PRIVATE_KEY_BLOB_AND_PARAMS;
struct _CRYPT_PKCS8_IMPORT_PARAMS
{
CRYPT_DIGEST_BLOB PrivateKey;
PCRYPT_RESOLVE_HCRYPTPROV_FUNC pResolvehCryptProvFunc;
LPVOID pVoidResolveFunc;
PCRYPT_DECRYPT_PRIVATE_KEY_FUNC pDecryptPrivateKeyFunc;
LPVOID pVoidDecryptFunc;
}
alias _CRYPT_PKCS8_IMPORT_PARAMS CRYPT_PKCS8_IMPORT_PARAMS;
alias _CRYPT_PKCS8_IMPORT_PARAMS *PCRYPT_PKCS8_IMPORT_PARAMS;
alias _CRYPT_PKCS8_IMPORT_PARAMS CRYPT_PRIVATE_KEY_BLOB_AND_PARAMS;
alias _CRYPT_PKCS8_IMPORT_PARAMS *PCRYPT_PRIVATE_KEY_BLOB_AND_PARAMS;
//C typedef struct _CRYPT_PKCS8_EXPORT_PARAMS {
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C LPSTR pszPrivateKeyObjId;
//C PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC pEncryptPrivateKeyFunc;
//C LPVOID pVoidEncryptFunc;
//C } CRYPT_PKCS8_EXPORT_PARAMS,*PCRYPT_PKCS8_EXPORT_PARAMS;
struct _CRYPT_PKCS8_EXPORT_PARAMS
{
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
LPSTR pszPrivateKeyObjId;
PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC pEncryptPrivateKeyFunc;
LPVOID pVoidEncryptFunc;
}
alias _CRYPT_PKCS8_EXPORT_PARAMS CRYPT_PKCS8_EXPORT_PARAMS;
alias _CRYPT_PKCS8_EXPORT_PARAMS *PCRYPT_PKCS8_EXPORT_PARAMS;
//C typedef struct _CERT_INFO {
//C DWORD dwVersion;
//C CRYPT_INTEGER_BLOB SerialNumber;
//C CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
//C CERT_NAME_BLOB Issuer;
//C FILETIME NotBefore;
//C FILETIME NotAfter;
//C CERT_NAME_BLOB Subject;
//C CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
//C CRYPT_BIT_BLOB IssuerUniqueId;
//C CRYPT_BIT_BLOB SubjectUniqueId;
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CERT_INFO,*PCERT_INFO;
struct _CERT_INFO
{
DWORD dwVersion;
CRYPT_INTEGER_BLOB SerialNumber;
CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
CERT_NAME_BLOB Issuer;
FILETIME NotBefore;
FILETIME NotAfter;
CERT_NAME_BLOB Subject;
CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
CRYPT_BIT_BLOB IssuerUniqueId;
CRYPT_BIT_BLOB SubjectUniqueId;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CERT_INFO CERT_INFO;
alias _CERT_INFO *PCERT_INFO;
//C typedef struct _CRL_ENTRY {
//C CRYPT_INTEGER_BLOB SerialNumber;
//C FILETIME RevocationDate;
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CRL_ENTRY,*PCRL_ENTRY;
struct _CRL_ENTRY
{
CRYPT_INTEGER_BLOB SerialNumber;
FILETIME RevocationDate;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CRL_ENTRY CRL_ENTRY;
alias _CRL_ENTRY *PCRL_ENTRY;
//C typedef struct _CRL_INFO {
//C DWORD dwVersion;
//C CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
//C CERT_NAME_BLOB Issuer;
//C FILETIME ThisUpdate;
//C FILETIME NextUpdate;
//C DWORD cCRLEntry;
//C PCRL_ENTRY rgCRLEntry;
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CRL_INFO,*PCRL_INFO;
struct _CRL_INFO
{
DWORD dwVersion;
CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
CERT_NAME_BLOB Issuer;
FILETIME ThisUpdate;
FILETIME NextUpdate;
DWORD cCRLEntry;
PCRL_ENTRY rgCRLEntry;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CRL_INFO CRL_INFO;
alias _CRL_INFO *PCRL_INFO;
//C typedef struct _CERT_REQUEST_INFO {
//C DWORD dwVersion;
//C CERT_NAME_BLOB Subject;
//C CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
//C DWORD cAttribute;
//C PCRYPT_ATTRIBUTE rgAttribute;
//C } CERT_REQUEST_INFO,*PCERT_REQUEST_INFO;
struct _CERT_REQUEST_INFO
{
DWORD dwVersion;
CERT_NAME_BLOB Subject;
CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
DWORD cAttribute;
PCRYPT_ATTRIBUTE rgAttribute;
}
alias _CERT_REQUEST_INFO CERT_REQUEST_INFO;
alias _CERT_REQUEST_INFO *PCERT_REQUEST_INFO;
//C typedef struct _CERT_KEYGEN_REQUEST_INFO {
//C DWORD dwVersion;
//C CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
//C LPWSTR pwszChallengeString;
//C } CERT_KEYGEN_REQUEST_INFO,*PCERT_KEYGEN_REQUEST_INFO;
struct _CERT_KEYGEN_REQUEST_INFO
{
DWORD dwVersion;
CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
LPWSTR pwszChallengeString;
}
alias _CERT_KEYGEN_REQUEST_INFO CERT_KEYGEN_REQUEST_INFO;
alias _CERT_KEYGEN_REQUEST_INFO *PCERT_KEYGEN_REQUEST_INFO;
//C typedef struct _CERT_SIGNED_CONTENT_INFO {
//C CRYPT_DER_BLOB ToBeSigned;
//C CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
//C CRYPT_BIT_BLOB Signature;
//C } CERT_SIGNED_CONTENT_INFO,*PCERT_SIGNED_CONTENT_INFO;
struct _CERT_SIGNED_CONTENT_INFO
{
CRYPT_DER_BLOB ToBeSigned;
CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
CRYPT_BIT_BLOB Signature;
}
alias _CERT_SIGNED_CONTENT_INFO CERT_SIGNED_CONTENT_INFO;
alias _CERT_SIGNED_CONTENT_INFO *PCERT_SIGNED_CONTENT_INFO;
//C typedef struct _CTL_USAGE {
//C DWORD cUsageIdentifier;
//C LPSTR *rgpszUsageIdentifier;
//C } CTL_USAGE,*PCTL_USAGE,CERT_ENHKEY_USAGE,*PCERT_ENHKEY_USAGE;
struct _CTL_USAGE
{
DWORD cUsageIdentifier;
LPSTR *rgpszUsageIdentifier;
}
alias _CTL_USAGE CTL_USAGE;
alias _CTL_USAGE *PCTL_USAGE;
alias _CTL_USAGE CERT_ENHKEY_USAGE;
alias _CTL_USAGE *PCERT_ENHKEY_USAGE;
//C typedef struct _CTL_ENTRY {
//C CRYPT_DATA_BLOB SubjectIdentifier;
//C DWORD cAttribute;
//C PCRYPT_ATTRIBUTE rgAttribute;
//C } CTL_ENTRY,*PCTL_ENTRY;
struct _CTL_ENTRY
{
CRYPT_DATA_BLOB SubjectIdentifier;
DWORD cAttribute;
PCRYPT_ATTRIBUTE rgAttribute;
}
alias _CTL_ENTRY CTL_ENTRY;
alias _CTL_ENTRY *PCTL_ENTRY;
//C typedef struct _CTL_INFO {
//C DWORD dwVersion;
//C CTL_USAGE SubjectUsage;
//C CRYPT_DATA_BLOB ListIdentifier;
//C CRYPT_INTEGER_BLOB SequenceNumber;
//C FILETIME ThisUpdate;
//C FILETIME NextUpdate;
//C CRYPT_ALGORITHM_IDENTIFIER SubjectAlgorithm;
//C DWORD cCTLEntry;
//C PCTL_ENTRY rgCTLEntry;
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CTL_INFO,*PCTL_INFO;
struct _CTL_INFO
{
DWORD dwVersion;
CTL_USAGE SubjectUsage;
CRYPT_DATA_BLOB ListIdentifier;
CRYPT_INTEGER_BLOB SequenceNumber;
FILETIME ThisUpdate;
FILETIME NextUpdate;
CRYPT_ALGORITHM_IDENTIFIER SubjectAlgorithm;
DWORD cCTLEntry;
PCTL_ENTRY rgCTLEntry;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CTL_INFO CTL_INFO;
alias _CTL_INFO *PCTL_INFO;
//C typedef struct _CRYPT_TIME_STAMP_REQUEST_INFO {
//C LPSTR pszTimeStampAlgorithm;
//C LPSTR pszContentType;
//C CRYPT_OBJID_BLOB Content;
//C DWORD cAttribute;
//C PCRYPT_ATTRIBUTE rgAttribute;
//C } CRYPT_TIME_STAMP_REQUEST_INFO,*PCRYPT_TIME_STAMP_REQUEST_INFO;
struct _CRYPT_TIME_STAMP_REQUEST_INFO
{
LPSTR pszTimeStampAlgorithm;
LPSTR pszContentType;
CRYPT_OBJID_BLOB Content;
DWORD cAttribute;
PCRYPT_ATTRIBUTE rgAttribute;
}
alias _CRYPT_TIME_STAMP_REQUEST_INFO CRYPT_TIME_STAMP_REQUEST_INFO;
alias _CRYPT_TIME_STAMP_REQUEST_INFO *PCRYPT_TIME_STAMP_REQUEST_INFO;
//C typedef struct _CRYPT_ENROLLMENT_NAME_VALUE_PAIR {
//C LPWSTR pwszName;
//C LPWSTR pwszValue;
//C } CRYPT_ENROLLMENT_NAME_VALUE_PAIR,*PCRYPT_ENROLLMENT_NAME_VALUE_PAIR;
struct _CRYPT_ENROLLMENT_NAME_VALUE_PAIR
{
LPWSTR pwszName;
LPWSTR pwszValue;
}
alias _CRYPT_ENROLLMENT_NAME_VALUE_PAIR CRYPT_ENROLLMENT_NAME_VALUE_PAIR;
alias _CRYPT_ENROLLMENT_NAME_VALUE_PAIR *PCRYPT_ENROLLMENT_NAME_VALUE_PAIR;
//C typedef struct _CRYPT_CSP_PROVIDER {
//C DWORD dwKeySpec;
//C LPWSTR pwszProviderName;
//C CRYPT_BIT_BLOB Signature;
//C } CRYPT_CSP_PROVIDER,*PCRYPT_CSP_PROVIDER;
struct _CRYPT_CSP_PROVIDER
{
DWORD dwKeySpec;
LPWSTR pwszProviderName;
CRYPT_BIT_BLOB Signature;
}
alias _CRYPT_CSP_PROVIDER CRYPT_CSP_PROVIDER;
alias _CRYPT_CSP_PROVIDER *PCRYPT_CSP_PROVIDER;
//C WINBOOL CryptFormatObject(DWORD dwCertEncodingType,DWORD dwFormatType,DWORD dwFormatStrType,void *pFormatStruct,LPCSTR lpszStructType,const BYTE *pbEncoded,DWORD cbEncoded,void *pbFormat,DWORD *pcbFormat);
WINBOOL CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType, DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType, BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat);
//C typedef LPVOID ( *PFN_CRYPT_ALLOC)(size_t cbSize);
alias LPVOID function(size_t cbSize)PFN_CRYPT_ALLOC;
//C typedef void ( *PFN_CRYPT_FREE)(LPVOID pv);
alias void function(LPVOID pv)PFN_CRYPT_FREE;
//C typedef struct _CRYPT_ENCODE_PARA {
//C DWORD cbSize;
//C PFN_CRYPT_ALLOC pfnAlloc;
//C PFN_CRYPT_FREE pfnFree;
//C } CRYPT_ENCODE_PARA,*PCRYPT_ENCODE_PARA;
struct _CRYPT_ENCODE_PARA
{
DWORD cbSize;
PFN_CRYPT_ALLOC pfnAlloc;
PFN_CRYPT_FREE pfnFree;
}
alias _CRYPT_ENCODE_PARA CRYPT_ENCODE_PARA;
alias _CRYPT_ENCODE_PARA *PCRYPT_ENCODE_PARA;
//C WINBOOL CryptEncodeObjectEx(DWORD dwCertEncodingType,LPCSTR lpszStructType,const void *pvStructInfo,DWORD dwFlags,PCRYPT_ENCODE_PARA pEncodePara,void *pvEncoded,DWORD *pcbEncoded);
WINBOOL CryptEncodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType, void *pvStructInfo, DWORD dwFlags, PCRYPT_ENCODE_PARA pEncodePara, void *pvEncoded, DWORD *pcbEncoded);
//C WINBOOL CryptEncodeObject(DWORD dwCertEncodingType,LPCSTR lpszStructType,const void *pvStructInfo,BYTE *pbEncoded,DWORD *pcbEncoded);
WINBOOL CryptEncodeObject(DWORD dwCertEncodingType, LPCSTR lpszStructType, void *pvStructInfo, BYTE *pbEncoded, DWORD *pcbEncoded);
//C typedef struct _CRYPT_DECODE_PARA {
//C DWORD cbSize;
//C PFN_CRYPT_ALLOC pfnAlloc;
//C PFN_CRYPT_FREE pfnFree;
//C } CRYPT_DECODE_PARA,*PCRYPT_DECODE_PARA;
struct _CRYPT_DECODE_PARA
{
DWORD cbSize;
PFN_CRYPT_ALLOC pfnAlloc;
PFN_CRYPT_FREE pfnFree;
}
alias _CRYPT_DECODE_PARA CRYPT_DECODE_PARA;
alias _CRYPT_DECODE_PARA *PCRYPT_DECODE_PARA;
//C WINBOOL CryptDecodeObjectEx(DWORD dwCertEncodingType,LPCSTR lpszStructType,const BYTE *pbEncoded,DWORD cbEncoded,DWORD dwFlags,PCRYPT_DECODE_PARA pDecodePara,void *pvStructInfo,DWORD *pcbStructInfo);
WINBOOL CryptDecodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType, BYTE *pbEncoded, DWORD cbEncoded, DWORD dwFlags, PCRYPT_DECODE_PARA pDecodePara, void *pvStructInfo, DWORD *pcbStructInfo);
//C WINBOOL CryptDecodeObject(DWORD dwCertEncodingType,LPCSTR lpszStructType,const BYTE *pbEncoded,DWORD cbEncoded,DWORD dwFlags,void *pvStructInfo,DWORD *pcbStructInfo);
WINBOOL CryptDecodeObject(DWORD dwCertEncodingType, LPCSTR lpszStructType, BYTE *pbEncoded, DWORD cbEncoded, DWORD dwFlags, void *pvStructInfo, DWORD *pcbStructInfo);
//C typedef struct _CERT_EXTENSIONS {
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CERT_EXTENSIONS,*PCERT_EXTENSIONS;
struct _CERT_EXTENSIONS
{
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CERT_EXTENSIONS CERT_EXTENSIONS;
alias _CERT_EXTENSIONS *PCERT_EXTENSIONS;
//C typedef struct _CERT_AUTHORITY_KEY_ID_INFO {
//C CRYPT_DATA_BLOB KeyId;
//C CERT_NAME_BLOB CertIssuer;
//C CRYPT_INTEGER_BLOB CertSerialNumber;
//C } CERT_AUTHORITY_KEY_ID_INFO,*PCERT_AUTHORITY_KEY_ID_INFO;
struct _CERT_AUTHORITY_KEY_ID_INFO
{
CRYPT_DATA_BLOB KeyId;
CERT_NAME_BLOB CertIssuer;
CRYPT_INTEGER_BLOB CertSerialNumber;
}
alias _CERT_AUTHORITY_KEY_ID_INFO CERT_AUTHORITY_KEY_ID_INFO;
alias _CERT_AUTHORITY_KEY_ID_INFO *PCERT_AUTHORITY_KEY_ID_INFO;
//C typedef struct _CERT_PRIVATE_KEY_VALIDITY {
//C FILETIME NotBefore;
//C FILETIME NotAfter;
//C } CERT_PRIVATE_KEY_VALIDITY,*PCERT_PRIVATE_KEY_VALIDITY;
struct _CERT_PRIVATE_KEY_VALIDITY
{
FILETIME NotBefore;
FILETIME NotAfter;
}
alias _CERT_PRIVATE_KEY_VALIDITY CERT_PRIVATE_KEY_VALIDITY;
alias _CERT_PRIVATE_KEY_VALIDITY *PCERT_PRIVATE_KEY_VALIDITY;
//C typedef struct _CERT_KEY_ATTRIBUTES_INFO {
//C CRYPT_DATA_BLOB KeyId;
//C CRYPT_BIT_BLOB IntendedKeyUsage;
//C PCERT_PRIVATE_KEY_VALIDITY pPrivateKeyUsagePeriod;
//C } CERT_KEY_ATTRIBUTES_INFO,*PCERT_KEY_ATTRIBUTES_INFO;
struct _CERT_KEY_ATTRIBUTES_INFO
{
CRYPT_DATA_BLOB KeyId;
CRYPT_BIT_BLOB IntendedKeyUsage;
PCERT_PRIVATE_KEY_VALIDITY pPrivateKeyUsagePeriod;
}
alias _CERT_KEY_ATTRIBUTES_INFO CERT_KEY_ATTRIBUTES_INFO;
alias _CERT_KEY_ATTRIBUTES_INFO *PCERT_KEY_ATTRIBUTES_INFO;
//C typedef struct _CERT_POLICY_ID {
//C DWORD cCertPolicyElementId;
//C LPSTR *rgpszCertPolicyElementId;
//C } CERT_POLICY_ID,*PCERT_POLICY_ID;
struct _CERT_POLICY_ID
{
DWORD cCertPolicyElementId;
LPSTR *rgpszCertPolicyElementId;
}
alias _CERT_POLICY_ID CERT_POLICY_ID;
alias _CERT_POLICY_ID *PCERT_POLICY_ID;
//C typedef struct _CERT_KEY_USAGE_RESTRICTION_INFO {
//C DWORD cCertPolicyId;
//C PCERT_POLICY_ID rgCertPolicyId;
//C CRYPT_BIT_BLOB RestrictedKeyUsage;
//C } CERT_KEY_USAGE_RESTRICTION_INFO,*PCERT_KEY_USAGE_RESTRICTION_INFO;
struct _CERT_KEY_USAGE_RESTRICTION_INFO
{
DWORD cCertPolicyId;
PCERT_POLICY_ID rgCertPolicyId;
CRYPT_BIT_BLOB RestrictedKeyUsage;
}
alias _CERT_KEY_USAGE_RESTRICTION_INFO CERT_KEY_USAGE_RESTRICTION_INFO;
alias _CERT_KEY_USAGE_RESTRICTION_INFO *PCERT_KEY_USAGE_RESTRICTION_INFO;
//C typedef struct _CERT_OTHER_NAME {
//C LPSTR pszObjId;
//C CRYPT_OBJID_BLOB Value;
//C } CERT_OTHER_NAME,*PCERT_OTHER_NAME;
struct _CERT_OTHER_NAME
{
LPSTR pszObjId;
CRYPT_OBJID_BLOB Value;
}
alias _CERT_OTHER_NAME CERT_OTHER_NAME;
alias _CERT_OTHER_NAME *PCERT_OTHER_NAME;
//C typedef struct _CERT_ALT_NAME_ENTRY {
//C DWORD dwAltNameChoice;
//C union {
//C PCERT_OTHER_NAME pOtherName;
//C LPWSTR pwszRfc822Name;
//C LPWSTR pwszDNSName;
//C CERT_NAME_BLOB DirectoryName;
//C LPWSTR pwszURL;
//C CRYPT_DATA_BLOB IPAddress;
//C LPSTR pszRegisteredID;
//C };
union _N134
{
PCERT_OTHER_NAME pOtherName;
LPWSTR pwszRfc822Name;
LPWSTR pwszDNSName;
CERT_NAME_BLOB DirectoryName;
LPWSTR pwszURL;
CRYPT_DATA_BLOB IPAddress;
LPSTR pszRegisteredID;
}
//C } CERT_ALT_NAME_ENTRY,*PCERT_ALT_NAME_ENTRY;
struct _CERT_ALT_NAME_ENTRY
{
DWORD dwAltNameChoice;
PCERT_OTHER_NAME pOtherName;
LPWSTR pwszRfc822Name;
LPWSTR pwszDNSName;
CERT_NAME_BLOB DirectoryName;
LPWSTR pwszURL;
CRYPT_DATA_BLOB IPAddress;
LPSTR pszRegisteredID;
}
alias _CERT_ALT_NAME_ENTRY CERT_ALT_NAME_ENTRY;
alias _CERT_ALT_NAME_ENTRY *PCERT_ALT_NAME_ENTRY;
//C typedef struct _CERT_ALT_NAME_INFO {
//C DWORD cAltEntry;
//C PCERT_ALT_NAME_ENTRY rgAltEntry;
//C } CERT_ALT_NAME_INFO,*PCERT_ALT_NAME_INFO;
struct _CERT_ALT_NAME_INFO
{
DWORD cAltEntry;
PCERT_ALT_NAME_ENTRY rgAltEntry;
}
alias _CERT_ALT_NAME_INFO CERT_ALT_NAME_INFO;
alias _CERT_ALT_NAME_INFO *PCERT_ALT_NAME_INFO;
//C typedef struct _CERT_BASIC_CONSTRAINTS_INFO {
//C CRYPT_BIT_BLOB SubjectType;
//C WINBOOL fPathLenConstraint;
//C DWORD dwPathLenConstraint;
//C DWORD cSubtreesConstraint;
//C CERT_NAME_BLOB *rgSubtreesConstraint;
//C } CERT_BASIC_CONSTRAINTS_INFO,*PCERT_BASIC_CONSTRAINTS_INFO;
struct _CERT_BASIC_CONSTRAINTS_INFO
{
CRYPT_BIT_BLOB SubjectType;
WINBOOL fPathLenConstraint;
DWORD dwPathLenConstraint;
DWORD cSubtreesConstraint;
CERT_NAME_BLOB *rgSubtreesConstraint;
}
alias _CERT_BASIC_CONSTRAINTS_INFO CERT_BASIC_CONSTRAINTS_INFO;
alias _CERT_BASIC_CONSTRAINTS_INFO *PCERT_BASIC_CONSTRAINTS_INFO;
//C typedef struct _CERT_BASIC_CONSTRAINTS2_INFO {
//C WINBOOL fCA;
//C WINBOOL fPathLenConstraint;
//C DWORD dwPathLenConstraint;
//C } CERT_BASIC_CONSTRAINTS2_INFO,*PCERT_BASIC_CONSTRAINTS2_INFO;
struct _CERT_BASIC_CONSTRAINTS2_INFO
{
WINBOOL fCA;
WINBOOL fPathLenConstraint;
DWORD dwPathLenConstraint;
}
alias _CERT_BASIC_CONSTRAINTS2_INFO CERT_BASIC_CONSTRAINTS2_INFO;
alias _CERT_BASIC_CONSTRAINTS2_INFO *PCERT_BASIC_CONSTRAINTS2_INFO;
//C typedef struct _CERT_POLICY_QUALIFIER_INFO {
//C LPSTR pszPolicyQualifierId;
//C CRYPT_OBJID_BLOB Qualifier;
//C } CERT_POLICY_QUALIFIER_INFO,*PCERT_POLICY_QUALIFIER_INFO;
struct _CERT_POLICY_QUALIFIER_INFO
{
LPSTR pszPolicyQualifierId;
CRYPT_OBJID_BLOB Qualifier;
}
alias _CERT_POLICY_QUALIFIER_INFO CERT_POLICY_QUALIFIER_INFO;
alias _CERT_POLICY_QUALIFIER_INFO *PCERT_POLICY_QUALIFIER_INFO;
//C typedef struct _CERT_POLICY_INFO {
//C LPSTR pszPolicyIdentifier;
//C DWORD cPolicyQualifier;
//C CERT_POLICY_QUALIFIER_INFO *rgPolicyQualifier;
//C } CERT_POLICY_INFO,*PCERT_POLICY_INFO;
struct _CERT_POLICY_INFO
{
LPSTR pszPolicyIdentifier;
DWORD cPolicyQualifier;
CERT_POLICY_QUALIFIER_INFO *rgPolicyQualifier;
}
alias _CERT_POLICY_INFO CERT_POLICY_INFO;
alias _CERT_POLICY_INFO *PCERT_POLICY_INFO;
//C typedef struct _CERT_POLICIES_INFO {
//C DWORD cPolicyInfo;
//C CERT_POLICY_INFO *rgPolicyInfo;
//C } CERT_POLICIES_INFO,*PCERT_POLICIES_INFO;
struct _CERT_POLICIES_INFO
{
DWORD cPolicyInfo;
CERT_POLICY_INFO *rgPolicyInfo;
}
alias _CERT_POLICIES_INFO CERT_POLICIES_INFO;
alias _CERT_POLICIES_INFO *PCERT_POLICIES_INFO;
//C typedef struct _CERT_POLICY_QUALIFIER_NOTICE_REFERENCE {
//C LPSTR pszOrganization;
//C DWORD cNoticeNumbers;
//C int *rgNoticeNumbers;
//C } CERT_POLICY_QUALIFIER_NOTICE_REFERENCE,*PCERT_POLICY_QUALIFIER_NOTICE_REFERENCE;
struct _CERT_POLICY_QUALIFIER_NOTICE_REFERENCE
{
LPSTR pszOrganization;
DWORD cNoticeNumbers;
int *rgNoticeNumbers;
}
alias _CERT_POLICY_QUALIFIER_NOTICE_REFERENCE CERT_POLICY_QUALIFIER_NOTICE_REFERENCE;
alias _CERT_POLICY_QUALIFIER_NOTICE_REFERENCE *PCERT_POLICY_QUALIFIER_NOTICE_REFERENCE;
//C typedef struct _CERT_POLICY_QUALIFIER_USER_NOTICE {
//C CERT_POLICY_QUALIFIER_NOTICE_REFERENCE *pNoticeReference;
//C LPWSTR pszDisplayText;
//C } CERT_POLICY_QUALIFIER_USER_NOTICE,*PCERT_POLICY_QUALIFIER_USER_NOTICE;
struct _CERT_POLICY_QUALIFIER_USER_NOTICE
{
CERT_POLICY_QUALIFIER_NOTICE_REFERENCE *pNoticeReference;
LPWSTR pszDisplayText;
}
alias _CERT_POLICY_QUALIFIER_USER_NOTICE CERT_POLICY_QUALIFIER_USER_NOTICE;
alias _CERT_POLICY_QUALIFIER_USER_NOTICE *PCERT_POLICY_QUALIFIER_USER_NOTICE;
//C typedef struct _CPS_URLS {
//C LPWSTR pszURL;
//C CRYPT_ALGORITHM_IDENTIFIER *pAlgorithm;
//C CRYPT_DATA_BLOB *pDigest;
//C } CPS_URLS,*PCPS_URLS;
struct _CPS_URLS
{
LPWSTR pszURL;
CRYPT_ALGORITHM_IDENTIFIER *pAlgorithm;
CRYPT_DATA_BLOB *pDigest;
}
alias _CPS_URLS CPS_URLS;
alias _CPS_URLS *PCPS_URLS;
//C typedef struct _CERT_POLICY95_QUALIFIER1 {
//C LPWSTR pszPracticesReference;
//C LPSTR pszNoticeIdentifier;
//C LPSTR pszNSINoticeIdentifier;
//C DWORD cCPSURLs;
//C CPS_URLS *rgCPSURLs;
//C } CERT_POLICY95_QUALIFIER1,*PCERT_POLICY95_QUALIFIER1;
struct _CERT_POLICY95_QUALIFIER1
{
LPWSTR pszPracticesReference;
LPSTR pszNoticeIdentifier;
LPSTR pszNSINoticeIdentifier;
DWORD cCPSURLs;
CPS_URLS *rgCPSURLs;
}
alias _CERT_POLICY95_QUALIFIER1 CERT_POLICY95_QUALIFIER1;
alias _CERT_POLICY95_QUALIFIER1 *PCERT_POLICY95_QUALIFIER1;
//C typedef struct _CERT_POLICY_MAPPING {
//C LPSTR pszIssuerDomainPolicy;
//C LPSTR pszSubjectDomainPolicy;
//C } CERT_POLICY_MAPPING,*PCERT_POLICY_MAPPING;
struct _CERT_POLICY_MAPPING
{
LPSTR pszIssuerDomainPolicy;
LPSTR pszSubjectDomainPolicy;
}
alias _CERT_POLICY_MAPPING CERT_POLICY_MAPPING;
alias _CERT_POLICY_MAPPING *PCERT_POLICY_MAPPING;
//C typedef struct _CERT_POLICY_MAPPINGS_INFO {
//C DWORD cPolicyMapping;
//C PCERT_POLICY_MAPPING rgPolicyMapping;
//C } CERT_POLICY_MAPPINGS_INFO,*PCERT_POLICY_MAPPINGS_INFO;
struct _CERT_POLICY_MAPPINGS_INFO
{
DWORD cPolicyMapping;
PCERT_POLICY_MAPPING rgPolicyMapping;
}
alias _CERT_POLICY_MAPPINGS_INFO CERT_POLICY_MAPPINGS_INFO;
alias _CERT_POLICY_MAPPINGS_INFO *PCERT_POLICY_MAPPINGS_INFO;
//C typedef struct _CERT_POLICY_CONSTRAINTS_INFO {
//C WINBOOL fRequireExplicitPolicy;
//C DWORD dwRequireExplicitPolicySkipCerts;
//C WINBOOL fInhibitPolicyMapping;
//C DWORD dwInhibitPolicyMappingSkipCerts;
//C } CERT_POLICY_CONSTRAINTS_INFO,*PCERT_POLICY_CONSTRAINTS_INFO;
struct _CERT_POLICY_CONSTRAINTS_INFO
{
WINBOOL fRequireExplicitPolicy;
DWORD dwRequireExplicitPolicySkipCerts;
WINBOOL fInhibitPolicyMapping;
DWORD dwInhibitPolicyMappingSkipCerts;
}
alias _CERT_POLICY_CONSTRAINTS_INFO CERT_POLICY_CONSTRAINTS_INFO;
alias _CERT_POLICY_CONSTRAINTS_INFO *PCERT_POLICY_CONSTRAINTS_INFO;
//C typedef struct _CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY {
//C LPSTR pszObjId;
//C DWORD cValue;
//C PCRYPT_DER_BLOB rgValue;
//C } CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY,*PCRYPT_CONTENT_INFO_SEQUENCE_OF_ANY;
struct _CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY
{
LPSTR pszObjId;
DWORD cValue;
PCRYPT_DER_BLOB rgValue;
}
alias _CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY;
alias _CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY *PCRYPT_CONTENT_INFO_SEQUENCE_OF_ANY;
//C typedef struct _CRYPT_CONTENT_INFO {
//C LPSTR pszObjId;
//C CRYPT_DER_BLOB Content;
//C } CRYPT_CONTENT_INFO,*PCRYPT_CONTENT_INFO;
struct _CRYPT_CONTENT_INFO
{
LPSTR pszObjId;
CRYPT_DER_BLOB Content;
}
alias _CRYPT_CONTENT_INFO CRYPT_CONTENT_INFO;
alias _CRYPT_CONTENT_INFO *PCRYPT_CONTENT_INFO;
//C typedef struct _CRYPT_SEQUENCE_OF_ANY {
//C DWORD cValue;
//C PCRYPT_DER_BLOB rgValue;
//C } CRYPT_SEQUENCE_OF_ANY,*PCRYPT_SEQUENCE_OF_ANY;
struct _CRYPT_SEQUENCE_OF_ANY
{
DWORD cValue;
PCRYPT_DER_BLOB rgValue;
}
alias _CRYPT_SEQUENCE_OF_ANY CRYPT_SEQUENCE_OF_ANY;
alias _CRYPT_SEQUENCE_OF_ANY *PCRYPT_SEQUENCE_OF_ANY;
//C typedef struct _CERT_AUTHORITY_KEY_ID2_INFO {
//C CRYPT_DATA_BLOB KeyId;
//C CERT_ALT_NAME_INFO AuthorityCertIssuer;
//C CRYPT_INTEGER_BLOB AuthorityCertSerialNumber;
//C } CERT_AUTHORITY_KEY_ID2_INFO,*PCERT_AUTHORITY_KEY_ID2_INFO;
struct _CERT_AUTHORITY_KEY_ID2_INFO
{
CRYPT_DATA_BLOB KeyId;
CERT_ALT_NAME_INFO AuthorityCertIssuer;
CRYPT_INTEGER_BLOB AuthorityCertSerialNumber;
}
alias _CERT_AUTHORITY_KEY_ID2_INFO CERT_AUTHORITY_KEY_ID2_INFO;
alias _CERT_AUTHORITY_KEY_ID2_INFO *PCERT_AUTHORITY_KEY_ID2_INFO;
//C typedef struct _CERT_ACCESS_DESCRIPTION {
//C LPSTR pszAccessMethod;
//C CERT_ALT_NAME_ENTRY AccessLocation;
//C } CERT_ACCESS_DESCRIPTION,*PCERT_ACCESS_DESCRIPTION;
struct _CERT_ACCESS_DESCRIPTION
{
LPSTR pszAccessMethod;
CERT_ALT_NAME_ENTRY AccessLocation;
}
alias _CERT_ACCESS_DESCRIPTION CERT_ACCESS_DESCRIPTION;
alias _CERT_ACCESS_DESCRIPTION *PCERT_ACCESS_DESCRIPTION;
//C typedef struct _CERT_AUTHORITY_INFO_ACCESS {
//C DWORD cAccDescr;
//C PCERT_ACCESS_DESCRIPTION rgAccDescr;
//C } CERT_AUTHORITY_INFO_ACCESS,*PCERT_AUTHORITY_INFO_ACCESS;
struct _CERT_AUTHORITY_INFO_ACCESS
{
DWORD cAccDescr;
PCERT_ACCESS_DESCRIPTION rgAccDescr;
}
alias _CERT_AUTHORITY_INFO_ACCESS CERT_AUTHORITY_INFO_ACCESS;
alias _CERT_AUTHORITY_INFO_ACCESS *PCERT_AUTHORITY_INFO_ACCESS;
//C typedef struct _CRL_DIST_POINT_NAME {
//C DWORD dwDistPointNameChoice;
//C union {
//C CERT_ALT_NAME_INFO FullName;
//C };
union _N135
{
CERT_ALT_NAME_INFO FullName;
}
//C } CRL_DIST_POINT_NAME,*PCRL_DIST_POINT_NAME;
struct _CRL_DIST_POINT_NAME
{
DWORD dwDistPointNameChoice;
CERT_ALT_NAME_INFO FullName;
}
alias _CRL_DIST_POINT_NAME CRL_DIST_POINT_NAME;
alias _CRL_DIST_POINT_NAME *PCRL_DIST_POINT_NAME;
//C typedef struct _CRL_DIST_POINT {
//C CRL_DIST_POINT_NAME DistPointName;
//C CRYPT_BIT_BLOB ReasonFlags;
//C CERT_ALT_NAME_INFO CRLIssuer;
//C } CRL_DIST_POINT,*PCRL_DIST_POINT;
struct _CRL_DIST_POINT
{
CRL_DIST_POINT_NAME DistPointName;
CRYPT_BIT_BLOB ReasonFlags;
CERT_ALT_NAME_INFO CRLIssuer;
}
alias _CRL_DIST_POINT CRL_DIST_POINT;
alias _CRL_DIST_POINT *PCRL_DIST_POINT;
//C typedef struct _CRL_DIST_POINTS_INFO {
//C DWORD cDistPoint;
//C PCRL_DIST_POINT rgDistPoint;
//C } CRL_DIST_POINTS_INFO,*PCRL_DIST_POINTS_INFO;
struct _CRL_DIST_POINTS_INFO
{
DWORD cDistPoint;
PCRL_DIST_POINT rgDistPoint;
}
alias _CRL_DIST_POINTS_INFO CRL_DIST_POINTS_INFO;
alias _CRL_DIST_POINTS_INFO *PCRL_DIST_POINTS_INFO;
//C typedef struct _CROSS_CERT_DIST_POINTS_INFO {
//C DWORD dwSyncDeltaTime;
//C DWORD cDistPoint;
//C PCERT_ALT_NAME_INFO rgDistPoint;
//C } CROSS_CERT_DIST_POINTS_INFO,*PCROSS_CERT_DIST_POINTS_INFO;
struct _CROSS_CERT_DIST_POINTS_INFO
{
DWORD dwSyncDeltaTime;
DWORD cDistPoint;
PCERT_ALT_NAME_INFO rgDistPoint;
}
alias _CROSS_CERT_DIST_POINTS_INFO CROSS_CERT_DIST_POINTS_INFO;
alias _CROSS_CERT_DIST_POINTS_INFO *PCROSS_CERT_DIST_POINTS_INFO;
//C typedef struct _CERT_PAIR {
//C CERT_BLOB Forward;
//C CERT_BLOB Reverse;
//C } CERT_PAIR,*PCERT_PAIR;
struct _CERT_PAIR
{
CERT_BLOB Forward;
CERT_BLOB Reverse;
}
alias _CERT_PAIR CERT_PAIR;
alias _CERT_PAIR *PCERT_PAIR;
//C typedef struct _CRL_ISSUING_DIST_POINT {
//C CRL_DIST_POINT_NAME DistPointName;
//C WINBOOL fOnlyContainsUserCerts;
//C WINBOOL fOnlyContainsCACerts;
//C CRYPT_BIT_BLOB OnlySomeReasonFlags;
//C WINBOOL fIndirectCRL;
//C } CRL_ISSUING_DIST_POINT,*PCRL_ISSUING_DIST_POINT;
struct _CRL_ISSUING_DIST_POINT
{
CRL_DIST_POINT_NAME DistPointName;
WINBOOL fOnlyContainsUserCerts;
WINBOOL fOnlyContainsCACerts;
CRYPT_BIT_BLOB OnlySomeReasonFlags;
WINBOOL fIndirectCRL;
}
alias _CRL_ISSUING_DIST_POINT CRL_ISSUING_DIST_POINT;
alias _CRL_ISSUING_DIST_POINT *PCRL_ISSUING_DIST_POINT;
//C typedef struct _CERT_GENERAL_SUBTREE {
//C CERT_ALT_NAME_ENTRY Base;
//C DWORD dwMinimum;
//C WINBOOL fMaximum;
//C DWORD dwMaximum;
//C } CERT_GENERAL_SUBTREE,*PCERT_GENERAL_SUBTREE;
struct _CERT_GENERAL_SUBTREE
{
CERT_ALT_NAME_ENTRY Base;
DWORD dwMinimum;
WINBOOL fMaximum;
DWORD dwMaximum;
}
alias _CERT_GENERAL_SUBTREE CERT_GENERAL_SUBTREE;
alias _CERT_GENERAL_SUBTREE *PCERT_GENERAL_SUBTREE;
//C typedef struct _CERT_NAME_CONSTRAINTS_INFO {
//C DWORD cPermittedSubtree;
//C PCERT_GENERAL_SUBTREE rgPermittedSubtree;
//C DWORD cExcludedSubtree;
//C PCERT_GENERAL_SUBTREE rgExcludedSubtree;
//C } CERT_NAME_CONSTRAINTS_INFO,*PCERT_NAME_CONSTRAINTS_INFO;
struct _CERT_NAME_CONSTRAINTS_INFO
{
DWORD cPermittedSubtree;
PCERT_GENERAL_SUBTREE rgPermittedSubtree;
DWORD cExcludedSubtree;
PCERT_GENERAL_SUBTREE rgExcludedSubtree;
}
alias _CERT_NAME_CONSTRAINTS_INFO CERT_NAME_CONSTRAINTS_INFO;
alias _CERT_NAME_CONSTRAINTS_INFO *PCERT_NAME_CONSTRAINTS_INFO;
//C typedef struct _CERT_DSS_PARAMETERS {
//C CRYPT_UINT_BLOB p;
//C CRYPT_UINT_BLOB q;
//C CRYPT_UINT_BLOB g;
//C } CERT_DSS_PARAMETERS,*PCERT_DSS_PARAMETERS;
struct _CERT_DSS_PARAMETERS
{
CRYPT_UINT_BLOB p;
CRYPT_UINT_BLOB q;
CRYPT_UINT_BLOB g;
}
alias _CERT_DSS_PARAMETERS CERT_DSS_PARAMETERS;
alias _CERT_DSS_PARAMETERS *PCERT_DSS_PARAMETERS;
//C typedef struct _CERT_DH_PARAMETERS {
//C CRYPT_UINT_BLOB p;
//C CRYPT_UINT_BLOB g;
//C } CERT_DH_PARAMETERS,*PCERT_DH_PARAMETERS;
struct _CERT_DH_PARAMETERS
{
CRYPT_UINT_BLOB p;
CRYPT_UINT_BLOB g;
}
alias _CERT_DH_PARAMETERS CERT_DH_PARAMETERS;
alias _CERT_DH_PARAMETERS *PCERT_DH_PARAMETERS;
//C typedef struct _CERT_X942_DH_VALIDATION_PARAMS {
//C CRYPT_BIT_BLOB seed;
//C DWORD pgenCounter;
//C } CERT_X942_DH_VALIDATION_PARAMS,*PCERT_X942_DH_VALIDATION_PARAMS;
struct _CERT_X942_DH_VALIDATION_PARAMS
{
CRYPT_BIT_BLOB seed;
DWORD pgenCounter;
}
alias _CERT_X942_DH_VALIDATION_PARAMS CERT_X942_DH_VALIDATION_PARAMS;
alias _CERT_X942_DH_VALIDATION_PARAMS *PCERT_X942_DH_VALIDATION_PARAMS;
//C typedef struct _CERT_X942_DH_PARAMETERS {
//C CRYPT_UINT_BLOB p;
//C CRYPT_UINT_BLOB g;
//C CRYPT_UINT_BLOB q;
//C CRYPT_UINT_BLOB j;
//C PCERT_X942_DH_VALIDATION_PARAMS pValidationParams;
//C } CERT_X942_DH_PARAMETERS,*PCERT_X942_DH_PARAMETERS;
struct _CERT_X942_DH_PARAMETERS
{
CRYPT_UINT_BLOB p;
CRYPT_UINT_BLOB g;
CRYPT_UINT_BLOB q;
CRYPT_UINT_BLOB j;
PCERT_X942_DH_VALIDATION_PARAMS pValidationParams;
}
alias _CERT_X942_DH_PARAMETERS CERT_X942_DH_PARAMETERS;
alias _CERT_X942_DH_PARAMETERS *PCERT_X942_DH_PARAMETERS;
//C typedef struct _CRYPT_X942_OTHER_INFO {
//C LPSTR pszContentEncryptionObjId;
//C BYTE rgbCounter[4];
//C BYTE rgbKeyLength[4];
//C CRYPT_DATA_BLOB PubInfo;
//C } CRYPT_X942_OTHER_INFO,*PCRYPT_X942_OTHER_INFO;
struct _CRYPT_X942_OTHER_INFO
{
LPSTR pszContentEncryptionObjId;
BYTE [4]rgbCounter;
BYTE [4]rgbKeyLength;
CRYPT_DATA_BLOB PubInfo;
}
alias _CRYPT_X942_OTHER_INFO CRYPT_X942_OTHER_INFO;
alias _CRYPT_X942_OTHER_INFO *PCRYPT_X942_OTHER_INFO;
//C typedef struct _CRYPT_RC2_CBC_PARAMETERS {
//C DWORD dwVersion;
//C WINBOOL fIV;
//C BYTE rgbIV[8];
//C } CRYPT_RC2_CBC_PARAMETERS,*PCRYPT_RC2_CBC_PARAMETERS;
struct _CRYPT_RC2_CBC_PARAMETERS
{
DWORD dwVersion;
WINBOOL fIV;
BYTE [8]rgbIV;
}
alias _CRYPT_RC2_CBC_PARAMETERS CRYPT_RC2_CBC_PARAMETERS;
alias _CRYPT_RC2_CBC_PARAMETERS *PCRYPT_RC2_CBC_PARAMETERS;
//C typedef struct _CRYPT_SMIME_CAPABILITY {
//C LPSTR pszObjId;
//C CRYPT_OBJID_BLOB Parameters;
//C } CRYPT_SMIME_CAPABILITY,*PCRYPT_SMIME_CAPABILITY;
struct _CRYPT_SMIME_CAPABILITY
{
LPSTR pszObjId;
CRYPT_OBJID_BLOB Parameters;
}
alias _CRYPT_SMIME_CAPABILITY CRYPT_SMIME_CAPABILITY;
alias _CRYPT_SMIME_CAPABILITY *PCRYPT_SMIME_CAPABILITY;
//C typedef struct _CRYPT_SMIME_CAPABILITIES {
//C DWORD cCapability;
//C PCRYPT_SMIME_CAPABILITY rgCapability;
//C } CRYPT_SMIME_CAPABILITIES,*PCRYPT_SMIME_CAPABILITIES;
struct _CRYPT_SMIME_CAPABILITIES
{
DWORD cCapability;
PCRYPT_SMIME_CAPABILITY rgCapability;
}
alias _CRYPT_SMIME_CAPABILITIES CRYPT_SMIME_CAPABILITIES;
alias _CRYPT_SMIME_CAPABILITIES *PCRYPT_SMIME_CAPABILITIES;
//C typedef struct _CMC_TAGGED_ATTRIBUTE {
//C DWORD dwBodyPartID;
//C CRYPT_ATTRIBUTE Attribute;
//C } CMC_TAGGED_ATTRIBUTE,*PCMC_TAGGED_ATTRIBUTE;
struct _CMC_TAGGED_ATTRIBUTE
{
DWORD dwBodyPartID;
CRYPT_ATTRIBUTE Attribute;
}
alias _CMC_TAGGED_ATTRIBUTE CMC_TAGGED_ATTRIBUTE;
alias _CMC_TAGGED_ATTRIBUTE *PCMC_TAGGED_ATTRIBUTE;
//C typedef struct _CMC_TAGGED_CERT_REQUEST {
//C DWORD dwBodyPartID;
//C CRYPT_DER_BLOB SignedCertRequest;
//C } CMC_TAGGED_CERT_REQUEST,*PCMC_TAGGED_CERT_REQUEST;
struct _CMC_TAGGED_CERT_REQUEST
{
DWORD dwBodyPartID;
CRYPT_DER_BLOB SignedCertRequest;
}
alias _CMC_TAGGED_CERT_REQUEST CMC_TAGGED_CERT_REQUEST;
alias _CMC_TAGGED_CERT_REQUEST *PCMC_TAGGED_CERT_REQUEST;
//C typedef struct _CMC_TAGGED_REQUEST {
//C DWORD dwTaggedRequestChoice;
//C union {
//C PCMC_TAGGED_CERT_REQUEST pTaggedCertRequest;
//C };
union _N136
{
PCMC_TAGGED_CERT_REQUEST pTaggedCertRequest;
}
//C } CMC_TAGGED_REQUEST,*PCMC_TAGGED_REQUEST;
struct _CMC_TAGGED_REQUEST
{
DWORD dwTaggedRequestChoice;
PCMC_TAGGED_CERT_REQUEST pTaggedCertRequest;
}
alias _CMC_TAGGED_REQUEST CMC_TAGGED_REQUEST;
alias _CMC_TAGGED_REQUEST *PCMC_TAGGED_REQUEST;
//C typedef struct _CMC_TAGGED_CONTENT_INFO {
//C DWORD dwBodyPartID;
//C CRYPT_DER_BLOB EncodedContentInfo;
//C } CMC_TAGGED_CONTENT_INFO,*PCMC_TAGGED_CONTENT_INFO;
struct _CMC_TAGGED_CONTENT_INFO
{
DWORD dwBodyPartID;
CRYPT_DER_BLOB EncodedContentInfo;
}
alias _CMC_TAGGED_CONTENT_INFO CMC_TAGGED_CONTENT_INFO;
alias _CMC_TAGGED_CONTENT_INFO *PCMC_TAGGED_CONTENT_INFO;
//C typedef struct _CMC_TAGGED_OTHER_MSG {
//C DWORD dwBodyPartID;
//C LPSTR pszObjId;
//C CRYPT_OBJID_BLOB Value;
//C } CMC_TAGGED_OTHER_MSG,*PCMC_TAGGED_OTHER_MSG;
struct _CMC_TAGGED_OTHER_MSG
{
DWORD dwBodyPartID;
LPSTR pszObjId;
CRYPT_OBJID_BLOB Value;
}
alias _CMC_TAGGED_OTHER_MSG CMC_TAGGED_OTHER_MSG;
alias _CMC_TAGGED_OTHER_MSG *PCMC_TAGGED_OTHER_MSG;
//C typedef struct _CMC_DATA_INFO {
//C DWORD cTaggedAttribute;
//C PCMC_TAGGED_ATTRIBUTE rgTaggedAttribute;
//C DWORD cTaggedRequest;
//C PCMC_TAGGED_REQUEST rgTaggedRequest;
//C DWORD cTaggedContentInfo;
//C PCMC_TAGGED_CONTENT_INFO rgTaggedContentInfo;
//C DWORD cTaggedOtherMsg;
//C PCMC_TAGGED_OTHER_MSG rgTaggedOtherMsg;
//C } CMC_DATA_INFO,*PCMC_DATA_INFO;
struct _CMC_DATA_INFO
{
DWORD cTaggedAttribute;
PCMC_TAGGED_ATTRIBUTE rgTaggedAttribute;
DWORD cTaggedRequest;
PCMC_TAGGED_REQUEST rgTaggedRequest;
DWORD cTaggedContentInfo;
PCMC_TAGGED_CONTENT_INFO rgTaggedContentInfo;
DWORD cTaggedOtherMsg;
PCMC_TAGGED_OTHER_MSG rgTaggedOtherMsg;
}
alias _CMC_DATA_INFO CMC_DATA_INFO;
alias _CMC_DATA_INFO *PCMC_DATA_INFO;
//C typedef struct _CMC_RESPONSE_INFO {
//C DWORD cTaggedAttribute;
//C PCMC_TAGGED_ATTRIBUTE rgTaggedAttribute;
//C DWORD cTaggedContentInfo;
//C PCMC_TAGGED_CONTENT_INFO rgTaggedContentInfo;
//C DWORD cTaggedOtherMsg;
//C PCMC_TAGGED_OTHER_MSG rgTaggedOtherMsg;
//C } CMC_RESPONSE_INFO,*PCMC_RESPONSE_INFO;
struct _CMC_RESPONSE_INFO
{
DWORD cTaggedAttribute;
PCMC_TAGGED_ATTRIBUTE rgTaggedAttribute;
DWORD cTaggedContentInfo;
PCMC_TAGGED_CONTENT_INFO rgTaggedContentInfo;
DWORD cTaggedOtherMsg;
PCMC_TAGGED_OTHER_MSG rgTaggedOtherMsg;
}
alias _CMC_RESPONSE_INFO CMC_RESPONSE_INFO;
alias _CMC_RESPONSE_INFO *PCMC_RESPONSE_INFO;
//C typedef struct _CMC_PEND_INFO {
//C CRYPT_DATA_BLOB PendToken;
//C FILETIME PendTime;
//C } CMC_PEND_INFO,*PCMC_PEND_INFO;
struct _CMC_PEND_INFO
{
CRYPT_DATA_BLOB PendToken;
FILETIME PendTime;
}
alias _CMC_PEND_INFO CMC_PEND_INFO;
alias _CMC_PEND_INFO *PCMC_PEND_INFO;
//C typedef struct _CMC_STATUS_INFO {
//C DWORD dwStatus;
//C DWORD cBodyList;
//C DWORD *rgdwBodyList;
//C LPWSTR pwszStatusString;
//C DWORD dwOtherInfoChoice;
//C union {
//C DWORD dwFailInfo;
//C PCMC_PEND_INFO pPendInfo;
//C };
union _N137
{
DWORD dwFailInfo;
PCMC_PEND_INFO pPendInfo;
}
//C } CMC_STATUS_INFO,*PCMC_STATUS_INFO;
struct _CMC_STATUS_INFO
{
DWORD dwStatus;
DWORD cBodyList;
DWORD *rgdwBodyList;
LPWSTR pwszStatusString;
DWORD dwOtherInfoChoice;
DWORD dwFailInfo;
PCMC_PEND_INFO pPendInfo;
}
alias _CMC_STATUS_INFO CMC_STATUS_INFO;
alias _CMC_STATUS_INFO *PCMC_STATUS_INFO;
//C typedef struct _CMC_ADD_EXTENSIONS_INFO {
//C DWORD dwCmcDataReference;
//C DWORD cCertReference;
//C DWORD *rgdwCertReference;
//C DWORD cExtension;
//C PCERT_EXTENSION rgExtension;
//C } CMC_ADD_EXTENSIONS_INFO,*PCMC_ADD_EXTENSIONS_INFO;
struct _CMC_ADD_EXTENSIONS_INFO
{
DWORD dwCmcDataReference;
DWORD cCertReference;
DWORD *rgdwCertReference;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
}
alias _CMC_ADD_EXTENSIONS_INFO CMC_ADD_EXTENSIONS_INFO;
alias _CMC_ADD_EXTENSIONS_INFO *PCMC_ADD_EXTENSIONS_INFO;
//C typedef struct _CMC_ADD_ATTRIBUTES_INFO {
//C DWORD dwCmcDataReference;
//C DWORD cCertReference;
//C DWORD *rgdwCertReference;
//C DWORD cAttribute;
//C PCRYPT_ATTRIBUTE rgAttribute;
//C } CMC_ADD_ATTRIBUTES_INFO,*PCMC_ADD_ATTRIBUTES_INFO;
struct _CMC_ADD_ATTRIBUTES_INFO
{
DWORD dwCmcDataReference;
DWORD cCertReference;
DWORD *rgdwCertReference;
DWORD cAttribute;
PCRYPT_ATTRIBUTE rgAttribute;
}
alias _CMC_ADD_ATTRIBUTES_INFO CMC_ADD_ATTRIBUTES_INFO;
alias _CMC_ADD_ATTRIBUTES_INFO *PCMC_ADD_ATTRIBUTES_INFO;
//C typedef struct _CERT_TEMPLATE_EXT {
//C LPSTR pszObjId;
//C DWORD dwMajorVersion;
//C WINBOOL fMinorVersion;
//C DWORD dwMinorVersion;
//C } CERT_TEMPLATE_EXT,*PCERT_TEMPLATE_EXT;
struct _CERT_TEMPLATE_EXT
{
LPSTR pszObjId;
DWORD dwMajorVersion;
WINBOOL fMinorVersion;
DWORD dwMinorVersion;
}
alias _CERT_TEMPLATE_EXT CERT_TEMPLATE_EXT;
alias _CERT_TEMPLATE_EXT *PCERT_TEMPLATE_EXT;
//C typedef void *HCRYPTOIDFUNCSET;
alias void *HCRYPTOIDFUNCSET;
//C typedef void *HCRYPTOIDFUNCADDR;
alias void *HCRYPTOIDFUNCADDR;
//C typedef struct _CRYPT_OID_FUNC_ENTRY {
//C LPCSTR pszOID;
//C void *pvFuncAddr;
//C } CRYPT_OID_FUNC_ENTRY,*PCRYPT_OID_FUNC_ENTRY;
struct _CRYPT_OID_FUNC_ENTRY
{
LPCSTR pszOID;
void *pvFuncAddr;
}
alias _CRYPT_OID_FUNC_ENTRY CRYPT_OID_FUNC_ENTRY;
alias _CRYPT_OID_FUNC_ENTRY *PCRYPT_OID_FUNC_ENTRY;
//C WINBOOL CryptInstallOIDFunctionAddress(HMODULE hModule,DWORD dwEncodingType,LPCSTR pszFuncName,DWORD cFuncEntry,const CRYPT_OID_FUNC_ENTRY rgFuncEntry[],DWORD dwFlags);
WINBOOL CryptInstallOIDFunctionAddress(HMODULE hModule, DWORD dwEncodingType, LPCSTR pszFuncName, DWORD cFuncEntry, CRYPT_OID_FUNC_ENTRY *rgFuncEntry, DWORD dwFlags);
//C HCRYPTOIDFUNCSET CryptInitOIDFunctionSet(LPCSTR pszFuncName,DWORD dwFlags);
HCRYPTOIDFUNCSET CryptInitOIDFunctionSet(LPCSTR pszFuncName, DWORD dwFlags);
//C WINBOOL CryptGetOIDFunctionAddress(HCRYPTOIDFUNCSET hFuncSet,DWORD dwEncodingType,LPCSTR pszOID,DWORD dwFlags,void **ppvFuncAddr,HCRYPTOIDFUNCADDR *phFuncAddr);
WINBOOL CryptGetOIDFunctionAddress(HCRYPTOIDFUNCSET hFuncSet, DWORD dwEncodingType, LPCSTR pszOID, DWORD dwFlags, void **ppvFuncAddr, HCRYPTOIDFUNCADDR *phFuncAddr);
//C WINBOOL CryptGetDefaultOIDDllList(HCRYPTOIDFUNCSET hFuncSet,DWORD dwEncodingType,LPWSTR pwszDllList,DWORD *pcchDllList);
WINBOOL CryptGetDefaultOIDDllList(HCRYPTOIDFUNCSET hFuncSet, DWORD dwEncodingType, LPWSTR pwszDllList, DWORD *pcchDllList);
//C WINBOOL CryptGetDefaultOIDFunctionAddress(HCRYPTOIDFUNCSET hFuncSet,DWORD dwEncodingType,LPCWSTR pwszDll,DWORD dwFlags,void **ppvFuncAddr,HCRYPTOIDFUNCADDR *phFuncAddr);
WINBOOL CryptGetDefaultOIDFunctionAddress(HCRYPTOIDFUNCSET hFuncSet, DWORD dwEncodingType, LPCWSTR pwszDll, DWORD dwFlags, void **ppvFuncAddr, HCRYPTOIDFUNCADDR *phFuncAddr);
//C WINBOOL CryptFreeOIDFunctionAddress(HCRYPTOIDFUNCADDR hFuncAddr,DWORD dwFlags);
WINBOOL CryptFreeOIDFunctionAddress(HCRYPTOIDFUNCADDR hFuncAddr, DWORD dwFlags);
//C WINBOOL CryptRegisterOIDFunction(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID,LPCWSTR pwszDll,LPCSTR pszOverrideFuncName);
WINBOOL CryptRegisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID, LPCWSTR pwszDll, LPCSTR pszOverrideFuncName);
//C WINBOOL CryptUnregisterOIDFunction(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID);
WINBOOL CryptUnregisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID);
//C WINBOOL CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,LPCSTR pszFuncName,DWORD dwIndex,LPCWSTR pwszDll);
WINBOOL CryptRegisterDefaultOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName, DWORD dwIndex, LPCWSTR pwszDll);
//C WINBOOL CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,LPCSTR pszFuncName,LPCWSTR pwszDll);
WINBOOL CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName, LPCWSTR pwszDll);
//C WINBOOL CryptSetOIDFunctionValue(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID,LPCWSTR pwszValueName,DWORD dwValueType,const BYTE *pbValueData,DWORD cbValueData);
WINBOOL CryptSetOIDFunctionValue(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID, LPCWSTR pwszValueName, DWORD dwValueType, BYTE *pbValueData, DWORD cbValueData);
//C WINBOOL CryptGetOIDFunctionValue(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID,LPCWSTR pwszValueName,DWORD *pdwValueType,BYTE *pbValueData,DWORD *pcbValueData);
WINBOOL CryptGetOIDFunctionValue(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID, LPCWSTR pwszValueName, DWORD *pdwValueType, BYTE *pbValueData, DWORD *pcbValueData);
//C typedef WINBOOL ( *PFN_CRYPT_ENUM_OID_FUNC)(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID,DWORD cValue,const DWORD rgdwValueType[],LPCWSTR const rgpwszValueName[],const BYTE *const rgpbValueData[],const DWORD rgcbValueData[],void *pvArg);
alias WINBOOL function(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID, DWORD cValue, DWORD *rgdwValueType, LPCWSTR *rgpwszValueName, BYTE **rgpbValueData, DWORD *rgcbValueData, void *pvArg)PFN_CRYPT_ENUM_OID_FUNC;
//C WINBOOL CryptEnumOIDFunction(DWORD dwEncodingType,LPCSTR pszFuncName,LPCSTR pszOID,DWORD dwFlags,void *pvArg,PFN_CRYPT_ENUM_OID_FUNC pfnEnumOIDFunc);
WINBOOL CryptEnumOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName, LPCSTR pszOID, DWORD dwFlags, void *pvArg, PFN_CRYPT_ENUM_OID_FUNC pfnEnumOIDFunc);
//C typedef struct _CRYPT_OID_INFO {
//C DWORD cbSize;
//C LPCSTR pszOID;
//C LPCWSTR pwszName;
//C DWORD dwGroupId;
//C union {
//C DWORD dwValue;
//C ALG_ID Algid;
//C DWORD dwLength;
//C };
union _N138
{
DWORD dwValue;
ALG_ID Algid;
DWORD dwLength;
}
//C CRYPT_DATA_BLOB ExtraInfo;
//C } CRYPT_OID_INFO,*PCRYPT_OID_INFO;
struct _CRYPT_OID_INFO
{
DWORD cbSize;
LPCSTR pszOID;
LPCWSTR pwszName;
DWORD dwGroupId;
DWORD dwValue;
ALG_ID Algid;
DWORD dwLength;
CRYPT_DATA_BLOB ExtraInfo;
}
alias _CRYPT_OID_INFO CRYPT_OID_INFO;
alias _CRYPT_OID_INFO *PCRYPT_OID_INFO;
//C typedef const CRYPT_OID_INFO CCRYPT_OID_INFO,*PCCRYPT_OID_INFO;
alias CRYPT_OID_INFO CCRYPT_OID_INFO;
alias CRYPT_OID_INFO *PCCRYPT_OID_INFO;
//C PCCRYPT_OID_INFO CryptFindOIDInfo(DWORD dwKeyType,void *pvKey,DWORD dwGroupId);
PCCRYPT_OID_INFO CryptFindOIDInfo(DWORD dwKeyType, void *pvKey, DWORD dwGroupId);
//C WINBOOL CryptRegisterOIDInfo(PCCRYPT_OID_INFO pInfo,DWORD dwFlags);
WINBOOL CryptRegisterOIDInfo(PCCRYPT_OID_INFO pInfo, DWORD dwFlags);
//C WINBOOL CryptUnregisterOIDInfo(PCCRYPT_OID_INFO pInfo);
WINBOOL CryptUnregisterOIDInfo(PCCRYPT_OID_INFO pInfo);
//C typedef WINBOOL ( *PFN_CRYPT_ENUM_OID_INFO)(PCCRYPT_OID_INFO pInfo,void *pvArg);
alias WINBOOL function(PCCRYPT_OID_INFO pInfo, void *pvArg)PFN_CRYPT_ENUM_OID_INFO;
//C WINBOOL CryptEnumOIDInfo(DWORD dwGroupId,DWORD dwFlags,void *pvArg,PFN_CRYPT_ENUM_OID_INFO pfnEnumOIDInfo);
WINBOOL CryptEnumOIDInfo(DWORD dwGroupId, DWORD dwFlags, void *pvArg, PFN_CRYPT_ENUM_OID_INFO pfnEnumOIDInfo);
//C LPCWSTR CryptFindLocalizedName(LPCWSTR pwszCryptName);
LPCWSTR CryptFindLocalizedName(LPCWSTR pwszCryptName);
//C typedef void *HCRYPTMSG;
alias void *HCRYPTMSG;
//C typedef struct _CERT_ISSUER_SERIAL_NUMBER {
//C CERT_NAME_BLOB Issuer;
//C CRYPT_INTEGER_BLOB SerialNumber;
//C } CERT_ISSUER_SERIAL_NUMBER,*PCERT_ISSUER_SERIAL_NUMBER;
struct _CERT_ISSUER_SERIAL_NUMBER
{
CERT_NAME_BLOB Issuer;
CRYPT_INTEGER_BLOB SerialNumber;
}
alias _CERT_ISSUER_SERIAL_NUMBER CERT_ISSUER_SERIAL_NUMBER;
alias _CERT_ISSUER_SERIAL_NUMBER *PCERT_ISSUER_SERIAL_NUMBER;
//C typedef struct _CERT_ID {
//C DWORD dwIdChoice;
//C union {
//C CERT_ISSUER_SERIAL_NUMBER IssuerSerialNumber;
//C CRYPT_HASH_BLOB KeyId;
//C CRYPT_HASH_BLOB HashId;
//C };
union _N139
{
CERT_ISSUER_SERIAL_NUMBER IssuerSerialNumber;
CRYPT_HASH_BLOB KeyId;
CRYPT_HASH_BLOB HashId;
}
//C } CERT_ID,*PCERT_ID;
struct _CERT_ID
{
DWORD dwIdChoice;
CERT_ISSUER_SERIAL_NUMBER IssuerSerialNumber;
CRYPT_HASH_BLOB KeyId;
CRYPT_HASH_BLOB HashId;
}
alias _CERT_ID CERT_ID;
alias _CERT_ID *PCERT_ID;
//C typedef struct _CMSG_SIGNER_ENCODE_INFO {
//C DWORD cbSize;
//C PCERT_INFO pCertInfo;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C void *pvHashAuxInfo;
//C DWORD cAuthAttr;
//C PCRYPT_ATTRIBUTE rgAuthAttr;
//C DWORD cUnauthAttr;
//C PCRYPT_ATTRIBUTE rgUnauthAttr;
//C } CMSG_SIGNER_ENCODE_INFO,*PCMSG_SIGNER_ENCODE_INFO;
struct _CMSG_SIGNER_ENCODE_INFO
{
DWORD cbSize;
PCERT_INFO pCertInfo;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
void *pvHashAuxInfo;
DWORD cAuthAttr;
PCRYPT_ATTRIBUTE rgAuthAttr;
DWORD cUnauthAttr;
PCRYPT_ATTRIBUTE rgUnauthAttr;
}
alias _CMSG_SIGNER_ENCODE_INFO CMSG_SIGNER_ENCODE_INFO;
alias _CMSG_SIGNER_ENCODE_INFO *PCMSG_SIGNER_ENCODE_INFO;
//C typedef struct _CMSG_SIGNED_ENCODE_INFO {
//C DWORD cbSize;
//C DWORD cSigners;
//C PCMSG_SIGNER_ENCODE_INFO rgSigners;
//C DWORD cCertEncoded;
//C PCERT_BLOB rgCertEncoded;
//C DWORD cCrlEncoded;
//C PCRL_BLOB rgCrlEncoded;
//C } CMSG_SIGNED_ENCODE_INFO,*PCMSG_SIGNED_ENCODE_INFO;
struct _CMSG_SIGNED_ENCODE_INFO
{
DWORD cbSize;
DWORD cSigners;
PCMSG_SIGNER_ENCODE_INFO rgSigners;
DWORD cCertEncoded;
PCERT_BLOB rgCertEncoded;
DWORD cCrlEncoded;
PCRL_BLOB rgCrlEncoded;
}
alias _CMSG_SIGNED_ENCODE_INFO CMSG_SIGNED_ENCODE_INFO;
alias _CMSG_SIGNED_ENCODE_INFO *PCMSG_SIGNED_ENCODE_INFO;
//C typedef struct _CMSG_RECIPIENT_ENCODE_INFO CMSG_RECIPIENT_ENCODE_INFO,*PCMSG_RECIPIENT_ENCODE_INFO;
alias _CMSG_RECIPIENT_ENCODE_INFO CMSG_RECIPIENT_ENCODE_INFO;
alias _CMSG_RECIPIENT_ENCODE_INFO *PCMSG_RECIPIENT_ENCODE_INFO;
//C typedef struct _CMSG_ENVELOPED_ENCODE_INFO {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
//C void *pvEncryptionAuxInfo;
//C DWORD cRecipients;
//C PCERT_INFO *rgpRecipients;
//C } CMSG_ENVELOPED_ENCODE_INFO,*PCMSG_ENVELOPED_ENCODE_INFO;
struct _CMSG_ENVELOPED_ENCODE_INFO
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
void *pvEncryptionAuxInfo;
DWORD cRecipients;
PCERT_INFO *rgpRecipients;
}
alias _CMSG_ENVELOPED_ENCODE_INFO CMSG_ENVELOPED_ENCODE_INFO;
alias _CMSG_ENVELOPED_ENCODE_INFO *PCMSG_ENVELOPED_ENCODE_INFO;
//C typedef struct _CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO {
//C DWORD cbSize;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C void *pvKeyEncryptionAuxInfo;
//C HCRYPTPROV hCryptProv;
//C CRYPT_BIT_BLOB RecipientPublicKey;
//C CERT_ID RecipientId;
//C } CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO,*PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO;
struct _CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO
{
DWORD cbSize;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
void *pvKeyEncryptionAuxInfo;
HCRYPTPROV hCryptProv;
CRYPT_BIT_BLOB RecipientPublicKey;
CERT_ID RecipientId;
}
alias _CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO;
alias _CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO *PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO;
//C typedef struct _CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO {
//C DWORD cbSize;
//C CRYPT_BIT_BLOB RecipientPublicKey;
//C CERT_ID RecipientId;
//C FILETIME Date;
//C PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
//C } CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO,*PCMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO;
struct _CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO
{
DWORD cbSize;
CRYPT_BIT_BLOB RecipientPublicKey;
CERT_ID RecipientId;
FILETIME Date;
PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
}
alias _CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO;
alias _CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO *PCMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO;
//C typedef struct _CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO {
//C DWORD cbSize;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C void *pvKeyEncryptionAuxInfo;
//C CRYPT_ALGORITHM_IDENTIFIER KeyWrapAlgorithm;
//C void *pvKeyWrapAuxInfo;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C DWORD dwKeyChoice;
//C union {
//C PCRYPT_ALGORITHM_IDENTIFIER pEphemeralAlgorithm;
//C PCERT_ID pSenderId;
//C };
union _N140
{
PCRYPT_ALGORITHM_IDENTIFIER pEphemeralAlgorithm;
PCERT_ID pSenderId;
}
//C CRYPT_DATA_BLOB UserKeyingMaterial;
//C DWORD cRecipientEncryptedKeys;
//C PCMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO *rgpRecipientEncryptedKeys;
//C } CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO,*PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO;
struct _CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO
{
DWORD cbSize;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
void *pvKeyEncryptionAuxInfo;
CRYPT_ALGORITHM_IDENTIFIER KeyWrapAlgorithm;
void *pvKeyWrapAuxInfo;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
DWORD dwKeyChoice;
PCRYPT_ALGORITHM_IDENTIFIER pEphemeralAlgorithm;
PCERT_ID pSenderId;
CRYPT_DATA_BLOB UserKeyingMaterial;
DWORD cRecipientEncryptedKeys;
PCMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO *rgpRecipientEncryptedKeys;
}
alias _CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO;
alias _CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO *PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO;
//C typedef struct _CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO {
//C DWORD cbSize;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C void *pvKeyEncryptionAuxInfo;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeyChoice;
//C union {
//C HCRYPTKEY hKeyEncryptionKey;
//C void *pvKeyEncryptionKey;
//C };
union _N141
{
HCRYPTKEY hKeyEncryptionKey;
void *pvKeyEncryptionKey;
}
//C CRYPT_DATA_BLOB KeyId;
//C FILETIME Date;
//C PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
//C } CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO,*PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO;
struct _CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO
{
DWORD cbSize;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
void *pvKeyEncryptionAuxInfo;
HCRYPTPROV hCryptProv;
DWORD dwKeyChoice;
HCRYPTKEY hKeyEncryptionKey;
void *pvKeyEncryptionKey;
CRYPT_DATA_BLOB KeyId;
FILETIME Date;
PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
}
alias _CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO;
alias _CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO *PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO;
//C struct _CMSG_RECIPIENT_ENCODE_INFO {
//C DWORD dwRecipientChoice;
//C union {
//C PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTrans;
//C PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO pKeyAgree;
//C PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO pMailList;
//C };
union _N142
{
PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTrans;
PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO pKeyAgree;
PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO pMailList;
}
//C };
struct _CMSG_RECIPIENT_ENCODE_INFO
{
DWORD dwRecipientChoice;
PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTrans;
PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO pKeyAgree;
PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO pMailList;
}
//C typedef struct _CMSG_RC2_AUX_INFO {
//C DWORD cbSize;
//C DWORD dwBitLen;
//C } CMSG_RC2_AUX_INFO,*PCMSG_RC2_AUX_INFO;
struct _CMSG_RC2_AUX_INFO
{
DWORD cbSize;
DWORD dwBitLen;
}
alias _CMSG_RC2_AUX_INFO CMSG_RC2_AUX_INFO;
alias _CMSG_RC2_AUX_INFO *PCMSG_RC2_AUX_INFO;
//C typedef struct _CMSG_SP3_COMPATIBLE_AUX_INFO {
//C DWORD cbSize;
//C DWORD dwFlags;
//C } CMSG_SP3_COMPATIBLE_AUX_INFO,*PCMSG_SP3_COMPATIBLE_AUX_INFO;
struct _CMSG_SP3_COMPATIBLE_AUX_INFO
{
DWORD cbSize;
DWORD dwFlags;
}
alias _CMSG_SP3_COMPATIBLE_AUX_INFO CMSG_SP3_COMPATIBLE_AUX_INFO;
alias _CMSG_SP3_COMPATIBLE_AUX_INFO *PCMSG_SP3_COMPATIBLE_AUX_INFO;
//C typedef struct _CMSG_RC4_AUX_INFO {
//C DWORD cbSize;
//C DWORD dwBitLen;
//C } CMSG_RC4_AUX_INFO,*PCMSG_RC4_AUX_INFO;
struct _CMSG_RC4_AUX_INFO
{
DWORD cbSize;
DWORD dwBitLen;
}
alias _CMSG_RC4_AUX_INFO CMSG_RC4_AUX_INFO;
alias _CMSG_RC4_AUX_INFO *PCMSG_RC4_AUX_INFO;
//C typedef struct _CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO {
//C DWORD cbSize;
//C CMSG_SIGNED_ENCODE_INFO SignedInfo;
//C CMSG_ENVELOPED_ENCODE_INFO EnvelopedInfo;
//C } CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO,*PCMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO;
struct _CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO
{
DWORD cbSize;
CMSG_SIGNED_ENCODE_INFO SignedInfo;
CMSG_ENVELOPED_ENCODE_INFO EnvelopedInfo;
}
alias _CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO;
alias _CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO *PCMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO;
//C typedef struct _CMSG_HASHED_ENCODE_INFO {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C void *pvHashAuxInfo;
//C } CMSG_HASHED_ENCODE_INFO,*PCMSG_HASHED_ENCODE_INFO;
struct _CMSG_HASHED_ENCODE_INFO
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
void *pvHashAuxInfo;
}
alias _CMSG_HASHED_ENCODE_INFO CMSG_HASHED_ENCODE_INFO;
alias _CMSG_HASHED_ENCODE_INFO *PCMSG_HASHED_ENCODE_INFO;
//C typedef struct _CMSG_ENCRYPTED_ENCODE_INFO {
//C DWORD cbSize;
//C CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
//C void *pvEncryptionAuxInfo;
//C } CMSG_ENCRYPTED_ENCODE_INFO,*PCMSG_ENCRYPTED_ENCODE_INFO;
struct _CMSG_ENCRYPTED_ENCODE_INFO
{
DWORD cbSize;
CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
void *pvEncryptionAuxInfo;
}
alias _CMSG_ENCRYPTED_ENCODE_INFO CMSG_ENCRYPTED_ENCODE_INFO;
alias _CMSG_ENCRYPTED_ENCODE_INFO *PCMSG_ENCRYPTED_ENCODE_INFO;
//C typedef WINBOOL ( *PFN_CMSG_STREAM_OUTPUT)(const void *pvArg,BYTE *pbData,DWORD cbData,WINBOOL fFinal);
alias WINBOOL function(void *pvArg, BYTE *pbData, DWORD cbData, WINBOOL fFinal)PFN_CMSG_STREAM_OUTPUT;
//C typedef struct _CMSG_STREAM_INFO {
//C DWORD cbContent;
//C PFN_CMSG_STREAM_OUTPUT pfnStreamOutput;
//C void *pvArg;
//C } CMSG_STREAM_INFO,*PCMSG_STREAM_INFO;
struct _CMSG_STREAM_INFO
{
DWORD cbContent;
PFN_CMSG_STREAM_OUTPUT pfnStreamOutput;
void *pvArg;
}
alias _CMSG_STREAM_INFO CMSG_STREAM_INFO;
alias _CMSG_STREAM_INFO *PCMSG_STREAM_INFO;
//C HCRYPTMSG CryptMsgOpenToEncode(DWORD dwMsgEncodingType,DWORD dwFlags,DWORD dwMsgType,void const *pvMsgEncodeInfo,LPSTR pszInnerContentObjID,PCMSG_STREAM_INFO pStreamInfo);
HCRYPTMSG CryptMsgOpenToEncode(DWORD dwMsgEncodingType, DWORD dwFlags, DWORD dwMsgType, void *pvMsgEncodeInfo, LPSTR pszInnerContentObjID, PCMSG_STREAM_INFO pStreamInfo);
//C DWORD CryptMsgCalculateEncodedLength(DWORD dwMsgEncodingType,DWORD dwFlags,DWORD dwMsgType,void const *pvMsgEncodeInfo,LPSTR pszInnerContentObjID,DWORD cbData);
DWORD CryptMsgCalculateEncodedLength(DWORD dwMsgEncodingType, DWORD dwFlags, DWORD dwMsgType, void *pvMsgEncodeInfo, LPSTR pszInnerContentObjID, DWORD cbData);
//C HCRYPTMSG CryptMsgOpenToDecode(DWORD dwMsgEncodingType,DWORD dwFlags,DWORD dwMsgType,HCRYPTPROV hCryptProv,PCERT_INFO pRecipientInfo,PCMSG_STREAM_INFO pStreamInfo);
HCRYPTMSG CryptMsgOpenToDecode(DWORD dwMsgEncodingType, DWORD dwFlags, DWORD dwMsgType, HCRYPTPROV hCryptProv, PCERT_INFO pRecipientInfo, PCMSG_STREAM_INFO pStreamInfo);
//C HCRYPTMSG CryptMsgDuplicate(HCRYPTMSG hCryptMsg);
HCRYPTMSG CryptMsgDuplicate(HCRYPTMSG hCryptMsg);
//C WINBOOL CryptMsgClose(HCRYPTMSG hCryptMsg);
WINBOOL CryptMsgClose(HCRYPTMSG hCryptMsg);
//C WINBOOL CryptMsgUpdate(HCRYPTMSG hCryptMsg,const BYTE *pbData,DWORD cbData,WINBOOL fFinal);
WINBOOL CryptMsgUpdate(HCRYPTMSG hCryptMsg, BYTE *pbData, DWORD cbData, WINBOOL fFinal);
//C WINBOOL CryptMsgGetParam(HCRYPTMSG hCryptMsg,DWORD dwParamType,DWORD dwIndex,void *pvData,DWORD *pcbData);
WINBOOL CryptMsgGetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType, DWORD dwIndex, void *pvData, DWORD *pcbData);
//C typedef struct _CMSG_SIGNER_INFO {
//C DWORD dwVersion;
//C CERT_NAME_BLOB Issuer;
//C CRYPT_INTEGER_BLOB SerialNumber;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedHash;
//C CRYPT_ATTRIBUTES AuthAttrs;
//C CRYPT_ATTRIBUTES UnauthAttrs;
//C } CMSG_SIGNER_INFO,*PCMSG_SIGNER_INFO;
struct _CMSG_SIGNER_INFO
{
DWORD dwVersion;
CERT_NAME_BLOB Issuer;
CRYPT_INTEGER_BLOB SerialNumber;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedHash;
CRYPT_ATTRIBUTES AuthAttrs;
CRYPT_ATTRIBUTES UnauthAttrs;
}
alias _CMSG_SIGNER_INFO CMSG_SIGNER_INFO;
alias _CMSG_SIGNER_INFO *PCMSG_SIGNER_INFO;
//C typedef struct _CMSG_CMS_SIGNER_INFO {
//C DWORD dwVersion;
//C CERT_ID SignerId;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedHash;
//C CRYPT_ATTRIBUTES AuthAttrs;
//C CRYPT_ATTRIBUTES UnauthAttrs;
//C } CMSG_CMS_SIGNER_INFO,*PCMSG_CMS_SIGNER_INFO;
struct _CMSG_CMS_SIGNER_INFO
{
DWORD dwVersion;
CERT_ID SignerId;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
CRYPT_ALGORITHM_IDENTIFIER HashEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedHash;
CRYPT_ATTRIBUTES AuthAttrs;
CRYPT_ATTRIBUTES UnauthAttrs;
}
alias _CMSG_CMS_SIGNER_INFO CMSG_CMS_SIGNER_INFO;
alias _CMSG_CMS_SIGNER_INFO *PCMSG_CMS_SIGNER_INFO;
//C typedef CRYPT_ATTRIBUTES CMSG_ATTR;
alias CRYPT_ATTRIBUTES CMSG_ATTR;
//C typedef CRYPT_ATTRIBUTES *PCMSG_ATTR;
alias CRYPT_ATTRIBUTES *PCMSG_ATTR;
//C typedef struct _CMSG_KEY_TRANS_RECIPIENT_INFO {
//C DWORD dwVersion;
//C CERT_ID RecipientId;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedKey;
//C } CMSG_KEY_TRANS_RECIPIENT_INFO,*PCMSG_KEY_TRANS_RECIPIENT_INFO;
struct _CMSG_KEY_TRANS_RECIPIENT_INFO
{
DWORD dwVersion;
CERT_ID RecipientId;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedKey;
}
alias _CMSG_KEY_TRANS_RECIPIENT_INFO CMSG_KEY_TRANS_RECIPIENT_INFO;
alias _CMSG_KEY_TRANS_RECIPIENT_INFO *PCMSG_KEY_TRANS_RECIPIENT_INFO;
//C typedef struct _CMSG_RECIPIENT_ENCRYPTED_KEY_INFO {
//C CERT_ID RecipientId;
//C CRYPT_DATA_BLOB EncryptedKey;
//C FILETIME Date;
//C PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
//C } CMSG_RECIPIENT_ENCRYPTED_KEY_INFO,*PCMSG_RECIPIENT_ENCRYPTED_KEY_INFO;
struct _CMSG_RECIPIENT_ENCRYPTED_KEY_INFO
{
CERT_ID RecipientId;
CRYPT_DATA_BLOB EncryptedKey;
FILETIME Date;
PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
}
alias _CMSG_RECIPIENT_ENCRYPTED_KEY_INFO CMSG_RECIPIENT_ENCRYPTED_KEY_INFO;
alias _CMSG_RECIPIENT_ENCRYPTED_KEY_INFO *PCMSG_RECIPIENT_ENCRYPTED_KEY_INFO;
//C typedef struct _CMSG_KEY_AGREE_RECIPIENT_INFO {
//C DWORD dwVersion;
//C DWORD dwOriginatorChoice;
//C union {
//C CERT_ID OriginatorCertId;
//C CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
//C };
union _N143
{
CERT_ID OriginatorCertId;
CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
}
//C CRYPT_DATA_BLOB UserKeyingMaterial;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C DWORD cRecipientEncryptedKeys;
//C PCMSG_RECIPIENT_ENCRYPTED_KEY_INFO *rgpRecipientEncryptedKeys;
//C } CMSG_KEY_AGREE_RECIPIENT_INFO,*PCMSG_KEY_AGREE_RECIPIENT_INFO;
struct _CMSG_KEY_AGREE_RECIPIENT_INFO
{
DWORD dwVersion;
DWORD dwOriginatorChoice;
CERT_ID OriginatorCertId;
CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
CRYPT_DATA_BLOB UserKeyingMaterial;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
DWORD cRecipientEncryptedKeys;
PCMSG_RECIPIENT_ENCRYPTED_KEY_INFO *rgpRecipientEncryptedKeys;
}
alias _CMSG_KEY_AGREE_RECIPIENT_INFO CMSG_KEY_AGREE_RECIPIENT_INFO;
alias _CMSG_KEY_AGREE_RECIPIENT_INFO *PCMSG_KEY_AGREE_RECIPIENT_INFO;
//C typedef struct _CMSG_MAIL_LIST_RECIPIENT_INFO {
//C DWORD dwVersion;
//C CRYPT_DATA_BLOB KeyId;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedKey;
//C FILETIME Date;
//C PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
//C } CMSG_MAIL_LIST_RECIPIENT_INFO,*PCMSG_MAIL_LIST_RECIPIENT_INFO;
struct _CMSG_MAIL_LIST_RECIPIENT_INFO
{
DWORD dwVersion;
CRYPT_DATA_BLOB KeyId;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedKey;
FILETIME Date;
PCRYPT_ATTRIBUTE_TYPE_VALUE pOtherAttr;
}
alias _CMSG_MAIL_LIST_RECIPIENT_INFO CMSG_MAIL_LIST_RECIPIENT_INFO;
alias _CMSG_MAIL_LIST_RECIPIENT_INFO *PCMSG_MAIL_LIST_RECIPIENT_INFO;
//C typedef struct _CMSG_CMS_RECIPIENT_INFO {
//C DWORD dwRecipientChoice;
//C union {
//C PCMSG_KEY_TRANS_RECIPIENT_INFO pKeyTrans;
//C PCMSG_KEY_AGREE_RECIPIENT_INFO pKeyAgree;
//C PCMSG_MAIL_LIST_RECIPIENT_INFO pMailList;
//C };
union _N144
{
PCMSG_KEY_TRANS_RECIPIENT_INFO pKeyTrans;
PCMSG_KEY_AGREE_RECIPIENT_INFO pKeyAgree;
PCMSG_MAIL_LIST_RECIPIENT_INFO pMailList;
}
//C } CMSG_CMS_RECIPIENT_INFO,*PCMSG_CMS_RECIPIENT_INFO;
struct _CMSG_CMS_RECIPIENT_INFO
{
DWORD dwRecipientChoice;
PCMSG_KEY_TRANS_RECIPIENT_INFO pKeyTrans;
PCMSG_KEY_AGREE_RECIPIENT_INFO pKeyAgree;
PCMSG_MAIL_LIST_RECIPIENT_INFO pMailList;
}
alias _CMSG_CMS_RECIPIENT_INFO CMSG_CMS_RECIPIENT_INFO;
alias _CMSG_CMS_RECIPIENT_INFO *PCMSG_CMS_RECIPIENT_INFO;
//C WINBOOL CryptMsgControl(HCRYPTMSG hCryptMsg,DWORD dwFlags,DWORD dwCtrlType,void const *pvCtrlPara);
WINBOOL CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags, DWORD dwCtrlType, void *pvCtrlPara);
//C typedef struct _CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C DWORD dwSignerIndex;
//C DWORD dwSignerType;
//C void *pvSigner;
//C } CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA,*PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA;
struct _CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
DWORD dwSignerIndex;
DWORD dwSignerType;
void *pvSigner;
}
alias _CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA;
alias _CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA *PCMSG_CTRL_VERIFY_SIGNATURE_EX_PARA;
//C typedef struct _CMSG_CTRL_DECRYPT_PARA {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C DWORD dwRecipientIndex;
//C } CMSG_CTRL_DECRYPT_PARA,*PCMSG_CTRL_DECRYPT_PARA;
struct _CMSG_CTRL_DECRYPT_PARA
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
DWORD dwRecipientIndex;
}
alias _CMSG_CTRL_DECRYPT_PARA CMSG_CTRL_DECRYPT_PARA;
alias _CMSG_CTRL_DECRYPT_PARA *PCMSG_CTRL_DECRYPT_PARA;
//C typedef struct _CMSG_CTRL_KEY_TRANS_DECRYPT_PARA {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C PCMSG_KEY_TRANS_RECIPIENT_INFO pKeyTrans;
//C DWORD dwRecipientIndex;
//C } CMSG_CTRL_KEY_TRANS_DECRYPT_PARA,*PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA;
struct _CMSG_CTRL_KEY_TRANS_DECRYPT_PARA
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
PCMSG_KEY_TRANS_RECIPIENT_INFO pKeyTrans;
DWORD dwRecipientIndex;
}
alias _CMSG_CTRL_KEY_TRANS_DECRYPT_PARA CMSG_CTRL_KEY_TRANS_DECRYPT_PARA;
alias _CMSG_CTRL_KEY_TRANS_DECRYPT_PARA *PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA;
//C typedef struct _CMSG_CTRL_KEY_AGREE_DECRYPT_PARA {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C PCMSG_KEY_AGREE_RECIPIENT_INFO pKeyAgree;
//C DWORD dwRecipientIndex;
//C DWORD dwRecipientEncryptedKeyIndex;
//C CRYPT_BIT_BLOB OriginatorPublicKey;
//C } CMSG_CTRL_KEY_AGREE_DECRYPT_PARA,*PCMSG_CTRL_KEY_AGREE_DECRYPT_PARA;
struct _CMSG_CTRL_KEY_AGREE_DECRYPT_PARA
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
PCMSG_KEY_AGREE_RECIPIENT_INFO pKeyAgree;
DWORD dwRecipientIndex;
DWORD dwRecipientEncryptedKeyIndex;
CRYPT_BIT_BLOB OriginatorPublicKey;
}
alias _CMSG_CTRL_KEY_AGREE_DECRYPT_PARA CMSG_CTRL_KEY_AGREE_DECRYPT_PARA;
alias _CMSG_CTRL_KEY_AGREE_DECRYPT_PARA *PCMSG_CTRL_KEY_AGREE_DECRYPT_PARA;
//C typedef struct _CMSG_CTRL_MAIL_LIST_DECRYPT_PARA {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C PCMSG_MAIL_LIST_RECIPIENT_INFO pMailList;
//C DWORD dwRecipientIndex;
//C DWORD dwKeyChoice;
//C union {
//C HCRYPTKEY hKeyEncryptionKey;
//C void *pvKeyEncryptionKey;
//C };
union _N145
{
HCRYPTKEY hKeyEncryptionKey;
void *pvKeyEncryptionKey;
}
//C } CMSG_CTRL_MAIL_LIST_DECRYPT_PARA,*PCMSG_CTRL_MAIL_LIST_DECRYPT_PARA;
struct _CMSG_CTRL_MAIL_LIST_DECRYPT_PARA
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
PCMSG_MAIL_LIST_RECIPIENT_INFO pMailList;
DWORD dwRecipientIndex;
DWORD dwKeyChoice;
HCRYPTKEY hKeyEncryptionKey;
void *pvKeyEncryptionKey;
}
alias _CMSG_CTRL_MAIL_LIST_DECRYPT_PARA CMSG_CTRL_MAIL_LIST_DECRYPT_PARA;
alias _CMSG_CTRL_MAIL_LIST_DECRYPT_PARA *PCMSG_CTRL_MAIL_LIST_DECRYPT_PARA;
//C typedef struct _CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA {
//C DWORD cbSize;
//C DWORD dwSignerIndex;
//C CRYPT_DATA_BLOB blob;
//C } CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA,*PCMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA;
struct _CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA
{
DWORD cbSize;
DWORD dwSignerIndex;
CRYPT_DATA_BLOB blob;
}
alias _CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA;
alias _CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA *PCMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA;
//C typedef struct _CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA {
//C DWORD cbSize;
//C DWORD dwSignerIndex;
//C DWORD dwUnauthAttrIndex;
//C } CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA,*PCMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA;
struct _CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA
{
DWORD cbSize;
DWORD dwSignerIndex;
DWORD dwUnauthAttrIndex;
}
alias _CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA;
alias _CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA *PCMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA;
//C WINBOOL CryptMsgVerifyCountersignatureEncoded(HCRYPTPROV hCryptProv,DWORD dwEncodingType,PBYTE pbSignerInfo,DWORD cbSignerInfo,PBYTE pbSignerInfoCountersignature,DWORD cbSignerInfoCountersignature,PCERT_INFO pciCountersigner);
WINBOOL CryptMsgVerifyCountersignatureEncoded(HCRYPTPROV hCryptProv, DWORD dwEncodingType, PBYTE pbSignerInfo, DWORD cbSignerInfo, PBYTE pbSignerInfoCountersignature, DWORD cbSignerInfoCountersignature, PCERT_INFO pciCountersigner);
//C WINBOOL CryptMsgVerifyCountersignatureEncodedEx(HCRYPTPROV hCryptProv,DWORD dwEncodingType,PBYTE pbSignerInfo,DWORD cbSignerInfo,PBYTE pbSignerInfoCountersignature,DWORD cbSignerInfoCountersignature,DWORD dwSignerType,void *pvSigner,DWORD dwFlags,void *pvReserved);
WINBOOL CryptMsgVerifyCountersignatureEncodedEx(HCRYPTPROV hCryptProv, DWORD dwEncodingType, PBYTE pbSignerInfo, DWORD cbSignerInfo, PBYTE pbSignerInfoCountersignature, DWORD cbSignerInfoCountersignature, DWORD dwSignerType, void *pvSigner, DWORD dwFlags, void *pvReserved);
//C WINBOOL CryptMsgCountersign(HCRYPTMSG hCryptMsg,DWORD dwIndex,DWORD cCountersigners,PCMSG_SIGNER_ENCODE_INFO rgCountersigners);
WINBOOL CryptMsgCountersign(HCRYPTMSG hCryptMsg, DWORD dwIndex, DWORD cCountersigners, PCMSG_SIGNER_ENCODE_INFO rgCountersigners);
//C WINBOOL CryptMsgCountersignEncoded(DWORD dwEncodingType,PBYTE pbSignerInfo,DWORD cbSignerInfo,DWORD cCountersigners,PCMSG_SIGNER_ENCODE_INFO rgCountersigners,PBYTE pbCountersignature,PDWORD pcbCountersignature);
WINBOOL CryptMsgCountersignEncoded(DWORD dwEncodingType, PBYTE pbSignerInfo, DWORD cbSignerInfo, DWORD cCountersigners, PCMSG_SIGNER_ENCODE_INFO rgCountersigners, PBYTE pbCountersignature, PDWORD pcbCountersignature);
//C typedef void *( *PFN_CMSG_ALLOC)(size_t cb);
alias void * function(size_t cb)PFN_CMSG_ALLOC;
//C typedef void ( *PFN_CMSG_FREE)(void *pv);
alias void function(void *pv)PFN_CMSG_FREE;
//C typedef WINBOOL ( *PFN_CMSG_GEN_ENCRYPT_KEY)(HCRYPTPROV *phCryptProv,PCRYPT_ALGORITHM_IDENTIFIER paiEncrypt,PVOID pvEncryptAuxInfo,PCERT_PUBLIC_KEY_INFO pPublicKeyInfo,PFN_CMSG_ALLOC pfnAlloc,HCRYPTKEY *phEncryptKey,PBYTE *ppbEncryptParameters,PDWORD pcbEncryptParameters);
alias WINBOOL function(HCRYPTPROV *phCryptProv, PCRYPT_ALGORITHM_IDENTIFIER paiEncrypt, PVOID pvEncryptAuxInfo, PCERT_PUBLIC_KEY_INFO pPublicKeyInfo, PFN_CMSG_ALLOC pfnAlloc, HCRYPTKEY *phEncryptKey, PBYTE *ppbEncryptParameters, PDWORD pcbEncryptParameters)PFN_CMSG_GEN_ENCRYPT_KEY;
//C typedef WINBOOL ( *PFN_CMSG_EXPORT_ENCRYPT_KEY)(HCRYPTPROV hCryptProv,HCRYPTKEY hEncryptKey,PCERT_PUBLIC_KEY_INFO pPublicKeyInfo,PBYTE pbData,PDWORD pcbData);
alias WINBOOL function(HCRYPTPROV hCryptProv, HCRYPTKEY hEncryptKey, PCERT_PUBLIC_KEY_INFO pPublicKeyInfo, PBYTE pbData, PDWORD pcbData)PFN_CMSG_EXPORT_ENCRYPT_KEY;
//C typedef WINBOOL ( *PFN_CMSG_IMPORT_ENCRYPT_KEY)(HCRYPTPROV hCryptProv,DWORD dwKeySpec,PCRYPT_ALGORITHM_IDENTIFIER paiEncrypt,PCRYPT_ALGORITHM_IDENTIFIER paiPubKey,PBYTE pbEncodedKey,DWORD cbEncodedKey,HCRYPTKEY *phEncryptKey);
alias WINBOOL function(HCRYPTPROV hCryptProv, DWORD dwKeySpec, PCRYPT_ALGORITHM_IDENTIFIER paiEncrypt, PCRYPT_ALGORITHM_IDENTIFIER paiPubKey, PBYTE pbEncodedKey, DWORD cbEncodedKey, HCRYPTKEY *phEncryptKey)PFN_CMSG_IMPORT_ENCRYPT_KEY;
//C typedef struct _CMSG_CONTENT_ENCRYPT_INFO {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
//C void *pvEncryptionAuxInfo;
//C DWORD cRecipients;
//C PCMSG_RECIPIENT_ENCODE_INFO rgCmsRecipients;
//C PFN_CMSG_ALLOC pfnAlloc;
//C PFN_CMSG_FREE pfnFree;
//C DWORD dwEncryptFlags;
//C HCRYPTKEY hContentEncryptKey;
//C DWORD dwFlags;
//C } CMSG_CONTENT_ENCRYPT_INFO,*PCMSG_CONTENT_ENCRYPT_INFO;
struct _CMSG_CONTENT_ENCRYPT_INFO
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
void *pvEncryptionAuxInfo;
DWORD cRecipients;
PCMSG_RECIPIENT_ENCODE_INFO rgCmsRecipients;
PFN_CMSG_ALLOC pfnAlloc;
PFN_CMSG_FREE pfnFree;
DWORD dwEncryptFlags;
HCRYPTKEY hContentEncryptKey;
DWORD dwFlags;
}
alias _CMSG_CONTENT_ENCRYPT_INFO CMSG_CONTENT_ENCRYPT_INFO;
alias _CMSG_CONTENT_ENCRYPT_INFO *PCMSG_CONTENT_ENCRYPT_INFO;
//C typedef WINBOOL ( *PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY)(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,DWORD dwFlags,void *pvReserved);
alias WINBOOL function(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo, DWORD dwFlags, void *pvReserved)PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY;
//C typedef struct _CMSG_KEY_TRANS_ENCRYPT_INFO {
//C DWORD cbSize;
//C DWORD dwRecipientIndex;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedKey;
//C DWORD dwFlags;
//C } CMSG_KEY_TRANS_ENCRYPT_INFO,*PCMSG_KEY_TRANS_ENCRYPT_INFO;
struct _CMSG_KEY_TRANS_ENCRYPT_INFO
{
DWORD cbSize;
DWORD dwRecipientIndex;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedKey;
DWORD dwFlags;
}
alias _CMSG_KEY_TRANS_ENCRYPT_INFO CMSG_KEY_TRANS_ENCRYPT_INFO;
alias _CMSG_KEY_TRANS_ENCRYPT_INFO *PCMSG_KEY_TRANS_ENCRYPT_INFO;
//C typedef WINBOOL ( *PFN_CMSG_EXPORT_KEY_TRANS)(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTransEncodeInfo,PCMSG_KEY_TRANS_ENCRYPT_INFO pKeyTransEncryptInfo,DWORD dwFlags,void *pvReserved);
alias WINBOOL function(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo, PCMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO pKeyTransEncodeInfo, PCMSG_KEY_TRANS_ENCRYPT_INFO pKeyTransEncryptInfo, DWORD dwFlags, void *pvReserved)PFN_CMSG_EXPORT_KEY_TRANS;
//C typedef struct _CMSG_KEY_AGREE_KEY_ENCRYPT_INFO {
//C DWORD cbSize;
//C CRYPT_DATA_BLOB EncryptedKey;
//C } CMSG_KEY_AGREE_KEY_ENCRYPT_INFO,*PCMSG_KEY_AGREE_KEY_ENCRYPT_INFO;
struct _CMSG_KEY_AGREE_KEY_ENCRYPT_INFO
{
DWORD cbSize;
CRYPT_DATA_BLOB EncryptedKey;
}
alias _CMSG_KEY_AGREE_KEY_ENCRYPT_INFO CMSG_KEY_AGREE_KEY_ENCRYPT_INFO;
alias _CMSG_KEY_AGREE_KEY_ENCRYPT_INFO *PCMSG_KEY_AGREE_KEY_ENCRYPT_INFO;
//C typedef struct _CMSG_KEY_AGREE_ENCRYPT_INFO {
//C DWORD cbSize;
//C DWORD dwRecipientIndex;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C CRYPT_DATA_BLOB UserKeyingMaterial;
//C DWORD dwOriginatorChoice;
//C union {
//C CERT_ID OriginatorCertId;
//C CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
//C };
union _N146
{
CERT_ID OriginatorCertId;
CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
}
//C DWORD cKeyAgreeKeyEncryptInfo;
//C PCMSG_KEY_AGREE_KEY_ENCRYPT_INFO *rgpKeyAgreeKeyEncryptInfo;
//C DWORD dwFlags;
//C } CMSG_KEY_AGREE_ENCRYPT_INFO,*PCMSG_KEY_AGREE_ENCRYPT_INFO;
struct _CMSG_KEY_AGREE_ENCRYPT_INFO
{
DWORD cbSize;
DWORD dwRecipientIndex;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
CRYPT_DATA_BLOB UserKeyingMaterial;
DWORD dwOriginatorChoice;
CERT_ID OriginatorCertId;
CERT_PUBLIC_KEY_INFO OriginatorPublicKeyInfo;
DWORD cKeyAgreeKeyEncryptInfo;
PCMSG_KEY_AGREE_KEY_ENCRYPT_INFO *rgpKeyAgreeKeyEncryptInfo;
DWORD dwFlags;
}
alias _CMSG_KEY_AGREE_ENCRYPT_INFO CMSG_KEY_AGREE_ENCRYPT_INFO;
alias _CMSG_KEY_AGREE_ENCRYPT_INFO *PCMSG_KEY_AGREE_ENCRYPT_INFO;
//C typedef WINBOOL ( *PFN_CMSG_EXPORT_KEY_AGREE)(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO pKeyAgreeEncodeInfo,PCMSG_KEY_AGREE_ENCRYPT_INFO pKeyAgreeEncryptInfo,DWORD dwFlags,void *pvReserved);
alias WINBOOL function(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo, PCMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO pKeyAgreeEncodeInfo, PCMSG_KEY_AGREE_ENCRYPT_INFO pKeyAgreeEncryptInfo, DWORD dwFlags, void *pvReserved)PFN_CMSG_EXPORT_KEY_AGREE;
//C typedef struct _CMSG_MAIL_LIST_ENCRYPT_INFO {
//C DWORD cbSize;
//C DWORD dwRecipientIndex;
//C CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
//C CRYPT_DATA_BLOB EncryptedKey;
//C DWORD dwFlags;
//C } CMSG_MAIL_LIST_ENCRYPT_INFO,*PCMSG_MAIL_LIST_ENCRYPT_INFO;
struct _CMSG_MAIL_LIST_ENCRYPT_INFO
{
DWORD cbSize;
DWORD dwRecipientIndex;
CRYPT_ALGORITHM_IDENTIFIER KeyEncryptionAlgorithm;
CRYPT_DATA_BLOB EncryptedKey;
DWORD dwFlags;
}
alias _CMSG_MAIL_LIST_ENCRYPT_INFO CMSG_MAIL_LIST_ENCRYPT_INFO;
alias _CMSG_MAIL_LIST_ENCRYPT_INFO *PCMSG_MAIL_LIST_ENCRYPT_INFO;
//C typedef WINBOOL ( *PFN_CMSG_EXPORT_MAIL_LIST)(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo,PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO pMailListEncodeInfo,PCMSG_MAIL_LIST_ENCRYPT_INFO pMailListEncryptInfo,DWORD dwFlags,void *pvReserved);
alias WINBOOL function(PCMSG_CONTENT_ENCRYPT_INFO pContentEncryptInfo, PCMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO pMailListEncodeInfo, PCMSG_MAIL_LIST_ENCRYPT_INFO pMailListEncryptInfo, DWORD dwFlags, void *pvReserved)PFN_CMSG_EXPORT_MAIL_LIST;
//C typedef WINBOOL ( *PFN_CMSG_IMPORT_KEY_TRANS)(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm,PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA pKeyTransDecryptPara,DWORD dwFlags,void *pvReserved,HCRYPTKEY *phContentEncryptKey);
alias WINBOOL function(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm, PCMSG_CTRL_KEY_TRANS_DECRYPT_PARA pKeyTransDecryptPara, DWORD dwFlags, void *pvReserved, HCRYPTKEY *phContentEncryptKey)PFN_CMSG_IMPORT_KEY_TRANS;
//C typedef WINBOOL ( *PFN_CMSG_IMPORT_KEY_AGREE)(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm,PCMSG_CTRL_KEY_AGREE_DECRYPT_PARA pKeyAgreeDecryptPara,DWORD dwFlags,void *pvReserved,HCRYPTKEY *phContentEncryptKey);
alias WINBOOL function(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm, PCMSG_CTRL_KEY_AGREE_DECRYPT_PARA pKeyAgreeDecryptPara, DWORD dwFlags, void *pvReserved, HCRYPTKEY *phContentEncryptKey)PFN_CMSG_IMPORT_KEY_AGREE;
//C typedef WINBOOL ( *PFN_CMSG_IMPORT_MAIL_LIST)(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm,PCMSG_CTRL_MAIL_LIST_DECRYPT_PARA pMailListDecryptPara,DWORD dwFlags,void *pvReserved,HCRYPTKEY *phContentEncryptKey);
alias WINBOOL function(PCRYPT_ALGORITHM_IDENTIFIER pContentEncryptionAlgorithm, PCMSG_CTRL_MAIL_LIST_DECRYPT_PARA pMailListDecryptPara, DWORD dwFlags, void *pvReserved, HCRYPTKEY *phContentEncryptKey)PFN_CMSG_IMPORT_MAIL_LIST;
//C typedef void *HCERTSTORE;
alias void *HCERTSTORE;
//C typedef struct _CERT_CONTEXT {
//C DWORD dwCertEncodingType;
//C BYTE *pbCertEncoded;
//C DWORD cbCertEncoded;
//C PCERT_INFO pCertInfo;
//C HCERTSTORE hCertStore;
//C } CERT_CONTEXT,*PCERT_CONTEXT;
struct _CERT_CONTEXT
{
DWORD dwCertEncodingType;
BYTE *pbCertEncoded;
DWORD cbCertEncoded;
PCERT_INFO pCertInfo;
HCERTSTORE hCertStore;
}
alias _CERT_CONTEXT CERT_CONTEXT;
alias _CERT_CONTEXT *PCERT_CONTEXT;
//C typedef const CERT_CONTEXT *PCCERT_CONTEXT;
alias CERT_CONTEXT *PCCERT_CONTEXT;
//C typedef struct _CRL_CONTEXT {
//C DWORD dwCertEncodingType;
//C BYTE *pbCrlEncoded;
//C DWORD cbCrlEncoded;
//C PCRL_INFO pCrlInfo;
//C HCERTSTORE hCertStore;
//C } CRL_CONTEXT,*PCRL_CONTEXT;
struct _CRL_CONTEXT
{
DWORD dwCertEncodingType;
BYTE *pbCrlEncoded;
DWORD cbCrlEncoded;
PCRL_INFO pCrlInfo;
HCERTSTORE hCertStore;
}
alias _CRL_CONTEXT CRL_CONTEXT;
alias _CRL_CONTEXT *PCRL_CONTEXT;
//C typedef const CRL_CONTEXT *PCCRL_CONTEXT;
alias CRL_CONTEXT *PCCRL_CONTEXT;
//C typedef struct _CTL_CONTEXT {
//C DWORD dwMsgAndCertEncodingType;
//C BYTE *pbCtlEncoded;
//C DWORD cbCtlEncoded;
//C PCTL_INFO pCtlInfo;
//C HCERTSTORE hCertStore;
//C HCRYPTMSG hCryptMsg;
//C BYTE *pbCtlContent;
//C DWORD cbCtlContent;
//C } CTL_CONTEXT,*PCTL_CONTEXT;
struct _CTL_CONTEXT
{
DWORD dwMsgAndCertEncodingType;
BYTE *pbCtlEncoded;
DWORD cbCtlEncoded;
PCTL_INFO pCtlInfo;
HCERTSTORE hCertStore;
HCRYPTMSG hCryptMsg;
BYTE *pbCtlContent;
DWORD cbCtlContent;
}
alias _CTL_CONTEXT CTL_CONTEXT;
alias _CTL_CONTEXT *PCTL_CONTEXT;
//C typedef const CTL_CONTEXT *PCCTL_CONTEXT;
alias CTL_CONTEXT *PCCTL_CONTEXT;
//C typedef struct _CRYPT_KEY_PROV_PARAM {
//C DWORD dwParam;
//C BYTE *pbData;
//C DWORD cbData;
//C DWORD dwFlags;
//C } CRYPT_KEY_PROV_PARAM,*PCRYPT_KEY_PROV_PARAM;
struct _CRYPT_KEY_PROV_PARAM
{
DWORD dwParam;
BYTE *pbData;
DWORD cbData;
DWORD dwFlags;
}
alias _CRYPT_KEY_PROV_PARAM CRYPT_KEY_PROV_PARAM;
alias _CRYPT_KEY_PROV_PARAM *PCRYPT_KEY_PROV_PARAM;
//C typedef struct _CRYPT_KEY_PROV_INFO {
//C LPWSTR pwszContainerName;
//C LPWSTR pwszProvName;
//C DWORD dwProvType;
//C DWORD dwFlags;
//C DWORD cProvParam;
//C PCRYPT_KEY_PROV_PARAM rgProvParam;
//C DWORD dwKeySpec;
//C } CRYPT_KEY_PROV_INFO,*PCRYPT_KEY_PROV_INFO;
struct _CRYPT_KEY_PROV_INFO
{
LPWSTR pwszContainerName;
LPWSTR pwszProvName;
DWORD dwProvType;
DWORD dwFlags;
DWORD cProvParam;
PCRYPT_KEY_PROV_PARAM rgProvParam;
DWORD dwKeySpec;
}
alias _CRYPT_KEY_PROV_INFO CRYPT_KEY_PROV_INFO;
alias _CRYPT_KEY_PROV_INFO *PCRYPT_KEY_PROV_INFO;
//C typedef struct _CERT_KEY_CONTEXT {
//C DWORD cbSize;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C } CERT_KEY_CONTEXT,*PCERT_KEY_CONTEXT;
struct _CERT_KEY_CONTEXT
{
DWORD cbSize;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
}
alias _CERT_KEY_CONTEXT CERT_KEY_CONTEXT;
alias _CERT_KEY_CONTEXT *PCERT_KEY_CONTEXT;
//C typedef struct _CERT_SYSTEM_STORE_RELOCATE_PARA {
//C union {
//C HKEY hKeyBase;
//C void *pvBase;
//C };
union _N147
{
HKEY hKeyBase;
void *pvBase;
}
//C union {
//C void *pvSystemStore;
//C LPCSTR pszSystemStore;
//C LPCWSTR pwszSystemStore;
//C };
union _N148
{
void *pvSystemStore;
LPCSTR pszSystemStore;
LPCWSTR pwszSystemStore;
}
//C } CERT_SYSTEM_STORE_RELOCATE_PARA,*PCERT_SYSTEM_STORE_RELOCATE_PARA;
struct _CERT_SYSTEM_STORE_RELOCATE_PARA
{
HKEY hKeyBase;
void *pvBase;
void *pvSystemStore;
LPCSTR pszSystemStore;
LPCWSTR pwszSystemStore;
}
alias _CERT_SYSTEM_STORE_RELOCATE_PARA CERT_SYSTEM_STORE_RELOCATE_PARA;
alias _CERT_SYSTEM_STORE_RELOCATE_PARA *PCERT_SYSTEM_STORE_RELOCATE_PARA;
//C typedef struct _CERT_REGISTRY_STORE_CLIENT_GPT_PARA {
//C HKEY hKeyBase;
//C LPWSTR pwszRegPath;
//C } CERT_REGISTRY_STORE_CLIENT_GPT_PARA,*PCERT_REGISTRY_STORE_CLIENT_GPT_PARA;
struct _CERT_REGISTRY_STORE_CLIENT_GPT_PARA
{
HKEY hKeyBase;
LPWSTR pwszRegPath;
}
alias _CERT_REGISTRY_STORE_CLIENT_GPT_PARA CERT_REGISTRY_STORE_CLIENT_GPT_PARA;
alias _CERT_REGISTRY_STORE_CLIENT_GPT_PARA *PCERT_REGISTRY_STORE_CLIENT_GPT_PARA;
//C typedef struct _CERT_REGISTRY_STORE_ROAMING_PARA {
//C HKEY hKey;
//C LPWSTR pwszStoreDirectory;
//C } CERT_REGISTRY_STORE_ROAMING_PARA,*PCERT_REGISTRY_STORE_ROAMING_PARA;
struct _CERT_REGISTRY_STORE_ROAMING_PARA
{
HKEY hKey;
LPWSTR pwszStoreDirectory;
}
alias _CERT_REGISTRY_STORE_ROAMING_PARA CERT_REGISTRY_STORE_ROAMING_PARA;
alias _CERT_REGISTRY_STORE_ROAMING_PARA *PCERT_REGISTRY_STORE_ROAMING_PARA;
//C typedef struct _CERT_LDAP_STORE_OPENED_PARA {
//C void *pvLdapSessionHandle;
//C LPCWSTR pwszLdapUrl;
//C } CERT_LDAP_STORE_OPENED_PARA,*PCERT_LDAP_STORE_OPENED_PARA;
struct _CERT_LDAP_STORE_OPENED_PARA
{
void *pvLdapSessionHandle;
LPCWSTR pwszLdapUrl;
}
alias _CERT_LDAP_STORE_OPENED_PARA CERT_LDAP_STORE_OPENED_PARA;
alias _CERT_LDAP_STORE_OPENED_PARA *PCERT_LDAP_STORE_OPENED_PARA;
//C HCERTSTORE CertOpenStore(LPCSTR lpszStoreProvider,DWORD dwEncodingType,HCRYPTPROV hCryptProv,DWORD dwFlags,const void *pvPara);
HCERTSTORE CertOpenStore(LPCSTR lpszStoreProvider, DWORD dwEncodingType, HCRYPTPROV hCryptProv, DWORD dwFlags, void *pvPara);
//C typedef void *HCERTSTOREPROV;
alias void *HCERTSTOREPROV;
//C typedef struct _CERT_STORE_PROV_INFO {
//C DWORD cbSize;
//C DWORD cStoreProvFunc;
//C void **rgpvStoreProvFunc;
//C HCERTSTOREPROV hStoreProv;
//C DWORD dwStoreProvFlags;
//C HCRYPTOIDFUNCADDR hStoreProvFuncAddr2;
//C } CERT_STORE_PROV_INFO,*PCERT_STORE_PROV_INFO;
struct _CERT_STORE_PROV_INFO
{
DWORD cbSize;
DWORD cStoreProvFunc;
void **rgpvStoreProvFunc;
HCERTSTOREPROV hStoreProv;
DWORD dwStoreProvFlags;
HCRYPTOIDFUNCADDR hStoreProvFuncAddr2;
}
alias _CERT_STORE_PROV_INFO CERT_STORE_PROV_INFO;
alias _CERT_STORE_PROV_INFO *PCERT_STORE_PROV_INFO;
//C typedef WINBOOL ( *PFN_CERT_DLL_OPEN_STORE_PROV_FUNC)(LPCSTR lpszStoreProvider,DWORD dwEncodingType,HCRYPTPROV hCryptProv,DWORD dwFlags,const void *pvPara,HCERTSTORE hCertStore,PCERT_STORE_PROV_INFO pStoreProvInfo);
alias WINBOOL function(LPCSTR lpszStoreProvider, DWORD dwEncodingType, HCRYPTPROV hCryptProv, DWORD dwFlags, void *pvPara, HCERTSTORE hCertStore, PCERT_STORE_PROV_INFO pStoreProvInfo)PFN_CERT_DLL_OPEN_STORE_PROV_FUNC;
//C typedef void ( *PFN_CERT_STORE_PROV_CLOSE)(HCERTSTOREPROV hStoreProv,DWORD dwFlags);
alias void function(HCERTSTOREPROV hStoreProv, DWORD dwFlags)PFN_CERT_STORE_PROV_CLOSE;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_READ_CERT)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pStoreCertContext,DWORD dwFlags,PCCERT_CONTEXT *ppProvCertContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pStoreCertContext, DWORD dwFlags, PCCERT_CONTEXT *ppProvCertContext)PFN_CERT_STORE_PROV_READ_CERT;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_WRITE_CERT)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pCertContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pCertContext, DWORD dwFlags)PFN_CERT_STORE_PROV_WRITE_CERT;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_DELETE_CERT)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pCertContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pCertContext, DWORD dwFlags)PFN_CERT_STORE_PROV_DELETE_CERT;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_SET_CERT_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pCertContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pCertContext, DWORD dwPropId, DWORD dwFlags, void *pvData)PFN_CERT_STORE_PROV_SET_CERT_PROPERTY;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_READ_CRL)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pStoreCrlContext,DWORD dwFlags,PCCRL_CONTEXT *ppProvCrlContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pStoreCrlContext, DWORD dwFlags, PCCRL_CONTEXT *ppProvCrlContext)PFN_CERT_STORE_PROV_READ_CRL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_WRITE_CRL)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pCrlContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pCrlContext, DWORD dwFlags)PFN_CERT_STORE_PROV_WRITE_CRL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_DELETE_CRL)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pCrlContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pCrlContext, DWORD dwFlags)PFN_CERT_STORE_PROV_DELETE_CRL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_SET_CRL_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pCrlContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pCrlContext, DWORD dwPropId, DWORD dwFlags, void *pvData)PFN_CERT_STORE_PROV_SET_CRL_PROPERTY;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_READ_CTL)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pStoreCtlContext,DWORD dwFlags,PCCTL_CONTEXT *ppProvCtlContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pStoreCtlContext, DWORD dwFlags, PCCTL_CONTEXT *ppProvCtlContext)PFN_CERT_STORE_PROV_READ_CTL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_WRITE_CTL)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pCtlContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pCtlContext, DWORD dwFlags)PFN_CERT_STORE_PROV_WRITE_CTL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_DELETE_CTL)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pCtlContext,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pCtlContext, DWORD dwFlags)PFN_CERT_STORE_PROV_DELETE_CTL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_SET_CTL_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pCtlContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pCtlContext, DWORD dwPropId, DWORD dwFlags, void *pvData)PFN_CERT_STORE_PROV_SET_CTL_PROPERTY;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_CONTROL)(HCERTSTOREPROV hStoreProv,DWORD dwFlags,DWORD dwCtrlType,void const *pvCtrlPara);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, DWORD dwFlags, DWORD dwCtrlType, void *pvCtrlPara)PFN_CERT_STORE_PROV_CONTROL;
//C typedef struct _CERT_STORE_PROV_FIND_INFO {
//C DWORD cbSize;
//C DWORD dwMsgAndCertEncodingType;
//C DWORD dwFindFlags;
//C DWORD dwFindType;
//C const void *pvFindPara;
//C } CERT_STORE_PROV_FIND_INFO,*PCERT_STORE_PROV_FIND_INFO;
struct _CERT_STORE_PROV_FIND_INFO
{
DWORD cbSize;
DWORD dwMsgAndCertEncodingType;
DWORD dwFindFlags;
DWORD dwFindType;
void *pvFindPara;
}
alias _CERT_STORE_PROV_FIND_INFO CERT_STORE_PROV_FIND_INFO;
alias _CERT_STORE_PROV_FIND_INFO *PCERT_STORE_PROV_FIND_INFO;
//C typedef const CERT_STORE_PROV_FIND_INFO CCERT_STORE_PROV_FIND_INFO,*PCCERT_STORE_PROV_FIND_INFO;
alias CERT_STORE_PROV_FIND_INFO CCERT_STORE_PROV_FIND_INFO;
alias CERT_STORE_PROV_FIND_INFO *PCCERT_STORE_PROV_FIND_INFO;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FIND_CERT)(HCERTSTOREPROV hStoreProv,PCCERT_STORE_PROV_FIND_INFO pFindInfo,PCCERT_CONTEXT pPrevCertContext,DWORD dwFlags,void **ppvStoreProvFindInfo,PCCERT_CONTEXT *ppProvCertContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_STORE_PROV_FIND_INFO pFindInfo, PCCERT_CONTEXT pPrevCertContext, DWORD dwFlags, void **ppvStoreProvFindInfo, PCCERT_CONTEXT *ppProvCertContext)PFN_CERT_STORE_PROV_FIND_CERT;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FREE_FIND_CERT)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pCertContext,void *pvStoreProvFindInfo,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pCertContext, void *pvStoreProvFindInfo, DWORD dwFlags)PFN_CERT_STORE_PROV_FREE_FIND_CERT;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_GET_CERT_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCERT_CONTEXT pCertContext,DWORD dwPropId,DWORD dwFlags,void *pvData,DWORD *pcbData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_CONTEXT pCertContext, DWORD dwPropId, DWORD dwFlags, void *pvData, DWORD *pcbData)PFN_CERT_STORE_PROV_GET_CERT_PROPERTY;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FIND_CRL)(HCERTSTOREPROV hStoreProv,PCCERT_STORE_PROV_FIND_INFO pFindInfo,PCCRL_CONTEXT pPrevCrlContext,DWORD dwFlags,void **ppvStoreProvFindInfo,PCCRL_CONTEXT *ppProvCrlContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_STORE_PROV_FIND_INFO pFindInfo, PCCRL_CONTEXT pPrevCrlContext, DWORD dwFlags, void **ppvStoreProvFindInfo, PCCRL_CONTEXT *ppProvCrlContext)PFN_CERT_STORE_PROV_FIND_CRL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FREE_FIND_CRL)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pCrlContext,void *pvStoreProvFindInfo,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pCrlContext, void *pvStoreProvFindInfo, DWORD dwFlags)PFN_CERT_STORE_PROV_FREE_FIND_CRL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_GET_CRL_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCRL_CONTEXT pCrlContext,DWORD dwPropId,DWORD dwFlags,void *pvData,DWORD *pcbData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCRL_CONTEXT pCrlContext, DWORD dwPropId, DWORD dwFlags, void *pvData, DWORD *pcbData)PFN_CERT_STORE_PROV_GET_CRL_PROPERTY;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FIND_CTL)(HCERTSTOREPROV hStoreProv,PCCERT_STORE_PROV_FIND_INFO pFindInfo,PCCTL_CONTEXT pPrevCtlContext,DWORD dwFlags,void **ppvStoreProvFindInfo,PCCTL_CONTEXT *ppProvCtlContext);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCERT_STORE_PROV_FIND_INFO pFindInfo, PCCTL_CONTEXT pPrevCtlContext, DWORD dwFlags, void **ppvStoreProvFindInfo, PCCTL_CONTEXT *ppProvCtlContext)PFN_CERT_STORE_PROV_FIND_CTL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_FREE_FIND_CTL)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pCtlContext,void *pvStoreProvFindInfo,DWORD dwFlags);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pCtlContext, void *pvStoreProvFindInfo, DWORD dwFlags)PFN_CERT_STORE_PROV_FREE_FIND_CTL;
//C typedef WINBOOL ( *PFN_CERT_STORE_PROV_GET_CTL_PROPERTY)(HCERTSTOREPROV hStoreProv,PCCTL_CONTEXT pCtlContext,DWORD dwPropId,DWORD dwFlags,void *pvData,DWORD *pcbData);
alias WINBOOL function(HCERTSTOREPROV hStoreProv, PCCTL_CONTEXT pCtlContext, DWORD dwPropId, DWORD dwFlags, void *pvData, DWORD *pcbData)PFN_CERT_STORE_PROV_GET_CTL_PROPERTY;
//C HCERTSTORE CertDuplicateStore(HCERTSTORE hCertStore);
HCERTSTORE CertDuplicateStore(HCERTSTORE hCertStore);
//C WINBOOL CertSaveStore(HCERTSTORE hCertStore,DWORD dwEncodingType,DWORD dwSaveAs,DWORD dwSaveTo,void *pvSaveToPara,DWORD dwFlags);
WINBOOL CertSaveStore(HCERTSTORE hCertStore, DWORD dwEncodingType, DWORD dwSaveAs, DWORD dwSaveTo, void *pvSaveToPara, DWORD dwFlags);
//C WINBOOL CertCloseStore(HCERTSTORE hCertStore,DWORD dwFlags);
WINBOOL CertCloseStore(HCERTSTORE hCertStore, DWORD dwFlags);
//C PCCERT_CONTEXT CertGetSubjectCertificateFromStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,PCERT_INFO pCertId);
PCCERT_CONTEXT CertGetSubjectCertificateFromStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, PCERT_INFO pCertId);
//C PCCERT_CONTEXT CertEnumCertificatesInStore(HCERTSTORE hCertStore,PCCERT_CONTEXT pPrevCertContext);
PCCERT_CONTEXT CertEnumCertificatesInStore(HCERTSTORE hCertStore, PCCERT_CONTEXT pPrevCertContext);
//C PCCERT_CONTEXT CertFindCertificateInStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,DWORD dwFindFlags,DWORD dwFindType,const void *pvFindPara,PCCERT_CONTEXT pPrevCertContext);
PCCERT_CONTEXT CertFindCertificateInStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, DWORD dwFindFlags, DWORD dwFindType, void *pvFindPara, PCCERT_CONTEXT pPrevCertContext);
//C PCCERT_CONTEXT CertGetIssuerCertificateFromStore(HCERTSTORE hCertStore,PCCERT_CONTEXT pSubjectContext,PCCERT_CONTEXT pPrevIssuerContext,DWORD *pdwFlags);
PCCERT_CONTEXT CertGetIssuerCertificateFromStore(HCERTSTORE hCertStore, PCCERT_CONTEXT pSubjectContext, PCCERT_CONTEXT pPrevIssuerContext, DWORD *pdwFlags);
//C WINBOOL CertVerifySubjectCertificateContext(PCCERT_CONTEXT pSubject,PCCERT_CONTEXT pIssuer,DWORD *pdwFlags);
WINBOOL CertVerifySubjectCertificateContext(PCCERT_CONTEXT pSubject, PCCERT_CONTEXT pIssuer, DWORD *pdwFlags);
//C PCCERT_CONTEXT CertDuplicateCertificateContext(PCCERT_CONTEXT pCertContext);
PCCERT_CONTEXT CertDuplicateCertificateContext(PCCERT_CONTEXT pCertContext);
//C PCCERT_CONTEXT CertCreateCertificateContext(DWORD dwCertEncodingType,const BYTE *pbCertEncoded,DWORD cbCertEncoded);
PCCERT_CONTEXT CertCreateCertificateContext(DWORD dwCertEncodingType, BYTE *pbCertEncoded, DWORD cbCertEncoded);
//C WINBOOL CertFreeCertificateContext(PCCERT_CONTEXT pCertContext);
WINBOOL CertFreeCertificateContext(PCCERT_CONTEXT pCertContext);
//C WINBOOL CertSetCertificateContextProperty(PCCERT_CONTEXT pCertContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
WINBOOL CertSetCertificateContextProperty(PCCERT_CONTEXT pCertContext, DWORD dwPropId, DWORD dwFlags, void *pvData);
//C WINBOOL CertGetCertificateContextProperty(PCCERT_CONTEXT pCertContext,DWORD dwPropId,void *pvData,DWORD *pcbData);
WINBOOL CertGetCertificateContextProperty(PCCERT_CONTEXT pCertContext, DWORD dwPropId, void *pvData, DWORD *pcbData);
//C DWORD CertEnumCertificateContextProperties(PCCERT_CONTEXT pCertContext,DWORD dwPropId);
DWORD CertEnumCertificateContextProperties(PCCERT_CONTEXT pCertContext, DWORD dwPropId);
//C WINBOOL CertCreateCTLEntryFromCertificateContextProperties(PCCERT_CONTEXT pCertContext,DWORD cOptAttr,PCRYPT_ATTRIBUTE rgOptAttr,DWORD dwFlags,void *pvReserved,PCTL_ENTRY pCtlEntry,DWORD *pcbCtlEntry);
WINBOOL CertCreateCTLEntryFromCertificateContextProperties(PCCERT_CONTEXT pCertContext, DWORD cOptAttr, PCRYPT_ATTRIBUTE rgOptAttr, DWORD dwFlags, void *pvReserved, PCTL_ENTRY pCtlEntry, DWORD *pcbCtlEntry);
//C WINBOOL CertSetCertificateContextPropertiesFromCTLEntry(PCCERT_CONTEXT pCertContext,PCTL_ENTRY pCtlEntry,DWORD dwFlags);
WINBOOL CertSetCertificateContextPropertiesFromCTLEntry(PCCERT_CONTEXT pCertContext, PCTL_ENTRY pCtlEntry, DWORD dwFlags);
//C PCCRL_CONTEXT CertGetCRLFromStore(HCERTSTORE hCertStore,PCCERT_CONTEXT pIssuerContext,PCCRL_CONTEXT pPrevCrlContext,DWORD *pdwFlags);
PCCRL_CONTEXT CertGetCRLFromStore(HCERTSTORE hCertStore, PCCERT_CONTEXT pIssuerContext, PCCRL_CONTEXT pPrevCrlContext, DWORD *pdwFlags);
//C PCCRL_CONTEXT CertEnumCRLsInStore(HCERTSTORE hCertStore,PCCRL_CONTEXT pPrevCrlContext);
PCCRL_CONTEXT CertEnumCRLsInStore(HCERTSTORE hCertStore, PCCRL_CONTEXT pPrevCrlContext);
//C PCCRL_CONTEXT CertFindCRLInStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,DWORD dwFindFlags,DWORD dwFindType,const void *pvFindPara,PCCRL_CONTEXT pPrevCrlContext);
PCCRL_CONTEXT CertFindCRLInStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, DWORD dwFindFlags, DWORD dwFindType, void *pvFindPara, PCCRL_CONTEXT pPrevCrlContext);
//C typedef struct _CRL_FIND_ISSUED_FOR_PARA {
//C PCCERT_CONTEXT pSubjectCert;
//C PCCERT_CONTEXT pIssuerCert;
//C } CRL_FIND_ISSUED_FOR_PARA,*PCRL_FIND_ISSUED_FOR_PARA;
struct _CRL_FIND_ISSUED_FOR_PARA
{
PCCERT_CONTEXT pSubjectCert;
PCCERT_CONTEXT pIssuerCert;
}
alias _CRL_FIND_ISSUED_FOR_PARA CRL_FIND_ISSUED_FOR_PARA;
alias _CRL_FIND_ISSUED_FOR_PARA *PCRL_FIND_ISSUED_FOR_PARA;
//C PCCRL_CONTEXT CertDuplicateCRLContext(PCCRL_CONTEXT pCrlContext);
PCCRL_CONTEXT CertDuplicateCRLContext(PCCRL_CONTEXT pCrlContext);
//C PCCRL_CONTEXT CertCreateCRLContext(DWORD dwCertEncodingType,const BYTE *pbCrlEncoded,DWORD cbCrlEncoded);
PCCRL_CONTEXT CertCreateCRLContext(DWORD dwCertEncodingType, BYTE *pbCrlEncoded, DWORD cbCrlEncoded);
//C WINBOOL CertFreeCRLContext(PCCRL_CONTEXT pCrlContext);
WINBOOL CertFreeCRLContext(PCCRL_CONTEXT pCrlContext);
//C WINBOOL CertSetCRLContextProperty(PCCRL_CONTEXT pCrlContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
WINBOOL CertSetCRLContextProperty(PCCRL_CONTEXT pCrlContext, DWORD dwPropId, DWORD dwFlags, void *pvData);
//C WINBOOL CertGetCRLContextProperty(PCCRL_CONTEXT pCrlContext,DWORD dwPropId,void *pvData,DWORD *pcbData);
WINBOOL CertGetCRLContextProperty(PCCRL_CONTEXT pCrlContext, DWORD dwPropId, void *pvData, DWORD *pcbData);
//C DWORD CertEnumCRLContextProperties(PCCRL_CONTEXT pCrlContext,DWORD dwPropId);
DWORD CertEnumCRLContextProperties(PCCRL_CONTEXT pCrlContext, DWORD dwPropId);
//C WINBOOL CertFindCertificateInCRL(PCCERT_CONTEXT pCert,PCCRL_CONTEXT pCrlContext,DWORD dwFlags,void *pvReserved,PCRL_ENTRY *ppCrlEntry);
WINBOOL CertFindCertificateInCRL(PCCERT_CONTEXT pCert, PCCRL_CONTEXT pCrlContext, DWORD dwFlags, void *pvReserved, PCRL_ENTRY *ppCrlEntry);
//C WINBOOL CertIsValidCRLForCertificate(PCCERT_CONTEXT pCert,PCCRL_CONTEXT pCrl,DWORD dwFlags,void *pvReserved);
WINBOOL CertIsValidCRLForCertificate(PCCERT_CONTEXT pCert, PCCRL_CONTEXT pCrl, DWORD dwFlags, void *pvReserved);
//C WINBOOL CertAddEncodedCertificateToStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,const BYTE *pbCertEncoded,DWORD cbCertEncoded,DWORD dwAddDisposition,PCCERT_CONTEXT *ppCertContext);
WINBOOL CertAddEncodedCertificateToStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, BYTE *pbCertEncoded, DWORD cbCertEncoded, DWORD dwAddDisposition, PCCERT_CONTEXT *ppCertContext);
//C WINBOOL CertAddCertificateContextToStore(HCERTSTORE hCertStore,PCCERT_CONTEXT pCertContext,DWORD dwAddDisposition,PCCERT_CONTEXT *ppStoreContext);
WINBOOL CertAddCertificateContextToStore(HCERTSTORE hCertStore, PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition, PCCERT_CONTEXT *ppStoreContext);
//C WINBOOL CertAddSerializedElementToStore(HCERTSTORE hCertStore,const BYTE *pbElement,DWORD cbElement,DWORD dwAddDisposition,DWORD dwFlags,DWORD dwContextTypeFlags,DWORD *pdwContextType,const void **ppvContext);
WINBOOL CertAddSerializedElementToStore(HCERTSTORE hCertStore, BYTE *pbElement, DWORD cbElement, DWORD dwAddDisposition, DWORD dwFlags, DWORD dwContextTypeFlags, DWORD *pdwContextType, void **ppvContext);
//C WINBOOL CertDeleteCertificateFromStore(PCCERT_CONTEXT pCertContext);
WINBOOL CertDeleteCertificateFromStore(PCCERT_CONTEXT pCertContext);
//C WINBOOL CertAddEncodedCRLToStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,const BYTE *pbCrlEncoded,DWORD cbCrlEncoded,DWORD dwAddDisposition,PCCRL_CONTEXT *ppCrlContext);
WINBOOL CertAddEncodedCRLToStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, BYTE *pbCrlEncoded, DWORD cbCrlEncoded, DWORD dwAddDisposition, PCCRL_CONTEXT *ppCrlContext);
//C WINBOOL CertAddCRLContextToStore(HCERTSTORE hCertStore,PCCRL_CONTEXT pCrlContext,DWORD dwAddDisposition,PCCRL_CONTEXT *ppStoreContext);
WINBOOL CertAddCRLContextToStore(HCERTSTORE hCertStore, PCCRL_CONTEXT pCrlContext, DWORD dwAddDisposition, PCCRL_CONTEXT *ppStoreContext);
//C WINBOOL CertDeleteCRLFromStore(PCCRL_CONTEXT pCrlContext);
WINBOOL CertDeleteCRLFromStore(PCCRL_CONTEXT pCrlContext);
//C WINBOOL CertSerializeCertificateStoreElement(PCCERT_CONTEXT pCertContext,DWORD dwFlags,BYTE *pbElement,DWORD *pcbElement);
WINBOOL CertSerializeCertificateStoreElement(PCCERT_CONTEXT pCertContext, DWORD dwFlags, BYTE *pbElement, DWORD *pcbElement);
//C WINBOOL CertSerializeCRLStoreElement(PCCRL_CONTEXT pCrlContext,DWORD dwFlags,BYTE *pbElement,DWORD *pcbElement);
WINBOOL CertSerializeCRLStoreElement(PCCRL_CONTEXT pCrlContext, DWORD dwFlags, BYTE *pbElement, DWORD *pcbElement);
//C PCCTL_CONTEXT CertDuplicateCTLContext(PCCTL_CONTEXT pCtlContext);
PCCTL_CONTEXT CertDuplicateCTLContext(PCCTL_CONTEXT pCtlContext);
//C PCCTL_CONTEXT CertCreateCTLContext(DWORD dwMsgAndCertEncodingType,const BYTE *pbCtlEncoded,DWORD cbCtlEncoded);
PCCTL_CONTEXT CertCreateCTLContext(DWORD dwMsgAndCertEncodingType, BYTE *pbCtlEncoded, DWORD cbCtlEncoded);
//C WINBOOL CertFreeCTLContext(PCCTL_CONTEXT pCtlContext);
WINBOOL CertFreeCTLContext(PCCTL_CONTEXT pCtlContext);
//C WINBOOL CertSetCTLContextProperty(PCCTL_CONTEXT pCtlContext,DWORD dwPropId,DWORD dwFlags,const void *pvData);
WINBOOL CertSetCTLContextProperty(PCCTL_CONTEXT pCtlContext, DWORD dwPropId, DWORD dwFlags, void *pvData);
//C WINBOOL CertGetCTLContextProperty(PCCTL_CONTEXT pCtlContext,DWORD dwPropId,void *pvData,DWORD *pcbData);
WINBOOL CertGetCTLContextProperty(PCCTL_CONTEXT pCtlContext, DWORD dwPropId, void *pvData, DWORD *pcbData);
//C DWORD CertEnumCTLContextProperties(PCCTL_CONTEXT pCtlContext,DWORD dwPropId);
DWORD CertEnumCTLContextProperties(PCCTL_CONTEXT pCtlContext, DWORD dwPropId);
//C PCCTL_CONTEXT CertEnumCTLsInStore(HCERTSTORE hCertStore,PCCTL_CONTEXT pPrevCtlContext);
PCCTL_CONTEXT CertEnumCTLsInStore(HCERTSTORE hCertStore, PCCTL_CONTEXT pPrevCtlContext);
//C PCTL_ENTRY CertFindSubjectInCTL(DWORD dwEncodingType,DWORD dwSubjectType,void *pvSubject,PCCTL_CONTEXT pCtlContext,DWORD dwFlags);
PCTL_ENTRY CertFindSubjectInCTL(DWORD dwEncodingType, DWORD dwSubjectType, void *pvSubject, PCCTL_CONTEXT pCtlContext, DWORD dwFlags);
//C typedef struct _CTL_ANY_SUBJECT_INFO {
//C CRYPT_ALGORITHM_IDENTIFIER SubjectAlgorithm;
//C CRYPT_DATA_BLOB SubjectIdentifier;
//C } CTL_ANY_SUBJECT_INFO,*PCTL_ANY_SUBJECT_INFO;
struct _CTL_ANY_SUBJECT_INFO
{
CRYPT_ALGORITHM_IDENTIFIER SubjectAlgorithm;
CRYPT_DATA_BLOB SubjectIdentifier;
}
alias _CTL_ANY_SUBJECT_INFO CTL_ANY_SUBJECT_INFO;
alias _CTL_ANY_SUBJECT_INFO *PCTL_ANY_SUBJECT_INFO;
//C PCCTL_CONTEXT CertFindCTLInStore(HCERTSTORE hCertStore,DWORD dwMsgAndCertEncodingType,DWORD dwFindFlags,DWORD dwFindType,const void *pvFindPara,PCCTL_CONTEXT pPrevCtlContext);
PCCTL_CONTEXT CertFindCTLInStore(HCERTSTORE hCertStore, DWORD dwMsgAndCertEncodingType, DWORD dwFindFlags, DWORD dwFindType, void *pvFindPara, PCCTL_CONTEXT pPrevCtlContext);
//C typedef struct _CTL_FIND_USAGE_PARA {
//C DWORD cbSize;
//C CTL_USAGE SubjectUsage;
//C CRYPT_DATA_BLOB ListIdentifier;
//C PCERT_INFO pSigner;
//C } CTL_FIND_USAGE_PARA,*PCTL_FIND_USAGE_PARA;
struct _CTL_FIND_USAGE_PARA
{
DWORD cbSize;
CTL_USAGE SubjectUsage;
CRYPT_DATA_BLOB ListIdentifier;
PCERT_INFO pSigner;
}
alias _CTL_FIND_USAGE_PARA CTL_FIND_USAGE_PARA;
alias _CTL_FIND_USAGE_PARA *PCTL_FIND_USAGE_PARA;
//C typedef struct _CTL_FIND_SUBJECT_PARA {
//C DWORD cbSize;
//C PCTL_FIND_USAGE_PARA pUsagePara;
//C DWORD dwSubjectType;
//C void *pvSubject;
//C } CTL_FIND_SUBJECT_PARA,*PCTL_FIND_SUBJECT_PARA;
struct _CTL_FIND_SUBJECT_PARA
{
DWORD cbSize;
PCTL_FIND_USAGE_PARA pUsagePara;
DWORD dwSubjectType;
void *pvSubject;
}
alias _CTL_FIND_SUBJECT_PARA CTL_FIND_SUBJECT_PARA;
alias _CTL_FIND_SUBJECT_PARA *PCTL_FIND_SUBJECT_PARA;
//C WINBOOL CertAddEncodedCTLToStore(HCERTSTORE hCertStore,DWORD dwMsgAndCertEncodingType,const BYTE *pbCtlEncoded,DWORD cbCtlEncoded,DWORD dwAddDisposition,PCCTL_CONTEXT *ppCtlContext);
WINBOOL CertAddEncodedCTLToStore(HCERTSTORE hCertStore, DWORD dwMsgAndCertEncodingType, BYTE *pbCtlEncoded, DWORD cbCtlEncoded, DWORD dwAddDisposition, PCCTL_CONTEXT *ppCtlContext);
//C WINBOOL CertAddCTLContextToStore(HCERTSTORE hCertStore,PCCTL_CONTEXT pCtlContext,DWORD dwAddDisposition,PCCTL_CONTEXT *ppStoreContext);
WINBOOL CertAddCTLContextToStore(HCERTSTORE hCertStore, PCCTL_CONTEXT pCtlContext, DWORD dwAddDisposition, PCCTL_CONTEXT *ppStoreContext);
//C WINBOOL CertSerializeCTLStoreElement(PCCTL_CONTEXT pCtlContext,DWORD dwFlags,BYTE *pbElement,DWORD *pcbElement);
WINBOOL CertSerializeCTLStoreElement(PCCTL_CONTEXT pCtlContext, DWORD dwFlags, BYTE *pbElement, DWORD *pcbElement);
//C WINBOOL CertDeleteCTLFromStore(PCCTL_CONTEXT pCtlContext);
WINBOOL CertDeleteCTLFromStore(PCCTL_CONTEXT pCtlContext);
//C WINBOOL CertAddCertificateLinkToStore(HCERTSTORE hCertStore,PCCERT_CONTEXT pCertContext,DWORD dwAddDisposition,PCCERT_CONTEXT *ppStoreContext);
WINBOOL CertAddCertificateLinkToStore(HCERTSTORE hCertStore, PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition, PCCERT_CONTEXT *ppStoreContext);
//C WINBOOL CertAddCRLLinkToStore(HCERTSTORE hCertStore,PCCRL_CONTEXT pCrlContext,DWORD dwAddDisposition,PCCRL_CONTEXT *ppStoreContext);
WINBOOL CertAddCRLLinkToStore(HCERTSTORE hCertStore, PCCRL_CONTEXT pCrlContext, DWORD dwAddDisposition, PCCRL_CONTEXT *ppStoreContext);
//C WINBOOL CertAddCTLLinkToStore(HCERTSTORE hCertStore,PCCTL_CONTEXT pCtlContext,DWORD dwAddDisposition,PCCTL_CONTEXT *ppStoreContext);
WINBOOL CertAddCTLLinkToStore(HCERTSTORE hCertStore, PCCTL_CONTEXT pCtlContext, DWORD dwAddDisposition, PCCTL_CONTEXT *ppStoreContext);
//C WINBOOL CertAddStoreToCollection(HCERTSTORE hCollectionStore,HCERTSTORE hSiblingStore,DWORD dwUpdateFlags,DWORD dwPriority);
WINBOOL CertAddStoreToCollection(HCERTSTORE hCollectionStore, HCERTSTORE hSiblingStore, DWORD dwUpdateFlags, DWORD dwPriority);
//C void CertRemoveStoreFromCollection(HCERTSTORE hCollectionStore,HCERTSTORE hSiblingStore);
void CertRemoveStoreFromCollection(HCERTSTORE hCollectionStore, HCERTSTORE hSiblingStore);
//C WINBOOL CertControlStore(HCERTSTORE hCertStore,DWORD dwFlags,DWORD dwCtrlType,void const *pvCtrlPara);
WINBOOL CertControlStore(HCERTSTORE hCertStore, DWORD dwFlags, DWORD dwCtrlType, void *pvCtrlPara);
//C WINBOOL CertSetStoreProperty(HCERTSTORE hCertStore,DWORD dwPropId,DWORD dwFlags,const void *pvData);
WINBOOL CertSetStoreProperty(HCERTSTORE hCertStore, DWORD dwPropId, DWORD dwFlags, void *pvData);
//C WINBOOL CertGetStoreProperty(HCERTSTORE hCertStore,DWORD dwPropId,void *pvData,DWORD *pcbData);
WINBOOL CertGetStoreProperty(HCERTSTORE hCertStore, DWORD dwPropId, void *pvData, DWORD *pcbData);
//C typedef struct _CERT_CREATE_CONTEXT_PARA {
//C DWORD cbSize;
//C PFN_CRYPT_FREE pfnFree;
//C void *pvFree;
//C } CERT_CREATE_CONTEXT_PARA,*PCERT_CREATE_CONTEXT_PARA;
struct _CERT_CREATE_CONTEXT_PARA
{
DWORD cbSize;
PFN_CRYPT_FREE pfnFree;
void *pvFree;
}
alias _CERT_CREATE_CONTEXT_PARA CERT_CREATE_CONTEXT_PARA;
alias _CERT_CREATE_CONTEXT_PARA *PCERT_CREATE_CONTEXT_PARA;
//C const void * CertCreateContext(DWORD dwContextType,DWORD dwEncodingType,const BYTE *pbEncoded,DWORD cbEncoded,DWORD dwFlags,PCERT_CREATE_CONTEXT_PARA pCreatePara);
void * CertCreateContext(DWORD dwContextType, DWORD dwEncodingType, BYTE *pbEncoded, DWORD cbEncoded, DWORD dwFlags, PCERT_CREATE_CONTEXT_PARA pCreatePara);
//C typedef struct _CERT_SYSTEM_STORE_INFO {
//C DWORD cbSize;
//C } CERT_SYSTEM_STORE_INFO,*PCERT_SYSTEM_STORE_INFO;
struct _CERT_SYSTEM_STORE_INFO
{
DWORD cbSize;
}
alias _CERT_SYSTEM_STORE_INFO CERT_SYSTEM_STORE_INFO;
alias _CERT_SYSTEM_STORE_INFO *PCERT_SYSTEM_STORE_INFO;
//C typedef struct _CERT_PHYSICAL_STORE_INFO {
//C DWORD cbSize;
//C LPSTR pszOpenStoreProvider;
//C DWORD dwOpenEncodingType;
//C DWORD dwOpenFlags;
//C CRYPT_DATA_BLOB OpenParameters;
//C DWORD dwFlags;
//C DWORD dwPriority;
//C } CERT_PHYSICAL_STORE_INFO,*PCERT_PHYSICAL_STORE_INFO;
struct _CERT_PHYSICAL_STORE_INFO
{
DWORD cbSize;
LPSTR pszOpenStoreProvider;
DWORD dwOpenEncodingType;
DWORD dwOpenFlags;
CRYPT_DATA_BLOB OpenParameters;
DWORD dwFlags;
DWORD dwPriority;
}
alias _CERT_PHYSICAL_STORE_INFO CERT_PHYSICAL_STORE_INFO;
alias _CERT_PHYSICAL_STORE_INFO *PCERT_PHYSICAL_STORE_INFO;
//C WINBOOL CertRegisterSystemStore(const void *pvSystemStore,DWORD dwFlags,PCERT_SYSTEM_STORE_INFO pStoreInfo,void *pvReserved);
WINBOOL CertRegisterSystemStore(void *pvSystemStore, DWORD dwFlags, PCERT_SYSTEM_STORE_INFO pStoreInfo, void *pvReserved);
//C WINBOOL CertRegisterPhysicalStore(const void *pvSystemStore,DWORD dwFlags,LPCWSTR pwszStoreName,PCERT_PHYSICAL_STORE_INFO pStoreInfo,void *pvReserved);
WINBOOL CertRegisterPhysicalStore(void *pvSystemStore, DWORD dwFlags, LPCWSTR pwszStoreName, PCERT_PHYSICAL_STORE_INFO pStoreInfo, void *pvReserved);
//C WINBOOL CertUnregisterSystemStore(const void *pvSystemStore,DWORD dwFlags);
WINBOOL CertUnregisterSystemStore(void *pvSystemStore, DWORD dwFlags);
//C WINBOOL CertUnregisterPhysicalStore(const void *pvSystemStore,DWORD dwFlags,LPCWSTR pwszStoreName);
WINBOOL CertUnregisterPhysicalStore(void *pvSystemStore, DWORD dwFlags, LPCWSTR pwszStoreName);
//C typedef WINBOOL ( *PFN_CERT_ENUM_SYSTEM_STORE_LOCATION)(LPCWSTR pwszStoreLocation,DWORD dwFlags,void *pvReserved,void *pvArg);
alias WINBOOL function(LPCWSTR pwszStoreLocation, DWORD dwFlags, void *pvReserved, void *pvArg)PFN_CERT_ENUM_SYSTEM_STORE_LOCATION;
//C typedef WINBOOL ( *PFN_CERT_ENUM_SYSTEM_STORE)(const void *pvSystemStore,DWORD dwFlags,PCERT_SYSTEM_STORE_INFO pStoreInfo,void *pvReserved,void *pvArg);
alias WINBOOL function(void *pvSystemStore, DWORD dwFlags, PCERT_SYSTEM_STORE_INFO pStoreInfo, void *pvReserved, void *pvArg)PFN_CERT_ENUM_SYSTEM_STORE;
//C typedef WINBOOL ( *PFN_CERT_ENUM_PHYSICAL_STORE)(const void *pvSystemStore,DWORD dwFlags,LPCWSTR pwszStoreName,PCERT_PHYSICAL_STORE_INFO pStoreInfo,void *pvReserved,void *pvArg);
alias WINBOOL function(void *pvSystemStore, DWORD dwFlags, LPCWSTR pwszStoreName, PCERT_PHYSICAL_STORE_INFO pStoreInfo, void *pvReserved, void *pvArg)PFN_CERT_ENUM_PHYSICAL_STORE;
//C WINBOOL CertEnumSystemStoreLocation(DWORD dwFlags,void *pvArg,PFN_CERT_ENUM_SYSTEM_STORE_LOCATION pfnEnum);
WINBOOL CertEnumSystemStoreLocation(DWORD dwFlags, void *pvArg, PFN_CERT_ENUM_SYSTEM_STORE_LOCATION pfnEnum);
//C WINBOOL CertEnumSystemStore(DWORD dwFlags,void *pvSystemStoreLocationPara,void *pvArg,PFN_CERT_ENUM_SYSTEM_STORE pfnEnum);
WINBOOL CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara, void *pvArg, PFN_CERT_ENUM_SYSTEM_STORE pfnEnum);
//C WINBOOL CertEnumPhysicalStore(const void *pvSystemStore,DWORD dwFlags,void *pvArg,PFN_CERT_ENUM_PHYSICAL_STORE pfnEnum);
WINBOOL CertEnumPhysicalStore(void *pvSystemStore, DWORD dwFlags, void *pvArg, PFN_CERT_ENUM_PHYSICAL_STORE pfnEnum);
//C WINBOOL CertGetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext,DWORD dwFlags,PCERT_ENHKEY_USAGE pUsage,DWORD *pcbUsage);
WINBOOL CertGetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext, DWORD dwFlags, PCERT_ENHKEY_USAGE pUsage, DWORD *pcbUsage);
//C WINBOOL CertSetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext,PCERT_ENHKEY_USAGE pUsage);
WINBOOL CertSetEnhancedKeyUsage(PCCERT_CONTEXT pCertContext, PCERT_ENHKEY_USAGE pUsage);
//C WINBOOL CertAddEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext,LPCSTR pszUsageIdentifier);
WINBOOL CertAddEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext, LPCSTR pszUsageIdentifier);
//C WINBOOL CertRemoveEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext,LPCSTR pszUsageIdentifier);
WINBOOL CertRemoveEnhancedKeyUsageIdentifier(PCCERT_CONTEXT pCertContext, LPCSTR pszUsageIdentifier);
//C WINBOOL CertGetValidUsages(DWORD cCerts,PCCERT_CONTEXT *rghCerts,int *cNumOIDs,LPSTR *rghOIDs,DWORD *pcbOIDs);
WINBOOL CertGetValidUsages(DWORD cCerts, PCCERT_CONTEXT *rghCerts, int *cNumOIDs, LPSTR *rghOIDs, DWORD *pcbOIDs);
//C WINBOOL CryptMsgGetAndVerifySigner(HCRYPTMSG hCryptMsg,DWORD cSignerStore,HCERTSTORE *rghSignerStore,DWORD dwFlags,PCCERT_CONTEXT *ppSigner,DWORD *pdwSignerIndex);
WINBOOL CryptMsgGetAndVerifySigner(HCRYPTMSG hCryptMsg, DWORD cSignerStore, HCERTSTORE *rghSignerStore, DWORD dwFlags, PCCERT_CONTEXT *ppSigner, DWORD *pdwSignerIndex);
//C WINBOOL CryptMsgSignCTL(DWORD dwMsgEncodingType,BYTE *pbCtlContent,DWORD cbCtlContent,PCMSG_SIGNED_ENCODE_INFO pSignInfo,DWORD dwFlags,BYTE *pbEncoded,DWORD *pcbEncoded);
WINBOOL CryptMsgSignCTL(DWORD dwMsgEncodingType, BYTE *pbCtlContent, DWORD cbCtlContent, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags, BYTE *pbEncoded, DWORD *pcbEncoded);
//C WINBOOL CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType,PCTL_INFO pCtlInfo,PCMSG_SIGNED_ENCODE_INFO pSignInfo,DWORD dwFlags,BYTE *pbEncoded,DWORD *pcbEncoded);
WINBOOL CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType, PCTL_INFO pCtlInfo, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags, BYTE *pbEncoded, DWORD *pcbEncoded);
//C WINBOOL CertFindSubjectInSortedCTL(PCRYPT_DATA_BLOB pSubjectIdentifier,PCCTL_CONTEXT pCtlContext,DWORD dwFlags,void *pvReserved,PCRYPT_DER_BLOB pEncodedAttributes);
WINBOOL CertFindSubjectInSortedCTL(PCRYPT_DATA_BLOB pSubjectIdentifier, PCCTL_CONTEXT pCtlContext, DWORD dwFlags, void *pvReserved, PCRYPT_DER_BLOB pEncodedAttributes);
//C WINBOOL CertEnumSubjectInSortedCTL(PCCTL_CONTEXT pCtlContext,void **ppvNextSubject,PCRYPT_DER_BLOB pSubjectIdentifier,PCRYPT_DER_BLOB pEncodedAttributes);
WINBOOL CertEnumSubjectInSortedCTL(PCCTL_CONTEXT pCtlContext, void **ppvNextSubject, PCRYPT_DER_BLOB pSubjectIdentifier, PCRYPT_DER_BLOB pEncodedAttributes);
//C typedef struct _CTL_VERIFY_USAGE_PARA {
//C DWORD cbSize;
//C CRYPT_DATA_BLOB ListIdentifier;
//C DWORD cCtlStore;
//C HCERTSTORE *rghCtlStore;
//C DWORD cSignerStore;
//C HCERTSTORE *rghSignerStore;
//C } CTL_VERIFY_USAGE_PARA,*PCTL_VERIFY_USAGE_PARA;
struct _CTL_VERIFY_USAGE_PARA
{
DWORD cbSize;
CRYPT_DATA_BLOB ListIdentifier;
DWORD cCtlStore;
HCERTSTORE *rghCtlStore;
DWORD cSignerStore;
HCERTSTORE *rghSignerStore;
}
alias _CTL_VERIFY_USAGE_PARA CTL_VERIFY_USAGE_PARA;
alias _CTL_VERIFY_USAGE_PARA *PCTL_VERIFY_USAGE_PARA;
//C typedef struct _CTL_VERIFY_USAGE_STATUS {
//C DWORD cbSize;
//C DWORD dwError;
//C DWORD dwFlags;
//C PCCTL_CONTEXT *ppCtl;
//C DWORD dwCtlEntryIndex;
//C PCCERT_CONTEXT *ppSigner;
//C DWORD dwSignerIndex;
//C } CTL_VERIFY_USAGE_STATUS,*PCTL_VERIFY_USAGE_STATUS;
struct _CTL_VERIFY_USAGE_STATUS
{
DWORD cbSize;
DWORD dwError;
DWORD dwFlags;
PCCTL_CONTEXT *ppCtl;
DWORD dwCtlEntryIndex;
PCCERT_CONTEXT *ppSigner;
DWORD dwSignerIndex;
}
alias _CTL_VERIFY_USAGE_STATUS CTL_VERIFY_USAGE_STATUS;
alias _CTL_VERIFY_USAGE_STATUS *PCTL_VERIFY_USAGE_STATUS;
//C WINBOOL CertVerifyCTLUsage(DWORD dwEncodingType,DWORD dwSubjectType,void *pvSubject,PCTL_USAGE pSubjectUsage,DWORD dwFlags,PCTL_VERIFY_USAGE_PARA pVerifyUsagePara,PCTL_VERIFY_USAGE_STATUS pVerifyUsageStatus);
WINBOOL CertVerifyCTLUsage(DWORD dwEncodingType, DWORD dwSubjectType, void *pvSubject, PCTL_USAGE pSubjectUsage, DWORD dwFlags, PCTL_VERIFY_USAGE_PARA pVerifyUsagePara, PCTL_VERIFY_USAGE_STATUS pVerifyUsageStatus);
//C typedef struct _CERT_REVOCATION_CRL_INFO {
//C DWORD cbSize;
//C PCCRL_CONTEXT pBaseCrlContext;
//C PCCRL_CONTEXT pDeltaCrlContext;
//C PCRL_ENTRY pCrlEntry;
//C WINBOOL fDeltaCrlEntry;
//C } CERT_REVOCATION_CRL_INFO,*PCERT_REVOCATION_CRL_INFO;
struct _CERT_REVOCATION_CRL_INFO
{
DWORD cbSize;
PCCRL_CONTEXT pBaseCrlContext;
PCCRL_CONTEXT pDeltaCrlContext;
PCRL_ENTRY pCrlEntry;
WINBOOL fDeltaCrlEntry;
}
alias _CERT_REVOCATION_CRL_INFO CERT_REVOCATION_CRL_INFO;
alias _CERT_REVOCATION_CRL_INFO *PCERT_REVOCATION_CRL_INFO;
//C typedef struct _CERT_REVOCATION_PARA {
//C DWORD cbSize;
//C PCCERT_CONTEXT pIssuerCert;
//C DWORD cCertStore;
//C HCERTSTORE *rgCertStore;
//C HCERTSTORE hCrlStore;
//C LPFILETIME pftTimeToUse;
//C } CERT_REVOCATION_PARA,*PCERT_REVOCATION_PARA;
struct _CERT_REVOCATION_PARA
{
DWORD cbSize;
PCCERT_CONTEXT pIssuerCert;
DWORD cCertStore;
HCERTSTORE *rgCertStore;
HCERTSTORE hCrlStore;
LPFILETIME pftTimeToUse;
}
alias _CERT_REVOCATION_PARA CERT_REVOCATION_PARA;
alias _CERT_REVOCATION_PARA *PCERT_REVOCATION_PARA;
//C typedef struct _CERT_REVOCATION_STATUS {
//C DWORD cbSize;
//C DWORD dwIndex;
//C DWORD dwError;
//C DWORD dwReason;
//C WINBOOL fHasFreshnessTime;
//C DWORD dwFreshnessTime;
//C } CERT_REVOCATION_STATUS,*PCERT_REVOCATION_STATUS;
struct _CERT_REVOCATION_STATUS
{
DWORD cbSize;
DWORD dwIndex;
DWORD dwError;
DWORD dwReason;
WINBOOL fHasFreshnessTime;
DWORD dwFreshnessTime;
}
alias _CERT_REVOCATION_STATUS CERT_REVOCATION_STATUS;
alias _CERT_REVOCATION_STATUS *PCERT_REVOCATION_STATUS;
//C WINBOOL CertVerifyRevocation(DWORD dwEncodingType,DWORD dwRevType,DWORD cContext,PVOID rgpvContext[],DWORD dwFlags,PCERT_REVOCATION_PARA pRevPara,PCERT_REVOCATION_STATUS pRevStatus);
WINBOOL CertVerifyRevocation(DWORD dwEncodingType, DWORD dwRevType, DWORD cContext, PVOID *rgpvContext, DWORD dwFlags, PCERT_REVOCATION_PARA pRevPara, PCERT_REVOCATION_STATUS pRevStatus);
//C WINBOOL CertCompareIntegerBlob(PCRYPT_INTEGER_BLOB pInt1,PCRYPT_INTEGER_BLOB pInt2);
WINBOOL CertCompareIntegerBlob(PCRYPT_INTEGER_BLOB pInt1, PCRYPT_INTEGER_BLOB pInt2);
//C WINBOOL CertCompareCertificate(DWORD dwCertEncodingType,PCERT_INFO pCertId1,PCERT_INFO pCertId2);
WINBOOL CertCompareCertificate(DWORD dwCertEncodingType, PCERT_INFO pCertId1, PCERT_INFO pCertId2);
//C WINBOOL CertCompareCertificateName(DWORD dwCertEncodingType,PCERT_NAME_BLOB pCertName1,PCERT_NAME_BLOB pCertName2);
WINBOOL CertCompareCertificateName(DWORD dwCertEncodingType, PCERT_NAME_BLOB pCertName1, PCERT_NAME_BLOB pCertName2);
//C WINBOOL CertIsRDNAttrsInCertificateName(DWORD dwCertEncodingType,DWORD dwFlags,PCERT_NAME_BLOB pCertName,PCERT_RDN pRDN);
WINBOOL CertIsRDNAttrsInCertificateName(DWORD dwCertEncodingType, DWORD dwFlags, PCERT_NAME_BLOB pCertName, PCERT_RDN pRDN);
//C WINBOOL CertComparePublicKeyInfo(DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pPublicKey1,PCERT_PUBLIC_KEY_INFO pPublicKey2);
WINBOOL CertComparePublicKeyInfo(DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pPublicKey1, PCERT_PUBLIC_KEY_INFO pPublicKey2);
//C DWORD CertGetPublicKeyLength(DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pPublicKey);
DWORD CertGetPublicKeyLength(DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pPublicKey);
//C WINBOOL CryptVerifyCertificateSignature(HCRYPTPROV hCryptProv,DWORD dwCertEncodingType,const BYTE *pbEncoded,DWORD cbEncoded,PCERT_PUBLIC_KEY_INFO pPublicKey);
WINBOOL CryptVerifyCertificateSignature(HCRYPTPROV hCryptProv, DWORD dwCertEncodingType, BYTE *pbEncoded, DWORD cbEncoded, PCERT_PUBLIC_KEY_INFO pPublicKey);
//C WINBOOL CryptVerifyCertificateSignatureEx(HCRYPTPROV hCryptProv,DWORD dwCertEncodingType,DWORD dwSubjectType,void *pvSubject,DWORD dwIssuerType,void *pvIssuer,DWORD dwFlags,void *pvReserved);
WINBOOL CryptVerifyCertificateSignatureEx(HCRYPTPROV hCryptProv, DWORD dwCertEncodingType, DWORD dwSubjectType, void *pvSubject, DWORD dwIssuerType, void *pvIssuer, DWORD dwFlags, void *pvReserved);
//C WINBOOL CryptHashToBeSigned(HCRYPTPROV hCryptProv,DWORD dwCertEncodingType,const BYTE *pbEncoded,DWORD cbEncoded,BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptHashToBeSigned(HCRYPTPROV hCryptProv, DWORD dwCertEncodingType, BYTE *pbEncoded, DWORD cbEncoded, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C WINBOOL CryptHashCertificate(HCRYPTPROV hCryptProv,ALG_ID Algid,DWORD dwFlags,const BYTE *pbEncoded,DWORD cbEncoded,BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptHashCertificate(HCRYPTPROV hCryptProv, ALG_ID Algid, DWORD dwFlags, BYTE *pbEncoded, DWORD cbEncoded, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C WINBOOL CryptSignCertificate(HCRYPTPROV hCryptProv,DWORD dwKeySpec,DWORD dwCertEncodingType,const BYTE *pbEncodedToBeSigned,DWORD cbEncodedToBeSigned,PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,const void *pvHashAuxInfo,BYTE *pbSignature,DWORD *pcbSignature);
WINBOOL CryptSignCertificate(HCRYPTPROV hCryptProv, DWORD dwKeySpec, DWORD dwCertEncodingType, BYTE *pbEncodedToBeSigned, DWORD cbEncodedToBeSigned, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, void *pvHashAuxInfo, BYTE *pbSignature, DWORD *pcbSignature);
//C WINBOOL CryptSignAndEncodeCertificate(HCRYPTPROV hCryptProv,DWORD dwKeySpec,DWORD dwCertEncodingType,LPCSTR lpszStructType,const void *pvStructInfo,PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,const void *pvHashAuxInfo,PBYTE pbEncoded,DWORD *pcbEncoded);
WINBOOL CryptSignAndEncodeCertificate(HCRYPTPROV hCryptProv, DWORD dwKeySpec, DWORD dwCertEncodingType, LPCSTR lpszStructType, void *pvStructInfo, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, void *pvHashAuxInfo, PBYTE pbEncoded, DWORD *pcbEncoded);
//C LONG CertVerifyTimeValidity(LPFILETIME pTimeToVerify,PCERT_INFO pCertInfo);
LONG CertVerifyTimeValidity(LPFILETIME pTimeToVerify, PCERT_INFO pCertInfo);
//C LONG CertVerifyCRLTimeValidity(LPFILETIME pTimeToVerify,PCRL_INFO pCrlInfo);
LONG CertVerifyCRLTimeValidity(LPFILETIME pTimeToVerify, PCRL_INFO pCrlInfo);
//C WINBOOL CertVerifyValidityNesting(PCERT_INFO pSubjectInfo,PCERT_INFO pIssuerInfo);
WINBOOL CertVerifyValidityNesting(PCERT_INFO pSubjectInfo, PCERT_INFO pIssuerInfo);
//C WINBOOL CertVerifyCRLRevocation(DWORD dwCertEncodingType,PCERT_INFO pCertId,DWORD cCrlInfo,PCRL_INFO rgpCrlInfo[]);
WINBOOL CertVerifyCRLRevocation(DWORD dwCertEncodingType, PCERT_INFO pCertId, DWORD cCrlInfo, PCRL_INFO *rgpCrlInfo);
//C LPCSTR CertAlgIdToOID(DWORD dwAlgId);
LPCSTR CertAlgIdToOID(DWORD dwAlgId);
//C DWORD CertOIDToAlgId(LPCSTR pszObjId);
DWORD CertOIDToAlgId(LPCSTR pszObjId);
//C PCERT_EXTENSION CertFindExtension(LPCSTR pszObjId,DWORD cExtensions,CERT_EXTENSION rgExtensions[]);
PCERT_EXTENSION CertFindExtension(LPCSTR pszObjId, DWORD cExtensions, CERT_EXTENSION *rgExtensions);
//C PCRYPT_ATTRIBUTE CertFindAttribute(LPCSTR pszObjId,DWORD cAttr,CRYPT_ATTRIBUTE rgAttr[]);
PCRYPT_ATTRIBUTE CertFindAttribute(LPCSTR pszObjId, DWORD cAttr, CRYPT_ATTRIBUTE *rgAttr);
//C PCERT_RDN_ATTR CertFindRDNAttr(LPCSTR pszObjId,PCERT_NAME_INFO pName);
PCERT_RDN_ATTR CertFindRDNAttr(LPCSTR pszObjId, PCERT_NAME_INFO pName);
//C WINBOOL CertGetIntendedKeyUsage(DWORD dwCertEncodingType,PCERT_INFO pCertInfo,BYTE *pbKeyUsage,DWORD cbKeyUsage);
WINBOOL CertGetIntendedKeyUsage(DWORD dwCertEncodingType, PCERT_INFO pCertInfo, BYTE *pbKeyUsage, DWORD cbKeyUsage);
//C typedef void *HCRYPTDEFAULTCONTEXT;
alias void *HCRYPTDEFAULTCONTEXT;
//C WINBOOL CryptInstallDefaultContext(HCRYPTPROV hCryptProv,DWORD dwDefaultType,const void *pvDefaultPara,DWORD dwFlags,void *pvReserved,HCRYPTDEFAULTCONTEXT *phDefaultContext);
WINBOOL CryptInstallDefaultContext(HCRYPTPROV hCryptProv, DWORD dwDefaultType, void *pvDefaultPara, DWORD dwFlags, void *pvReserved, HCRYPTDEFAULTCONTEXT *phDefaultContext);
//C typedef struct _CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA {
//C DWORD cOID;
//C LPSTR *rgpszOID;
//C } CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA,*PCRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA;
struct _CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA
{
DWORD cOID;
LPSTR *rgpszOID;
}
alias _CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA;
alias _CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA *PCRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA;
//C WINBOOL CryptUninstallDefaultContext(HCRYPTDEFAULTCONTEXT hDefaultContext,DWORD dwFlags,void *pvReserved);
WINBOOL CryptUninstallDefaultContext(HCRYPTDEFAULTCONTEXT hDefaultContext, DWORD dwFlags, void *pvReserved);
//C WINBOOL CryptExportPublicKeyInfo(HCRYPTPROV hCryptProv,DWORD dwKeySpec,DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pInfo,DWORD *pcbInfo);
WINBOOL CryptExportPublicKeyInfo(HCRYPTPROV hCryptProv, DWORD dwKeySpec, DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, DWORD *pcbInfo);
//C WINBOOL CryptExportPublicKeyInfoEx(HCRYPTPROV hCryptProv,DWORD dwKeySpec,DWORD dwCertEncodingType,LPSTR pszPublicKeyObjId,DWORD dwFlags,void *pvAuxInfo,PCERT_PUBLIC_KEY_INFO pInfo,DWORD *pcbInfo);
WINBOOL CryptExportPublicKeyInfoEx(HCRYPTPROV hCryptProv, DWORD dwKeySpec, DWORD dwCertEncodingType, LPSTR pszPublicKeyObjId, DWORD dwFlags, void *pvAuxInfo, PCERT_PUBLIC_KEY_INFO pInfo, DWORD *pcbInfo);
//C WINBOOL CryptImportPublicKeyInfo(HCRYPTPROV hCryptProv,DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pInfo,HCRYPTKEY *phKey);
WINBOOL CryptImportPublicKeyInfo(HCRYPTPROV hCryptProv, DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, HCRYPTKEY *phKey);
//C WINBOOL CryptImportPublicKeyInfoEx(HCRYPTPROV hCryptProv,DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pInfo,ALG_ID aiKeyAlg,DWORD dwFlags,void *pvAuxInfo,HCRYPTKEY *phKey);
WINBOOL CryptImportPublicKeyInfoEx(HCRYPTPROV hCryptProv, DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, ALG_ID aiKeyAlg, DWORD dwFlags, void *pvAuxInfo, HCRYPTKEY *phKey);
//C WINBOOL CryptAcquireCertificatePrivateKey(PCCERT_CONTEXT pCert,DWORD dwFlags,void *pvReserved,HCRYPTPROV *phCryptProv,DWORD *pdwKeySpec,WINBOOL *pfCallerFreeProv);
WINBOOL CryptAcquireCertificatePrivateKey(PCCERT_CONTEXT pCert, DWORD dwFlags, void *pvReserved, HCRYPTPROV *phCryptProv, DWORD *pdwKeySpec, WINBOOL *pfCallerFreeProv);
//C WINBOOL CryptFindCertificateKeyProvInfo(PCCERT_CONTEXT pCert,DWORD dwFlags,void *pvReserved);
WINBOOL CryptFindCertificateKeyProvInfo(PCCERT_CONTEXT pCert, DWORD dwFlags, void *pvReserved);
//C typedef WINBOOL ( *PFN_IMPORT_PRIV_KEY_FUNC)(HCRYPTPROV hCryptProv,CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo,DWORD dwFlags,void *pvAuxInfo);
alias WINBOOL function(HCRYPTPROV hCryptProv, CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo, DWORD dwFlags, void *pvAuxInfo)PFN_IMPORT_PRIV_KEY_FUNC;
//C WINBOOL CryptImportPKCS8(CRYPT_PKCS8_IMPORT_PARAMS sImportParams,DWORD dwFlags,HCRYPTPROV *phCryptProv,void *pvAuxInfo);
WINBOOL CryptImportPKCS8(CRYPT_PKCS8_IMPORT_PARAMS sImportParams, DWORD dwFlags, HCRYPTPROV *phCryptProv, void *pvAuxInfo);
//C typedef WINBOOL ( *PFN_EXPORT_PRIV_KEY_FUNC)(HCRYPTPROV hCryptProv,DWORD dwKeySpec,LPSTR pszPrivateKeyObjId,DWORD dwFlags,void *pvAuxInfo,CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo,DWORD *pcbPrivateKeyBlob);
alias WINBOOL function(HCRYPTPROV hCryptProv, DWORD dwKeySpec, LPSTR pszPrivateKeyObjId, DWORD dwFlags, void *pvAuxInfo, CRYPT_PRIVATE_KEY_INFO *pPrivateKeyInfo, DWORD *pcbPrivateKeyBlob)PFN_EXPORT_PRIV_KEY_FUNC;
//C WINBOOL CryptExportPKCS8(HCRYPTPROV hCryptProv,DWORD dwKeySpec,LPSTR pszPrivateKeyObjId,DWORD dwFlags,void *pvAuxInfo,BYTE *pbPrivateKeyBlob,DWORD *pcbPrivateKeyBlob);
WINBOOL CryptExportPKCS8(HCRYPTPROV hCryptProv, DWORD dwKeySpec, LPSTR pszPrivateKeyObjId, DWORD dwFlags, void *pvAuxInfo, BYTE *pbPrivateKeyBlob, DWORD *pcbPrivateKeyBlob);
//C WINBOOL CryptExportPKCS8Ex(CRYPT_PKCS8_EXPORT_PARAMS *psExportParams,DWORD dwFlags,void *pvAuxInfo,BYTE *pbPrivateKeyBlob,DWORD *pcbPrivateKeyBlob);
WINBOOL CryptExportPKCS8Ex(CRYPT_PKCS8_EXPORT_PARAMS *psExportParams, DWORD dwFlags, void *pvAuxInfo, BYTE *pbPrivateKeyBlob, DWORD *pcbPrivateKeyBlob);
//C WINBOOL CryptHashPublicKeyInfo(HCRYPTPROV hCryptProv,ALG_ID Algid,DWORD dwFlags,DWORD dwCertEncodingType,PCERT_PUBLIC_KEY_INFO pInfo,BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptHashPublicKeyInfo(HCRYPTPROV hCryptProv, ALG_ID Algid, DWORD dwFlags, DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C DWORD CertRDNValueToStrA(DWORD dwValueType,PCERT_RDN_VALUE_BLOB pValue,LPSTR psz,DWORD csz);
DWORD CertRDNValueToStrA(DWORD dwValueType, PCERT_RDN_VALUE_BLOB pValue, LPSTR psz, DWORD csz);
//C DWORD CertRDNValueToStrW(DWORD dwValueType,PCERT_RDN_VALUE_BLOB pValue,LPWSTR psz,DWORD csz);
DWORD CertRDNValueToStrW(DWORD dwValueType, PCERT_RDN_VALUE_BLOB pValue, LPWSTR psz, DWORD csz);
//C DWORD CertNameToStrA(DWORD dwCertEncodingType,PCERT_NAME_BLOB pName,DWORD dwStrType,LPSTR psz,DWORD csz);
DWORD CertNameToStrA(DWORD dwCertEncodingType, PCERT_NAME_BLOB pName, DWORD dwStrType, LPSTR psz, DWORD csz);
//C DWORD CertNameToStrW(DWORD dwCertEncodingType,PCERT_NAME_BLOB pName,DWORD dwStrType,LPWSTR psz,DWORD csz);
DWORD CertNameToStrW(DWORD dwCertEncodingType, PCERT_NAME_BLOB pName, DWORD dwStrType, LPWSTR psz, DWORD csz);
//C WINBOOL CertStrToNameA(DWORD dwCertEncodingType,LPCSTR pszX500,DWORD dwStrType,void *pvReserved,BYTE *pbEncoded,DWORD *pcbEncoded,LPCSTR *ppszError);
WINBOOL CertStrToNameA(DWORD dwCertEncodingType, LPCSTR pszX500, DWORD dwStrType, void *pvReserved, BYTE *pbEncoded, DWORD *pcbEncoded, LPCSTR *ppszError);
//C WINBOOL CertStrToNameW(DWORD dwCertEncodingType,LPCWSTR pszX500,DWORD dwStrType,void *pvReserved,BYTE *pbEncoded,DWORD *pcbEncoded,LPCWSTR *ppszError);
WINBOOL CertStrToNameW(DWORD dwCertEncodingType, LPCWSTR pszX500, DWORD dwStrType, void *pvReserved, BYTE *pbEncoded, DWORD *pcbEncoded, LPCWSTR *ppszError);
//C DWORD CertGetNameStringA(PCCERT_CONTEXT pCertContext,DWORD dwType,DWORD dwFlags,void *pvTypePara,LPSTR pszNameString,DWORD cchNameString);
DWORD CertGetNameStringA(PCCERT_CONTEXT pCertContext, DWORD dwType, DWORD dwFlags, void *pvTypePara, LPSTR pszNameString, DWORD cchNameString);
//C DWORD CertGetNameStringW(PCCERT_CONTEXT pCertContext,DWORD dwType,DWORD dwFlags,void *pvTypePara,LPWSTR pszNameString,DWORD cchNameString);
DWORD CertGetNameStringW(PCCERT_CONTEXT pCertContext, DWORD dwType, DWORD dwFlags, void *pvTypePara, LPWSTR pszNameString, DWORD cchNameString);
//C typedef PCCERT_CONTEXT ( *PFN_CRYPT_GET_SIGNER_CERTIFICATE)(void *pvGetArg,DWORD dwCertEncodingType,PCERT_INFO pSignerId,HCERTSTORE hMsgCertStore);
alias PCCERT_CONTEXT function(void *pvGetArg, DWORD dwCertEncodingType, PCERT_INFO pSignerId, HCERTSTORE hMsgCertStore)PFN_CRYPT_GET_SIGNER_CERTIFICATE;
//C typedef struct _CRYPT_SIGN_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgEncodingType;
//C PCCERT_CONTEXT pSigningCert;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C void *pvHashAuxInfo;
//C DWORD cMsgCert;
//C PCCERT_CONTEXT *rgpMsgCert;
//C DWORD cMsgCrl;
//C PCCRL_CONTEXT *rgpMsgCrl;
//C DWORD cAuthAttr;
//C PCRYPT_ATTRIBUTE rgAuthAttr;
//C DWORD cUnauthAttr;
//C PCRYPT_ATTRIBUTE rgUnauthAttr;
//C DWORD dwFlags;
//C DWORD dwInnerContentType;
//C } CRYPT_SIGN_MESSAGE_PARA,*PCRYPT_SIGN_MESSAGE_PARA;
struct _CRYPT_SIGN_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgEncodingType;
PCCERT_CONTEXT pSigningCert;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
void *pvHashAuxInfo;
DWORD cMsgCert;
PCCERT_CONTEXT *rgpMsgCert;
DWORD cMsgCrl;
PCCRL_CONTEXT *rgpMsgCrl;
DWORD cAuthAttr;
PCRYPT_ATTRIBUTE rgAuthAttr;
DWORD cUnauthAttr;
PCRYPT_ATTRIBUTE rgUnauthAttr;
DWORD dwFlags;
DWORD dwInnerContentType;
}
alias _CRYPT_SIGN_MESSAGE_PARA CRYPT_SIGN_MESSAGE_PARA;
alias _CRYPT_SIGN_MESSAGE_PARA *PCRYPT_SIGN_MESSAGE_PARA;
//C typedef struct _CRYPT_VERIFY_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgAndCertEncodingType;
//C HCRYPTPROV hCryptProv;
//C PFN_CRYPT_GET_SIGNER_CERTIFICATE pfnGetSignerCertificate;
//C void *pvGetArg;
//C } CRYPT_VERIFY_MESSAGE_PARA,*PCRYPT_VERIFY_MESSAGE_PARA;
struct _CRYPT_VERIFY_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgAndCertEncodingType;
HCRYPTPROV hCryptProv;
PFN_CRYPT_GET_SIGNER_CERTIFICATE pfnGetSignerCertificate;
void *pvGetArg;
}
alias _CRYPT_VERIFY_MESSAGE_PARA CRYPT_VERIFY_MESSAGE_PARA;
alias _CRYPT_VERIFY_MESSAGE_PARA *PCRYPT_VERIFY_MESSAGE_PARA;
//C typedef struct _CRYPT_ENCRYPT_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgEncodingType;
//C HCRYPTPROV hCryptProv;
//C CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
//C void *pvEncryptionAuxInfo;
//C DWORD dwFlags;
//C DWORD dwInnerContentType;
//C } CRYPT_ENCRYPT_MESSAGE_PARA,*PCRYPT_ENCRYPT_MESSAGE_PARA;
struct _CRYPT_ENCRYPT_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgEncodingType;
HCRYPTPROV hCryptProv;
CRYPT_ALGORITHM_IDENTIFIER ContentEncryptionAlgorithm;
void *pvEncryptionAuxInfo;
DWORD dwFlags;
DWORD dwInnerContentType;
}
alias _CRYPT_ENCRYPT_MESSAGE_PARA CRYPT_ENCRYPT_MESSAGE_PARA;
alias _CRYPT_ENCRYPT_MESSAGE_PARA *PCRYPT_ENCRYPT_MESSAGE_PARA;
//C typedef struct _CRYPT_DECRYPT_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgAndCertEncodingType;
//C DWORD cCertStore;
//C HCERTSTORE *rghCertStore;
//C } CRYPT_DECRYPT_MESSAGE_PARA,*PCRYPT_DECRYPT_MESSAGE_PARA;
struct _CRYPT_DECRYPT_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgAndCertEncodingType;
DWORD cCertStore;
HCERTSTORE *rghCertStore;
}
alias _CRYPT_DECRYPT_MESSAGE_PARA CRYPT_DECRYPT_MESSAGE_PARA;
alias _CRYPT_DECRYPT_MESSAGE_PARA *PCRYPT_DECRYPT_MESSAGE_PARA;
//C typedef struct _CRYPT_HASH_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgEncodingType;
//C HCRYPTPROV hCryptProv;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C void *pvHashAuxInfo;
//C } CRYPT_HASH_MESSAGE_PARA,*PCRYPT_HASH_MESSAGE_PARA;
struct _CRYPT_HASH_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgEncodingType;
HCRYPTPROV hCryptProv;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
void *pvHashAuxInfo;
}
alias _CRYPT_HASH_MESSAGE_PARA CRYPT_HASH_MESSAGE_PARA;
alias _CRYPT_HASH_MESSAGE_PARA *PCRYPT_HASH_MESSAGE_PARA;
//C typedef struct _CRYPT_KEY_SIGN_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgAndCertEncodingType;
//C HCRYPTPROV hCryptProv;
//C DWORD dwKeySpec;
//C CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
//C void *pvHashAuxInfo;
//C CRYPT_ALGORITHM_IDENTIFIER PubKeyAlgorithm;
//C } CRYPT_KEY_SIGN_MESSAGE_PARA,*PCRYPT_KEY_SIGN_MESSAGE_PARA;
struct _CRYPT_KEY_SIGN_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgAndCertEncodingType;
HCRYPTPROV hCryptProv;
DWORD dwKeySpec;
CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
void *pvHashAuxInfo;
CRYPT_ALGORITHM_IDENTIFIER PubKeyAlgorithm;
}
alias _CRYPT_KEY_SIGN_MESSAGE_PARA CRYPT_KEY_SIGN_MESSAGE_PARA;
alias _CRYPT_KEY_SIGN_MESSAGE_PARA *PCRYPT_KEY_SIGN_MESSAGE_PARA;
//C typedef struct _CRYPT_KEY_VERIFY_MESSAGE_PARA {
//C DWORD cbSize;
//C DWORD dwMsgEncodingType;
//C HCRYPTPROV hCryptProv;
//C } CRYPT_KEY_VERIFY_MESSAGE_PARA,*PCRYPT_KEY_VERIFY_MESSAGE_PARA;
struct _CRYPT_KEY_VERIFY_MESSAGE_PARA
{
DWORD cbSize;
DWORD dwMsgEncodingType;
HCRYPTPROV hCryptProv;
}
alias _CRYPT_KEY_VERIFY_MESSAGE_PARA CRYPT_KEY_VERIFY_MESSAGE_PARA;
alias _CRYPT_KEY_VERIFY_MESSAGE_PARA *PCRYPT_KEY_VERIFY_MESSAGE_PARA;
//C WINBOOL CryptSignMessage(PCRYPT_SIGN_MESSAGE_PARA pSignPara,WINBOOL fDetachedSignature,DWORD cToBeSigned,const BYTE *rgpbToBeSigned[],DWORD rgcbToBeSigned[],BYTE *pbSignedBlob,DWORD *pcbSignedBlob);
WINBOOL CryptSignMessage(PCRYPT_SIGN_MESSAGE_PARA pSignPara, WINBOOL fDetachedSignature, DWORD cToBeSigned, BYTE **rgpbToBeSigned, DWORD *rgcbToBeSigned, BYTE *pbSignedBlob, DWORD *pcbSignedBlob);
//C WINBOOL CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,DWORD dwSignerIndex,const BYTE *pbSignedBlob,DWORD cbSignedBlob,BYTE *pbDecoded,DWORD *pcbDecoded,PCCERT_CONTEXT *ppSignerCert);
WINBOOL CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, DWORD dwSignerIndex, BYTE *pbSignedBlob, DWORD cbSignedBlob, BYTE *pbDecoded, DWORD *pcbDecoded, PCCERT_CONTEXT *ppSignerCert);
//C LONG CryptGetMessageSignerCount(DWORD dwMsgEncodingType,const BYTE *pbSignedBlob,DWORD cbSignedBlob);
LONG CryptGetMessageSignerCount(DWORD dwMsgEncodingType, BYTE *pbSignedBlob, DWORD cbSignedBlob);
//C HCERTSTORE CryptGetMessageCertificates(DWORD dwMsgAndCertEncodingType,HCRYPTPROV hCryptProv,DWORD dwFlags,const BYTE *pbSignedBlob,DWORD cbSignedBlob);
HCERTSTORE CryptGetMessageCertificates(DWORD dwMsgAndCertEncodingType, HCRYPTPROV hCryptProv, DWORD dwFlags, BYTE *pbSignedBlob, DWORD cbSignedBlob);
//C WINBOOL CryptVerifyDetachedMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,DWORD dwSignerIndex,const BYTE *pbDetachedSignBlob,DWORD cbDetachedSignBlob,DWORD cToBeSigned,const BYTE *rgpbToBeSigned[],DWORD rgcbToBeSigned[],PCCERT_CONTEXT *ppSignerCert);
WINBOOL CryptVerifyDetachedMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, DWORD dwSignerIndex, BYTE *pbDetachedSignBlob, DWORD cbDetachedSignBlob, DWORD cToBeSigned, BYTE **rgpbToBeSigned, DWORD *rgcbToBeSigned, PCCERT_CONTEXT *ppSignerCert);
//C WINBOOL CryptEncryptMessage(PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara,DWORD cRecipientCert,PCCERT_CONTEXT rgpRecipientCert[],const BYTE *pbToBeEncrypted,DWORD cbToBeEncrypted,BYTE *pbEncryptedBlob,DWORD *pcbEncryptedBlob);
WINBOOL CryptEncryptMessage(PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara, DWORD cRecipientCert, PCCERT_CONTEXT *rgpRecipientCert, BYTE *pbToBeEncrypted, DWORD cbToBeEncrypted, BYTE *pbEncryptedBlob, DWORD *pcbEncryptedBlob);
//C WINBOOL CryptDecryptMessage(PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara,const BYTE *pbEncryptedBlob,DWORD cbEncryptedBlob,BYTE *pbDecrypted,DWORD *pcbDecrypted,PCCERT_CONTEXT *ppXchgCert);
WINBOOL CryptDecryptMessage(PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, BYTE *pbEncryptedBlob, DWORD cbEncryptedBlob, BYTE *pbDecrypted, DWORD *pcbDecrypted, PCCERT_CONTEXT *ppXchgCert);
//C WINBOOL CryptSignAndEncryptMessage(PCRYPT_SIGN_MESSAGE_PARA pSignPara,PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara,DWORD cRecipientCert,PCCERT_CONTEXT rgpRecipientCert[],const BYTE *pbToBeSignedAndEncrypted,DWORD cbToBeSignedAndEncrypted,BYTE *pbSignedAndEncryptedBlob,DWORD *pcbSignedAndEncryptedBlob);
WINBOOL CryptSignAndEncryptMessage(PCRYPT_SIGN_MESSAGE_PARA pSignPara, PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara, DWORD cRecipientCert, PCCERT_CONTEXT *rgpRecipientCert, BYTE *pbToBeSignedAndEncrypted, DWORD cbToBeSignedAndEncrypted, BYTE *pbSignedAndEncryptedBlob, DWORD *pcbSignedAndEncryptedBlob);
//C WINBOOL CryptDecryptAndVerifyMessageSignature(PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara,PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,DWORD dwSignerIndex,const BYTE *pbEncryptedBlob,DWORD cbEncryptedBlob,BYTE *pbDecrypted,DWORD *pcbDecrypted,PCCERT_CONTEXT *ppXchgCert,PCCERT_CONTEXT *ppSignerCert);
WINBOOL CryptDecryptAndVerifyMessageSignature(PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, DWORD dwSignerIndex, BYTE *pbEncryptedBlob, DWORD cbEncryptedBlob, BYTE *pbDecrypted, DWORD *pcbDecrypted, PCCERT_CONTEXT *ppXchgCert, PCCERT_CONTEXT *ppSignerCert);
//C WINBOOL CryptDecodeMessage(DWORD dwMsgTypeFlags,PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara,PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,DWORD dwSignerIndex,const BYTE *pbEncodedBlob,DWORD cbEncodedBlob,DWORD dwPrevInnerContentType,DWORD *pdwMsgType,DWORD *pdwInnerContentType,BYTE *pbDecoded,DWORD *pcbDecoded,PCCERT_CONTEXT *ppXchgCert,PCCERT_CONTEXT *ppSignerCert);
WINBOOL CryptDecodeMessage(DWORD dwMsgTypeFlags, PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, DWORD dwSignerIndex, BYTE *pbEncodedBlob, DWORD cbEncodedBlob, DWORD dwPrevInnerContentType, DWORD *pdwMsgType, DWORD *pdwInnerContentType, BYTE *pbDecoded, DWORD *pcbDecoded, PCCERT_CONTEXT *ppXchgCert, PCCERT_CONTEXT *ppSignerCert);
//C WINBOOL CryptHashMessage(PCRYPT_HASH_MESSAGE_PARA pHashPara,WINBOOL fDetachedHash,DWORD cToBeHashed,const BYTE *rgpbToBeHashed[],DWORD rgcbToBeHashed[],BYTE *pbHashedBlob,DWORD *pcbHashedBlob,BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptHashMessage(PCRYPT_HASH_MESSAGE_PARA pHashPara, WINBOOL fDetachedHash, DWORD cToBeHashed, BYTE **rgpbToBeHashed, DWORD *rgcbToBeHashed, BYTE *pbHashedBlob, DWORD *pcbHashedBlob, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C WINBOOL CryptVerifyMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara,BYTE *pbHashedBlob,DWORD cbHashedBlob,BYTE *pbToBeHashed,DWORD *pcbToBeHashed,BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptVerifyMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara, BYTE *pbHashedBlob, DWORD cbHashedBlob, BYTE *pbToBeHashed, DWORD *pcbToBeHashed, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C WINBOOL CryptVerifyDetachedMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara,BYTE *pbDetachedHashBlob,DWORD cbDetachedHashBlob,DWORD cToBeHashed,const BYTE *rgpbToBeHashed[],DWORD rgcbToBeHashed[],BYTE *pbComputedHash,DWORD *pcbComputedHash);
WINBOOL CryptVerifyDetachedMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara, BYTE *pbDetachedHashBlob, DWORD cbDetachedHashBlob, DWORD cToBeHashed, BYTE **rgpbToBeHashed, DWORD *rgcbToBeHashed, BYTE *pbComputedHash, DWORD *pcbComputedHash);
//C WINBOOL CryptSignMessageWithKey(PCRYPT_KEY_SIGN_MESSAGE_PARA pSignPara,const BYTE *pbToBeSigned,DWORD cbToBeSigned,BYTE *pbSignedBlob,DWORD *pcbSignedBlob);
WINBOOL CryptSignMessageWithKey(PCRYPT_KEY_SIGN_MESSAGE_PARA pSignPara, BYTE *pbToBeSigned, DWORD cbToBeSigned, BYTE *pbSignedBlob, DWORD *pcbSignedBlob);
//C WINBOOL CryptVerifyMessageSignatureWithKey(PCRYPT_KEY_VERIFY_MESSAGE_PARA pVerifyPara,PCERT_PUBLIC_KEY_INFO pPublicKeyInfo,const BYTE *pbSignedBlob,DWORD cbSignedBlob,BYTE *pbDecoded,DWORD *pcbDecoded);
WINBOOL CryptVerifyMessageSignatureWithKey(PCRYPT_KEY_VERIFY_MESSAGE_PARA pVerifyPara, PCERT_PUBLIC_KEY_INFO pPublicKeyInfo, BYTE *pbSignedBlob, DWORD cbSignedBlob, BYTE *pbDecoded, DWORD *pcbDecoded);
//C HCERTSTORE CertOpenSystemStoreA(HCRYPTPROV hProv,LPCSTR szSubsystemProtocol);
HCERTSTORE CertOpenSystemStoreA(HCRYPTPROV hProv, LPCSTR szSubsystemProtocol);
//C HCERTSTORE CertOpenSystemStoreW(HCRYPTPROV hProv,LPCWSTR szSubsystemProtocol);
HCERTSTORE CertOpenSystemStoreW(HCRYPTPROV hProv, LPCWSTR szSubsystemProtocol);
//C WINBOOL CertAddEncodedCertificateToSystemStoreA(LPCSTR szCertStoreName,const BYTE *pbCertEncoded,DWORD cbCertEncoded);
WINBOOL CertAddEncodedCertificateToSystemStoreA(LPCSTR szCertStoreName, BYTE *pbCertEncoded, DWORD cbCertEncoded);
//C WINBOOL CertAddEncodedCertificateToSystemStoreW(LPCWSTR szCertStoreName,const BYTE *pbCertEncoded,DWORD cbCertEncoded);
WINBOOL CertAddEncodedCertificateToSystemStoreW(LPCWSTR szCertStoreName, BYTE *pbCertEncoded, DWORD cbCertEncoded);
//C typedef struct _CERT_CHAIN {
//C DWORD cCerts;
//C PCERT_BLOB certs;
//C CRYPT_KEY_PROV_INFO keyLocatorInfo;
//C } CERT_CHAIN,*PCERT_CHAIN;
struct _CERT_CHAIN
{
DWORD cCerts;
PCERT_BLOB certs;
CRYPT_KEY_PROV_INFO keyLocatorInfo;
}
alias _CERT_CHAIN CERT_CHAIN;
alias _CERT_CHAIN *PCERT_CHAIN;
//C HRESULT FindCertsByIssuer(PCERT_CHAIN pCertChains,DWORD *pcbCertChains,DWORD *pcCertChains,BYTE *pbEncodedIssuerName,DWORD cbEncodedIssuerName,LPCWSTR pwszPurpose,DWORD dwKeySpec);
HRESULT FindCertsByIssuer(PCERT_CHAIN pCertChains, DWORD *pcbCertChains, DWORD *pcCertChains, BYTE *pbEncodedIssuerName, DWORD cbEncodedIssuerName, LPCWSTR pwszPurpose, DWORD dwKeySpec);
//C WINBOOL CryptQueryObject(DWORD dwObjectType,const void *pvObject,DWORD dwExpectedContentTypeFlags,DWORD dwExpectedFormatTypeFlags,DWORD dwFlags,DWORD *pdwMsgAndCertEncodingType,DWORD *pdwContentType,DWORD *pdwFormatType,HCERTSTORE *phCertStore,HCRYPTMSG *phMsg,const void **ppvContext);
WINBOOL CryptQueryObject(DWORD dwObjectType, void *pvObject, DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags, DWORD dwFlags, DWORD *pdwMsgAndCertEncodingType, DWORD *pdwContentType, DWORD *pdwFormatType, HCERTSTORE *phCertStore, HCRYPTMSG *phMsg, void **ppvContext);
//C LPVOID CryptMemAlloc(ULONG cbSize);
LPVOID CryptMemAlloc(ULONG cbSize);
//C LPVOID CryptMemRealloc(LPVOID pv,ULONG cbSize);
LPVOID CryptMemRealloc(LPVOID pv, ULONG cbSize);
//C void CryptMemFree(LPVOID pv);
void CryptMemFree(LPVOID pv);
//C typedef HANDLE HCRYPTASYNC,*PHCRYPTASYNC;
alias HANDLE HCRYPTASYNC;
alias HANDLE *PHCRYPTASYNC;
//C typedef void ( *PFN_CRYPT_ASYNC_PARAM_FREE_FUNC)(LPSTR pszParamOid,LPVOID pvParam);
alias void function(LPSTR pszParamOid, LPVOID pvParam)PFN_CRYPT_ASYNC_PARAM_FREE_FUNC;
//C WINBOOL CryptCreateAsyncHandle(DWORD dwFlags,PHCRYPTASYNC phAsync);
WINBOOL CryptCreateAsyncHandle(DWORD dwFlags, PHCRYPTASYNC phAsync);
//C WINBOOL CryptSetAsyncParam(HCRYPTASYNC hAsync,LPSTR pszParamOid,LPVOID pvParam,PFN_CRYPT_ASYNC_PARAM_FREE_FUNC pfnFree);
WINBOOL CryptSetAsyncParam(HCRYPTASYNC hAsync, LPSTR pszParamOid, LPVOID pvParam, PFN_CRYPT_ASYNC_PARAM_FREE_FUNC pfnFree);
//C WINBOOL CryptGetAsyncParam(HCRYPTASYNC hAsync,LPSTR pszParamOid,LPVOID *ppvParam,PFN_CRYPT_ASYNC_PARAM_FREE_FUNC *ppfnFree);
WINBOOL CryptGetAsyncParam(HCRYPTASYNC hAsync, LPSTR pszParamOid, LPVOID *ppvParam, PFN_CRYPT_ASYNC_PARAM_FREE_FUNC *ppfnFree);
//C WINBOOL CryptCloseAsyncHandle(HCRYPTASYNC hAsync);
WINBOOL CryptCloseAsyncHandle(HCRYPTASYNC hAsync);
//C typedef struct _CRYPT_BLOB_ARRAY {
//C DWORD cBlob;
//C PCRYPT_DATA_BLOB rgBlob;
//C } CRYPT_BLOB_ARRAY,*PCRYPT_BLOB_ARRAY;
struct _CRYPT_BLOB_ARRAY
{
DWORD cBlob;
PCRYPT_DATA_BLOB rgBlob;
}
alias _CRYPT_BLOB_ARRAY CRYPT_BLOB_ARRAY;
alias _CRYPT_BLOB_ARRAY *PCRYPT_BLOB_ARRAY;
//C typedef struct _CRYPT_CREDENTIALS {
//C DWORD cbSize;
//C LPCSTR pszCredentialsOid;
//C LPVOID pvCredentials;
//C } CRYPT_CREDENTIALS,*PCRYPT_CREDENTIALS;
struct _CRYPT_CREDENTIALS
{
DWORD cbSize;
LPCSTR pszCredentialsOid;
LPVOID pvCredentials;
}
alias _CRYPT_CREDENTIALS CRYPT_CREDENTIALS;
alias _CRYPT_CREDENTIALS *PCRYPT_CREDENTIALS;
//C typedef struct _CRYPT_PASSWORD_CREDENTIALSA {
//C DWORD cbSize;
//C LPSTR pszUsername;
//C LPSTR pszPassword;
//C } CRYPT_PASSWORD_CREDENTIALSA,*PCRYPT_PASSWORD_CREDENTIALSA;
struct _CRYPT_PASSWORD_CREDENTIALSA
{
DWORD cbSize;
LPSTR pszUsername;
LPSTR pszPassword;
}
alias _CRYPT_PASSWORD_CREDENTIALSA CRYPT_PASSWORD_CREDENTIALSA;
alias _CRYPT_PASSWORD_CREDENTIALSA *PCRYPT_PASSWORD_CREDENTIALSA;
//C typedef struct _CRYPT_PASSWORD_CREDENTIALSW {
//C DWORD cbSize;
//C LPWSTR pszUsername;
//C LPWSTR pszPassword;
//C } CRYPT_PASSWORD_CREDENTIALSW,*PCRYPT_PASSWORD_CREDENTIALSW;
struct _CRYPT_PASSWORD_CREDENTIALSW
{
DWORD cbSize;
LPWSTR pszUsername;
LPWSTR pszPassword;
}
alias _CRYPT_PASSWORD_CREDENTIALSW CRYPT_PASSWORD_CREDENTIALSW;
alias _CRYPT_PASSWORD_CREDENTIALSW *PCRYPT_PASSWORD_CREDENTIALSW;
//C typedef CRYPT_PASSWORD_CREDENTIALSA CRYPT_PASSWORD_CREDENTIALS;
alias CRYPT_PASSWORD_CREDENTIALSA CRYPT_PASSWORD_CREDENTIALS;
//C typedef PCRYPT_PASSWORD_CREDENTIALSA PCRYPT_PASSWORD_CREDENTIALS;
alias PCRYPT_PASSWORD_CREDENTIALSA PCRYPT_PASSWORD_CREDENTIALS;
//C typedef void ( *PFN_FREE_ENCODED_OBJECT_FUNC)(LPCSTR pszObjectOid,PCRYPT_BLOB_ARRAY pObject,LPVOID pvFreeContext);
alias void function(LPCSTR pszObjectOid, PCRYPT_BLOB_ARRAY pObject, LPVOID pvFreeContext)PFN_FREE_ENCODED_OBJECT_FUNC;
//C typedef struct _CRYPT_RETRIEVE_AUX_INFO {
//C DWORD cbSize;
//C FILETIME *pLastSyncTime;
//C DWORD dwMaxUrlRetrievalByteCount;
//C } CRYPT_RETRIEVE_AUX_INFO,*PCRYPT_RETRIEVE_AUX_INFO;
struct _CRYPT_RETRIEVE_AUX_INFO
{
DWORD cbSize;
FILETIME *pLastSyncTime;
DWORD dwMaxUrlRetrievalByteCount;
}
alias _CRYPT_RETRIEVE_AUX_INFO CRYPT_RETRIEVE_AUX_INFO;
alias _CRYPT_RETRIEVE_AUX_INFO *PCRYPT_RETRIEVE_AUX_INFO;
//C WINBOOL CryptRetrieveObjectByUrlA(LPCSTR pszUrl,LPCSTR pszObjectOid,DWORD dwRetrievalFlags,DWORD dwTimeout,LPVOID *ppvObject,HCRYPTASYNC hAsyncRetrieve,PCRYPT_CREDENTIALS pCredentials,LPVOID pvVerify,PCRYPT_RETRIEVE_AUX_INFO pAuxInfo);
WINBOOL CryptRetrieveObjectByUrlA(LPCSTR pszUrl, LPCSTR pszObjectOid, DWORD dwRetrievalFlags, DWORD dwTimeout, LPVOID *ppvObject, HCRYPTASYNC hAsyncRetrieve, PCRYPT_CREDENTIALS pCredentials, LPVOID pvVerify, PCRYPT_RETRIEVE_AUX_INFO pAuxInfo);
//C WINBOOL CryptRetrieveObjectByUrlW(LPCWSTR pszUrl,LPCSTR pszObjectOid,DWORD dwRetrievalFlags,DWORD dwTimeout,LPVOID *ppvObject,HCRYPTASYNC hAsyncRetrieve,PCRYPT_CREDENTIALS pCredentials,LPVOID pvVerify,PCRYPT_RETRIEVE_AUX_INFO pAuxInfo);
WINBOOL CryptRetrieveObjectByUrlW(LPCWSTR pszUrl, LPCSTR pszObjectOid, DWORD dwRetrievalFlags, DWORD dwTimeout, LPVOID *ppvObject, HCRYPTASYNC hAsyncRetrieve, PCRYPT_CREDENTIALS pCredentials, LPVOID pvVerify, PCRYPT_RETRIEVE_AUX_INFO pAuxInfo);
//C typedef WINBOOL ( *PFN_CRYPT_CANCEL_RETRIEVAL)(DWORD dwFlags,void *pvArg);
alias WINBOOL function(DWORD dwFlags, void *pvArg)PFN_CRYPT_CANCEL_RETRIEVAL;
//C WINBOOL CryptInstallCancelRetrieval(PFN_CRYPT_CANCEL_RETRIEVAL pfnCancel,const void *pvArg,DWORD dwFlags,void *pvReserved);
WINBOOL CryptInstallCancelRetrieval(PFN_CRYPT_CANCEL_RETRIEVAL pfnCancel, void *pvArg, DWORD dwFlags, void *pvReserved);
//C WINBOOL CryptUninstallCancelRetrieval(DWORD dwFlags,void *pvReserved);
WINBOOL CryptUninstallCancelRetrieval(DWORD dwFlags, void *pvReserved);
//C WINBOOL CryptCancelAsyncRetrieval(HCRYPTASYNC hAsyncRetrieval);
WINBOOL CryptCancelAsyncRetrieval(HCRYPTASYNC hAsyncRetrieval);
//C typedef void ( *PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC)(LPVOID pvCompletion,DWORD dwCompletionCode,LPCSTR pszUrl,LPSTR pszObjectOid,LPVOID pvObject);
alias void function(LPVOID pvCompletion, DWORD dwCompletionCode, LPCSTR pszUrl, LPSTR pszObjectOid, LPVOID pvObject)PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC;
//C typedef struct _CRYPT_ASYNC_RETRIEVAL_COMPLETION {
//C PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC pfnCompletion;
//C LPVOID pvCompletion;
//C } CRYPT_ASYNC_RETRIEVAL_COMPLETION,*PCRYPT_ASYNC_RETRIEVAL_COMPLETION;
struct _CRYPT_ASYNC_RETRIEVAL_COMPLETION
{
PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC pfnCompletion;
LPVOID pvCompletion;
}
alias _CRYPT_ASYNC_RETRIEVAL_COMPLETION CRYPT_ASYNC_RETRIEVAL_COMPLETION;
alias _CRYPT_ASYNC_RETRIEVAL_COMPLETION *PCRYPT_ASYNC_RETRIEVAL_COMPLETION;
//C typedef WINBOOL ( *PFN_CANCEL_ASYNC_RETRIEVAL_FUNC)(HCRYPTASYNC hAsyncRetrieve);
alias WINBOOL function(HCRYPTASYNC hAsyncRetrieve)PFN_CANCEL_ASYNC_RETRIEVAL_FUNC;
//C typedef struct _CRYPT_URL_ARRAY {
//C DWORD cUrl;
//C LPWSTR *rgwszUrl;
//C } CRYPT_URL_ARRAY,*PCRYPT_URL_ARRAY;
struct _CRYPT_URL_ARRAY
{
DWORD cUrl;
LPWSTR *rgwszUrl;
}
alias _CRYPT_URL_ARRAY CRYPT_URL_ARRAY;
alias _CRYPT_URL_ARRAY *PCRYPT_URL_ARRAY;
//C typedef struct _CRYPT_URL_INFO {
//C DWORD cbSize;
//C DWORD dwSyncDeltaTime;
//C DWORD cGroup;
//C DWORD *rgcGroupEntry;
//C } CRYPT_URL_INFO,*PCRYPT_URL_INFO;
struct _CRYPT_URL_INFO
{
DWORD cbSize;
DWORD dwSyncDeltaTime;
DWORD cGroup;
DWORD *rgcGroupEntry;
}
alias _CRYPT_URL_INFO CRYPT_URL_INFO;
alias _CRYPT_URL_INFO *PCRYPT_URL_INFO;
//C WINBOOL CryptGetObjectUrl(LPCSTR pszUrlOid,LPVOID pvPara,DWORD dwFlags,PCRYPT_URL_ARRAY pUrlArray,DWORD *pcbUrlArray,PCRYPT_URL_INFO pUrlInfo,DWORD *pcbUrlInfo,LPVOID pvReserved);
WINBOOL CryptGetObjectUrl(LPCSTR pszUrlOid, LPVOID pvPara, DWORD dwFlags, PCRYPT_URL_ARRAY pUrlArray, DWORD *pcbUrlArray, PCRYPT_URL_INFO pUrlInfo, DWORD *pcbUrlInfo, LPVOID pvReserved);
//C typedef struct _CERT_CRL_CONTEXT_PAIR {
//C PCCERT_CONTEXT pCertContext;
//C PCCRL_CONTEXT pCrlContext;
//C } CERT_CRL_CONTEXT_PAIR,*PCERT_CRL_CONTEXT_PAIR;
struct _CERT_CRL_CONTEXT_PAIR
{
PCCERT_CONTEXT pCertContext;
PCCRL_CONTEXT pCrlContext;
}
alias _CERT_CRL_CONTEXT_PAIR CERT_CRL_CONTEXT_PAIR;
alias _CERT_CRL_CONTEXT_PAIR *PCERT_CRL_CONTEXT_PAIR;
//C typedef const CERT_CRL_CONTEXT_PAIR *PCCERT_CRL_CONTEXT_PAIR;
alias CERT_CRL_CONTEXT_PAIR *PCCERT_CRL_CONTEXT_PAIR;
//C WINBOOL CryptGetTimeValidObject(LPCSTR pszTimeValidOid,LPVOID pvPara,PCCERT_CONTEXT pIssuer,LPFILETIME pftValidFor,DWORD dwFlags,DWORD dwTimeout,LPVOID *ppvObject,PCRYPT_CREDENTIALS pCredentials,LPVOID pvReserved);
WINBOOL CryptGetTimeValidObject(LPCSTR pszTimeValidOid, LPVOID pvPara, PCCERT_CONTEXT pIssuer, LPFILETIME pftValidFor, DWORD dwFlags, DWORD dwTimeout, LPVOID *ppvObject, PCRYPT_CREDENTIALS pCredentials, LPVOID pvReserved);
//C WINBOOL CryptFlushTimeValidObject(LPCSTR pszFlushTimeValidOid,LPVOID pvPara,PCCERT_CONTEXT pIssuer,DWORD dwFlags,LPVOID pvReserved);
WINBOOL CryptFlushTimeValidObject(LPCSTR pszFlushTimeValidOid, LPVOID pvPara, PCCERT_CONTEXT pIssuer, DWORD dwFlags, LPVOID pvReserved);
//C typedef struct _CRYPTPROTECT_PROMPTSTRUCT {
//C DWORD cbSize;
//C DWORD dwPromptFlags;
//C HWND hwndApp;
//C LPCWSTR szPrompt;
//C } CRYPTPROTECT_PROMPTSTRUCT,*PCRYPTPROTECT_PROMPTSTRUCT;
struct _CRYPTPROTECT_PROMPTSTRUCT
{
DWORD cbSize;
DWORD dwPromptFlags;
HWND hwndApp;
LPCWSTR szPrompt;
}
alias _CRYPTPROTECT_PROMPTSTRUCT CRYPTPROTECT_PROMPTSTRUCT;
alias _CRYPTPROTECT_PROMPTSTRUCT *PCRYPTPROTECT_PROMPTSTRUCT;
//C WINBOOL CryptProtectData(DATA_BLOB *pDataIn,LPCWSTR szDataDescr,DATA_BLOB *pOptionalEntropy,PVOID pvReserved,CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct,DWORD dwFlags,DATA_BLOB *pDataOut);
WINBOOL CryptProtectData(DATA_BLOB *pDataIn, LPCWSTR szDataDescr, DATA_BLOB *pOptionalEntropy, PVOID pvReserved, CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct, DWORD dwFlags, DATA_BLOB *pDataOut);
//C WINBOOL CryptUnprotectData(DATA_BLOB *pDataIn,LPWSTR *ppszDataDescr,DATA_BLOB *pOptionalEntropy,PVOID pvReserved,CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct,DWORD dwFlags,DATA_BLOB *pDataOut);
WINBOOL CryptUnprotectData(DATA_BLOB *pDataIn, LPWSTR *ppszDataDescr, DATA_BLOB *pOptionalEntropy, PVOID pvReserved, CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct, DWORD dwFlags, DATA_BLOB *pDataOut);
//C WINBOOL CryptProtectMemory(LPVOID pDataIn,DWORD cbDataIn,DWORD dwFlags);
WINBOOL CryptProtectMemory(LPVOID pDataIn, DWORD cbDataIn, DWORD dwFlags);
//C WINBOOL CryptUnprotectMemory(LPVOID pDataIn,DWORD cbDataIn,DWORD dwFlags);
WINBOOL CryptUnprotectMemory(LPVOID pDataIn, DWORD cbDataIn, DWORD dwFlags);
//C PCCERT_CONTEXT CertCreateSelfSignCertificate(HCRYPTPROV hProv,PCERT_NAME_BLOB pSubjectIssuerBlob,DWORD dwFlags,PCRYPT_KEY_PROV_INFO pKeyProvInfo,PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,PSYSTEMTIME pStartTime,PSYSTEMTIME pEndTime,PCERT_EXTENSIONS pExtensions);
PCCERT_CONTEXT CertCreateSelfSignCertificate(HCRYPTPROV hProv, PCERT_NAME_BLOB pSubjectIssuerBlob, DWORD dwFlags, PCRYPT_KEY_PROV_INFO pKeyProvInfo, PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, PSYSTEMTIME pStartTime, PSYSTEMTIME pEndTime, PCERT_EXTENSIONS pExtensions);
//C WINBOOL CryptGetKeyIdentifierProperty(const CRYPT_HASH_BLOB *pKeyIdentifier,DWORD dwPropId,DWORD dwFlags,LPCWSTR pwszComputerName,void *pvReserved,void *pvData,DWORD *pcbData);
WINBOOL CryptGetKeyIdentifierProperty(CRYPT_HASH_BLOB *pKeyIdentifier, DWORD dwPropId, DWORD dwFlags, LPCWSTR pwszComputerName, void *pvReserved, void *pvData, DWORD *pcbData);
//C WINBOOL CryptSetKeyIdentifierProperty(const CRYPT_HASH_BLOB *pKeyIdentifier,DWORD dwPropId,DWORD dwFlags,LPCWSTR pwszComputerName,void *pvReserved,const void *pvData);
WINBOOL CryptSetKeyIdentifierProperty(CRYPT_HASH_BLOB *pKeyIdentifier, DWORD dwPropId, DWORD dwFlags, LPCWSTR pwszComputerName, void *pvReserved, void *pvData);
//C typedef WINBOOL ( *PFN_CRYPT_ENUM_KEYID_PROP)(const CRYPT_HASH_BLOB *pKeyIdentifier,DWORD dwFlags,void *pvReserved,void *pvArg,DWORD cProp,DWORD *rgdwPropId,void **rgpvData,DWORD *rgcbData);
alias WINBOOL function(CRYPT_HASH_BLOB *pKeyIdentifier, DWORD dwFlags, void *pvReserved, void *pvArg, DWORD cProp, DWORD *rgdwPropId, void **rgpvData, DWORD *rgcbData)PFN_CRYPT_ENUM_KEYID_PROP;
//C WINBOOL CryptEnumKeyIdentifierProperties(const CRYPT_HASH_BLOB *pKeyIdentifier,DWORD dwPropId,DWORD dwFlags,LPCWSTR pwszComputerName,void *pvReserved,void *pvArg,PFN_CRYPT_ENUM_KEYID_PROP pfnEnum);
WINBOOL CryptEnumKeyIdentifierProperties(CRYPT_HASH_BLOB *pKeyIdentifier, DWORD dwPropId, DWORD dwFlags, LPCWSTR pwszComputerName, void *pvReserved, void *pvArg, PFN_CRYPT_ENUM_KEYID_PROP pfnEnum);
//C WINBOOL CryptCreateKeyIdentifierFromCSP(DWORD dwCertEncodingType,LPCSTR pszPubKeyOID,const PUBLICKEYSTRUC *pPubKeyStruc,DWORD cbPubKeyStruc,DWORD dwFlags,void *pvReserved,BYTE *pbHash,DWORD *pcbHash);
WINBOOL CryptCreateKeyIdentifierFromCSP(DWORD dwCertEncodingType, LPCSTR pszPubKeyOID, PUBLICKEYSTRUC *pPubKeyStruc, DWORD cbPubKeyStruc, DWORD dwFlags, void *pvReserved, BYTE *pbHash, DWORD *pcbHash);
//C typedef HANDLE HCERTCHAINENGINE;
alias HANDLE HCERTCHAINENGINE;
//C typedef struct _CERT_CHAIN_ENGINE_CONFIG {
//C DWORD cbSize;
//C HCERTSTORE hRestrictedRoot;
//C HCERTSTORE hRestrictedTrust;
//C HCERTSTORE hRestrictedOther;
//C DWORD cAdditionalStore;
//C HCERTSTORE *rghAdditionalStore;
//C DWORD dwFlags;
//C DWORD dwUrlRetrievalTimeout;
//C DWORD MaximumCachedCertificates;
//C DWORD CycleDetectionModulus;
//C } CERT_CHAIN_ENGINE_CONFIG,*PCERT_CHAIN_ENGINE_CONFIG;
struct _CERT_CHAIN_ENGINE_CONFIG
{
DWORD cbSize;
HCERTSTORE hRestrictedRoot;
HCERTSTORE hRestrictedTrust;
HCERTSTORE hRestrictedOther;
DWORD cAdditionalStore;
HCERTSTORE *rghAdditionalStore;
DWORD dwFlags;
DWORD dwUrlRetrievalTimeout;
DWORD MaximumCachedCertificates;
DWORD CycleDetectionModulus;
}
alias _CERT_CHAIN_ENGINE_CONFIG CERT_CHAIN_ENGINE_CONFIG;
alias _CERT_CHAIN_ENGINE_CONFIG *PCERT_CHAIN_ENGINE_CONFIG;
//C WINBOOL CertCreateCertificateChainEngine(PCERT_CHAIN_ENGINE_CONFIG pConfig,HCERTCHAINENGINE *phChainEngine);
WINBOOL CertCreateCertificateChainEngine(PCERT_CHAIN_ENGINE_CONFIG pConfig, HCERTCHAINENGINE *phChainEngine);
//C void CertFreeCertificateChainEngine(HCERTCHAINENGINE hChainEngine);
void CertFreeCertificateChainEngine(HCERTCHAINENGINE hChainEngine);
//C WINBOOL CertResyncCertificateChainEngine(HCERTCHAINENGINE hChainEngine);
WINBOOL CertResyncCertificateChainEngine(HCERTCHAINENGINE hChainEngine);
//C typedef struct _CERT_TRUST_STATUS {
//C DWORD dwErrorStatus;
//C DWORD dwInfoStatus;
//C } CERT_TRUST_STATUS,*PCERT_TRUST_STATUS;
struct _CERT_TRUST_STATUS
{
DWORD dwErrorStatus;
DWORD dwInfoStatus;
}
alias _CERT_TRUST_STATUS CERT_TRUST_STATUS;
alias _CERT_TRUST_STATUS *PCERT_TRUST_STATUS;
//C typedef struct _CERT_REVOCATION_INFO {
//C DWORD cbSize;
//C DWORD dwRevocationResult;
//C LPCSTR pszRevocationOid;
//C LPVOID pvOidSpecificInfo;
//C WINBOOL fHasFreshnessTime;
//C DWORD dwFreshnessTime;
//C PCERT_REVOCATION_CRL_INFO pCrlInfo;
//C } CERT_REVOCATION_INFO,*PCERT_REVOCATION_INFO;
struct _CERT_REVOCATION_INFO
{
DWORD cbSize;
DWORD dwRevocationResult;
LPCSTR pszRevocationOid;
LPVOID pvOidSpecificInfo;
WINBOOL fHasFreshnessTime;
DWORD dwFreshnessTime;
PCERT_REVOCATION_CRL_INFO pCrlInfo;
}
alias _CERT_REVOCATION_INFO CERT_REVOCATION_INFO;
alias _CERT_REVOCATION_INFO *PCERT_REVOCATION_INFO;
//C typedef struct _CERT_TRUST_LIST_INFO {
//C DWORD cbSize;
//C PCTL_ENTRY pCtlEntry;
//C PCCTL_CONTEXT pCtlContext;
//C } CERT_TRUST_LIST_INFO,*PCERT_TRUST_LIST_INFO;
struct _CERT_TRUST_LIST_INFO
{
DWORD cbSize;
PCTL_ENTRY pCtlEntry;
PCCTL_CONTEXT pCtlContext;
}
alias _CERT_TRUST_LIST_INFO CERT_TRUST_LIST_INFO;
alias _CERT_TRUST_LIST_INFO *PCERT_TRUST_LIST_INFO;
//C typedef struct _CERT_CHAIN_ELEMENT {
//C DWORD cbSize;
//C PCCERT_CONTEXT pCertContext;
//C CERT_TRUST_STATUS TrustStatus;
//C PCERT_REVOCATION_INFO pRevocationInfo;
//C PCERT_ENHKEY_USAGE pIssuanceUsage;
//C PCERT_ENHKEY_USAGE pApplicationUsage;
//C LPCWSTR pwszExtendedErrorInfo;
//C } CERT_CHAIN_ELEMENT,*PCERT_CHAIN_ELEMENT;
struct _CERT_CHAIN_ELEMENT
{
DWORD cbSize;
PCCERT_CONTEXT pCertContext;
CERT_TRUST_STATUS TrustStatus;
PCERT_REVOCATION_INFO pRevocationInfo;
PCERT_ENHKEY_USAGE pIssuanceUsage;
PCERT_ENHKEY_USAGE pApplicationUsage;
LPCWSTR pwszExtendedErrorInfo;
}
alias _CERT_CHAIN_ELEMENT CERT_CHAIN_ELEMENT;
alias _CERT_CHAIN_ELEMENT *PCERT_CHAIN_ELEMENT;
//C typedef struct _CERT_SIMPLE_CHAIN {
//C DWORD cbSize;
//C CERT_TRUST_STATUS TrustStatus;
//C DWORD cElement;
//C PCERT_CHAIN_ELEMENT *rgpElement;
//C PCERT_TRUST_LIST_INFO pTrustListInfo;
//C WINBOOL fHasRevocationFreshnessTime;
//C DWORD dwRevocationFreshnessTime;
//C } CERT_SIMPLE_CHAIN,*PCERT_SIMPLE_CHAIN;
struct _CERT_SIMPLE_CHAIN
{
DWORD cbSize;
CERT_TRUST_STATUS TrustStatus;
DWORD cElement;
PCERT_CHAIN_ELEMENT *rgpElement;
PCERT_TRUST_LIST_INFO pTrustListInfo;
WINBOOL fHasRevocationFreshnessTime;
DWORD dwRevocationFreshnessTime;
}
alias _CERT_SIMPLE_CHAIN CERT_SIMPLE_CHAIN;
alias _CERT_SIMPLE_CHAIN *PCERT_SIMPLE_CHAIN;
//C typedef struct _CERT_CHAIN_CONTEXT CERT_CHAIN_CONTEXT,*PCERT_CHAIN_CONTEXT;
alias _CERT_CHAIN_CONTEXT CERT_CHAIN_CONTEXT;
alias _CERT_CHAIN_CONTEXT *PCERT_CHAIN_CONTEXT;
//C typedef const CERT_CHAIN_CONTEXT *PCCERT_CHAIN_CONTEXT;
alias CERT_CHAIN_CONTEXT *PCCERT_CHAIN_CONTEXT;
//C struct _CERT_CHAIN_CONTEXT {
//C DWORD cbSize;
//C CERT_TRUST_STATUS TrustStatus;
//C DWORD cChain;
//C PCERT_SIMPLE_CHAIN *rgpChain;
//C DWORD cLowerQualityChainContext;
//C PCCERT_CHAIN_CONTEXT *rgpLowerQualityChainContext;
//C WINBOOL fHasRevocationFreshnessTime;
//C DWORD dwRevocationFreshnessTime;
//C };
struct _CERT_CHAIN_CONTEXT
{
DWORD cbSize;
CERT_TRUST_STATUS TrustStatus;
DWORD cChain;
PCERT_SIMPLE_CHAIN *rgpChain;
DWORD cLowerQualityChainContext;
PCCERT_CHAIN_CONTEXT *rgpLowerQualityChainContext;
WINBOOL fHasRevocationFreshnessTime;
DWORD dwRevocationFreshnessTime;
}
//C typedef struct _CERT_USAGE_MATCH {
//C DWORD dwType;
//C CERT_ENHKEY_USAGE Usage;
//C } CERT_USAGE_MATCH,*PCERT_USAGE_MATCH;
struct _CERT_USAGE_MATCH
{
DWORD dwType;
CERT_ENHKEY_USAGE Usage;
}
alias _CERT_USAGE_MATCH CERT_USAGE_MATCH;
alias _CERT_USAGE_MATCH *PCERT_USAGE_MATCH;
//C typedef struct _CTL_USAGE_MATCH {
//C DWORD dwType;
//C CTL_USAGE Usage;
//C } CTL_USAGE_MATCH,*PCTL_USAGE_MATCH;
struct _CTL_USAGE_MATCH
{
DWORD dwType;
CTL_USAGE Usage;
}
alias _CTL_USAGE_MATCH CTL_USAGE_MATCH;
alias _CTL_USAGE_MATCH *PCTL_USAGE_MATCH;
//C typedef struct _CERT_CHAIN_PARA {
//C DWORD cbSize;
//C CERT_USAGE_MATCH RequestedUsage;
//C } CERT_CHAIN_PARA,*PCERT_CHAIN_PARA;
struct _CERT_CHAIN_PARA
{
DWORD cbSize;
CERT_USAGE_MATCH RequestedUsage;
}
alias _CERT_CHAIN_PARA CERT_CHAIN_PARA;
alias _CERT_CHAIN_PARA *PCERT_CHAIN_PARA;
//C WINBOOL CertGetCertificateChain(HCERTCHAINENGINE hChainEngine,PCCERT_CONTEXT pCertContext,LPFILETIME pTime,HCERTSTORE hAdditionalStore,PCERT_CHAIN_PARA pChainPara,DWORD dwFlags,LPVOID pvReserved,PCCERT_CHAIN_CONTEXT *ppChainContext);
WINBOOL CertGetCertificateChain(HCERTCHAINENGINE hChainEngine, PCCERT_CONTEXT pCertContext, LPFILETIME pTime, HCERTSTORE hAdditionalStore, PCERT_CHAIN_PARA pChainPara, DWORD dwFlags, LPVOID pvReserved, PCCERT_CHAIN_CONTEXT *ppChainContext);
//C void CertFreeCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext);
void CertFreeCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext);
//C PCCERT_CHAIN_CONTEXT CertDuplicateCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext);
PCCERT_CHAIN_CONTEXT CertDuplicateCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext);
//C typedef struct _CRL_REVOCATION_INFO {
//C PCRL_ENTRY pCrlEntry;
//C PCCRL_CONTEXT pCrlContext;
//C PCCERT_CHAIN_CONTEXT pCrlIssuerChain;
//C } CRL_REVOCATION_INFO,*PCRL_REVOCATION_INFO;
struct _CRL_REVOCATION_INFO
{
PCRL_ENTRY pCrlEntry;
PCCRL_CONTEXT pCrlContext;
PCCERT_CHAIN_CONTEXT pCrlIssuerChain;
}
alias _CRL_REVOCATION_INFO CRL_REVOCATION_INFO;
alias _CRL_REVOCATION_INFO *PCRL_REVOCATION_INFO;
//C PCCERT_CHAIN_CONTEXT CertFindChainInStore(HCERTSTORE hCertStore,DWORD dwCertEncodingType,DWORD dwFindFlags,DWORD dwFindType,const void *pvFindPara,PCCERT_CHAIN_CONTEXT pPrevChainContext);
PCCERT_CHAIN_CONTEXT CertFindChainInStore(HCERTSTORE hCertStore, DWORD dwCertEncodingType, DWORD dwFindFlags, DWORD dwFindType, void *pvFindPara, PCCERT_CHAIN_CONTEXT pPrevChainContext);
//C typedef WINBOOL ( *PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK)(PCCERT_CONTEXT pCert,void *pvFindArg);
alias WINBOOL function(PCCERT_CONTEXT pCert, void *pvFindArg)PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK;
//C typedef struct _CERT_CHAIN_FIND_BY_ISSUER_PARA {
//C DWORD cbSize;
//C LPCSTR pszUsageIdentifier;
//C DWORD dwKeySpec;
//C DWORD dwAcquirePrivateKeyFlags;
//C DWORD cIssuer;
//C CERT_NAME_BLOB *rgIssuer;
//C PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK pfnFindCallback;
//C void *pvFindArg;
//C } CERT_CHAIN_FIND_ISSUER_PARA,*PCERT_CHAIN_FIND_ISSUER_PARA,CERT_CHAIN_FIND_BY_ISSUER_PARA,*PCERT_CHAIN_FIND_BY_ISSUER_PARA;
struct _CERT_CHAIN_FIND_BY_ISSUER_PARA
{
DWORD cbSize;
LPCSTR pszUsageIdentifier;
DWORD dwKeySpec;
DWORD dwAcquirePrivateKeyFlags;
DWORD cIssuer;
CERT_NAME_BLOB *rgIssuer;
PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK pfnFindCallback;
void *pvFindArg;
}
alias _CERT_CHAIN_FIND_BY_ISSUER_PARA CERT_CHAIN_FIND_ISSUER_PARA;
alias _CERT_CHAIN_FIND_BY_ISSUER_PARA *PCERT_CHAIN_FIND_ISSUER_PARA;
alias _CERT_CHAIN_FIND_BY_ISSUER_PARA CERT_CHAIN_FIND_BY_ISSUER_PARA;
alias _CERT_CHAIN_FIND_BY_ISSUER_PARA *PCERT_CHAIN_FIND_BY_ISSUER_PARA;
//C typedef struct _CERT_CHAIN_POLICY_PARA {
//C DWORD cbSize;
//C DWORD dwFlags;
//C void *pvExtraPolicyPara;
//C } CERT_CHAIN_POLICY_PARA,*PCERT_CHAIN_POLICY_PARA;
struct _CERT_CHAIN_POLICY_PARA
{
DWORD cbSize;
DWORD dwFlags;
void *pvExtraPolicyPara;
}
alias _CERT_CHAIN_POLICY_PARA CERT_CHAIN_POLICY_PARA;
alias _CERT_CHAIN_POLICY_PARA *PCERT_CHAIN_POLICY_PARA;
//C typedef struct _CERT_CHAIN_POLICY_STATUS {
//C DWORD cbSize;
//C DWORD dwError;
//C LONG lChainIndex;
//C LONG lElementIndex;
//C void *pvExtraPolicyStatus;
//C } CERT_CHAIN_POLICY_STATUS,*PCERT_CHAIN_POLICY_STATUS;
struct _CERT_CHAIN_POLICY_STATUS
{
DWORD cbSize;
DWORD dwError;
LONG lChainIndex;
LONG lElementIndex;
void *pvExtraPolicyStatus;
}
alias _CERT_CHAIN_POLICY_STATUS CERT_CHAIN_POLICY_STATUS;
alias _CERT_CHAIN_POLICY_STATUS *PCERT_CHAIN_POLICY_STATUS;
//C WINBOOL CertVerifyCertificateChainPolicy(LPCSTR pszPolicyOID,PCCERT_CHAIN_CONTEXT pChainContext,PCERT_CHAIN_POLICY_PARA pPolicyPara,PCERT_CHAIN_POLICY_STATUS pPolicyStatus);
WINBOOL CertVerifyCertificateChainPolicy(LPCSTR pszPolicyOID, PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara, PCERT_CHAIN_POLICY_STATUS pPolicyStatus);
//C typedef struct _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA {
//C DWORD cbSize;
//C DWORD dwRegPolicySettings;
//C PCMSG_SIGNER_INFO pSignerInfo;
//C } AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA,*PAUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA;
struct _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA
{
DWORD cbSize;
DWORD dwRegPolicySettings;
PCMSG_SIGNER_INFO pSignerInfo;
}
alias _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA;
alias _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA *PAUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA;
//C typedef struct _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS {
//C DWORD cbSize;
//C WINBOOL fCommercial;
//C } AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS,*PAUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS;
struct _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS
{
DWORD cbSize;
WINBOOL fCommercial;
}
alias _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS;
alias _AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS *PAUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS;
//C typedef struct _AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA {
//C DWORD cbSize;
//C DWORD dwRegPolicySettings;
//C WINBOOL fCommercial;
//C } AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA,*PAUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA;
struct _AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA
{
DWORD cbSize;
DWORD dwRegPolicySettings;
WINBOOL fCommercial;
}
alias _AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA;
alias _AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA *PAUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA;
//C typedef struct _HTTPSPolicyCallbackData {
//C union {
//C DWORD cbStruct;
//C DWORD cbSize;
//C };
union _N149
{
DWORD cbStruct;
DWORD cbSize;
}
//C DWORD dwAuthType;
//C DWORD fdwChecks;
//C WCHAR *pwszServerName;
//C } HTTPSPolicyCallbackData,*PHTTPSPolicyCallbackData,SSL_EXTRA_CERT_CHAIN_POLICY_PARA,*PSSL_EXTRA_CERT_CHAIN_POLICY_PARA;
struct _HTTPSPolicyCallbackData
{
DWORD cbStruct;
DWORD cbSize;
DWORD dwAuthType;
DWORD fdwChecks;
WCHAR *pwszServerName;
}
alias _HTTPSPolicyCallbackData HTTPSPolicyCallbackData;
alias _HTTPSPolicyCallbackData *PHTTPSPolicyCallbackData;
alias _HTTPSPolicyCallbackData SSL_EXTRA_CERT_CHAIN_POLICY_PARA;
alias _HTTPSPolicyCallbackData *PSSL_EXTRA_CERT_CHAIN_POLICY_PARA;
//C WINBOOL CryptStringToBinaryA(LPCSTR pszString,DWORD cchString,DWORD dwFlags,BYTE *pbBinary,DWORD *pcbBinary,DWORD *pdwSkip,DWORD *pdwFlags);
WINBOOL CryptStringToBinaryA(LPCSTR pszString, DWORD cchString, DWORD dwFlags, BYTE *pbBinary, DWORD *pcbBinary, DWORD *pdwSkip, DWORD *pdwFlags);
//C WINBOOL CryptStringToBinaryW(LPCWSTR pszString,DWORD cchString,DWORD dwFlags,BYTE *pbBinary,DWORD *pcbBinary,DWORD *pdwSkip,DWORD *pdwFlags);
WINBOOL CryptStringToBinaryW(LPCWSTR pszString, DWORD cchString, DWORD dwFlags, BYTE *pbBinary, DWORD *pcbBinary, DWORD *pdwSkip, DWORD *pdwFlags);
//C WINBOOL CryptBinaryToStringA(const BYTE *pbBinary,DWORD cbBinary,DWORD dwFlags,LPSTR pszString,DWORD *pcchString);
WINBOOL CryptBinaryToStringA(BYTE *pbBinary, DWORD cbBinary, DWORD dwFlags, LPSTR pszString, DWORD *pcchString);
//C WINBOOL CryptBinaryToStringW(const BYTE *pbBinary,DWORD cbBinary,DWORD dwFlags,LPWSTR pszString,DWORD *pcchString);
WINBOOL CryptBinaryToStringW(BYTE *pbBinary, DWORD cbBinary, DWORD dwFlags, LPWSTR pszString, DWORD *pcchString);
//C HCERTSTORE PFXImportCertStore(CRYPT_DATA_BLOB *pPFX,LPCWSTR szPassword,DWORD dwFlags);
HCERTSTORE PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword, DWORD dwFlags);
//C WINBOOL PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX);
WINBOOL PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX);
//C WINBOOL PFXVerifyPassword(CRYPT_DATA_BLOB *pPFX,LPCWSTR szPassword,DWORD dwFlags);
WINBOOL PFXVerifyPassword(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword, DWORD dwFlags);
//C WINBOOL PFXExportCertStoreEx(HCERTSTORE hStore,CRYPT_DATA_BLOB *pPFX,LPCWSTR szPassword,void *pvReserved,DWORD dwFlags);
WINBOOL PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword, void *pvReserved, DWORD dwFlags);
//C WINBOOL PFXExportCertStore(HCERTSTORE hStore,CRYPT_DATA_BLOB *pPFX,LPCWSTR szPassword,DWORD dwFlags);
WINBOOL PFXExportCertStore(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword, DWORD dwFlags);
//C typedef struct _CERTIFICATE_BLOB {
//C DWORD dwCertEncodingType;
//C DWORD cbData;
//C PBYTE pbData;
//C } EFS_CERTIFICATE_BLOB,*PEFS_CERTIFICATE_BLOB;
struct _CERTIFICATE_BLOB
{
DWORD dwCertEncodingType;
DWORD cbData;
PBYTE pbData;
}
alias _CERTIFICATE_BLOB EFS_CERTIFICATE_BLOB;
alias _CERTIFICATE_BLOB *PEFS_CERTIFICATE_BLOB;
//C typedef struct _EFS_HASH_BLOB {
//C DWORD cbData;
//C PBYTE pbData;
//C } EFS_HASH_BLOB,*PEFS_HASH_BLOB;
struct _EFS_HASH_BLOB
{
DWORD cbData;
PBYTE pbData;
}
alias _EFS_HASH_BLOB EFS_HASH_BLOB;
alias _EFS_HASH_BLOB *PEFS_HASH_BLOB;
//C typedef struct _EFS_RPC_BLOB {
//C DWORD cbData;
//C PBYTE pbData;
//C } EFS_RPC_BLOB,*PEFS_RPC_BLOB;
struct _EFS_RPC_BLOB
{
DWORD cbData;
PBYTE pbData;
}
alias _EFS_RPC_BLOB EFS_RPC_BLOB;
alias _EFS_RPC_BLOB *PEFS_RPC_BLOB;
//C typedef struct _EFS_KEY_INFO {
//C DWORD dwVersion;
//C ULONG Entropy;
//C ALG_ID Algorithm;
//C ULONG KeyLength;
//C } EFS_KEY_INFO,*PEFS_KEY_INFO;
struct _EFS_KEY_INFO
{
DWORD dwVersion;
ULONG Entropy;
ALG_ID Algorithm;
ULONG KeyLength;
}
alias _EFS_KEY_INFO EFS_KEY_INFO;
alias _EFS_KEY_INFO *PEFS_KEY_INFO;
//C typedef struct _ENCRYPTION_CERTIFICATE {
//C DWORD cbTotalLength;
//C SID *pUserSid;
//C PEFS_CERTIFICATE_BLOB pCertBlob;
//C } ENCRYPTION_CERTIFICATE,*PENCRYPTION_CERTIFICATE;
struct _ENCRYPTION_CERTIFICATE
{
DWORD cbTotalLength;
SID *pUserSid;
PEFS_CERTIFICATE_BLOB pCertBlob;
}
alias _ENCRYPTION_CERTIFICATE ENCRYPTION_CERTIFICATE;
alias _ENCRYPTION_CERTIFICATE *PENCRYPTION_CERTIFICATE;
//C typedef struct _ENCRYPTION_CERTIFICATE_HASH {
//C DWORD cbTotalLength;
//C SID *pUserSid;
//C PEFS_HASH_BLOB pHash;
//C LPWSTR lpDisplayInformation;
//C } ENCRYPTION_CERTIFICATE_HASH,*PENCRYPTION_CERTIFICATE_HASH;
struct _ENCRYPTION_CERTIFICATE_HASH
{
DWORD cbTotalLength;
SID *pUserSid;
PEFS_HASH_BLOB pHash;
LPWSTR lpDisplayInformation;
}
alias _ENCRYPTION_CERTIFICATE_HASH ENCRYPTION_CERTIFICATE_HASH;
alias _ENCRYPTION_CERTIFICATE_HASH *PENCRYPTION_CERTIFICATE_HASH;
//C typedef struct _ENCRYPTION_CERTIFICATE_HASH_LIST {
//C DWORD nCert_Hash;
//C PENCRYPTION_CERTIFICATE_HASH *pUsers;
//C } ENCRYPTION_CERTIFICATE_HASH_LIST,*PENCRYPTION_CERTIFICATE_HASH_LIST;
struct _ENCRYPTION_CERTIFICATE_HASH_LIST
{
DWORD nCert_Hash;
PENCRYPTION_CERTIFICATE_HASH *pUsers;
}
alias _ENCRYPTION_CERTIFICATE_HASH_LIST ENCRYPTION_CERTIFICATE_HASH_LIST;
alias _ENCRYPTION_CERTIFICATE_HASH_LIST *PENCRYPTION_CERTIFICATE_HASH_LIST;
//C typedef struct _ENCRYPTION_CERTIFICATE_LIST {
//C DWORD nUsers;
//C PENCRYPTION_CERTIFICATE *pUsers;
//C } ENCRYPTION_CERTIFICATE_LIST,*PENCRYPTION_CERTIFICATE_LIST;
struct _ENCRYPTION_CERTIFICATE_LIST
{
DWORD nUsers;
PENCRYPTION_CERTIFICATE *pUsers;
}
alias _ENCRYPTION_CERTIFICATE_LIST ENCRYPTION_CERTIFICATE_LIST;
alias _ENCRYPTION_CERTIFICATE_LIST *PENCRYPTION_CERTIFICATE_LIST;
//C DWORD QueryUsersOnEncryptedFile(LPCWSTR lpFileName,PENCRYPTION_CERTIFICATE_HASH_LIST *pUsers);
DWORD QueryUsersOnEncryptedFile(LPCWSTR lpFileName, PENCRYPTION_CERTIFICATE_HASH_LIST *pUsers);
//C DWORD QueryRecoveryAgentsOnEncryptedFile(LPCWSTR lpFileName,PENCRYPTION_CERTIFICATE_HASH_LIST *pRecoveryAgents);
DWORD QueryRecoveryAgentsOnEncryptedFile(LPCWSTR lpFileName, PENCRYPTION_CERTIFICATE_HASH_LIST *pRecoveryAgents);
//C DWORD RemoveUsersFromEncryptedFile(LPCWSTR lpFileName,PENCRYPTION_CERTIFICATE_HASH_LIST pHashes);
DWORD RemoveUsersFromEncryptedFile(LPCWSTR lpFileName, PENCRYPTION_CERTIFICATE_HASH_LIST pHashes);
//C DWORD AddUsersToEncryptedFile(LPCWSTR lpFileName,PENCRYPTION_CERTIFICATE_LIST pUsers);
DWORD AddUsersToEncryptedFile(LPCWSTR lpFileName, PENCRYPTION_CERTIFICATE_LIST pUsers);
//C DWORD SetUserFileEncryptionKey(PENCRYPTION_CERTIFICATE pEncryptionCertificate);
DWORD SetUserFileEncryptionKey(PENCRYPTION_CERTIFICATE pEncryptionCertificate);
//C void FreeEncryptionCertificateHashList(PENCRYPTION_CERTIFICATE_HASH_LIST pHashes);
void FreeEncryptionCertificateHashList(PENCRYPTION_CERTIFICATE_HASH_LIST pHashes);
//C WINBOOL EncryptionDisable(LPCWSTR DirPath,WINBOOL Disable);
WINBOOL EncryptionDisable(LPCWSTR DirPath, WINBOOL Disable);
//C DWORD DuplicateEncryptionInfoFile(LPCWSTR SrcFileName,LPCWSTR DstFileName,DWORD dwCreationDistribution,DWORD dwAttributes,const LPSECURITY_ATTRIBUTES lpSecurityAttributes);
DWORD DuplicateEncryptionInfoFile(LPCWSTR SrcFileName, LPCWSTR DstFileName, DWORD dwCreationDistribution, DWORD dwAttributes, LPSECURITY_ATTRIBUTES lpSecurityAttributes);
//C typedef struct {
//C RPC_NS_HANDLE LookupContext;
//C RPC_BINDING_HANDLE ProposedHandle;
//C RPC_BINDING_VECTOR *Bindings;
//C } RPC_IMPORT_CONTEXT_P,*PRPC_IMPORT_CONTEXT_P;
struct _N150
{
RPC_NS_HANDLE LookupContext;
RPC_BINDING_HANDLE ProposedHandle;
RPC_BINDING_VECTOR *Bindings;
}
alias _N150 RPC_IMPORT_CONTEXT_P;
alias _N150 *PRPC_IMPORT_CONTEXT_P;
//C RPC_STATUS I_RpcNsGetBuffer(PRPC_MESSAGE Message);
RPC_STATUS I_RpcNsGetBuffer(PRPC_MESSAGE Message);
//C RPC_STATUS I_RpcNsSendReceive(PRPC_MESSAGE Message,RPC_BINDING_HANDLE *Handle);
RPC_STATUS I_RpcNsSendReceive(PRPC_MESSAGE Message, RPC_BINDING_HANDLE *Handle);
//C void I_RpcNsRaiseException(PRPC_MESSAGE Message,RPC_STATUS Status);
void I_RpcNsRaiseException(PRPC_MESSAGE Message, RPC_STATUS Status);
//C RPC_STATUS I_RpcReBindBuffer(PRPC_MESSAGE Message);
RPC_STATUS I_RpcReBindBuffer(PRPC_MESSAGE Message);
//C RPC_STATUS I_NsServerBindSearch();
RPC_STATUS I_NsServerBindSearch();
//C RPC_STATUS I_NsClientBindSearch();
RPC_STATUS I_NsClientBindSearch();
//C void I_NsClientBindDone();
void I_NsClientBindDone();
//C typedef unsigned char byte;
//C typedef byte cs_byte;
alias byte cs_byte;
//C typedef unsigned char boolean;
alias ubyte boolean;
//C void * MIDL_user_allocate(SIZE_T);
void * MIDL_user_allocate(SIZE_T );
//C void MIDL_user_free(void *);
void MIDL_user_free(void *);
//C typedef void *NDR_CCONTEXT;
alias void *NDR_CCONTEXT;
//C typedef struct _NDR_SCONTEXT {
//C void *pad[2];
//C void *userContext;
//C } *NDR_SCONTEXT;
struct _NDR_SCONTEXT
{
void *[2]pad;
void *userContext;
}
alias _NDR_SCONTEXT *NDR_SCONTEXT;
//C typedef void ( *NDR_RUNDOWN)(void *context);
alias void function(void *context)NDR_RUNDOWN;
//C typedef void ( *NDR_NOTIFY_ROUTINE)(void);
alias void function()NDR_NOTIFY_ROUTINE;
//C typedef void ( *NDR_NOTIFY2_ROUTINE)(boolean flag);
alias void function(boolean flag)NDR_NOTIFY2_ROUTINE;
//C typedef struct _SCONTEXT_QUEUE {
//C unsigned long NumberOfObjects;
//C NDR_SCONTEXT *ArrayOfObjects;
//C } SCONTEXT_QUEUE,*PSCONTEXT_QUEUE;
struct _SCONTEXT_QUEUE
{
uint NumberOfObjects;
NDR_SCONTEXT *ArrayOfObjects;
}
alias _SCONTEXT_QUEUE SCONTEXT_QUEUE;
alias _SCONTEXT_QUEUE *PSCONTEXT_QUEUE;
//C RPC_BINDING_HANDLE NDRCContextBinding(NDR_CCONTEXT CContext);
RPC_BINDING_HANDLE NDRCContextBinding(NDR_CCONTEXT CContext);
//C void NDRCContextMarshall(NDR_CCONTEXT CContext,void *pBuff);
void NDRCContextMarshall(NDR_CCONTEXT CContext, void *pBuff);
//C void NDRCContextUnmarshall(NDR_CCONTEXT *pCContext,RPC_BINDING_HANDLE hBinding,void *pBuff,unsigned long DataRepresentation);
void NDRCContextUnmarshall(NDR_CCONTEXT *pCContext, RPC_BINDING_HANDLE hBinding, void *pBuff, uint DataRepresentation);
//C void NDRSContextMarshall(NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn);
void NDRSContextMarshall(NDR_SCONTEXT CContext, void *pBuff, NDR_RUNDOWN userRunDownIn);
//C NDR_SCONTEXT NDRSContextUnmarshall(void *pBuff,unsigned long DataRepresentation);
NDR_SCONTEXT NDRSContextUnmarshall(void *pBuff, uint DataRepresentation);
//C void NDRSContextMarshallEx(RPC_BINDING_HANDLE BindingHandle,NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn);
void NDRSContextMarshallEx(RPC_BINDING_HANDLE BindingHandle, NDR_SCONTEXT CContext, void *pBuff, NDR_RUNDOWN userRunDownIn);
//C void NDRSContextMarshall2(RPC_BINDING_HANDLE BindingHandle,NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn,void *CtxGuard,unsigned long Flags);
void NDRSContextMarshall2(RPC_BINDING_HANDLE BindingHandle, NDR_SCONTEXT CContext, void *pBuff, NDR_RUNDOWN userRunDownIn, void *CtxGuard, uint Flags);
//C NDR_SCONTEXT NDRSContextUnmarshallEx(RPC_BINDING_HANDLE BindingHandle,void *pBuff,unsigned long DataRepresentation);
NDR_SCONTEXT NDRSContextUnmarshallEx(RPC_BINDING_HANDLE BindingHandle, void *pBuff, uint DataRepresentation);
//C NDR_SCONTEXT NDRSContextUnmarshall2(RPC_BINDING_HANDLE BindingHandle,void *pBuff,unsigned long DataRepresentation,void *CtxGuard,unsigned long Flags);
NDR_SCONTEXT NDRSContextUnmarshall2(RPC_BINDING_HANDLE BindingHandle, void *pBuff, uint DataRepresentation, void *CtxGuard, uint Flags);
//C void RpcSsDestroyClientContext(void **ContextHandle);
void RpcSsDestroyClientContext(void **ContextHandle);
//C typedef unsigned long error_status_t;
alias uint error_status_t;
//C struct _MIDL_STUB_MESSAGE;
//C struct _MIDL_STUB_DESC;
//C struct _FULL_PTR_XLAT_TABLES;
//C typedef unsigned char *RPC_BUFPTR;
alias ubyte *RPC_BUFPTR;
//C typedef unsigned long RPC_LENGTH;
alias uint RPC_LENGTH;
//C typedef void ( *EXPR_EVAL)(struct _MIDL_STUB_MESSAGE *);
alias void function(_MIDL_STUB_MESSAGE *)EXPR_EVAL;
//C typedef const unsigned char *PFORMAT_STRING;
alias ubyte *PFORMAT_STRING;
//C typedef struct {
//C long Dimension;
//C unsigned long *BufferConformanceMark;
//C unsigned long *BufferVarianceMark;
//C unsigned long *MaxCountArray;
//C unsigned long *OffsetArray;
//C unsigned long *ActualCountArray;
//C } ARRAY_INFO,*PARRAY_INFO;
struct _N151
{
int Dimension;
uint *BufferConformanceMark;
uint *BufferVarianceMark;
uint *MaxCountArray;
uint *OffsetArray;
uint *ActualCountArray;
}
alias _N151 ARRAY_INFO;
alias _N151 *PARRAY_INFO;
//C typedef struct _NDR_ASYNC_MESSAGE *PNDR_ASYNC_MESSAGE;
alias _NDR_ASYNC_MESSAGE *PNDR_ASYNC_MESSAGE;
//C typedef struct _NDR_CORRELATION_INFO *PNDR_CORRELATION_INFO;
alias _NDR_CORRELATION_INFO *PNDR_CORRELATION_INFO;
//C typedef struct {
//C unsigned long WireCodeset;
//C unsigned long DesiredReceivingCodeset;
//C void *CSArrayInfo;
//C } CS_STUB_INFO;
struct _N152
{
uint WireCodeset;
uint DesiredReceivingCodeset;
void *CSArrayInfo;
}
alias _N152 CS_STUB_INFO;
//C struct _MIDL_SYNTAX_INFO;
//C typedef struct _MIDL_SYNTAX_INFO MIDL_SYNTAX_INFO,*PMIDL_SYNTAX_INFO;
alias _MIDL_SYNTAX_INFO MIDL_SYNTAX_INFO;
alias _MIDL_SYNTAX_INFO *PMIDL_SYNTAX_INFO;
//C struct NDR_ALLOC_ALL_NODES_CONTEXT;
//C struct NDR_POINTER_QUEUE_STATE;
//C struct _NDR_PROC_CONTEXT;
//C typedef struct _MIDL_STUB_MESSAGE {
//C PRPC_MESSAGE RpcMsg;
//C unsigned char *Buffer;
//C unsigned char *BufferStart;
//C unsigned char *BufferEnd;
//C unsigned char *BufferMark;
//C unsigned long BufferLength;
//C unsigned long MemorySize;
//C unsigned char *Memory;
//C unsigned char IsClient;
//C unsigned char Pad;
//C unsigned short uFlags2;
//C int ReuseBuffer;
//C struct NDR_ALLOC_ALL_NODES_CONTEXT *pAllocAllNodesContext;
//C struct NDR_POINTER_QUEUE_STATE *pPointerQueueState;
//C int IgnoreEmbeddedPointers;
//C unsigned char *PointerBufferMark;
//C unsigned char fBufferValid;
//C unsigned char uFlags;
//C unsigned short UniquePtrCount;
//C ULONG_PTR MaxCount;
//C unsigned long Offset;
//C unsigned long ActualCount;
//C void *( *pfnAllocate)(size_t);
//C void ( *pfnFree)(void *);
//C unsigned char *StackTop;
//C unsigned char *pPresentedType;
//C unsigned char *pTransmitType;
//C handle_t SavedHandle;
//C const struct _MIDL_STUB_DESC *StubDesc;
//C struct _FULL_PTR_XLAT_TABLES *FullPtrXlatTables;
//C unsigned long FullPtrRefId;
//C unsigned long PointerLength;
//C int fInDontFree : 1;
//C int fDontCallFreeInst : 1;
//C int fInOnlyParam : 1;
//C int fHasReturn : 1;
//C int fHasExtensions : 1;
//C int fHasNewCorrDesc : 1;
//C int fIsOicfServer : 1;
//C int fHasMemoryValidateCallback : 1;
//C int fUnused : 8;
//C int fUnused2 : 16;
//C unsigned long dwDestContext;
//C void *pvDestContext;
//C NDR_SCONTEXT *SavedContextHandles;
//C long ParamNumber;
//C struct IRpcChannelBuffer *pRpcChannelBuffer;
//C PARRAY_INFO pArrayInfo;
//C unsigned long *SizePtrCountArray;
//C unsigned long *SizePtrOffsetArray;
//C unsigned long *SizePtrLengthArray;
//C void *pArgQueue;
//C unsigned long dwStubPhase;
//C void *LowStackMark;
//C PNDR_ASYNC_MESSAGE pAsyncMsg;
//C PNDR_CORRELATION_INFO pCorrInfo;
//C unsigned char *pCorrMemory;
//C void *pMemoryList;
//C CS_STUB_INFO *pCSInfo;
//C unsigned char *ConformanceMark;
//C unsigned char *VarianceMark;
//C INT_PTR Unused;
//C struct _NDR_PROC_CONTEXT *pContext;
//C void *pUserMarshalList;
//C INT_PTR Reserved51_2;
//C INT_PTR Reserved51_3;
//C INT_PTR Reserved51_4;
//C INT_PTR Reserved51_5;
//C } MIDL_STUB_MESSAGE,*PMIDL_STUB_MESSAGE;
struct _MIDL_STUB_MESSAGE
{
PRPC_MESSAGE RpcMsg;
ubyte *Buffer;
ubyte *BufferStart;
ubyte *BufferEnd;
ubyte *BufferMark;
uint BufferLength;
uint MemorySize;
ubyte *Memory;
ubyte IsClient;
ubyte Pad;
ushort uFlags2;
int ReuseBuffer;
NDR_ALLOC_ALL_NODES_CONTEXT *pAllocAllNodesContext;
NDR_POINTER_QUEUE_STATE *pPointerQueueState;
int IgnoreEmbeddedPointers;
ubyte *PointerBufferMark;
ubyte fBufferValid;
ubyte uFlags;
ushort UniquePtrCount;
ULONG_PTR MaxCount;
uint Offset;
uint ActualCount;
void * function(size_t )pfnAllocate;
void function(void *)pfnFree;
ubyte *StackTop;
ubyte *pPresentedType;
ubyte *pTransmitType;
handle_t SavedHandle;
_MIDL_STUB_DESC *StubDesc;
_FULL_PTR_XLAT_TABLES *FullPtrXlatTables;
uint FullPtrRefId;
uint PointerLength;
int __bitfield1;
int fInDontFree() { return (__bitfield1 << 31) >> 31; }
int fDontCallFreeInst() { return (__bitfield1 << 30) >> 31; }
int fInOnlyParam() { return (__bitfield1 << 29) >> 31; }
int fHasReturn() { return (__bitfield1 << 28) >> 31; }
int fHasExtensions() { return (__bitfield1 << 27) >> 31; }
int fHasNewCorrDesc() { return (__bitfield1 << 26) >> 31; }
int fIsOicfServer() { return (__bitfield1 << 25) >> 31; }
int fHasMemoryValidateCallback() { return (__bitfield1 << 24) >> 31; }
int fUnused() { return (__bitfield1 << 16) >> 24; }
int fUnused2() { return (__bitfield1 << 0) >> 16; }
uint dwDestContext;
void *pvDestContext;
NDR_SCONTEXT *SavedContextHandles;
int ParamNumber;
IRpcChannelBuffer *pRpcChannelBuffer;
PARRAY_INFO pArrayInfo;
uint *SizePtrCountArray;
uint *SizePtrOffsetArray;
uint *SizePtrLengthArray;
void *pArgQueue;
uint dwStubPhase;
void *LowStackMark;
PNDR_ASYNC_MESSAGE pAsyncMsg;
PNDR_CORRELATION_INFO pCorrInfo;
ubyte *pCorrMemory;
void *pMemoryList;
CS_STUB_INFO *pCSInfo;
ubyte *ConformanceMark;
ubyte *VarianceMark;
INT_PTR Unused;
_NDR_PROC_CONTEXT *pContext;
void *pUserMarshalList;
INT_PTR Reserved51_2;
INT_PTR Reserved51_3;
INT_PTR Reserved51_4;
INT_PTR Reserved51_5;
}
alias _MIDL_STUB_MESSAGE MIDL_STUB_MESSAGE;
alias _MIDL_STUB_MESSAGE *PMIDL_STUB_MESSAGE;
//C typedef void *( *GENERIC_BINDING_ROUTINE)(void *);
alias void * function(void *)GENERIC_BINDING_ROUTINE;
//C typedef void ( *GENERIC_UNBIND_ROUTINE)(void *,unsigned char *);
alias void function(void *, ubyte *)GENERIC_UNBIND_ROUTINE;
//C typedef struct _GENERIC_BINDING_ROUTINE_PAIR {
//C GENERIC_BINDING_ROUTINE pfnBind;
//C GENERIC_UNBIND_ROUTINE pfnUnbind;
//C } GENERIC_BINDING_ROUTINE_PAIR,*PGENERIC_BINDING_ROUTINE_PAIR;
struct _GENERIC_BINDING_ROUTINE_PAIR
{
GENERIC_BINDING_ROUTINE pfnBind;
GENERIC_UNBIND_ROUTINE pfnUnbind;
}
alias _GENERIC_BINDING_ROUTINE_PAIR GENERIC_BINDING_ROUTINE_PAIR;
alias _GENERIC_BINDING_ROUTINE_PAIR *PGENERIC_BINDING_ROUTINE_PAIR;
//C typedef struct __GENERIC_BINDING_INFO {
//C void *pObj;
//C unsigned int Size;
//C GENERIC_BINDING_ROUTINE pfnBind;
//C GENERIC_UNBIND_ROUTINE pfnUnbind;
//C } GENERIC_BINDING_INFO,*PGENERIC_BINDING_INFO;
struct __GENERIC_BINDING_INFO
{
void *pObj;
uint Size;
GENERIC_BINDING_ROUTINE pfnBind;
GENERIC_UNBIND_ROUTINE pfnUnbind;
}
alias __GENERIC_BINDING_INFO GENERIC_BINDING_INFO;
alias __GENERIC_BINDING_INFO *PGENERIC_BINDING_INFO;
//C typedef void ( *XMIT_HELPER_ROUTINE)(PMIDL_STUB_MESSAGE);
alias void function(PMIDL_STUB_MESSAGE )XMIT_HELPER_ROUTINE;
//C typedef struct _XMIT_ROUTINE_QUINTUPLE {
//C XMIT_HELPER_ROUTINE pfnTranslateToXmit;
//C XMIT_HELPER_ROUTINE pfnTranslateFromXmit;
//C XMIT_HELPER_ROUTINE pfnFreeXmit;
//C XMIT_HELPER_ROUTINE pfnFreeInst;
//C } XMIT_ROUTINE_QUINTUPLE,*PXMIT_ROUTINE_QUINTUPLE;
struct _XMIT_ROUTINE_QUINTUPLE
{
XMIT_HELPER_ROUTINE pfnTranslateToXmit;
XMIT_HELPER_ROUTINE pfnTranslateFromXmit;
XMIT_HELPER_ROUTINE pfnFreeXmit;
XMIT_HELPER_ROUTINE pfnFreeInst;
}
alias _XMIT_ROUTINE_QUINTUPLE XMIT_ROUTINE_QUINTUPLE;
alias _XMIT_ROUTINE_QUINTUPLE *PXMIT_ROUTINE_QUINTUPLE;
//C typedef ULONG ( *USER_MARSHAL_SIZING_ROUTINE)(ULONG *,ULONG,void *);
alias ULONG function(ULONG *, ULONG , void *)USER_MARSHAL_SIZING_ROUTINE;
//C typedef unsigned char *( *USER_MARSHAL_MARSHALLING_ROUTINE)(ULONG *,unsigned char *,void *);
alias ubyte * function(ULONG *, ubyte *, void *)USER_MARSHAL_MARSHALLING_ROUTINE;
//C typedef unsigned char *( *USER_MARSHAL_UNMARSHALLING_ROUTINE)(ULONG *,unsigned char *,void *);
alias ubyte * function(ULONG *, ubyte *, void *)USER_MARSHAL_UNMARSHALLING_ROUTINE;
//C typedef void ( *USER_MARSHAL_FREEING_ROUTINE)(ULONG *,void *);
alias void function(ULONG *, void *)USER_MARSHAL_FREEING_ROUTINE;
//C typedef struct _USER_MARSHAL_ROUTINE_QUADRUPLE {
//C USER_MARSHAL_SIZING_ROUTINE pfnBufferSize;
//C USER_MARSHAL_MARSHALLING_ROUTINE pfnMarshall;
//C USER_MARSHAL_UNMARSHALLING_ROUTINE pfnUnmarshall;
//C USER_MARSHAL_FREEING_ROUTINE pfnFree;
//C } USER_MARSHAL_ROUTINE_QUADRUPLE;
struct _USER_MARSHAL_ROUTINE_QUADRUPLE
{
USER_MARSHAL_SIZING_ROUTINE pfnBufferSize;
USER_MARSHAL_MARSHALLING_ROUTINE pfnMarshall;
USER_MARSHAL_UNMARSHALLING_ROUTINE pfnUnmarshall;
USER_MARSHAL_FREEING_ROUTINE pfnFree;
}
alias _USER_MARSHAL_ROUTINE_QUADRUPLE USER_MARSHAL_ROUTINE_QUADRUPLE;
//C typedef enum _USER_MARSHAL_CB_TYPE {
//C USER_MARSHAL_CB_BUFFER_SIZE,USER_MARSHAL_CB_MARSHALL,USER_MARSHAL_CB_UNMARSHALL,USER_MARSHAL_CB_FREE
//C } USER_MARSHAL_CB_TYPE;
enum _USER_MARSHAL_CB_TYPE
{
USER_MARSHAL_CB_BUFFER_SIZE,
USER_MARSHAL_CB_MARSHALL,
USER_MARSHAL_CB_UNMARSHALL,
USER_MARSHAL_CB_FREE,
}
alias _USER_MARSHAL_CB_TYPE USER_MARSHAL_CB_TYPE;
//C typedef struct _USER_MARSHAL_CB {
//C unsigned long Flags;
//C PMIDL_STUB_MESSAGE pStubMsg;
//C PFORMAT_STRING pReserve;
//C unsigned long Signature;
//C USER_MARSHAL_CB_TYPE CBType;
//C PFORMAT_STRING pFormat;
//C PFORMAT_STRING pTypeFormat;
//C } USER_MARSHAL_CB;
struct _USER_MARSHAL_CB
{
uint Flags;
PMIDL_STUB_MESSAGE pStubMsg;
PFORMAT_STRING pReserve;
uint Signature;
USER_MARSHAL_CB_TYPE CBType;
PFORMAT_STRING pFormat;
PFORMAT_STRING pTypeFormat;
}
alias _USER_MARSHAL_CB USER_MARSHAL_CB;
//C typedef struct _MALLOC_FREE_STRUCT {
//C void *( *pfnAllocate)(size_t);
//C void ( *pfnFree)(void *);
//C } MALLOC_FREE_STRUCT;
struct _MALLOC_FREE_STRUCT
{
void * function(size_t )pfnAllocate;
void function(void *)pfnFree;
}
alias _MALLOC_FREE_STRUCT MALLOC_FREE_STRUCT;
//C typedef struct _COMM_FAULT_OFFSETS {
//C short CommOffset;
//C short FaultOffset;
//C } COMM_FAULT_OFFSETS;
struct _COMM_FAULT_OFFSETS
{
short CommOffset;
short FaultOffset;
}
alias _COMM_FAULT_OFFSETS COMM_FAULT_OFFSETS;
//C typedef enum _IDL_CS_CONVERT {
//C IDL_CS_NO_CONVERT,IDL_CS_IN_PLACE_CONVERT,IDL_CS_NEW_BUFFER_CONVERT
//C } IDL_CS_CONVERT;
enum _IDL_CS_CONVERT
{
IDL_CS_NO_CONVERT,
IDL_CS_IN_PLACE_CONVERT,
IDL_CS_NEW_BUFFER_CONVERT,
}
alias _IDL_CS_CONVERT IDL_CS_CONVERT;
//C typedef void ( *CS_TYPE_NET_SIZE_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned long ulNetworkCodeSet,unsigned long ulLocalBufferSize,IDL_CS_CONVERT *conversionType,unsigned long *pulNetworkBufferSize,error_status_t *pStatus);
alias void function(RPC_BINDING_HANDLE hBinding, uint ulNetworkCodeSet, uint ulLocalBufferSize, IDL_CS_CONVERT *conversionType, uint *pulNetworkBufferSize, error_status_t *pStatus)CS_TYPE_NET_SIZE_ROUTINE;
//C typedef void ( *CS_TYPE_LOCAL_SIZE_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned long ulNetworkCodeSet,unsigned long ulNetworkBufferSize,IDL_CS_CONVERT *conversionType,unsigned long *pulLocalBufferSize,error_status_t *pStatus);
alias void function(RPC_BINDING_HANDLE hBinding, uint ulNetworkCodeSet, uint ulNetworkBufferSize, IDL_CS_CONVERT *conversionType, uint *pulLocalBufferSize, error_status_t *pStatus)CS_TYPE_LOCAL_SIZE_ROUTINE;
//C typedef void ( *CS_TYPE_TO_NETCS_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned long ulNetworkCodeSet,void *pLocalData,unsigned long ulLocalDataLength,byte *pNetworkData,unsigned long *pulNetworkDataLength,error_status_t *pStatus);
alias void function(RPC_BINDING_HANDLE hBinding, uint ulNetworkCodeSet, void *pLocalData, uint ulLocalDataLength, byte *pNetworkData, uint *pulNetworkDataLength, error_status_t *pStatus)CS_TYPE_TO_NETCS_ROUTINE;
//C typedef void ( *CS_TYPE_FROM_NETCS_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned long ulNetworkCodeSet,byte *pNetworkData,unsigned long ulNetworkDataLength,unsigned long ulLocalBufferSize,void *pLocalData,unsigned long *pulLocalDataLength,error_status_t *pStatus);
alias void function(RPC_BINDING_HANDLE hBinding, uint ulNetworkCodeSet, byte *pNetworkData, uint ulNetworkDataLength, uint ulLocalBufferSize, void *pLocalData, uint *pulLocalDataLength, error_status_t *pStatus)CS_TYPE_FROM_NETCS_ROUTINE;
//C typedef void ( *CS_TAG_GETTING_ROUTINE)(RPC_BINDING_HANDLE hBinding,int fServerSide,unsigned long *pulSendingTag,unsigned long *pulDesiredReceivingTag,unsigned long *pulReceivingTag,error_status_t *pStatus);
alias void function(RPC_BINDING_HANDLE hBinding, int fServerSide, uint *pulSendingTag, uint *pulDesiredReceivingTag, uint *pulReceivingTag, error_status_t *pStatus)CS_TAG_GETTING_ROUTINE;
//C void RpcCsGetTags(RPC_BINDING_HANDLE hBinding,int fServerSide,unsigned long *pulSendingTag,unsigned long *pulDesiredReceivingTag,unsigned long *pulReceivingTag,error_status_t *pStatus);
void RpcCsGetTags(RPC_BINDING_HANDLE hBinding, int fServerSide, uint *pulSendingTag, uint *pulDesiredReceivingTag, uint *pulReceivingTag, error_status_t *pStatus);
//C typedef struct _NDR_CS_SIZE_CONVERT_ROUTINES {
//C CS_TYPE_NET_SIZE_ROUTINE pfnNetSize;
//C CS_TYPE_TO_NETCS_ROUTINE pfnToNetCs;
//C CS_TYPE_LOCAL_SIZE_ROUTINE pfnLocalSize;
//C CS_TYPE_FROM_NETCS_ROUTINE pfnFromNetCs;
//C } NDR_CS_SIZE_CONVERT_ROUTINES;
struct _NDR_CS_SIZE_CONVERT_ROUTINES
{
CS_TYPE_NET_SIZE_ROUTINE pfnNetSize;
CS_TYPE_TO_NETCS_ROUTINE pfnToNetCs;
CS_TYPE_LOCAL_SIZE_ROUTINE pfnLocalSize;
CS_TYPE_FROM_NETCS_ROUTINE pfnFromNetCs;
}
alias _NDR_CS_SIZE_CONVERT_ROUTINES NDR_CS_SIZE_CONVERT_ROUTINES;
//C typedef struct _NDR_CS_ROUTINES {
//C NDR_CS_SIZE_CONVERT_ROUTINES *pSizeConvertRoutines;
//C CS_TAG_GETTING_ROUTINE *pTagGettingRoutines;
//C } NDR_CS_ROUTINES;
struct _NDR_CS_ROUTINES
{
NDR_CS_SIZE_CONVERT_ROUTINES *pSizeConvertRoutines;
CS_TAG_GETTING_ROUTINE *pTagGettingRoutines;
}
alias _NDR_CS_ROUTINES NDR_CS_ROUTINES;
//C typedef struct _MIDL_STUB_DESC {
//C void *RpcInterfaceInformation;
//C void *( *pfnAllocate)(size_t);
//C void ( *pfnFree)(void *);
//C union {
//C handle_t *pAutoHandle;
//C handle_t *pPrimitiveHandle;
//C PGENERIC_BINDING_INFO pGenericBindingInfo;
//C } IMPLICIT_HANDLE_INFO;
union _N153
{
handle_t *pAutoHandle;
handle_t *pPrimitiveHandle;
PGENERIC_BINDING_INFO pGenericBindingInfo;
}
//C const NDR_RUNDOWN *apfnNdrRundownRoutines;
//C const GENERIC_BINDING_ROUTINE_PAIR *aGenericBindingRoutinePairs;
//C const EXPR_EVAL *apfnExprEval;
//C const XMIT_ROUTINE_QUINTUPLE *aXmitQuintuple;
//C const unsigned char *pFormatTypes;
//C int fCheckBounds;
//C unsigned long Version;
//C MALLOC_FREE_STRUCT *pMallocFreeStruct;
//C long MIDLVersion;
//C const COMM_FAULT_OFFSETS *CommFaultOffsets;
//C const USER_MARSHAL_ROUTINE_QUADRUPLE *aUserMarshalQuadruple;
//C const NDR_NOTIFY_ROUTINE *NotifyRoutineTable;
//C ULONG_PTR mFlags;
//C const NDR_CS_ROUTINES *CsRoutineTables;
//C void *Reserved4;
//C ULONG_PTR Reserved5;
//C } MIDL_STUB_DESC;
struct _MIDL_STUB_DESC
{
void *RpcInterfaceInformation;
void * function(size_t )pfnAllocate;
void function(void *)pfnFree;
_N153 IMPLICIT_HANDLE_INFO;
NDR_RUNDOWN *apfnNdrRundownRoutines;
GENERIC_BINDING_ROUTINE_PAIR *aGenericBindingRoutinePairs;
EXPR_EVAL *apfnExprEval;
XMIT_ROUTINE_QUINTUPLE *aXmitQuintuple;
ubyte *pFormatTypes;
int fCheckBounds;
uint Version;
MALLOC_FREE_STRUCT *pMallocFreeStruct;
int MIDLVersion;
COMM_FAULT_OFFSETS *CommFaultOffsets;
USER_MARSHAL_ROUTINE_QUADRUPLE *aUserMarshalQuadruple;
NDR_NOTIFY_ROUTINE *NotifyRoutineTable;
ULONG_PTR mFlags;
NDR_CS_ROUTINES *CsRoutineTables;
void *Reserved4;
ULONG_PTR Reserved5;
}
alias _MIDL_STUB_DESC MIDL_STUB_DESC;
//C typedef const MIDL_STUB_DESC *PMIDL_STUB_DESC;
alias MIDL_STUB_DESC *PMIDL_STUB_DESC;
//C typedef void *PMIDL_XMIT_TYPE;
alias void *PMIDL_XMIT_TYPE;
//C typedef struct _MIDL_FORMAT_STRING {
//C short Pad;
//C unsigned char Format[];
//C } MIDL_FORMAT_STRING;
struct _MIDL_FORMAT_STRING
{
short Pad;
ubyte []Format;
}
alias _MIDL_FORMAT_STRING MIDL_FORMAT_STRING;
//C typedef void ( *STUB_THUNK)(PMIDL_STUB_MESSAGE);
alias void function(PMIDL_STUB_MESSAGE )STUB_THUNK;
//C typedef long ( *SERVER_ROUTINE)();
alias int function()SERVER_ROUTINE;
//C typedef struct _MIDL_SERVER_INFO_ {
//C PMIDL_STUB_DESC pStubDesc;
//C const SERVER_ROUTINE *DispatchTable;
//C PFORMAT_STRING ProcString;
//C const unsigned short *FmtStringOffset;
//C const STUB_THUNK *ThunkTable;
//C PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
//C ULONG_PTR nCount;
//C PMIDL_SYNTAX_INFO pSyntaxInfo;
//C } MIDL_SERVER_INFO,*PMIDL_SERVER_INFO;
struct _MIDL_SERVER_INFO_
{
PMIDL_STUB_DESC pStubDesc;
SERVER_ROUTINE *DispatchTable;
PFORMAT_STRING ProcString;
ushort *FmtStringOffset;
STUB_THUNK *ThunkTable;
PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
ULONG_PTR nCount;
PMIDL_SYNTAX_INFO pSyntaxInfo;
}
alias _MIDL_SERVER_INFO_ MIDL_SERVER_INFO;
alias _MIDL_SERVER_INFO_ *PMIDL_SERVER_INFO;
//C typedef struct _MIDL_STUBLESS_PROXY_INFO {
//C PMIDL_STUB_DESC pStubDesc;
//C PFORMAT_STRING ProcFormatString;
//C const unsigned short *FormatStringOffset;
//C PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
//C ULONG_PTR nCount;
//C PMIDL_SYNTAX_INFO pSyntaxInfo;
//C } MIDL_STUBLESS_PROXY_INFO;
struct _MIDL_STUBLESS_PROXY_INFO
{
PMIDL_STUB_DESC pStubDesc;
PFORMAT_STRING ProcFormatString;
ushort *FormatStringOffset;
PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
ULONG_PTR nCount;
PMIDL_SYNTAX_INFO pSyntaxInfo;
}
alias _MIDL_STUBLESS_PROXY_INFO MIDL_STUBLESS_PROXY_INFO;
//C typedef MIDL_STUBLESS_PROXY_INFO *PMIDL_STUBLESS_PROXY_INFO;
alias MIDL_STUBLESS_PROXY_INFO *PMIDL_STUBLESS_PROXY_INFO;
//C struct _MIDL_SYNTAX_INFO {
//C RPC_SYNTAX_IDENTIFIER TransferSyntax;
//C RPC_DISPATCH_TABLE *DispatchTable;
//C PFORMAT_STRING ProcString;
//C const unsigned short *FmtStringOffset;
//C PFORMAT_STRING TypeString;
//C const void *aUserMarshalQuadruple;
//C ULONG_PTR pReserved1;
//C ULONG_PTR pReserved2;
//C };
struct _MIDL_SYNTAX_INFO
{
RPC_SYNTAX_IDENTIFIER TransferSyntax;
RPC_DISPATCH_TABLE *DispatchTable;
PFORMAT_STRING ProcString;
ushort *FmtStringOffset;
PFORMAT_STRING TypeString;
void *aUserMarshalQuadruple;
ULONG_PTR pReserved1;
ULONG_PTR pReserved2;
}
//C typedef unsigned short *PARAM_OFFSETTABLE,*PPARAM_OFFSETTABLE;
alias ushort *PARAM_OFFSETTABLE;
alias ushort *PPARAM_OFFSETTABLE;
//C typedef union _CLIENT_CALL_RETURN {
//C void *Pointer;
//C LONG_PTR Simple;
//C } CLIENT_CALL_RETURN;
union _CLIENT_CALL_RETURN
{
void *Pointer;
LONG_PTR Simple;
}
alias _CLIENT_CALL_RETURN CLIENT_CALL_RETURN;
//C typedef enum {
//C XLAT_SERVER = 1,XLAT_CLIENT
//C } XLAT_SIDE;
enum
{
XLAT_SERVER = 1,
XLAT_CLIENT,
}
alias int XLAT_SIDE;
//C typedef struct _FULL_PTR_TO_REFID_ELEMENT {
//C struct _FULL_PTR_TO_REFID_ELEMENT *Next;
//C void *Pointer;
//C unsigned long RefId;
//C unsigned char State;
//C } FULL_PTR_TO_REFID_ELEMENT,*PFULL_PTR_TO_REFID_ELEMENT;
struct _FULL_PTR_TO_REFID_ELEMENT
{
_FULL_PTR_TO_REFID_ELEMENT *Next;
void *Pointer;
uint RefId;
ubyte State;
}
alias _FULL_PTR_TO_REFID_ELEMENT FULL_PTR_TO_REFID_ELEMENT;
alias _FULL_PTR_TO_REFID_ELEMENT *PFULL_PTR_TO_REFID_ELEMENT;
//C typedef struct _FULL_PTR_XLAT_TABLES {
//C struct {
//C void **XlatTable;
//C unsigned char *StateTable;
//C unsigned long NumberOfEntries;
//C } RefIdToPointer;
struct _N155
{
void **XlatTable;
ubyte *StateTable;
uint NumberOfEntries;
}
//C struct {
//C PFULL_PTR_TO_REFID_ELEMENT *XlatTable;
//C unsigned long NumberOfBuckets;
//C unsigned long HashMask;
//C } PointerToRefId;
struct _N156
{
PFULL_PTR_TO_REFID_ELEMENT *XlatTable;
uint NumberOfBuckets;
uint HashMask;
}
//C unsigned long NextRefId;
//C XLAT_SIDE XlatSide;
//C } FULL_PTR_XLAT_TABLES,*PFULL_PTR_XLAT_TABLES;
struct _FULL_PTR_XLAT_TABLES
{
_N155 RefIdToPointer;
_N156 PointerToRefId;
uint NextRefId;
XLAT_SIDE XlatSide;
}
alias _FULL_PTR_XLAT_TABLES FULL_PTR_XLAT_TABLES;
alias _FULL_PTR_XLAT_TABLES *PFULL_PTR_XLAT_TABLES;
//C RPC_STATUS NdrClientGetSupportedSyntaxes(RPC_CLIENT_INTERFACE *pInf,unsigned long *pCount,MIDL_SYNTAX_INFO **pArr);
RPC_STATUS NdrClientGetSupportedSyntaxes(RPC_CLIENT_INTERFACE *pInf, uint *pCount, MIDL_SYNTAX_INFO **pArr);
//C RPC_STATUS NdrServerGetSupportedSyntaxes(RPC_SERVER_INTERFACE *pInf,unsigned long *pCount,MIDL_SYNTAX_INFO **pArr,unsigned long *pPreferSyntaxIndex);
RPC_STATUS NdrServerGetSupportedSyntaxes(RPC_SERVER_INTERFACE *pInf, uint *pCount, MIDL_SYNTAX_INFO **pArr, uint *pPreferSyntaxIndex);
//C void NdrSimpleTypeMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,unsigned char FormatChar);
void NdrSimpleTypeMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, ubyte FormatChar);
//C unsigned char * NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrCsArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrCsArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrCsTagMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrCsTagMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrConformantVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrConformantVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrComplexArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrComplexArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrNonConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrNonConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrNonEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrNonEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrByteCountPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrByteCountPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrXmitOrRepAsMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrXmitOrRepAsMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrUserMarshalMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrUserMarshalMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned char * NdrInterfacePointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
ubyte * NdrInterfacePointerMarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_CCONTEXT ContextHandle,int fCheck);
void NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg, NDR_CCONTEXT ContextHandle, int fCheck);
//C void NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_SCONTEXT ContextHandle,NDR_RUNDOWN RundownRoutine);
void NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, NDR_RUNDOWN RundownRoutine);
//C void NdrServerContextNewMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_SCONTEXT ContextHandle,NDR_RUNDOWN RundownRoutine,PFORMAT_STRING pFormat);
void NdrServerContextNewMarshall(PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, NDR_RUNDOWN RundownRoutine, PFORMAT_STRING pFormat);
//C void NdrSimpleTypeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,unsigned char FormatChar);
void NdrSimpleTypeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, ubyte FormatChar);
//C unsigned char * NdrCsArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrCsArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrCsTagUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrCsTagUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrRangeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrRangeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C void NdrCorrelationInitialize(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory,unsigned long CacheSize,unsigned long flags);
void NdrCorrelationInitialize(PMIDL_STUB_MESSAGE pStubMsg, void *pMemory, uint CacheSize, uint flags);
//C void NdrCorrelationPass(PMIDL_STUB_MESSAGE pStubMsg);
void NdrCorrelationPass(PMIDL_STUB_MESSAGE pStubMsg);
//C void NdrCorrelationFree(PMIDL_STUB_MESSAGE pStubMsg);
void NdrCorrelationFree(PMIDL_STUB_MESSAGE pStubMsg);
//C unsigned char * NdrPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrConformantStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrConformantStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrConformantVaryingStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrConformantVaryingStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrComplexStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrComplexStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrFixedArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrFixedArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrConformantArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrConformantArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrConformantVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrConformantVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrComplexArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrComplexArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrNonConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrNonConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrNonEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrNonEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrByteCountPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrByteCountPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrXmitOrRepAsUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrXmitOrRepAsUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrUserMarshalUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrUserMarshalUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C unsigned char * NdrInterfacePointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
ubyte * NdrInterfacePointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, ubyte **ppMemory, PFORMAT_STRING pFormat, ubyte fMustAlloc);
//C void NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_CCONTEXT *pContextHandle,RPC_BINDING_HANDLE BindHandle);
void NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, NDR_CCONTEXT *pContextHandle, RPC_BINDING_HANDLE BindHandle);
//C NDR_SCONTEXT NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg);
NDR_SCONTEXT NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg);
//C NDR_SCONTEXT NdrContextHandleInitialize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
NDR_SCONTEXT NdrContextHandleInitialize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C NDR_SCONTEXT NdrServerContextNewUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
NDR_SCONTEXT NdrServerContextNewUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C void NdrPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrCsArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrCsArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrCsTagBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrCsTagBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrSimpleStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrSimpleStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrComplexStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrComplexStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrFixedArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrFixedArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrComplexArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrComplexArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrByteCountPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrByteCountPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrXmitOrRepAsBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrXmitOrRepAsBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrUserMarshalBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrUserMarshalBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrContextHandleSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrContextHandleSize(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C unsigned long NdrPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrCsArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrCsArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrCsTagMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrCsTagMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrConformantStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrConformantStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrConformantVaryingStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrConformantVaryingStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrFixedArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrFixedArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrConformantArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrConformantArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrConformantVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrConformantVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrComplexArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrComplexArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrNonConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrNonConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrNonEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrNonEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrXmitOrRepAsMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrXmitOrRepAsMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrUserMarshalMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrUserMarshalMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned long NdrInterfacePointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
uint NdrInterfacePointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C void NdrPointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrPointerFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrCsArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrCsArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrSimpleStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrSimpleStructFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantStructFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantVaryingStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantVaryingStructFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrComplexStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrComplexStructFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrFixedArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrFixedArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConformantVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrConformantVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrComplexArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrComplexArrayFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrNonEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrNonEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrByteCountPointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrByteCountPointerFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrXmitOrRepAsFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrXmitOrRepAsFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrUserMarshalFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrUserMarshalFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrInterfacePointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
void NdrInterfacePointerFree(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pMemory, PFORMAT_STRING pFormat);
//C void NdrConvert2(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat,long NumberParams);
void NdrConvert2(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat, int NumberParams);
//C void NdrConvert(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
void NdrConvert(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C unsigned char * NdrUserMarshalSimpleTypeConvert(unsigned long *pFlags,unsigned char *pBuffer,unsigned char FormatChar);
ubyte * NdrUserMarshalSimpleTypeConvert(uint *pFlags, ubyte *pBuffer, ubyte FormatChar);
//C void NdrClientInitializeNew(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned int ProcNum);
void NdrClientInitializeNew(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor, uint ProcNum);
//C unsigned char * NdrServerInitializeNew(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor);
ubyte * NdrServerInitializeNew(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor);
//C void NdrServerInitializePartial(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned long RequestedBufferSize);
void NdrServerInitializePartial(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor, uint RequestedBufferSize);
//C void NdrClientInitialize(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned int ProcNum);
void NdrClientInitialize(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor, uint ProcNum);
//C unsigned char * NdrServerInitialize(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor);
ubyte * NdrServerInitialize(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor);
//C unsigned char * NdrServerInitializeUnmarshall (PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,PRPC_MESSAGE pRpcMsg);
ubyte * NdrServerInitializeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor, PRPC_MESSAGE pRpcMsg);
//C void NdrServerInitializeMarshall (PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg);
void NdrServerInitializeMarshall(PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg);
//C unsigned char * NdrGetBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned long BufferLength,RPC_BINDING_HANDLE Handle);
ubyte * NdrGetBuffer(PMIDL_STUB_MESSAGE pStubMsg, uint BufferLength, RPC_BINDING_HANDLE Handle);
//C unsigned char * NdrNsGetBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned long BufferLength,RPC_BINDING_HANDLE Handle);
ubyte * NdrNsGetBuffer(PMIDL_STUB_MESSAGE pStubMsg, uint BufferLength, RPC_BINDING_HANDLE Handle);
//C unsigned char * NdrSendReceive(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pBufferEnd);
ubyte * NdrSendReceive(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pBufferEnd);
//C unsigned char * NdrNsSendReceive(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pBufferEnd,RPC_BINDING_HANDLE *pAutoHandle);
ubyte * NdrNsSendReceive(PMIDL_STUB_MESSAGE pStubMsg, ubyte *pBufferEnd, RPC_BINDING_HANDLE *pAutoHandle);
//C void NdrFreeBuffer(PMIDL_STUB_MESSAGE pStubMsg);
void NdrFreeBuffer(PMIDL_STUB_MESSAGE pStubMsg);
//C RPC_STATUS NdrGetDcomProtocolVersion(PMIDL_STUB_MESSAGE pStubMsg,RPC_VERSION *pVersion);
RPC_STATUS NdrGetDcomProtocolVersion(PMIDL_STUB_MESSAGE pStubMsg, RPC_VERSION *pVersion);
//C CLIENT_CALL_RETURN NdrClientCall2(PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,...);
CLIENT_CALL_RETURN NdrClientCall2(PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat,...);
//C CLIENT_CALL_RETURN NdrClientCall(PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,...);
CLIENT_CALL_RETURN NdrClientCall(PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat,...);
//C CLIENT_CALL_RETURN NdrAsyncClientCall(PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,...);
CLIENT_CALL_RETURN NdrAsyncClientCall(PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat,...);
//C CLIENT_CALL_RETURN NdrDcomAsyncClientCall(PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,...);
CLIENT_CALL_RETURN NdrDcomAsyncClientCall(PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat,...);
//C typedef enum {
//C STUB_UNMARSHAL,STUB_CALL_SERVER,STUB_MARSHAL,STUB_CALL_SERVER_NO_HRESULT
//C } STUB_PHASE;
enum
{
STUB_UNMARSHAL,
STUB_CALL_SERVER,
STUB_MARSHAL,
STUB_CALL_SERVER_NO_HRESULT,
}
alias int STUB_PHASE;
//C typedef enum {
//C PROXY_CALCSIZE,PROXY_GETBUFFER,PROXY_MARSHAL,PROXY_SENDRECEIVE,PROXY_UNMARSHAL
//C } PROXY_PHASE;
enum
{
PROXY_CALCSIZE,
PROXY_GETBUFFER,
PROXY_MARSHAL,
PROXY_SENDRECEIVE,
PROXY_UNMARSHAL,
}
alias int PROXY_PHASE;
//C struct IRpcStubBuffer;
//C void NdrAsyncServerCall(PRPC_MESSAGE pRpcMsg);
void NdrAsyncServerCall(PRPC_MESSAGE pRpcMsg);
//C long NdrAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int NdrAsyncStubCall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C long NdrDcomAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int NdrDcomAsyncStubCall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C long NdrStubCall2(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int NdrStubCall2(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C void NdrServerCall2(PRPC_MESSAGE pRpcMsg);
void NdrServerCall2(PRPC_MESSAGE pRpcMsg);
//C long NdrStubCall (struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int NdrStubCall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C void NdrServerCall(PRPC_MESSAGE pRpcMsg);
void NdrServerCall(PRPC_MESSAGE pRpcMsg);
//C int NdrServerUnmarshall(struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,void *pParamList);
int NdrServerUnmarshall(IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat, void *pParamList);
//C void NdrServerMarshall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
void NdrServerMarshall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
//C RPC_STATUS NdrMapCommAndFaultStatus(PMIDL_STUB_MESSAGE pStubMsg,unsigned long *pCommStatus,unsigned long *pFaultStatus,RPC_STATUS Status);
RPC_STATUS NdrMapCommAndFaultStatus(PMIDL_STUB_MESSAGE pStubMsg, uint *pCommStatus, uint *pFaultStatus, RPC_STATUS Status);
//C int NdrSH_UPDecision(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,RPC_BUFPTR pBuffer);
int NdrSH_UPDecision(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, RPC_BUFPTR pBuffer);
//C int NdrSH_TLUPDecision(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem);
int NdrSH_TLUPDecision(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem);
//C int NdrSH_TLUPDecisionBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem);
int NdrSH_TLUPDecisionBuffer(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem);
//C int NdrSH_IfAlloc(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned long Count);
int NdrSH_IfAlloc(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, uint Count);
//C int NdrSH_IfAllocRef(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned long Count);
int NdrSH_IfAllocRef(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, uint Count);
//C int NdrSH_IfAllocSet(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned long Count);
int NdrSH_IfAllocSet(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, uint Count);
//C RPC_BUFPTR NdrSH_IfCopy(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned long Count);
RPC_BUFPTR NdrSH_IfCopy(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, uint Count);
//C RPC_BUFPTR NdrSH_IfAllocCopy(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned long Count);
RPC_BUFPTR NdrSH_IfAllocCopy(PMIDL_STUB_MESSAGE pStubMsg, ubyte **pPtrInMem, uint Count);
//C unsigned long NdrSH_Copy(unsigned char *pStubMsg,unsigned char *pPtrInMem,unsigned long Count);
uint NdrSH_Copy(ubyte *pStubMsg, ubyte *pPtrInMem, uint Count);
//C void NdrSH_IfFree(PMIDL_STUB_MESSAGE pMessage,unsigned char *pPtr);
void NdrSH_IfFree(PMIDL_STUB_MESSAGE pMessage, ubyte *pPtr);
//C RPC_BUFPTR NdrSH_StringMarshall(PMIDL_STUB_MESSAGE pMessage,unsigned char *pMemory,unsigned long Count,int Size);
RPC_BUFPTR NdrSH_StringMarshall(PMIDL_STUB_MESSAGE pMessage, ubyte *pMemory, uint Count, int Size);
//C RPC_BUFPTR NdrSH_StringUnMarshall(PMIDL_STUB_MESSAGE pMessage,unsigned char **pMemory,int Size);
RPC_BUFPTR NdrSH_StringUnMarshall(PMIDL_STUB_MESSAGE pMessage, ubyte **pMemory, int Size);
//C typedef void *RPC_SS_THREAD_HANDLE;
alias void *RPC_SS_THREAD_HANDLE;
//C typedef void * RPC_CLIENT_ALLOC(size_t Size);
alias void *function(size_t Size)RPC_CLIENT_ALLOC;
//C typedef void RPC_CLIENT_FREE(void *Ptr);
alias void function(void *Ptr)RPC_CLIENT_FREE;
//C void * RpcSsAllocate(size_t Size);
void * RpcSsAllocate(size_t Size);
//C void RpcSsDisableAllocate(void);
void RpcSsDisableAllocate();
//C void RpcSsEnableAllocate(void);
void RpcSsEnableAllocate();
//C void RpcSsFree(void *NodeToFree);
void RpcSsFree(void *NodeToFree);
//C RPC_SS_THREAD_HANDLE RpcSsGetThreadHandle(void);
RPC_SS_THREAD_HANDLE RpcSsGetThreadHandle();
//C void RpcSsSetClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree);
void RpcSsSetClientAllocFree(void * function(size_t Size)ClientAlloc, void function(void *Ptr)ClientFree);
//C void RpcSsSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
void RpcSsSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
//C void RpcSsSwapClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree,RPC_CLIENT_ALLOC **OldClientAlloc,RPC_CLIENT_FREE **OldClientFree);
void RpcSsSwapClientAllocFree(void * function(size_t Size)ClientAlloc, void function(void *Ptr)ClientFree, void * function(size_t Size)*OldClientAlloc, void function(void *Ptr)*OldClientFree);
//C void * RpcSmAllocate(size_t Size,RPC_STATUS *pStatus);
void * RpcSmAllocate(size_t Size, RPC_STATUS *pStatus);
//C RPC_STATUS RpcSmClientFree(void *pNodeToFree);
RPC_STATUS RpcSmClientFree(void *pNodeToFree);
//C RPC_STATUS RpcSmDestroyClientContext(void **ContextHandle);
RPC_STATUS RpcSmDestroyClientContext(void **ContextHandle);
//C RPC_STATUS RpcSmDisableAllocate(void);
RPC_STATUS RpcSmDisableAllocate();
//C RPC_STATUS RpcSmEnableAllocate(void);
RPC_STATUS RpcSmEnableAllocate();
//C RPC_STATUS RpcSmFree(void *NodeToFree);
RPC_STATUS RpcSmFree(void *NodeToFree);
//C RPC_SS_THREAD_HANDLE RpcSmGetThreadHandle (RPC_STATUS *pStatus);
RPC_SS_THREAD_HANDLE RpcSmGetThreadHandle(RPC_STATUS *pStatus);
//C RPC_STATUS RpcSmSetClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree);
RPC_STATUS RpcSmSetClientAllocFree(void * function(size_t Size)ClientAlloc, void function(void *Ptr)ClientFree);
//C RPC_STATUS RpcSmSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
RPC_STATUS RpcSmSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
//C RPC_STATUS RpcSmSwapClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree,RPC_CLIENT_ALLOC **OldClientAlloc,RPC_CLIENT_FREE **OldClientFree);
RPC_STATUS RpcSmSwapClientAllocFree(void * function(size_t Size)ClientAlloc, void function(void *Ptr)ClientFree, void * function(size_t Size)*OldClientAlloc, void function(void *Ptr)*OldClientFree);
//C void NdrRpcSsEnableAllocate(PMIDL_STUB_MESSAGE pMessage);
void NdrRpcSsEnableAllocate(PMIDL_STUB_MESSAGE pMessage);
//C void NdrRpcSsDisableAllocate(PMIDL_STUB_MESSAGE pMessage);
void NdrRpcSsDisableAllocate(PMIDL_STUB_MESSAGE pMessage);
//C void NdrRpcSmSetClientToOsf(PMIDL_STUB_MESSAGE pMessage);
void NdrRpcSmSetClientToOsf(PMIDL_STUB_MESSAGE pMessage);
//C void * NdrRpcSmClientAllocate(size_t Size);
void * NdrRpcSmClientAllocate(size_t Size);
//C void NdrRpcSmClientFree(void *NodeToFree);
void NdrRpcSmClientFree(void *NodeToFree);
//C void * NdrRpcSsDefaultAllocate(size_t Size);
void * NdrRpcSsDefaultAllocate(size_t Size);
//C void NdrRpcSsDefaultFree(void *NodeToFree);
void NdrRpcSsDefaultFree(void *NodeToFree);
//C PFULL_PTR_XLAT_TABLES NdrFullPointerXlatInit(unsigned long NumberOfPointers,XLAT_SIDE XlatSide);
PFULL_PTR_XLAT_TABLES NdrFullPointerXlatInit(uint NumberOfPointers, XLAT_SIDE XlatSide);
//C void NdrFullPointerXlatFree(PFULL_PTR_XLAT_TABLES pXlatTables);
void NdrFullPointerXlatFree(PFULL_PTR_XLAT_TABLES pXlatTables);
//C int NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables,void *pPointer,unsigned char QueryType,unsigned long *pRefId);
int NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables, void *pPointer, ubyte QueryType, uint *pRefId);
//C int NdrFullPointerQueryRefId(PFULL_PTR_XLAT_TABLES pXlatTables,unsigned long RefId,unsigned char QueryType,void **ppPointer);
int NdrFullPointerQueryRefId(PFULL_PTR_XLAT_TABLES pXlatTables, uint RefId, ubyte QueryType, void **ppPointer);
//C void NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables,unsigned long RefId,void *pPointer);
void NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables, uint RefId, void *pPointer);
//C int NdrFullPointerFree(PFULL_PTR_XLAT_TABLES pXlatTables,void *Pointer);
int NdrFullPointerFree(PFULL_PTR_XLAT_TABLES pXlatTables, void *Pointer);
//C void * NdrAllocate(PMIDL_STUB_MESSAGE pStubMsg,size_t Len);
void * NdrAllocate(PMIDL_STUB_MESSAGE pStubMsg, size_t Len);
//C void NdrClearOutParameters(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat,void *ArgAddr);
void NdrClearOutParameters(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat, void *ArgAddr);
//C void * NdrOleAllocate(size_t Size);
void * NdrOleAllocate(size_t Size);
//C void NdrOleFree(void *NodeToFree);
void NdrOleFree(void *NodeToFree);
//C typedef struct _NDR_USER_MARSHAL_INFO_LEVEL1 {
//C void *Buffer;
//C unsigned long BufferSize;
//C void *( *pfnAllocate)(size_t);
//C void ( *pfnFree)(void *);
//C struct IRpcChannelBuffer *pRpcChannelBuffer;
//C ULONG_PTR Reserved[5];
//C } NDR_USER_MARSHAL_INFO_LEVEL1;
struct _NDR_USER_MARSHAL_INFO_LEVEL1
{
void *Buffer;
uint BufferSize;
void * function(size_t )pfnAllocate;
void function(void *)pfnFree;
IRpcChannelBuffer *pRpcChannelBuffer;
ULONG_PTR [5]Reserved;
}
alias _NDR_USER_MARSHAL_INFO_LEVEL1 NDR_USER_MARSHAL_INFO_LEVEL1;
//C typedef struct _NDR_USER_MARSHAL_INFO {
//C unsigned long InformationLevel;
//C union {
//C NDR_USER_MARSHAL_INFO_LEVEL1 Level1;
//C };
union _N159
{
NDR_USER_MARSHAL_INFO_LEVEL1 Level1;
}
//C } NDR_USER_MARSHAL_INFO;
struct _NDR_USER_MARSHAL_INFO
{
uint InformationLevel;
NDR_USER_MARSHAL_INFO_LEVEL1 Level1;
}
alias _NDR_USER_MARSHAL_INFO NDR_USER_MARSHAL_INFO;
//C RPC_STATUS NdrGetUserMarshalInfo(unsigned long *pFlags,unsigned long InformationLevel,NDR_USER_MARSHAL_INFO *pMarshalInfo);
RPC_STATUS NdrGetUserMarshalInfo(uint *pFlags, uint InformationLevel, NDR_USER_MARSHAL_INFO *pMarshalInfo);
//C RPC_STATUS NdrCreateServerInterfaceFromStub(struct IRpcStubBuffer *pStub,RPC_SERVER_INTERFACE *pServerIf);
RPC_STATUS NdrCreateServerInterfaceFromStub(IRpcStubBuffer *pStub, RPC_SERVER_INTERFACE *pServerIf);
//C CLIENT_CALL_RETURN NdrClientCall3(MIDL_STUBLESS_PROXY_INFO *pProxyInfo,unsigned long nProcNum,void *pReturnValue,...);
CLIENT_CALL_RETURN NdrClientCall3(MIDL_STUBLESS_PROXY_INFO *pProxyInfo, uint nProcNum, void *pReturnValue,...);
//C CLIENT_CALL_RETURN Ndr64AsyncClientCall(MIDL_STUBLESS_PROXY_INFO *pProxyInfo,unsigned long nProcNum,void *pReturnValue,...);
CLIENT_CALL_RETURN Ndr64AsyncClientCall(MIDL_STUBLESS_PROXY_INFO *pProxyInfo, uint nProcNum, void *pReturnValue,...);
//C CLIENT_CALL_RETURN Ndr64DcomAsyncClientCall(MIDL_STUBLESS_PROXY_INFO *pProxyInfo,unsigned long nProcNum,void *pReturnValue,...);
CLIENT_CALL_RETURN Ndr64DcomAsyncClientCall(MIDL_STUBLESS_PROXY_INFO *pProxyInfo, uint nProcNum, void *pReturnValue,...);
//C struct IRpcStubBuffer;
//C void Ndr64AsyncServerCall(PRPC_MESSAGE pRpcMsg);
void Ndr64AsyncServerCall(PRPC_MESSAGE pRpcMsg);
//C void Ndr64AsyncServerCall64(PRPC_MESSAGE pRpcMsg);
void Ndr64AsyncServerCall64(PRPC_MESSAGE pRpcMsg);
//C void Ndr64AsyncServerCallAll(PRPC_MESSAGE pRpcMsg);
void Ndr64AsyncServerCallAll(PRPC_MESSAGE pRpcMsg);
//C long Ndr64AsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int Ndr64AsyncStubCall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C long Ndr64DcomAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int Ndr64DcomAsyncStubCall(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C long NdrStubCall3 (struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned long *pdwStubPhase);
int NdrStubCall3(IRpcStubBuffer *pThis, IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg, uint *pdwStubPhase);
//C void NdrServerCallAll(PRPC_MESSAGE pRpcMsg);
void NdrServerCallAll(PRPC_MESSAGE pRpcMsg);
//C void NdrServerCallNdr64(PRPC_MESSAGE pRpcMsg);
void NdrServerCallNdr64(PRPC_MESSAGE pRpcMsg);
//C void NdrServerCall3(PRPC_MESSAGE pRpcMsg);
void NdrServerCall3(PRPC_MESSAGE pRpcMsg);
//C void NdrPartialIgnoreClientMarshall(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory);
void NdrPartialIgnoreClientMarshall(PMIDL_STUB_MESSAGE pStubMsg, void *pMemory);
//C void NdrPartialIgnoreServerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,void **ppMemory);
void NdrPartialIgnoreServerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, void **ppMemory);
//C void NdrPartialIgnoreClientBufferSize(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory);
void NdrPartialIgnoreClientBufferSize(PMIDL_STUB_MESSAGE pStubMsg, void *pMemory);
//C void NdrPartialIgnoreServerInitialize(PMIDL_STUB_MESSAGE pStubMsg,void **ppMemory,PFORMAT_STRING pFormat);
void NdrPartialIgnoreServerInitialize(PMIDL_STUB_MESSAGE pStubMsg, void **ppMemory, PFORMAT_STRING pFormat);
//C void RpcUserFree(handle_t AsyncHandle,void *pBuffer);
void RpcUserFree(handle_t AsyncHandle, void *pBuffer);
//C typedef int ( *_onexit_t)(void);
alias int function()_onexit_t;
//C typedef struct _div_t {
//C int quot;
//C int rem;
//C } div_t;
struct _div_t
{
int quot;
int rem;
}
alias _div_t div_t;
//C typedef struct _ldiv_t {
//C long quot;
//C long rem;
//C } ldiv_t;
struct _ldiv_t
{
int quot;
int rem;
}
alias _ldiv_t ldiv_t;
//C typedef struct {
//C unsigned char ld[10];
//C } _LDOUBLE;
struct _N160
{
ubyte [10]ld;
}
alias _N160 _LDOUBLE;
//C typedef struct {
//C double x;
//C } _CRT_DOUBLE;
struct _N161
{
double x;
}
alias _N161 _CRT_DOUBLE;
//C typedef struct {
//C float f;
//C } _CRT_FLOAT;
struct _N162
{
float f;
}
alias _N162 _CRT_FLOAT;
//C typedef struct {
//C long double x;
//C } _LONGDOUBLE;
struct _N163
{
real x;
}
alias _N163 _LONGDOUBLE;
//C typedef struct {
//C unsigned char ld12[12];
//C } _LDBL12;
struct _N164
{
ubyte [12]ld12;
}
alias _N164 _LDBL12;
//C typedef void ( *_purecall_handler)(void);
alias void function()_purecall_handler;
//C typedef void ( *_invalid_parameter_handler)(const wchar_t *,const wchar_t *,const wchar_t *,unsigned int,uintptr_t);
alias void function(wchar_t *, wchar_t *, wchar_t *, uint , uintptr_t )_invalid_parameter_handler;
//C _invalid_parameter_handler _set_invalid_parameter_handler(_invalid_parameter_handler _Handler);
_invalid_parameter_handler _set_invalid_parameter_handler(_invalid_parameter_handler _Handler);
//C _invalid_parameter_handler _get_invalid_parameter_handler(void);
_invalid_parameter_handler _get_invalid_parameter_handler();
//C errno_t _set_errno(int _Value);
errno_t _set_errno(int _Value);
//C errno_t _get_errno(int *_Value);
errno_t _get_errno(int *_Value);
//C errno_t _set_doserrno(unsigned long _Value);
errno_t _set_doserrno(uint _Value);
//C errno_t _get_doserrno(unsigned long *_Value);
errno_t _get_doserrno(uint *_Value);
//C extern int * __imp___argc;
extern int *__imp___argc;
//C extern char *** __imp___argv;
extern char ***__imp___argv;
//C extern wchar_t *** __imp___wargv;
extern wchar_t ***__imp___wargv;
//C extern char *** __imp__environ;
extern char ***__imp__environ;
//C extern wchar_t *** __imp__wenviron;
extern wchar_t ***__imp__wenviron;
//C extern char ** __imp__pgmptr;
extern char **__imp__pgmptr;
//C extern wchar_t ** __imp__wpgmptr;
extern wchar_t **__imp__wpgmptr;
//C errno_t _get_pgmptr(char **_Value);
errno_t _get_pgmptr(char **_Value);
//C errno_t _get_wpgmptr(wchar_t **_Value);
errno_t _get_wpgmptr(wchar_t **_Value);
//C extern int * __imp__fmode;
extern int *__imp__fmode;
//C extern unsigned int * __imp__osplatform;
extern uint *__imp__osplatform;
//C extern unsigned int * __imp__osver;
extern uint *__imp__osver;
//C extern unsigned int * __imp__winver;
extern uint *__imp__winver;
//C extern unsigned int * __imp__winmajor;
extern uint *__imp__winmajor;
//C extern unsigned int * __imp__winminor;
extern uint *__imp__winminor;
//C errno_t _get_osplatform(unsigned int *_Value);
errno_t _get_osplatform(uint *_Value);
//C errno_t _get_osver(unsigned int *_Value);
errno_t _get_osver(uint *_Value);
//C errno_t _get_winver(unsigned int *_Value);
errno_t _get_winver(uint *_Value);
//C errno_t _get_winmajor(unsigned int *_Value);
errno_t _get_winmajor(uint *_Value);
//C errno_t _get_winminor(unsigned int *_Value);
errno_t _get_winminor(uint *_Value);
//C void exit(int _Code) ;
void exit(int _Code);
//C void _exit(int _Code) ;
void _exit(int _Code);
//C void _Exit() ;
void _Exit(int );
//C void abort(void);
void abort();
//C int abs(int _X);
int abs(int _X);
//C long labs(long _X);
int labs(int _X);
//C long long _abs64(long long);
long _abs64(long );
//C int atexit(void ( *)(void));
int atexit(void function());
//C double atof(const char *_String);
double atof(char *_String);
//C double _atof_l(const char *_String,_locale_t _Locale);
double _atof_l(char *_String, _locale_t _Locale);
//C int atoi(const char *_Str);
int atoi(char *_Str);
//C long atol(const char *_Str);
int atol(char *_Str);
//C void * bsearch(const void *_Key,const void *_Base,size_t _NumOfElements,size_t _SizeOfElements,int ( *_PtFuncCompare)(const void *,const void *));
void * bsearch(void *_Key, void *_Base, size_t _NumOfElements, size_t _SizeOfElements, int function(void *, void *)_PtFuncCompare);
//C void qsort(void *_Base,size_t _NumOfElements,size_t _SizeOfElements,int ( *_PtFuncCompare)(const void *,const void *));
void qsort(void *_Base, size_t _NumOfElements, size_t _SizeOfElements, int function(void *, void *)_PtFuncCompare);
//C unsigned short _byteswap_ushort(unsigned short _Short);
ushort _byteswap_ushort(ushort _Short);
//C unsigned long _byteswap_ulong (unsigned long _Long);
uint _byteswap_ulong(uint _Long);
//C unsigned long long _byteswap_uint64(unsigned long long _Int64);
ulong _byteswap_uint64(ulong _Int64);
//C div_t div(int _Numerator,int _Denominator);
div_t div(int _Numerator, int _Denominator);
//C char * getenv(const char *_VarName) ;
char * getenv(char *_VarName);
//C ldiv_t ldiv(long _Numerator,long _Denominator);
ldiv_t ldiv(int _Numerator, int _Denominator);
//C int mblen(const char *_Ch,size_t _MaxCount);
int mblen(char *_Ch, size_t _MaxCount);
//C int mbtowc(wchar_t * _DstCh,const char * _SrcCh,size_t _SrcSizeInBytes);
int mbtowc(wchar_t *_DstCh, char *_SrcCh, size_t _SrcSizeInBytes);
//C size_t mbstowcs(wchar_t * _Dest,const char * _Source,size_t _MaxCount);
size_t mbstowcs(wchar_t *_Dest, char *_Source, size_t _MaxCount);
//C int rand(void);
int rand();
//C void srand(unsigned int _Seed);
void srand(uint _Seed);
//C double strtod(const char * _Str,char ** _EndPtr);
double strtod(char *_Str, char **_EndPtr);
//C float strtof(const char * nptr,char ** endptr);
float strtof(char *nptr, char **endptr);
//C long double strtold(const char * ,char ** );
real strtold(char *, char **);
//C extern double
//C __strtod (const char * ,char ** );
double __strtod(char *, char **);
//C float __mingw_strtof (const char * ,char ** );
float __mingw_strtof(char *, char **);
//C long double __mingw_strtold(const char * ,char ** );
real __mingw_strtold(char *, char **);
//C long strtol(const char * _Str,char ** _EndPtr,int _Radix);
int strtol(char *_Str, char **_EndPtr, int _Radix);
//C unsigned long strtoul(const char * _Str,char ** _EndPtr,int _Radix);
uint strtoul(char *_Str, char **_EndPtr, int _Radix);
//C int system(const char *_Command);
int system(char *_Command);
//C int wctomb(char *_MbCh,wchar_t _WCh) ;
int wctomb(char *_MbCh, wchar_t _WCh);
//C size_t wcstombs(char * _Dest,const wchar_t * _Source,size_t _MaxCount) ;
size_t wcstombs(char *_Dest, wchar_t *_Source, size_t _MaxCount);
//C void * calloc(size_t _NumOfElements,size_t _SizeOfElements);
void * calloc(size_t _NumOfElements, size_t _SizeOfElements);
//C void free(void *_Memory);
void free(void *_Memory);
//C void * malloc(size_t _Size);
void * malloc(size_t _Size);
//C void * realloc(void *_Memory,size_t _NewSize);
void * realloc(void *_Memory, size_t _NewSize);
//C double wcstod(const wchar_t * _Str,wchar_t ** _EndPtr);
double wcstod(wchar_t *_Str, wchar_t **_EndPtr);
//C float wcstof(const wchar_t * nptr,wchar_t ** endptr);
float wcstof(wchar_t *nptr, wchar_t **endptr);
//C double __mingw_wcstod(const wchar_t * _Str,wchar_t ** _EndPtr);
double __mingw_wcstod(wchar_t *_Str, wchar_t **_EndPtr);
//C float __mingw_wcstof(const wchar_t * nptr,wchar_t ** endptr);
float __mingw_wcstof(wchar_t *nptr, wchar_t **endptr);
//C long double __mingw_wcstold(const wchar_t * ,wchar_t ** );
real __mingw_wcstold(wchar_t *, wchar_t **);
//C float wcstof( const wchar_t * ,wchar_t ** );
float wcstof(wchar_t *, wchar_t **);
//C long double wcstold(const wchar_t * ,wchar_t ** );
real wcstold(wchar_t *, wchar_t **);
//C long wcstol(const wchar_t * _Str,wchar_t ** _EndPtr,int _Radix);
int wcstol(wchar_t *_Str, wchar_t **_EndPtr, int _Radix);
//C unsigned long wcstoul(const wchar_t * _Str,wchar_t ** _EndPtr,int _Radix);
uint wcstoul(wchar_t *_Str, wchar_t **_EndPtr, int _Radix);
//C unsigned long long _lrotl(unsigned long long _Val,int _Shift);
ulong _lrotl(ulong _Val, int _Shift);
//C unsigned long long _lrotr(unsigned long long _Val,int _Shift);
ulong _lrotr(ulong _Val, int _Shift);
//C _onexit_t _onexit(_onexit_t _Func);
_onexit_t _onexit(_onexit_t _Func);
//C void perror(const char *_ErrMsg);
void perror(char *_ErrMsg);
//C unsigned long long _rotl64(unsigned long long _Val,int _Shift);
ulong _rotl64(ulong _Val, int _Shift);
//C unsigned long long _rotr64(unsigned long long Value,int Shift);
ulong _rotr64(ulong Value, int Shift);
//C unsigned int _rotr(unsigned int _Val,int _Shift);
uint _rotr(uint _Val, int _Shift);
//C unsigned int _rotl(unsigned int _Val,int _Shift);
uint _rotl(uint _Val, int _Shift);
//C unsigned long long _rotr64(unsigned long long _Val,int _Shift);
ulong _rotr64(ulong _Val, int _Shift);
//C char * ecvt(double _Val,int _NumOfDigits,int *_PtDec,int *_PtSign) ;
char * ecvt(double _Val, int _NumOfDigits, int *_PtDec, int *_PtSign);
//C char * fcvt(double _Val,int _NumOfDec,int *_PtDec,int *_PtSign) ;
char * fcvt(double _Val, int _NumOfDec, int *_PtDec, int *_PtSign);
//C char * gcvt(double _Val,int _NumOfDigits,char *_DstBuf) ;
char * gcvt(double _Val, int _NumOfDigits, char *_DstBuf);
//C char * itoa(int _Val,char *_DstBuf,int _Radix) ;
char * itoa(int _Val, char *_DstBuf, int _Radix);
//C char * ltoa(long _Val,char *_DstBuf,int _Radix) ;
char * ltoa(int _Val, char *_DstBuf, int _Radix);
//C int putenv(const char *_EnvString) ;
int putenv(char *_EnvString);
//C void swab(char *_Buf1,char *_Buf2,int _SizeInBytes) ;
void swab(char *_Buf1, char *_Buf2, int _SizeInBytes);
//C char * ultoa(unsigned long _Val,char *_Dstbuf,int _Radix) ;
char * ultoa(uint _Val, char *_Dstbuf, int _Radix);
//C _onexit_t onexit(_onexit_t _Func);
_onexit_t onexit(_onexit_t _Func);
//C typedef struct { long long quot,rem; } lldiv_t;
struct _N165
{
long quot;
long rem;
}
alias _N165 lldiv_t;
//C lldiv_t lldiv(long long,long long);
lldiv_t lldiv(long , long );
//C long long llabs(long long);
long llabs(long );
//C long long strtoll(const char * ,char ** __restrict,int);
long strtoll(char *, char **, int );
//C unsigned long long strtoull(const char * ,char ** ,int);
ulong strtoull(char *, char **, int );
//C long long atoll (const char *);
long atoll(char *);
//C long long wtoll (const wchar_t *);
long wtoll(wchar_t *);
//C char * lltoa (long long,char *,int);
char * lltoa(long , char *, int );
//C char * ulltoa (unsigned long long ,char *,int);
char * ulltoa(ulong , char *, int );
//C wchar_t * lltow (long long,wchar_t *,int);
wchar_t * lltow(long , wchar_t *, int );
//C wchar_t * ulltow (unsigned long long,wchar_t *,int);
wchar_t * ulltow(ulong , wchar_t *, int );
//C typedef struct _heapinfo {
//C int *_pentry;
//C size_t _size;
//C int _useflag;
//C } _HEAPINFO;
struct _heapinfo
{
int *_pentry;
size_t _size;
int _useflag;
}
alias _heapinfo _HEAPINFO;
//C extern unsigned int _amblksiz;
extern uint _amblksiz;
//C void * __mingw_aligned_malloc (size_t _Size,size_t _Alignment);
void * __mingw_aligned_malloc(size_t _Size, size_t _Alignment);
//C void __mingw_aligned_free (void *_Memory);
void __mingw_aligned_free(void *_Memory);
//C void * __mingw_aligned_offset_realloc (void *_Memory,size_t _Size,size_t _Alignment,size_t _Offset);
void * __mingw_aligned_offset_realloc(void *_Memory, size_t _Size, size_t _Alignment, size_t _Offset);
//C void * __mingw_aligned_realloc (void *_Memory,size_t _Size,size_t _Offset);
void * __mingw_aligned_realloc(void *_Memory, size_t _Size, size_t _Offset);
//C static void *_MarkAllocaS(void *_Ptr,unsigned int _Marker) {
//C if(_Ptr) {
//C *((unsigned int*)_Ptr) = _Marker;
//C _Ptr = (char*)_Ptr + 16;
//C }
//C return _Ptr;
//C }
//C static void _freea(void *_Memory) {
void * _MarkAllocaS(void *, uint );
//C unsigned int _Marker;
//C if(_Memory) {
//C _Memory = (char*)_Memory - 16;
//C _Marker = *(unsigned int *)_Memory;
//C if(_Marker==0xDDDD) {
//C free(_Memory);
//C }
//C }
//C }
//C typedef enum tagREGCLS {
void _freea(void *);
//C REGCLS_SINGLEUSE = 0,REGCLS_MULTIPLEUSE = 1,REGCLS_MULTI_SEPARATE = 2,REGCLS_SUSPENDED = 4,REGCLS_SURROGATE = 8
//C } REGCLS;
enum tagREGCLS
{
REGCLS_SINGLEUSE,
REGCLS_MULTIPLEUSE,
REGCLS_MULTI_SEPARATE,
REGCLS_SUSPENDED = 4,
REGCLS_SURROGATE = 8,
}
alias tagREGCLS REGCLS;
//C typedef struct IRpcStubBuffer IRpcStubBuffer;
//C typedef struct IRpcChannelBuffer IRpcChannelBuffer;
//C extern RPC_IF_HANDLE IWinTypes_v0_1_c_ifspec;
extern RPC_IF_HANDLE IWinTypes_v0_1_c_ifspec;
//C extern RPC_IF_HANDLE IWinTypes_v0_1_s_ifspec;
extern RPC_IF_HANDLE IWinTypes_v0_1_s_ifspec;
//C typedef struct tagRemHGLOBAL {
//C LONG fNullHGlobal;
//C ULONG cbData;
//C byte data[1];
//C } RemHGLOBAL;
struct tagRemHGLOBAL
{
LONG fNullHGlobal;
ULONG cbData;
byte [1]data;
}
alias tagRemHGLOBAL RemHGLOBAL;
//C typedef struct tagRemHMETAFILEPICT {
//C LONG mm;
//C LONG xExt;
//C LONG yExt;
//C ULONG cbData;
//C byte data[1];
//C } RemHMETAFILEPICT;
struct tagRemHMETAFILEPICT
{
LONG mm;
LONG xExt;
LONG yExt;
ULONG cbData;
byte [1]data;
}
alias tagRemHMETAFILEPICT RemHMETAFILEPICT;
//C typedef struct tagRemHENHMETAFILE {
//C ULONG cbData;
//C byte data[1];
//C } RemHENHMETAFILE;
struct tagRemHENHMETAFILE
{
ULONG cbData;
byte [1]data;
}
alias tagRemHENHMETAFILE RemHENHMETAFILE;
//C typedef struct tagRemHBITMAP {
//C ULONG cbData;
//C byte data[1];
//C } RemHBITMAP;
struct tagRemHBITMAP
{
ULONG cbData;
byte [1]data;
}
alias tagRemHBITMAP RemHBITMAP;
//C typedef struct tagRemHPALETTE {
//C ULONG cbData;
//C byte data[1];
//C } RemHPALETTE;
struct tagRemHPALETTE
{
ULONG cbData;
byte [1]data;
}
alias tagRemHPALETTE RemHPALETTE;
//C typedef struct tagRemBRUSH {
//C ULONG cbData;
//C byte data[1];
//C } RemHBRUSH;
struct tagRemBRUSH
{
ULONG cbData;
byte [1]data;
}
alias tagRemBRUSH RemHBRUSH;
//C typedef WCHAR OLECHAR;
alias WCHAR OLECHAR;
//C typedef OLECHAR *LPOLESTR;
alias OLECHAR *LPOLESTR;
//C typedef const OLECHAR *LPCOLESTR;
alias OLECHAR *LPCOLESTR;
//C typedef double DOUBLE;
alias double DOUBLE;
//C typedef struct _COAUTHIDENTITY {
//C USHORT *User;
//C ULONG UserLength;
//C USHORT *Domain;
//C ULONG DomainLength;
//C USHORT *Password;
//C ULONG PasswordLength;
//C ULONG Flags;
//C } COAUTHIDENTITY;
struct _COAUTHIDENTITY
{
USHORT *User;
ULONG UserLength;
USHORT *Domain;
ULONG DomainLength;
USHORT *Password;
ULONG PasswordLength;
ULONG Flags;
}
alias _COAUTHIDENTITY COAUTHIDENTITY;
//C typedef struct _COAUTHINFO {
//C DWORD dwAuthnSvc;
//C DWORD dwAuthzSvc;
//C LPWSTR pwszServerPrincName;
//C DWORD dwAuthnLevel;
//C DWORD dwImpersonationLevel;
//C COAUTHIDENTITY *pAuthIdentityData;
//C DWORD dwCapabilities;
//C } COAUTHINFO;
struct _COAUTHINFO
{
DWORD dwAuthnSvc;
DWORD dwAuthzSvc;
LPWSTR pwszServerPrincName;
DWORD dwAuthnLevel;
DWORD dwImpersonationLevel;
COAUTHIDENTITY *pAuthIdentityData;
DWORD dwCapabilities;
}
alias _COAUTHINFO COAUTHINFO;
//C typedef LONG SCODE;
alias LONG SCODE;
//C typedef SCODE *PSCODE;
alias SCODE *PSCODE;
//C typedef enum tagMEMCTX {
//C MEMCTX_TASK = 1,
//C MEMCTX_SHARED = 2,
//C MEMCTX_MACSYSTEM = 3,
//C MEMCTX_UNKNOWN = -1,
//C MEMCTX_SAME = -2
//C } MEMCTX;
enum tagMEMCTX
{
MEMCTX_TASK = 1,
MEMCTX_SHARED,
MEMCTX_MACSYSTEM,
MEMCTX_UNKNOWN = -1,
MEMCTX_SAME = -2,
}
alias tagMEMCTX MEMCTX;
//C typedef enum tagCLSCTX {
//C CLSCTX_INPROC_SERVER = 0x1,
//C CLSCTX_INPROC_HANDLER = 0x2,
//C CLSCTX_LOCAL_SERVER = 0x4,
//C CLSCTX_INPROC_SERVER16 = 0x8,
//C CLSCTX_REMOTE_SERVER = 0x10,
//C CLSCTX_INPROC_HANDLER16 = 0x20,
//C CLSCTX_RESERVED1 = 0x40,
//C CLSCTX_RESERVED2 = 0x80,
//C CLSCTX_RESERVED3 = 0x100,
//C CLSCTX_RESERVED4 = 0x200,
//C CLSCTX_NO_CODE_DOWNLOAD = 0x400,
//C CLSCTX_RESERVED5 = 0x800,
//C CLSCTX_NO_CUSTOM_MARSHAL = 0x1000,
//C CLSCTX_ENABLE_CODE_DOWNLOAD = 0x2000,
//C CLSCTX_NO_FAILURE_LOG = 0x4000,
//C CLSCTX_DISABLE_AAA = 0x8000,
//C CLSCTX_ENABLE_AAA = 0x10000,
//C CLSCTX_FROM_DEFAULT_CONTEXT = 0x20000,
//C CLSCTX_ACTIVATE_32_BIT_SERVER = 0x40000,
//C CLSCTX_ACTIVATE_64_BIT_SERVER = 0x80000
//C } CLSCTX;
enum tagCLSCTX
{
CLSCTX_INPROC_SERVER = 1,
CLSCTX_INPROC_HANDLER,
CLSCTX_LOCAL_SERVER = 4,
CLSCTX_INPROC_SERVER16 = 8,
CLSCTX_REMOTE_SERVER = 16,
CLSCTX_INPROC_HANDLER16 = 32,
CLSCTX_RESERVED1 = 64,
CLSCTX_RESERVED2 = 128,
CLSCTX_RESERVED3 = 256,
CLSCTX_RESERVED4 = 512,
CLSCTX_NO_CODE_DOWNLOAD = 1024,
CLSCTX_RESERVED5 = 2048,
CLSCTX_NO_CUSTOM_MARSHAL = 4096,
CLSCTX_ENABLE_CODE_DOWNLOAD = 8192,
CLSCTX_NO_FAILURE_LOG = 16384,
CLSCTX_DISABLE_AAA = 32768,
CLSCTX_ENABLE_AAA = 65536,
CLSCTX_FROM_DEFAULT_CONTEXT = 131072,
CLSCTX_ACTIVATE_32_BIT_SERVER = 262144,
CLSCTX_ACTIVATE_64_BIT_SERVER = 524288,
}
alias tagCLSCTX CLSCTX;
//C typedef enum tagMSHLFLAGS {
//C MSHLFLAGS_NORMAL = 0,
//C MSHLFLAGS_TABLESTRONG = 1,
//C MSHLFLAGS_TABLEWEAK = 2,
//C MSHLFLAGS_NOPING = 4,
//C MSHLFLAGS_RESERVED1 = 8,
//C MSHLFLAGS_RESERVED2 = 16,
//C MSHLFLAGS_RESERVED3 = 32,
//C MSHLFLAGS_RESERVED4 = 64
//C } MSHLFLAGS;
enum tagMSHLFLAGS
{
MSHLFLAGS_NORMAL,
MSHLFLAGS_TABLESTRONG,
MSHLFLAGS_TABLEWEAK,
MSHLFLAGS_NOPING = 4,
MSHLFLAGS_RESERVED1 = 8,
MSHLFLAGS_RESERVED2 = 16,
MSHLFLAGS_RESERVED3 = 32,
MSHLFLAGS_RESERVED4 = 64,
}
alias tagMSHLFLAGS MSHLFLAGS;
//C typedef enum tagMSHCTX {
//C MSHCTX_LOCAL = 0,
//C MSHCTX_NOSHAREDMEM = 1,
//C MSHCTX_DIFFERENTMACHINE = 2,
//C MSHCTX_INPROC = 3,
//C MSHCTX_CROSSCTX = 4
//C } MSHCTX;
enum tagMSHCTX
{
MSHCTX_LOCAL,
MSHCTX_NOSHAREDMEM,
MSHCTX_DIFFERENTMACHINE,
MSHCTX_INPROC,
MSHCTX_CROSSCTX,
}
alias tagMSHCTX MSHCTX;
//C typedef enum tagDVASPECT {
//C DVASPECT_CONTENT = 1,
//C DVASPECT_THUMBNAIL = 2,
//C DVASPECT_ICON = 4,
//C DVASPECT_DOCPRINT = 8
//C } DVASPECT;
enum tagDVASPECT
{
DVASPECT_CONTENT = 1,
DVASPECT_THUMBNAIL,
DVASPECT_ICON = 4,
DVASPECT_DOCPRINT = 8,
}
alias tagDVASPECT DVASPECT;
//C typedef enum tagSTGC {
//C STGC_DEFAULT = 0,
//C STGC_OVERWRITE = 1,
//C STGC_ONLYIFCURRENT = 2,
//C STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE = 4,
//C STGC_CONSOLIDATE = 8
//C } STGC;
enum tagSTGC
{
STGC_DEFAULT,
STGC_OVERWRITE,
STGC_ONLYIFCURRENT,
STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE = 4,
STGC_CONSOLIDATE = 8,
}
alias tagSTGC STGC;
//C typedef enum tagSTGMOVE {
//C STGMOVE_MOVE = 0,
//C STGMOVE_COPY = 1,
//C STGMOVE_SHALLOWCOPY = 2
//C } STGMOVE;
enum tagSTGMOVE
{
STGMOVE_MOVE,
STGMOVE_COPY,
STGMOVE_SHALLOWCOPY,
}
alias tagSTGMOVE STGMOVE;
//C typedef enum tagSTATFLAG {
//C STATFLAG_DEFAULT = 0,
//C STATFLAG_NONAME = 1,
//C STATFLAG_NOOPEN = 2
//C } STATFLAG;
enum tagSTATFLAG
{
STATFLAG_DEFAULT,
STATFLAG_NONAME,
STATFLAG_NOOPEN,
}
alias tagSTATFLAG STATFLAG;
//C typedef void *HCONTEXT;
alias void *HCONTEXT;
//C typedef struct _BYTE_BLOB {
//C ULONG clSize;
//C byte abData[1];
//C } BYTE_BLOB;
struct _BYTE_BLOB
{
ULONG clSize;
byte [1]abData;
}
alias _BYTE_BLOB BYTE_BLOB;
//C typedef BYTE_BLOB *UP_BYTE_BLOB;
alias BYTE_BLOB *UP_BYTE_BLOB;
//C typedef struct _WORD_BLOB {
//C ULONG clSize;
//C unsigned short asData[1];
//C } WORD_BLOB;
struct _WORD_BLOB
{
ULONG clSize;
ushort [1]asData;
}
alias _WORD_BLOB WORD_BLOB;
//C typedef WORD_BLOB *UP_WORD_BLOB;
alias WORD_BLOB *UP_WORD_BLOB;
//C typedef struct _DWORD_BLOB {
//C ULONG clSize;
//C ULONG alData[1];
//C } DWORD_BLOB;
struct _DWORD_BLOB
{
ULONG clSize;
ULONG [1]alData;
}
alias _DWORD_BLOB DWORD_BLOB;
//C typedef DWORD_BLOB *UP_DWORD_BLOB;
alias DWORD_BLOB *UP_DWORD_BLOB;
//C typedef struct _FLAGGED_BYTE_BLOB {
//C ULONG fFlags;
//C ULONG clSize;
//C byte abData[1];
//C } FLAGGED_BYTE_BLOB;
struct _FLAGGED_BYTE_BLOB
{
ULONG fFlags;
ULONG clSize;
byte [1]abData;
}
alias _FLAGGED_BYTE_BLOB FLAGGED_BYTE_BLOB;
//C typedef FLAGGED_BYTE_BLOB *UP_FLAGGED_BYTE_BLOB;
alias FLAGGED_BYTE_BLOB *UP_FLAGGED_BYTE_BLOB;
//C typedef struct _FLAGGED_WORD_BLOB {
//C ULONG fFlags;
//C ULONG clSize;
//C unsigned short asData[1];
//C } FLAGGED_WORD_BLOB;
struct _FLAGGED_WORD_BLOB
{
ULONG fFlags;
ULONG clSize;
ushort [1]asData;
}
alias _FLAGGED_WORD_BLOB FLAGGED_WORD_BLOB;
//C typedef FLAGGED_WORD_BLOB *UP_FLAGGED_WORD_BLOB;
alias FLAGGED_WORD_BLOB *UP_FLAGGED_WORD_BLOB;
//C typedef struct _BYTE_SIZEDARR {
//C ULONG clSize;
//C byte *pData;
//C } BYTE_SIZEDARR;
struct _BYTE_SIZEDARR
{
ULONG clSize;
byte *pData;
}
alias _BYTE_SIZEDARR BYTE_SIZEDARR;
//C typedef struct _SHORT_SIZEDARR {
//C ULONG clSize;
//C unsigned short *pData;
//C } WORD_SIZEDARR;
struct _SHORT_SIZEDARR
{
ULONG clSize;
ushort *pData;
}
alias _SHORT_SIZEDARR WORD_SIZEDARR;
//C typedef struct _LONG_SIZEDARR {
//C ULONG clSize;
//C ULONG *pData;
//C } DWORD_SIZEDARR;
struct _LONG_SIZEDARR
{
ULONG clSize;
ULONG *pData;
}
alias _LONG_SIZEDARR DWORD_SIZEDARR;
//C typedef struct _HYPER_SIZEDARR {
//C ULONG clSize;
//C long long *pData;
//C } HYPER_SIZEDARR;
struct _HYPER_SIZEDARR
{
ULONG clSize;
long *pData;
}
alias _HYPER_SIZEDARR HYPER_SIZEDARR;
//C typedef struct _userCLIPFORMAT {
//C LONG fContext;
//C union {
//C DWORD dwValue;
//C wchar_t *pwszName;
//C } u;
union _N166
{
DWORD dwValue;
wchar_t *pwszName;
}
//C } userCLIPFORMAT;
struct _userCLIPFORMAT
{
LONG fContext;
_N166 u;
}
alias _userCLIPFORMAT userCLIPFORMAT;
//C typedef userCLIPFORMAT *wireCLIPFORMAT;
alias userCLIPFORMAT *wireCLIPFORMAT;
//C typedef WORD CLIPFORMAT;
alias WORD CLIPFORMAT;
//C typedef struct _GDI_NONREMOTE {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C DWORD_BLOB *hRemote;
//C } u;
union _N167
{
LONG hInproc;
DWORD_BLOB *hRemote;
}
//C } GDI_NONREMOTE;
struct _GDI_NONREMOTE
{
LONG fContext;
_N167 u;
}
alias _GDI_NONREMOTE GDI_NONREMOTE;
//C typedef struct _userHGLOBAL {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C FLAGGED_BYTE_BLOB *hRemote;
//C INT64 hInproc64;
//C } tagged_union;
union _N168
{
LONG hInproc;
FLAGGED_BYTE_BLOB *hRemote;
INT64 hInproc64;
}
//C } userHGLOBAL;
struct _userHGLOBAL
{
LONG fContext;
_N168 tagged_union;
}
alias _userHGLOBAL userHGLOBAL;
//C typedef userHGLOBAL *wireHGLOBAL;
alias userHGLOBAL *wireHGLOBAL;
//C typedef struct _userHMETAFILE {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C BYTE_BLOB *hRemote;
//C INT64 hInproc64;
//C } tagged_union;
union _N169
{
LONG hInproc;
BYTE_BLOB *hRemote;
INT64 hInproc64;
}
//C } userHMETAFILE;
struct _userHMETAFILE
{
LONG fContext;
_N169 tagged_union;
}
alias _userHMETAFILE userHMETAFILE;
//C typedef struct _remoteMETAFILEPICT {
//C LONG mm;
//C LONG xExt;
//C LONG yExt;
//C userHMETAFILE *hMF;
//C } remoteMETAFILEPICT;
struct _remoteMETAFILEPICT
{
LONG mm;
LONG xExt;
LONG yExt;
userHMETAFILE *hMF;
}
alias _remoteMETAFILEPICT remoteMETAFILEPICT;
//C typedef struct _userHMETAFILEPICT {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C remoteMETAFILEPICT *hRemote;
//C INT64 hInproc64;
//C } tagged_union;
union _N170
{
LONG hInproc;
remoteMETAFILEPICT *hRemote;
INT64 hInproc64;
}
//C } userHMETAFILEPICT;
struct _userHMETAFILEPICT
{
LONG fContext;
_N170 tagged_union;
}
alias _userHMETAFILEPICT userHMETAFILEPICT;
//C typedef struct _userHENHMETAFILE {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C BYTE_BLOB *hRemote;
//C INT64 hInproc64;
//C } tagged_union;
union _N171
{
LONG hInproc;
BYTE_BLOB *hRemote;
INT64 hInproc64;
}
//C } userHENHMETAFILE;
struct _userHENHMETAFILE
{
LONG fContext;
_N171 tagged_union;
}
alias _userHENHMETAFILE userHENHMETAFILE;
//C typedef struct _userBITMAP {
//C LONG bmType;
//C LONG bmWidth;
//C LONG bmHeight;
//C LONG bmWidthBytes;
//C WORD bmPlanes;
//C WORD bmBitsPixel;
//C ULONG cbSize;
//C byte pBuffer[1];
//C } userBITMAP;
struct _userBITMAP
{
LONG bmType;
LONG bmWidth;
LONG bmHeight;
LONG bmWidthBytes;
WORD bmPlanes;
WORD bmBitsPixel;
ULONG cbSize;
byte [1]pBuffer;
}
alias _userBITMAP userBITMAP;
//C typedef struct _userHBITMAP {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C userBITMAP *hRemote;
//C INT64 hInproc64;
//C } u;
union _N172
{
LONG hInproc;
userBITMAP *hRemote;
INT64 hInproc64;
}
//C } userHBITMAP;
struct _userHBITMAP
{
LONG fContext;
_N172 u;
}
alias _userHBITMAP userHBITMAP;
//C typedef struct _userHPALETTE {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C LOGPALETTE *hRemote;
//C INT64 hInproc64;
//C } u;
union _N173
{
LONG hInproc;
LOGPALETTE *hRemote;
INT64 hInproc64;
}
//C } userHPALETTE;
struct _userHPALETTE
{
LONG fContext;
_N173 u;
}
alias _userHPALETTE userHPALETTE;
//C typedef struct _RemotableHandle {
//C LONG fContext;
//C union {
//C LONG hInproc;
//C LONG hRemote;
//C } tagged_union;
union _N174
{
LONG hInproc;
LONG hRemote;
}
//C } RemotableHandle;
struct _RemotableHandle
{
LONG fContext;
_N174 tagged_union;
}
alias _RemotableHandle RemotableHandle;
//C typedef RemotableHandle *wireHWND;
alias RemotableHandle *wireHWND;
//C typedef RemotableHandle *wireHMENU;
alias RemotableHandle *wireHMENU;
//C typedef RemotableHandle *wireHACCEL;
alias RemotableHandle *wireHACCEL;
//C typedef RemotableHandle *wireHBRUSH;
alias RemotableHandle *wireHBRUSH;
//C typedef RemotableHandle *wireHFONT;
alias RemotableHandle *wireHFONT;
//C typedef RemotableHandle *wireHDC;
alias RemotableHandle *wireHDC;
//C typedef RemotableHandle *wireHICON;
alias RemotableHandle *wireHICON;
//C typedef RemotableHandle *wireHRGN;
alias RemotableHandle *wireHRGN;
//C typedef userHBITMAP *wireHBITMAP;
alias userHBITMAP *wireHBITMAP;
//C typedef userHPALETTE *wireHPALETTE;
alias userHPALETTE *wireHPALETTE;
//C typedef userHENHMETAFILE *wireHENHMETAFILE;
alias userHENHMETAFILE *wireHENHMETAFILE;
//C typedef userHMETAFILE *wireHMETAFILE;
alias userHMETAFILE *wireHMETAFILE;
//C typedef userHMETAFILEPICT *wireHMETAFILEPICT;
alias userHMETAFILEPICT *wireHMETAFILEPICT;
//C typedef void *HMETAFILEPICT;
alias void *HMETAFILEPICT;
//C typedef double DATE;
alias double DATE;
//C typedef union tagCY {
//C struct {
//C ULONG Lo;
//C LONG Hi;
//C } ;
struct _N175
{
ULONG Lo;
LONG Hi;
}
//C LONGLONG int64;
//C } CY;
union tagCY
{
ULONG Lo;
LONG Hi;
LONGLONG int64;
}
alias tagCY CY;
//C typedef CY *LPCY;
alias CY *LPCY;
//C typedef struct tagDEC {
//C USHORT wReserved;
//C union {
//C struct {
//C BYTE scale;
//C BYTE sign;
//C } ;
struct _N177
{
BYTE scale;
BYTE sign;
}
//C USHORT signscale;
//C } ;
union _N176
{
BYTE scale;
BYTE sign;
USHORT signscale;
}
//C ULONG Hi32;
//C union {
//C struct {
//C ULONG Lo32;
//C ULONG Mid32;
//C } ;
struct _N179
{
ULONG Lo32;
ULONG Mid32;
}
//C ULONGLONG Lo64;
//C } ;
union _N178
{
ULONG Lo32;
ULONG Mid32;
ULONGLONG Lo64;
}
//C } DECIMAL;
struct tagDEC
{
USHORT wReserved;
BYTE scale;
BYTE sign;
USHORT signscale;
ULONG Hi32;
ULONG Lo32;
ULONG Mid32;
ULONGLONG Lo64;
}
alias tagDEC DECIMAL;
//C typedef DECIMAL *LPDECIMAL;
alias DECIMAL *LPDECIMAL;
//C typedef FLAGGED_WORD_BLOB *wireBSTR;
alias FLAGGED_WORD_BLOB *wireBSTR;
//C typedef OLECHAR *BSTR;
alias OLECHAR *BSTR;
//C typedef BSTR *LPBSTR;
alias BSTR *LPBSTR;
//C typedef short VARIANT_BOOL;
alias short VARIANT_BOOL;
//C typedef VARIANT_BOOL _VARIANT_BOOL;
alias VARIANT_BOOL _VARIANT_BOOL;
//C typedef struct tagBSTRBLOB {
//C ULONG cbSize;
//C BYTE *pData;
//C } BSTRBLOB;
struct tagBSTRBLOB
{
ULONG cbSize;
BYTE *pData;
}
alias tagBSTRBLOB BSTRBLOB;
//C typedef struct tagBSTRBLOB *LPBSTRBLOB;
alias tagBSTRBLOB *LPBSTRBLOB;
//C typedef struct tagBLOB {
//C ULONG cbSize;
//C BYTE *pBlobData;
//C } BLOB;
struct tagBLOB
{
ULONG cbSize;
BYTE *pBlobData;
}
alias tagBLOB BLOB;
//C typedef struct tagBLOB *LPBLOB;
alias tagBLOB *LPBLOB;
//C typedef struct tagCLIPDATA {
//C ULONG cbSize;
//C LONG ulClipFmt;
//C BYTE *pClipData;
//C } CLIPDATA;
struct tagCLIPDATA
{
ULONG cbSize;
LONG ulClipFmt;
BYTE *pClipData;
}
alias tagCLIPDATA CLIPDATA;
//C typedef unsigned short VARTYPE;
alias ushort VARTYPE;
//C enum VARENUM {
//C VT_EMPTY = 0,
//C VT_NULL = 1,
//C VT_I2 = 2,
//C VT_I4 = 3,
//C VT_R4 = 4,
//C VT_R8 = 5,
//C VT_CY = 6,
//C VT_DATE = 7,
//C VT_BSTR = 8,
//C VT_DISPATCH = 9,
//C VT_ERROR = 10,
//C VT_BOOL = 11,
//C VT_VARIANT = 12,
//C VT_UNKNOWN = 13,
//C VT_DECIMAL = 14,
//C VT_I1 = 16,
//C VT_UI1 = 17,
//C VT_UI2 = 18,
//C VT_UI4 = 19,
//C VT_I8 = 20,
//C VT_UI8 = 21,
//C VT_INT = 22,
//C VT_UINT = 23,
//C VT_VOID = 24,
//C VT_HRESULT = 25,
//C VT_PTR = 26,
//C VT_SAFEARRAY = 27,
//C VT_CARRAY = 28,
//C VT_USERDEFINED = 29,
//C VT_LPSTR = 30,
//C VT_LPWSTR = 31,
//C VT_RECORD = 36,
//C VT_INT_PTR = 37,
//C VT_UINT_PTR = 38,
//C VT_FILETIME = 64,
//C VT_BLOB = 65,
//C VT_STREAM = 66,
//C VT_STORAGE = 67,
//C VT_STREAMED_OBJECT = 68,
//C VT_STORED_OBJECT = 69,
//C VT_BLOB_OBJECT = 70,
//C VT_CF = 71,
//C VT_CLSID = 72,
//C VT_VERSIONED_STREAM = 73,
//C VT_BSTR_BLOB = 0xfff,
//C VT_VECTOR = 0x1000,
//C VT_ARRAY = 0x2000,
//C VT_BYREF = 0x4000,
//C VT_RESERVED = 0x8000,
//C VT_ILLEGAL = 0xffff,
//C VT_ILLEGALMASKED = 0xfff,
//C VT_TYPEMASK = 0xfff
//C };
enum VARENUM
{
VT_EMPTY,
VT_NULL,
VT_I2,
VT_I4,
VT_R4,
VT_R8,
VT_CY,
VT_DATE,
VT_BSTR,
VT_DISPATCH,
VT_ERROR,
VT_BOOL,
VT_VARIANT,
VT_UNKNOWN,
VT_DECIMAL,
VT_I1 = 16,
VT_UI1,
VT_UI2,
VT_UI4,
VT_I8,
VT_UI8,
VT_INT,
VT_UINT,
VT_VOID,
VT_HRESULT,
VT_PTR,
VT_SAFEARRAY,
VT_CARRAY,
VT_USERDEFINED,
VT_LPSTR,
VT_LPWSTR,
VT_RECORD = 36,
VT_INT_PTR,
VT_UINT_PTR,
VT_FILETIME = 64,
VT_BLOB,
VT_STREAM,
VT_STORAGE,
VT_STREAMED_OBJECT,
VT_STORED_OBJECT,
VT_BLOB_OBJECT,
VT_CF,
VT_CLSID,
VT_VERSIONED_STREAM,
VT_BSTR_BLOB = 4095,
VT_VECTOR,
VT_ARRAY = 8192,
VT_BYREF = 16384,
VT_RESERVED = 32768,
VT_ILLEGAL = 65535,
VT_ILLEGALMASKED = 4095,
VT_TYPEMASK = 4095,
}
//C typedef ULONG PROPID;
alias ULONG PROPID;
//C typedef struct _tagpropertykey {
//C GUID fmtid;
//C DWORD pid;
//C } PROPERTYKEY;
struct _tagpropertykey
{
GUID fmtid;
DWORD pid;
}
alias _tagpropertykey PROPERTYKEY;
//C typedef struct tagCSPLATFORM {
//C DWORD dwPlatformId;
//C DWORD dwVersionHi;
//C DWORD dwVersionLo;
//C DWORD dwProcessorArch;
//C } CSPLATFORM;
struct tagCSPLATFORM
{
DWORD dwPlatformId;
DWORD dwVersionHi;
DWORD dwVersionLo;
DWORD dwProcessorArch;
}
alias tagCSPLATFORM CSPLATFORM;
//C typedef struct tagQUERYCONTEXT {
//C DWORD dwContext;
//C CSPLATFORM Platform;
//C LCID Locale;
//C DWORD dwVersionHi;
//C DWORD dwVersionLo;
//C } QUERYCONTEXT;
struct tagQUERYCONTEXT
{
DWORD dwContext;
CSPLATFORM Platform;
LCID Locale;
DWORD dwVersionHi;
DWORD dwVersionLo;
}
alias tagQUERYCONTEXT QUERYCONTEXT;
//C typedef enum tagTYSPEC {
//C TYSPEC_CLSID = 0,
//C TYSPEC_FILEEXT = 1,
//C TYSPEC_MIMETYPE = 2,
//C TYSPEC_FILENAME = 3,
//C TYSPEC_PROGID = 4,
//C TYSPEC_PACKAGENAME = 5,
//C TYSPEC_OBJECTID = 6
//C } TYSPEC;
enum tagTYSPEC
{
TYSPEC_CLSID,
TYSPEC_FILEEXT,
TYSPEC_MIMETYPE,
TYSPEC_FILENAME,
TYSPEC_PROGID,
TYSPEC_PACKAGENAME,
TYSPEC_OBJECTID,
}
alias tagTYSPEC TYSPEC;
//C typedef struct __WIDL_wtypes_generated_name_00000000 {
//C DWORD tyspec;
//C union {
//C CLSID clsid;
//C LPOLESTR pFileExt;
//C LPOLESTR pMimeType;
//C LPOLESTR pProgId;
//C LPOLESTR pFileName;
//C struct {
//C LPOLESTR pPackageName;
//C GUID PolicyId;
//C } ByName;
struct _N181
{
LPOLESTR pPackageName;
GUID PolicyId;
}
//C struct {
//C GUID ObjectId;
//C GUID PolicyId;
//C } ByObjectId;
struct _N182
{
GUID ObjectId;
GUID PolicyId;
}
//C } tagged_union;
union _N180
{
CLSID clsid;
LPOLESTR pFileExt;
LPOLESTR pMimeType;
LPOLESTR pProgId;
LPOLESTR pFileName;
_N181 ByName;
_N182 ByObjectId;
}
//C } uCLSSPEC;
struct __WIDL_wtypes_generated_name_00000000
{
DWORD tyspec;
_N180 tagged_union;
}
alias __WIDL_wtypes_generated_name_00000000 uCLSSPEC;
//C typedef struct IUnknown IUnknown;
//C typedef struct AsyncIUnknown AsyncIUnknown;
//C typedef struct IClassFactory IClassFactory;
//C typedef IUnknown *LPUNKNOWN;
alias IUnknown *LPUNKNOWN;
//C typedef struct IUnknownVtbl {
//C HRESULT ( *QueryInterface)(
//C IUnknown* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IUnknown* This);
//C ULONG ( *Release)(
//C IUnknown* This);
//C } IUnknownVtbl;
struct IUnknownVtbl
{
HRESULT function(IUnknown *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IUnknown *This)AddRef;
ULONG function(IUnknown *This)Release;
}
//C struct IUnknown {
//C IUnknownVtbl* lpVtbl;
//C };
struct IUnknown
{
IUnknownVtbl *lpVtbl;
}
//C HRESULT IUnknown_QueryInterface_Proxy(
//C IUnknown* This,
//C const IID *const riid,
//C void **ppvObject);
HRESULT IUnknown_QueryInterface_Proxy(IUnknown *This, IID *riid, void **ppvObject);
//C void IUnknown_QueryInterface_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IUnknown_QueryInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C ULONG IUnknown_AddRef_Proxy(
//C IUnknown* This);
ULONG IUnknown_AddRef_Proxy(IUnknown *This);
//C void IUnknown_AddRef_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IUnknown_AddRef_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C ULONG IUnknown_Release_Proxy(
//C IUnknown* This);
ULONG IUnknown_Release_Proxy(IUnknown *This);
//C void IUnknown_Release_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IUnknown_Release_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef struct AsyncIUnknownVtbl {
//C HRESULT ( *QueryInterface)(
//C AsyncIUnknown* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C AsyncIUnknown* This);
//C ULONG ( *Release)(
//C AsyncIUnknown* This);
//C HRESULT ( *Begin_QueryInterface)(
//C AsyncIUnknown* This,
//C const IID *const riid);
//C HRESULT ( *Finish_QueryInterface)(
//C AsyncIUnknown* This,
//C void **ppvObject);
//C HRESULT ( *Begin_AddRef)(
//C AsyncIUnknown* This);
//C ULONG ( *Finish_AddRef)(
//C AsyncIUnknown* This);
//C HRESULT ( *Begin_Release)(
//C AsyncIUnknown* This);
//C ULONG ( *Finish_Release)(
//C AsyncIUnknown* This);
//C } AsyncIUnknownVtbl;
struct AsyncIUnknownVtbl
{
HRESULT function(AsyncIUnknown *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIUnknown *This)AddRef;
ULONG function(AsyncIUnknown *This)Release;
HRESULT function(AsyncIUnknown *This, IID *riid)Begin_QueryInterface;
HRESULT function(AsyncIUnknown *This, void **ppvObject)Finish_QueryInterface;
HRESULT function(AsyncIUnknown *This)Begin_AddRef;
ULONG function(AsyncIUnknown *This)Finish_AddRef;
HRESULT function(AsyncIUnknown *This)Begin_Release;
ULONG function(AsyncIUnknown *This)Finish_Release;
}
//C struct AsyncIUnknown {
//C AsyncIUnknownVtbl* lpVtbl;
//C };
struct AsyncIUnknown
{
AsyncIUnknownVtbl *lpVtbl;
}
//C HRESULT AsyncIUnknown_Begin_QueryInterface_Proxy(
//C AsyncIUnknown* This,
//C const IID *const riid);
HRESULT AsyncIUnknown_Begin_QueryInterface_Proxy(AsyncIUnknown *This, IID *riid);
//C void AsyncIUnknown_Begin_QueryInterface_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Begin_QueryInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT AsyncIUnknown_Finish_QueryInterface_Proxy(
//C AsyncIUnknown* This,
//C void **ppvObject);
HRESULT AsyncIUnknown_Finish_QueryInterface_Proxy(AsyncIUnknown *This, void **ppvObject);
//C void AsyncIUnknown_Finish_QueryInterface_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Finish_QueryInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT AsyncIUnknown_Begin_AddRef_Proxy(
//C AsyncIUnknown* This);
HRESULT AsyncIUnknown_Begin_AddRef_Proxy(AsyncIUnknown *This);
//C void AsyncIUnknown_Begin_AddRef_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Begin_AddRef_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C ULONG AsyncIUnknown_Finish_AddRef_Proxy(
//C AsyncIUnknown* This);
ULONG AsyncIUnknown_Finish_AddRef_Proxy(AsyncIUnknown *This);
//C void AsyncIUnknown_Finish_AddRef_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Finish_AddRef_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT AsyncIUnknown_Begin_Release_Proxy(
//C AsyncIUnknown* This);
HRESULT AsyncIUnknown_Begin_Release_Proxy(AsyncIUnknown *This);
//C void AsyncIUnknown_Begin_Release_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Begin_Release_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C ULONG AsyncIUnknown_Finish_Release_Proxy(
//C AsyncIUnknown* This);
ULONG AsyncIUnknown_Finish_Release_Proxy(AsyncIUnknown *This);
//C void AsyncIUnknown_Finish_Release_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void AsyncIUnknown_Finish_Release_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IClassFactory *LPCLASSFACTORY;
alias IClassFactory *LPCLASSFACTORY;
//C typedef struct IClassFactoryVtbl {
//C HRESULT ( *QueryInterface)(
//C IClassFactory* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IClassFactory* This);
//C ULONG ( *Release)(
//C IClassFactory* This);
//C HRESULT ( *CreateInstance)(
//C IClassFactory* This,
//C IUnknown *pUnkOuter,
//C const IID *const riid,
//C void **ppvObject);
//C HRESULT ( *LockServer)(
//C IClassFactory* This,
//C WINBOOL fLock);
//C } IClassFactoryVtbl;
struct IClassFactoryVtbl
{
HRESULT function(IClassFactory *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IClassFactory *This)AddRef;
ULONG function(IClassFactory *This)Release;
HRESULT function(IClassFactory *This, IUnknown *pUnkOuter, IID *riid, void **ppvObject)CreateInstance;
HRESULT function(IClassFactory *This, WINBOOL fLock)LockServer;
}
//C struct IClassFactory {
//C IClassFactoryVtbl* lpVtbl;
//C };
struct IClassFactory
{
IClassFactoryVtbl *lpVtbl;
}
//C HRESULT IClassFactory_RemoteCreateInstance_Proxy(
//C IClassFactory* This,
//C const IID *const riid,
//C IUnknown **ppvObject);
HRESULT IClassFactory_RemoteCreateInstance_Proxy(IClassFactory *This, IID *riid, IUnknown **ppvObject);
//C void IClassFactory_RemoteCreateInstance_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IClassFactory_RemoteCreateInstance_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IClassFactory_RemoteLockServer_Proxy(
//C IClassFactory* This,
//C WINBOOL fLock);
HRESULT IClassFactory_RemoteLockServer_Proxy(IClassFactory *This, WINBOOL fLock);
//C void IClassFactory_RemoteLockServer_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IClassFactory_RemoteLockServer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IClassFactory_CreateInstance_Proxy(
//C IClassFactory* This,
//C IUnknown *pUnkOuter,
//C const IID *const riid,
//C void **ppvObject);
HRESULT IClassFactory_CreateInstance_Proxy(IClassFactory *This, IUnknown *pUnkOuter, IID *riid, void **ppvObject);
//C HRESULT IClassFactory_CreateInstance_Stub(
//C IClassFactory* This,
//C const IID *const riid,
//C IUnknown **ppvObject);
HRESULT IClassFactory_CreateInstance_Stub(IClassFactory *This, IID *riid, IUnknown **ppvObject);
//C HRESULT IClassFactory_LockServer_Proxy(
//C IClassFactory* This,
//C WINBOOL fLock);
HRESULT IClassFactory_LockServer_Proxy(IClassFactory *This, WINBOOL fLock);
//C HRESULT IClassFactory_LockServer_Stub(
//C IClassFactory* This,
//C WINBOOL fLock);
HRESULT IClassFactory_LockServer_Stub(IClassFactory *This, WINBOOL fLock);
//C typedef struct IEnumUnknown IEnumUnknown;
//C typedef struct IBindCtx IBindCtx;
//C typedef struct IEnumMoniker IEnumMoniker;
//C typedef struct IRunningObjectTable IRunningObjectTable;
//C typedef struct IPersist IPersist;
//C typedef struct IPersistStream IPersistStream;
//C typedef struct IMoniker IMoniker;
//C typedef struct IEnumString IEnumString;
//C typedef struct ISequentialStream ISequentialStream;
//C typedef struct IStream IStream;
//C typedef struct IEnumSTATSTG IEnumSTATSTG;
//C typedef struct IStorage IStorage;
//C typedef struct IEnumFORMATETC IEnumFORMATETC;
//C typedef struct IEnumSTATDATA IEnumSTATDATA;
//C typedef struct IAdviseSink IAdviseSink;
//C typedef struct IDataObject IDataObject;
//C typedef struct IMarshal IMarshal;
//C typedef struct IMarshal2 IMarshal2;
//C typedef struct IMalloc IMalloc;
//C typedef struct IMallocSpy IMallocSpy;
//C typedef struct IStdMarshalInfo IStdMarshalInfo;
//C typedef struct IExternalConnection IExternalConnection;
//C typedef struct IMultiQI IMultiQI;
//C typedef struct AsyncIMultiQI AsyncIMultiQI;
//C typedef struct IInternalUnknown IInternalUnknown;
//C typedef struct IRunnableObject IRunnableObject;
//C typedef struct IROTData IROTData;
//C typedef struct IPersistFile IPersistFile;
//C typedef struct IPersistStorage IPersistStorage;
//C typedef struct ILockBytes ILockBytes;
//C typedef struct IRootStorage IRootStorage;
//C typedef struct AsyncIAdviseSink AsyncIAdviseSink;
//C typedef struct IAdviseSink2 IAdviseSink2;
//C typedef struct AsyncIAdviseSink2 AsyncIAdviseSink2;
//C typedef struct IDataAdviseHolder IDataAdviseHolder;
//C typedef struct IMessageFilter IMessageFilter;
//C typedef struct IRpcChannelBuffer2 IRpcChannelBuffer2;
//C typedef struct IAsyncRpcChannelBuffer IAsyncRpcChannelBuffer;
//C typedef struct IRpcChannelBuffer3 IRpcChannelBuffer3;
//C typedef struct IRpcSyntaxNegotiate IRpcSyntaxNegotiate;
//C typedef struct IRpcProxyBuffer IRpcProxyBuffer;
//C typedef struct IPSFactoryBuffer IPSFactoryBuffer;
//C typedef struct IChannelHook IChannelHook;
//C typedef struct IClientSecurity IClientSecurity;
//C typedef struct IServerSecurity IServerSecurity;
//C typedef struct IClassActivator IClassActivator;
//C typedef struct IRpcOptions IRpcOptions;
//C typedef struct IFillLockBytes IFillLockBytes;
//C typedef struct IProgressNotify IProgressNotify;
//C typedef struct ILayoutStorage ILayoutStorage;
//C typedef struct IBlockingLock IBlockingLock;
//C typedef struct ITimeAndNoticeControl ITimeAndNoticeControl;
//C typedef struct IOplockStorage IOplockStorage;
//C typedef struct ISurrogate ISurrogate;
//C typedef struct IGlobalInterfaceTable IGlobalInterfaceTable;
//C typedef struct IDirectWriterLock IDirectWriterLock;
//C typedef struct ISynchronize ISynchronize;
//C typedef struct ISynchronizeHandle ISynchronizeHandle;
//C typedef struct ISynchronizeEvent ISynchronizeEvent;
//C typedef struct ISynchronizeContainer ISynchronizeContainer;
//C typedef struct ISynchronizeMutex ISynchronizeMutex;
//C typedef struct ICancelMethodCalls ICancelMethodCalls;
//C typedef struct IAsyncManager IAsyncManager;
//C typedef struct ICallFactory ICallFactory;
//C typedef struct IRpcHelper IRpcHelper;
//C typedef struct IReleaseMarshalBuffers IReleaseMarshalBuffers;
//C typedef struct IWaitMultiple IWaitMultiple;
//C typedef struct IUrlMon IUrlMon;
//C typedef struct IForegroundTransfer IForegroundTransfer;
//C typedef struct IAddrTrackingControl IAddrTrackingControl;
//C typedef struct IAddrExclusionControl IAddrExclusionControl;
//C typedef struct IPipeByte IPipeByte;
//C typedef struct AsyncIPipeByte AsyncIPipeByte;
//C typedef struct IPipeLong IPipeLong;
//C typedef struct AsyncIPipeLong AsyncIPipeLong;
//C typedef struct IPipeDouble IPipeDouble;
//C typedef struct AsyncIPipeDouble AsyncIPipeDouble;
//C typedef struct IThumbnailExtractor IThumbnailExtractor;
//C typedef struct IDummyHICONIncluder IDummyHICONIncluder;
//C typedef struct IEnumContextProps IEnumContextProps;
//C typedef struct IContext IContext;
//C typedef struct IObjContext IObjContext;
//C typedef struct IProcessLock IProcessLock;
//C typedef struct ISurrogateService ISurrogateService;
//C typedef struct IComThreadingInfo IComThreadingInfo;
//C typedef struct IProcessInitControl IProcessInitControl;
//C typedef struct IInitializeSpy IInitializeSpy;
//C typedef struct _COSERVERINFO {
//C DWORD dwReserved1;
//C LPWSTR pwszName;
//C COAUTHINFO *pAuthInfo;
//C DWORD dwReserved2;
//C } COSERVERINFO;
struct _COSERVERINFO
{
DWORD dwReserved1;
LPWSTR pwszName;
COAUTHINFO *pAuthInfo;
DWORD dwReserved2;
}
alias _COSERVERINFO COSERVERINFO;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0000_v0_0_s_ifspec;
//C typedef IMarshal *LPMARSHAL;
alias IMarshal *LPMARSHAL;
//C typedef struct IMarshalVtbl {
//C HRESULT ( *QueryInterface)(IMarshal *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMarshal *This);
//C ULONG ( *Release)(IMarshal *This);
//C HRESULT ( *GetUnmarshalClass)(IMarshal *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,CLSID *pCid);
//C HRESULT ( *GetMarshalSizeMax)(IMarshal *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,DWORD *pSize);
//C HRESULT ( *MarshalInterface)(IMarshal *This,IStream *pStm,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags);
//C HRESULT ( *UnmarshalInterface)(IMarshal *This,IStream *pStm,const IID *const riid,void **ppv);
//C HRESULT ( *ReleaseMarshalData)(IMarshal *This,IStream *pStm);
//C HRESULT ( *DisconnectObject)(IMarshal *This,DWORD dwReserved);
//C } IMarshalVtbl;
struct IMarshalVtbl
{
HRESULT function(IMarshal *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMarshal *This)AddRef;
ULONG function(IMarshal *This)Release;
HRESULT function(IMarshal *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, CLSID *pCid)GetUnmarshalClass;
HRESULT function(IMarshal *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, DWORD *pSize)GetMarshalSizeMax;
HRESULT function(IMarshal *This, IStream *pStm, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags)MarshalInterface;
HRESULT function(IMarshal *This, IStream *pStm, IID *riid, void **ppv)UnmarshalInterface;
HRESULT function(IMarshal *This, IStream *pStm)ReleaseMarshalData;
HRESULT function(IMarshal *This, DWORD dwReserved)DisconnectObject;
}
//C struct IMarshal {
//C struct IMarshalVtbl *lpVtbl;
//C };
struct IMarshal
{
IMarshalVtbl *lpVtbl;
}
//C HRESULT IMarshal_GetUnmarshalClass_Proxy(IMarshal *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,CLSID *pCid);
HRESULT IMarshal_GetUnmarshalClass_Proxy(IMarshal *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, CLSID *pCid);
//C void IMarshal_GetUnmarshalClass_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_GetUnmarshalClass_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IMarshal_GetMarshalSizeMax_Proxy(IMarshal *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,DWORD *pSize);
HRESULT IMarshal_GetMarshalSizeMax_Proxy(IMarshal *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, DWORD *pSize);
//C void IMarshal_GetMarshalSizeMax_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_GetMarshalSizeMax_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IMarshal_MarshalInterface_Proxy(IMarshal *This,IStream *pStm,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags);
HRESULT IMarshal_MarshalInterface_Proxy(IMarshal *This, IStream *pStm, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags);
//C void IMarshal_MarshalInterface_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_MarshalInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IMarshal_UnmarshalInterface_Proxy(IMarshal *This,IStream *pStm,const IID *const riid,void **ppv);
HRESULT IMarshal_UnmarshalInterface_Proxy(IMarshal *This, IStream *pStm, IID *riid, void **ppv);
//C void IMarshal_UnmarshalInterface_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_UnmarshalInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IMarshal_ReleaseMarshalData_Proxy(IMarshal *This,IStream *pStm);
HRESULT IMarshal_ReleaseMarshalData_Proxy(IMarshal *This, IStream *pStm);
//C void IMarshal_ReleaseMarshalData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_ReleaseMarshalData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IMarshal_DisconnectObject_Proxy(IMarshal *This,DWORD dwReserved);
HRESULT IMarshal_DisconnectObject_Proxy(IMarshal *This, DWORD dwReserved);
//C void IMarshal_DisconnectObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMarshal_DisconnectObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IMarshal2 *LPMARSHAL2;
alias IMarshal2 *LPMARSHAL2;
//C typedef struct IMarshal2Vtbl {
//C HRESULT ( *QueryInterface)(IMarshal2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMarshal2 *This);
//C ULONG ( *Release)(IMarshal2 *This);
//C HRESULT ( *GetUnmarshalClass)(IMarshal2 *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,CLSID *pCid);
//C HRESULT ( *GetMarshalSizeMax)(IMarshal2 *This,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags,DWORD *pSize);
//C HRESULT ( *MarshalInterface)(IMarshal2 *This,IStream *pStm,const IID *const riid,void *pv,DWORD dwDestContext,void *pvDestContext,DWORD mshlflags);
//C HRESULT ( *UnmarshalInterface)(IMarshal2 *This,IStream *pStm,const IID *const riid,void **ppv);
//C HRESULT ( *ReleaseMarshalData)(IMarshal2 *This,IStream *pStm);
//C HRESULT ( *DisconnectObject)(IMarshal2 *This,DWORD dwReserved);
//C } IMarshal2Vtbl;
struct IMarshal2Vtbl
{
HRESULT function(IMarshal2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMarshal2 *This)AddRef;
ULONG function(IMarshal2 *This)Release;
HRESULT function(IMarshal2 *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, CLSID *pCid)GetUnmarshalClass;
HRESULT function(IMarshal2 *This, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags, DWORD *pSize)GetMarshalSizeMax;
HRESULT function(IMarshal2 *This, IStream *pStm, IID *riid, void *pv, DWORD dwDestContext, void *pvDestContext, DWORD mshlflags)MarshalInterface;
HRESULT function(IMarshal2 *This, IStream *pStm, IID *riid, void **ppv)UnmarshalInterface;
HRESULT function(IMarshal2 *This, IStream *pStm)ReleaseMarshalData;
HRESULT function(IMarshal2 *This, DWORD dwReserved)DisconnectObject;
}
//C struct IMarshal2 {
//C struct IMarshal2Vtbl *lpVtbl;
//C };
struct IMarshal2
{
IMarshal2Vtbl *lpVtbl;
}
//C typedef IMalloc *LPMALLOC;
alias IMalloc *LPMALLOC;
//C typedef struct IMallocVtbl {
//C HRESULT ( *QueryInterface)(IMalloc *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMalloc *This);
//C ULONG ( *Release)(IMalloc *This);
//C void *( *Alloc)(IMalloc *This,SIZE_T cb);
//C void *( *Realloc)(IMalloc *This,void *pv,SIZE_T cb);
//C void ( *Free)(IMalloc *This,void *pv);
//C SIZE_T ( *GetSize)(IMalloc *This,void *pv);
//C int ( *DidAlloc)(IMalloc *This,void *pv);
//C void ( *HeapMinimize)(IMalloc *This);
//C } IMallocVtbl;
struct IMallocVtbl
{
HRESULT function(IMalloc *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMalloc *This)AddRef;
ULONG function(IMalloc *This)Release;
void * function(IMalloc *This, SIZE_T cb)Alloc;
void * function(IMalloc *This, void *pv, SIZE_T cb)Realloc;
void function(IMalloc *This, void *pv)Free;
SIZE_T function(IMalloc *This, void *pv)GetSize;
int function(IMalloc *This, void *pv)DidAlloc;
void function(IMalloc *This)HeapMinimize;
}
//C struct IMalloc {
//C struct IMallocVtbl *lpVtbl;
//C };
struct IMalloc
{
IMallocVtbl *lpVtbl;
}
//C void * IMalloc_Alloc_Proxy(IMalloc *This,SIZE_T cb);
void * IMalloc_Alloc_Proxy(IMalloc *This, SIZE_T cb);
//C void IMalloc_Alloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_Alloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMalloc_Realloc_Proxy(IMalloc *This,void *pv,SIZE_T cb);
void * IMalloc_Realloc_Proxy(IMalloc *This, void *pv, SIZE_T cb);
//C void IMalloc_Realloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_Realloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IMalloc_Free_Proxy(IMalloc *This,void *pv);
void IMalloc_Free_Proxy(IMalloc *This, void *pv);
//C void IMalloc_Free_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_Free_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C SIZE_T IMalloc_GetSize_Proxy(IMalloc *This,void *pv);
SIZE_T IMalloc_GetSize_Proxy(IMalloc *This, void *pv);
//C void IMalloc_GetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_GetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C int IMalloc_DidAlloc_Proxy(IMalloc *This,void *pv);
int IMalloc_DidAlloc_Proxy(IMalloc *This, void *pv);
//C void IMalloc_DidAlloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_DidAlloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IMalloc_HeapMinimize_Proxy(IMalloc *This);
void IMalloc_HeapMinimize_Proxy(IMalloc *This);
//C void IMalloc_HeapMinimize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMalloc_HeapMinimize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IMallocSpy *LPMALLOCSPY;
alias IMallocSpy *LPMALLOCSPY;
//C typedef struct IMallocSpyVtbl {
//C HRESULT ( *QueryInterface)(IMallocSpy *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMallocSpy *This);
//C ULONG ( *Release)(IMallocSpy *This);
//C SIZE_T ( *PreAlloc)(IMallocSpy *This,SIZE_T cbRequest);
//C void *( *PostAlloc)(IMallocSpy *This,void *pActual);
//C void *( *PreFree)(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
//C void ( *PostFree)(IMallocSpy *This,WINBOOL fSpyed);
//C SIZE_T ( *PreRealloc)(IMallocSpy *This,void *pRequest,SIZE_T cbRequest,void **ppNewRequest,WINBOOL fSpyed);
//C void *( *PostRealloc)(IMallocSpy *This,void *pActual,WINBOOL fSpyed);
//C void *( *PreGetSize)(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
//C SIZE_T ( *PostGetSize)(IMallocSpy *This,SIZE_T cbActual,WINBOOL fSpyed);
//C void *( *PreDidAlloc)(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
//C int ( *PostDidAlloc)(IMallocSpy *This,void *pRequest,WINBOOL fSpyed,int fActual);
//C void ( *PreHeapMinimize)(IMallocSpy *This);
//C void ( *PostHeapMinimize)(IMallocSpy *This);
//C } IMallocSpyVtbl;
struct IMallocSpyVtbl
{
HRESULT function(IMallocSpy *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMallocSpy *This)AddRef;
ULONG function(IMallocSpy *This)Release;
SIZE_T function(IMallocSpy *This, SIZE_T cbRequest)PreAlloc;
void * function(IMallocSpy *This, void *pActual)PostAlloc;
void * function(IMallocSpy *This, void *pRequest, WINBOOL fSpyed)PreFree;
void function(IMallocSpy *This, WINBOOL fSpyed)PostFree;
SIZE_T function(IMallocSpy *This, void *pRequest, SIZE_T cbRequest, void **ppNewRequest, WINBOOL fSpyed)PreRealloc;
void * function(IMallocSpy *This, void *pActual, WINBOOL fSpyed)PostRealloc;
void * function(IMallocSpy *This, void *pRequest, WINBOOL fSpyed)PreGetSize;
SIZE_T function(IMallocSpy *This, SIZE_T cbActual, WINBOOL fSpyed)PostGetSize;
void * function(IMallocSpy *This, void *pRequest, WINBOOL fSpyed)PreDidAlloc;
int function(IMallocSpy *This, void *pRequest, WINBOOL fSpyed, int fActual)PostDidAlloc;
void function(IMallocSpy *This)PreHeapMinimize;
void function(IMallocSpy *This)PostHeapMinimize;
}
//C struct IMallocSpy {
//C struct IMallocSpyVtbl *lpVtbl;
//C };
struct IMallocSpy
{
IMallocSpyVtbl *lpVtbl;
}
//C SIZE_T IMallocSpy_PreAlloc_Proxy(IMallocSpy *This,SIZE_T cbRequest);
SIZE_T IMallocSpy_PreAlloc_Proxy(IMallocSpy *This, SIZE_T cbRequest);
//C void IMallocSpy_PreAlloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreAlloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMallocSpy_PostAlloc_Proxy(IMallocSpy *This,void *pActual);
void * IMallocSpy_PostAlloc_Proxy(IMallocSpy *This, void *pActual);
//C void IMallocSpy_PostAlloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostAlloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMallocSpy_PreFree_Proxy(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
void * IMallocSpy_PreFree_Proxy(IMallocSpy *This, void *pRequest, WINBOOL fSpyed);
//C void IMallocSpy_PreFree_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreFree_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IMallocSpy_PostFree_Proxy(IMallocSpy *This,WINBOOL fSpyed);
void IMallocSpy_PostFree_Proxy(IMallocSpy *This, WINBOOL fSpyed);
//C void IMallocSpy_PostFree_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostFree_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C SIZE_T IMallocSpy_PreRealloc_Proxy(IMallocSpy *This,void *pRequest,SIZE_T cbRequest,void **ppNewRequest,WINBOOL fSpyed);
SIZE_T IMallocSpy_PreRealloc_Proxy(IMallocSpy *This, void *pRequest, SIZE_T cbRequest, void **ppNewRequest, WINBOOL fSpyed);
//C void IMallocSpy_PreRealloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreRealloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMallocSpy_PostRealloc_Proxy(IMallocSpy *This,void *pActual,WINBOOL fSpyed);
void * IMallocSpy_PostRealloc_Proxy(IMallocSpy *This, void *pActual, WINBOOL fSpyed);
//C void IMallocSpy_PostRealloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostRealloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMallocSpy_PreGetSize_Proxy(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
void * IMallocSpy_PreGetSize_Proxy(IMallocSpy *This, void *pRequest, WINBOOL fSpyed);
//C void IMallocSpy_PreGetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreGetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C SIZE_T IMallocSpy_PostGetSize_Proxy(IMallocSpy *This,SIZE_T cbActual,WINBOOL fSpyed);
SIZE_T IMallocSpy_PostGetSize_Proxy(IMallocSpy *This, SIZE_T cbActual, WINBOOL fSpyed);
//C void IMallocSpy_PostGetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostGetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void * IMallocSpy_PreDidAlloc_Proxy(IMallocSpy *This,void *pRequest,WINBOOL fSpyed);
void * IMallocSpy_PreDidAlloc_Proxy(IMallocSpy *This, void *pRequest, WINBOOL fSpyed);
//C void IMallocSpy_PreDidAlloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreDidAlloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C int IMallocSpy_PostDidAlloc_Proxy(IMallocSpy *This,void *pRequest,WINBOOL fSpyed,int fActual);
int IMallocSpy_PostDidAlloc_Proxy(IMallocSpy *This, void *pRequest, WINBOOL fSpyed, int fActual);
//C void IMallocSpy_PostDidAlloc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostDidAlloc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IMallocSpy_PreHeapMinimize_Proxy(IMallocSpy *This);
void IMallocSpy_PreHeapMinimize_Proxy(IMallocSpy *This);
//C void IMallocSpy_PreHeapMinimize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PreHeapMinimize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IMallocSpy_PostHeapMinimize_Proxy(IMallocSpy *This);
void IMallocSpy_PostHeapMinimize_Proxy(IMallocSpy *This);
//C void IMallocSpy_PostHeapMinimize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMallocSpy_PostHeapMinimize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IStdMarshalInfo *LPSTDMARSHALINFO;
alias IStdMarshalInfo *LPSTDMARSHALINFO;
//C typedef struct IStdMarshalInfoVtbl {
//C HRESULT ( *QueryInterface)(IStdMarshalInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IStdMarshalInfo *This);
//C ULONG ( *Release)(IStdMarshalInfo *This);
//C HRESULT ( *GetClassForHandler)(IStdMarshalInfo *This,DWORD dwDestContext,void *pvDestContext,CLSID *pClsid);
//C } IStdMarshalInfoVtbl;
struct IStdMarshalInfoVtbl
{
HRESULT function(IStdMarshalInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IStdMarshalInfo *This)AddRef;
ULONG function(IStdMarshalInfo *This)Release;
HRESULT function(IStdMarshalInfo *This, DWORD dwDestContext, void *pvDestContext, CLSID *pClsid)GetClassForHandler;
}
//C struct IStdMarshalInfo {
//C struct IStdMarshalInfoVtbl *lpVtbl;
//C };
struct IStdMarshalInfo
{
IStdMarshalInfoVtbl *lpVtbl;
}
//C HRESULT IStdMarshalInfo_GetClassForHandler_Proxy(IStdMarshalInfo *This,DWORD dwDestContext,void *pvDestContext,CLSID *pClsid);
HRESULT IStdMarshalInfo_GetClassForHandler_Proxy(IStdMarshalInfo *This, DWORD dwDestContext, void *pvDestContext, CLSID *pClsid);
//C void IStdMarshalInfo_GetClassForHandler_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IStdMarshalInfo_GetClassForHandler_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IExternalConnection *LPEXTERNALCONNECTION;
alias IExternalConnection *LPEXTERNALCONNECTION;
//C typedef enum tagEXTCONN {
//C EXTCONN_STRONG = 0x1,EXTCONN_WEAK = 0x2,EXTCONN_CALLABLE = 0x4
//C } EXTCONN;
enum tagEXTCONN
{
EXTCONN_STRONG = 1,
EXTCONN_WEAK,
EXTCONN_CALLABLE = 4,
}
alias tagEXTCONN EXTCONN;
//C typedef struct IExternalConnectionVtbl {
//C HRESULT ( *QueryInterface)(IExternalConnection *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IExternalConnection *This);
//C ULONG ( *Release)(IExternalConnection *This);
//C DWORD ( *AddConnection)(IExternalConnection *This,DWORD extconn,DWORD reserved);
//C DWORD ( *ReleaseConnection)(IExternalConnection *This,DWORD extconn,DWORD reserved,WINBOOL fLastReleaseCloses);
//C } IExternalConnectionVtbl;
struct IExternalConnectionVtbl
{
HRESULT function(IExternalConnection *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IExternalConnection *This)AddRef;
ULONG function(IExternalConnection *This)Release;
DWORD function(IExternalConnection *This, DWORD extconn, DWORD reserved)AddConnection;
DWORD function(IExternalConnection *This, DWORD extconn, DWORD reserved, WINBOOL fLastReleaseCloses)ReleaseConnection;
}
//C struct IExternalConnection {
//C struct IExternalConnectionVtbl *lpVtbl;
//C };
struct IExternalConnection
{
IExternalConnectionVtbl *lpVtbl;
}
//C DWORD IExternalConnection_AddConnection_Proxy(IExternalConnection *This,DWORD extconn,DWORD reserved);
DWORD IExternalConnection_AddConnection_Proxy(IExternalConnection *This, DWORD extconn, DWORD reserved);
//C void IExternalConnection_AddConnection_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IExternalConnection_AddConnection_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C DWORD IExternalConnection_ReleaseConnection_Proxy(IExternalConnection *This,DWORD extconn,DWORD reserved,WINBOOL fLastReleaseCloses);
DWORD IExternalConnection_ReleaseConnection_Proxy(IExternalConnection *This, DWORD extconn, DWORD reserved, WINBOOL fLastReleaseCloses);
//C void IExternalConnection_ReleaseConnection_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IExternalConnection_ReleaseConnection_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IMultiQI *LPMULTIQI;
alias IMultiQI *LPMULTIQI;
//C typedef struct tagMULTI_QI {
//C const IID *pIID;
//C IUnknown *pItf;
//C HRESULT hr;
//C } MULTI_QI;
struct tagMULTI_QI
{
IID *pIID;
IUnknown *pItf;
HRESULT hr;
}
alias tagMULTI_QI MULTI_QI;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0015_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0015_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0015_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0015_v0_0_s_ifspec;
//C typedef struct IMultiQIVtbl {
//C HRESULT ( *QueryInterface)(IMultiQI *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMultiQI *This);
//C ULONG ( *Release)(IMultiQI *This);
//C HRESULT ( *QueryMultipleInterfaces)(IMultiQI *This,ULONG cMQIs,MULTI_QI *pMQIs);
//C } IMultiQIVtbl;
struct IMultiQIVtbl
{
HRESULT function(IMultiQI *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMultiQI *This)AddRef;
ULONG function(IMultiQI *This)Release;
HRESULT function(IMultiQI *This, ULONG cMQIs, MULTI_QI *pMQIs)QueryMultipleInterfaces;
}
//C struct IMultiQI {
//C struct IMultiQIVtbl *lpVtbl;
//C };
struct IMultiQI
{
IMultiQIVtbl *lpVtbl;
}
//C HRESULT IMultiQI_QueryMultipleInterfaces_Proxy(IMultiQI *This,ULONG cMQIs,MULTI_QI *pMQIs);
HRESULT IMultiQI_QueryMultipleInterfaces_Proxy(IMultiQI *This, ULONG cMQIs, MULTI_QI *pMQIs);
//C void IMultiQI_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMultiQI_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct AsyncIMultiQIVtbl {
//C HRESULT ( *QueryInterface)(AsyncIMultiQI *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIMultiQI *This);
//C ULONG ( *Release)(AsyncIMultiQI *This);
//C HRESULT ( *Begin_QueryMultipleInterfaces)(AsyncIMultiQI *This,ULONG cMQIs,MULTI_QI *pMQIs);
//C HRESULT ( *Finish_QueryMultipleInterfaces)(AsyncIMultiQI *This,MULTI_QI *pMQIs);
//C } AsyncIMultiQIVtbl;
struct AsyncIMultiQIVtbl
{
HRESULT function(AsyncIMultiQI *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIMultiQI *This)AddRef;
ULONG function(AsyncIMultiQI *This)Release;
HRESULT function(AsyncIMultiQI *This, ULONG cMQIs, MULTI_QI *pMQIs)Begin_QueryMultipleInterfaces;
HRESULT function(AsyncIMultiQI *This, MULTI_QI *pMQIs)Finish_QueryMultipleInterfaces;
}
//C struct AsyncIMultiQI {
//C struct AsyncIMultiQIVtbl *lpVtbl;
//C };
struct AsyncIMultiQI
{
AsyncIMultiQIVtbl *lpVtbl;
}
//C HRESULT AsyncIMultiQI_Begin_QueryMultipleInterfaces_Proxy(AsyncIMultiQI *This,ULONG cMQIs,MULTI_QI *pMQIs);
HRESULT AsyncIMultiQI_Begin_QueryMultipleInterfaces_Proxy(AsyncIMultiQI *This, ULONG cMQIs, MULTI_QI *pMQIs);
//C void AsyncIMultiQI_Begin_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIMultiQI_Begin_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIMultiQI_Finish_QueryMultipleInterfaces_Proxy(AsyncIMultiQI *This,MULTI_QI *pMQIs);
HRESULT AsyncIMultiQI_Finish_QueryMultipleInterfaces_Proxy(AsyncIMultiQI *This, MULTI_QI *pMQIs);
//C void AsyncIMultiQI_Finish_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIMultiQI_Finish_QueryMultipleInterfaces_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IInternalUnknownVtbl {
//C HRESULT ( *QueryInterface)(IInternalUnknown *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternalUnknown *This);
//C ULONG ( *Release)(IInternalUnknown *This);
//C HRESULT ( *QueryInternalInterface)(IInternalUnknown *This,const IID *const riid,void **ppv);
//C } IInternalUnknownVtbl;
struct IInternalUnknownVtbl
{
HRESULT function(IInternalUnknown *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternalUnknown *This)AddRef;
ULONG function(IInternalUnknown *This)Release;
HRESULT function(IInternalUnknown *This, IID *riid, void **ppv)QueryInternalInterface;
}
//C struct IInternalUnknown {
//C struct IInternalUnknownVtbl *lpVtbl;
//C };
struct IInternalUnknown
{
IInternalUnknownVtbl *lpVtbl;
}
//C HRESULT IInternalUnknown_QueryInternalInterface_Proxy(IInternalUnknown *This,const IID *const riid,void **ppv);
HRESULT IInternalUnknown_QueryInternalInterface_Proxy(IInternalUnknown *This, IID *riid, void **ppv);
//C void IInternalUnknown_QueryInternalInterface_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternalUnknown_QueryInternalInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumUnknown *LPENUMUNKNOWN;
alias IEnumUnknown *LPENUMUNKNOWN;
//C typedef struct IEnumUnknownVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumUnknown* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumUnknown* This);
//C ULONG ( *Release)(
//C IEnumUnknown* This);
//C HRESULT ( *Next)(
//C IEnumUnknown* This,
//C ULONG celt,
//C IUnknown **rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumUnknown* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumUnknown* This);
//C HRESULT ( *Clone)(
//C IEnumUnknown* This,
//C IEnumUnknown **ppenum);
//C } IEnumUnknownVtbl;
struct IEnumUnknownVtbl
{
HRESULT function(IEnumUnknown *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumUnknown *This)AddRef;
ULONG function(IEnumUnknown *This)Release;
HRESULT function(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumUnknown *This, ULONG celt)Skip;
HRESULT function(IEnumUnknown *This)Reset;
HRESULT function(IEnumUnknown *This, IEnumUnknown **ppenum)Clone;
}
//C struct IEnumUnknown {
//C IEnumUnknownVtbl* lpVtbl;
//C };
struct IEnumUnknown
{
IEnumUnknownVtbl *lpVtbl;
}
//C HRESULT IEnumUnknown_RemoteNext_Proxy(
//C IEnumUnknown* This,
//C ULONG celt,
//C IUnknown **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumUnknown_RemoteNext_Proxy(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched);
//C void IEnumUnknown_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumUnknown_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumUnknown_Skip_Proxy(
//C IEnumUnknown* This,
//C ULONG celt);
HRESULT IEnumUnknown_Skip_Proxy(IEnumUnknown *This, ULONG celt);
//C void IEnumUnknown_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumUnknown_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumUnknown_Reset_Proxy(
//C IEnumUnknown* This);
HRESULT IEnumUnknown_Reset_Proxy(IEnumUnknown *This);
//C void IEnumUnknown_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumUnknown_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumUnknown_Clone_Proxy(
//C IEnumUnknown* This,
//C IEnumUnknown **ppenum);
HRESULT IEnumUnknown_Clone_Proxy(IEnumUnknown *This, IEnumUnknown **ppenum);
//C void IEnumUnknown_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumUnknown_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumUnknown_Next_Proxy(
//C IEnumUnknown* This,
//C ULONG celt,
//C IUnknown **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumUnknown_Next_Proxy(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched);
//C HRESULT IEnumUnknown_Next_Stub(
//C IEnumUnknown* This,
//C ULONG celt,
//C IUnknown **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumUnknown_Next_Stub(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched);
//C typedef IBindCtx *LPBC;
alias IBindCtx *LPBC;
//C typedef IBindCtx *LPBINDCTX;
alias IBindCtx *LPBINDCTX;
//C typedef struct tagBIND_OPTS {
//C DWORD cbStruct;
//C DWORD grfFlags;
//C DWORD grfMode;
//C DWORD dwTickCountDeadline;
//C } BIND_OPTS;
struct tagBIND_OPTS
{
DWORD cbStruct;
DWORD grfFlags;
DWORD grfMode;
DWORD dwTickCountDeadline;
}
alias tagBIND_OPTS BIND_OPTS;
//C typedef struct tagBIND_OPTS *LPBIND_OPTS;
alias tagBIND_OPTS *LPBIND_OPTS;
//C typedef struct tagBIND_OPTS2 {
//C DWORD cbStruct;
//C DWORD grfFlags;
//C DWORD grfMode;
//C DWORD dwTickCountDeadline;
//C DWORD dwTrackFlags;
//C DWORD dwClassContext;
//C LCID locale;
//C COSERVERINFO *pServerInfo;
//C } BIND_OPTS2;
struct tagBIND_OPTS2
{
DWORD cbStruct;
DWORD grfFlags;
DWORD grfMode;
DWORD dwTickCountDeadline;
DWORD dwTrackFlags;
DWORD dwClassContext;
LCID locale;
COSERVERINFO *pServerInfo;
}
alias tagBIND_OPTS2 BIND_OPTS2;
//C typedef struct tagBIND_OPTS2 *LPBIND_OPTS2;
alias tagBIND_OPTS2 *LPBIND_OPTS2;
//C typedef struct tagBIND_OPTS3 {
//C DWORD cbStruct;
//C DWORD grfFlags;
//C DWORD grfMode;
//C DWORD dwTickCountDeadline;
//C DWORD dwTrackFlags;
//C DWORD dwClassContext;
//C LCID locale;
//C COSERVERINFO *pServerInfo;
//C HWND hwnd;
//C } BIND_OPTS3;
struct tagBIND_OPTS3
{
DWORD cbStruct;
DWORD grfFlags;
DWORD grfMode;
DWORD dwTickCountDeadline;
DWORD dwTrackFlags;
DWORD dwClassContext;
LCID locale;
COSERVERINFO *pServerInfo;
HWND hwnd;
}
alias tagBIND_OPTS3 BIND_OPTS3;
//C typedef struct tagBIND_OPTS3 *LPBIND_OPTS3;
alias tagBIND_OPTS3 *LPBIND_OPTS3;
//C typedef enum tagBIND_FLAGS {
//C BIND_MAYBOTHERUSER = 1,
//C BIND_JUSTTESTEXISTENCE = 2
//C } BIND_FLAGS;
enum tagBIND_FLAGS
{
BIND_MAYBOTHERUSER = 1,
BIND_JUSTTESTEXISTENCE,
}
alias tagBIND_FLAGS BIND_FLAGS;
//C typedef struct IBindCtxVtbl {
//C HRESULT ( *QueryInterface)(
//C IBindCtx* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IBindCtx* This);
//C ULONG ( *Release)(
//C IBindCtx* This);
//C HRESULT ( *RegisterObjectBound)(
//C IBindCtx* This,
//C IUnknown *punk);
//C HRESULT ( *RevokeObjectBound)(
//C IBindCtx* This,
//C IUnknown *punk);
//C HRESULT ( *ReleaseBoundObjects)(
//C IBindCtx* This);
//C HRESULT ( *SetBindOptions)(
//C IBindCtx* This,
//C BIND_OPTS *pbindopts);
//C HRESULT ( *GetBindOptions)(
//C IBindCtx* This,
//C BIND_OPTS *pbindopts);
//C HRESULT ( *GetRunningObjectTable)(
//C IBindCtx* This,
//C IRunningObjectTable **pprot);
//C HRESULT ( *RegisterObjectParam)(
//C IBindCtx* This,
//C LPOLESTR pszKey,
//C IUnknown *punk);
//C HRESULT ( *GetObjectParam)(
//C IBindCtx* This,
//C LPOLESTR pszKey,
//C IUnknown **ppunk);
//C HRESULT ( *EnumObjectParam)(
//C IBindCtx* This,
//C IEnumString **ppenum);
//C HRESULT ( *RevokeObjectParam)(
//C IBindCtx* This,
//C LPOLESTR pszKey);
//C } IBindCtxVtbl;
struct IBindCtxVtbl
{
HRESULT function(IBindCtx *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBindCtx *This)AddRef;
ULONG function(IBindCtx *This)Release;
HRESULT function(IBindCtx *This, IUnknown *punk)RegisterObjectBound;
HRESULT function(IBindCtx *This, IUnknown *punk)RevokeObjectBound;
HRESULT function(IBindCtx *This)ReleaseBoundObjects;
HRESULT function(IBindCtx *This, BIND_OPTS *pbindopts)SetBindOptions;
HRESULT function(IBindCtx *This, BIND_OPTS *pbindopts)GetBindOptions;
HRESULT function(IBindCtx *This, IRunningObjectTable **pprot)GetRunningObjectTable;
HRESULT function(IBindCtx *This, LPOLESTR pszKey, IUnknown *punk)RegisterObjectParam;
HRESULT function(IBindCtx *This, LPOLESTR pszKey, IUnknown **ppunk)GetObjectParam;
HRESULT function(IBindCtx *This, IEnumString **ppenum)EnumObjectParam;
HRESULT function(IBindCtx *This, LPOLESTR pszKey)RevokeObjectParam;
}
//C struct IBindCtx {
//C IBindCtxVtbl* lpVtbl;
//C };
struct IBindCtx
{
IBindCtxVtbl *lpVtbl;
}
//C HRESULT IBindCtx_RegisterObjectBound_Proxy(
//C IBindCtx* This,
//C IUnknown *punk);
HRESULT IBindCtx_RegisterObjectBound_Proxy(IBindCtx *This, IUnknown *punk);
//C void IBindCtx_RegisterObjectBound_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RegisterObjectBound_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_RevokeObjectBound_Proxy(
//C IBindCtx* This,
//C IUnknown *punk);
HRESULT IBindCtx_RevokeObjectBound_Proxy(IBindCtx *This, IUnknown *punk);
//C void IBindCtx_RevokeObjectBound_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RevokeObjectBound_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_ReleaseBoundObjects_Proxy(
//C IBindCtx* This);
HRESULT IBindCtx_ReleaseBoundObjects_Proxy(IBindCtx *This);
//C void IBindCtx_ReleaseBoundObjects_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_ReleaseBoundObjects_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_RemoteSetBindOptions_Proxy(
//C IBindCtx* This,
//C BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_RemoteSetBindOptions_Proxy(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C void IBindCtx_RemoteSetBindOptions_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RemoteSetBindOptions_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_RemoteGetBindOptions_Proxy(
//C IBindCtx* This,
//C BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_RemoteGetBindOptions_Proxy(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C void IBindCtx_RemoteGetBindOptions_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RemoteGetBindOptions_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_GetRunningObjectTable_Proxy(
//C IBindCtx* This,
//C IRunningObjectTable **pprot);
HRESULT IBindCtx_GetRunningObjectTable_Proxy(IBindCtx *This, IRunningObjectTable **pprot);
//C void IBindCtx_GetRunningObjectTable_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_GetRunningObjectTable_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_RegisterObjectParam_Proxy(
//C IBindCtx* This,
//C LPOLESTR pszKey,
//C IUnknown *punk);
HRESULT IBindCtx_RegisterObjectParam_Proxy(IBindCtx *This, LPOLESTR pszKey, IUnknown *punk);
//C void IBindCtx_RegisterObjectParam_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RegisterObjectParam_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_GetObjectParam_Proxy(
//C IBindCtx* This,
//C LPOLESTR pszKey,
//C IUnknown **ppunk);
HRESULT IBindCtx_GetObjectParam_Proxy(IBindCtx *This, LPOLESTR pszKey, IUnknown **ppunk);
//C void IBindCtx_GetObjectParam_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_GetObjectParam_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_EnumObjectParam_Proxy(
//C IBindCtx* This,
//C IEnumString **ppenum);
HRESULT IBindCtx_EnumObjectParam_Proxy(IBindCtx *This, IEnumString **ppenum);
//C void IBindCtx_EnumObjectParam_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_EnumObjectParam_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_RevokeObjectParam_Proxy(
//C IBindCtx* This,
//C LPOLESTR pszKey);
HRESULT IBindCtx_RevokeObjectParam_Proxy(IBindCtx *This, LPOLESTR pszKey);
//C void IBindCtx_RevokeObjectParam_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindCtx_RevokeObjectParam_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindCtx_SetBindOptions_Proxy(
//C IBindCtx* This,
//C BIND_OPTS *pbindopts);
HRESULT IBindCtx_SetBindOptions_Proxy(IBindCtx *This, BIND_OPTS *pbindopts);
//C HRESULT IBindCtx_SetBindOptions_Stub(
//C IBindCtx* This,
//C BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_SetBindOptions_Stub(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C HRESULT IBindCtx_GetBindOptions_Proxy(
//C IBindCtx* This,
//C BIND_OPTS *pbindopts);
HRESULT IBindCtx_GetBindOptions_Proxy(IBindCtx *This, BIND_OPTS *pbindopts);
//C HRESULT IBindCtx_GetBindOptions_Stub(
//C IBindCtx* This,
//C BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_GetBindOptions_Stub(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C typedef IEnumMoniker *LPENUMMONIKER;
alias IEnumMoniker *LPENUMMONIKER;
//C typedef struct IEnumMonikerVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumMoniker* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumMoniker* This);
//C ULONG ( *Release)(
//C IEnumMoniker* This);
//C HRESULT ( *Next)(
//C IEnumMoniker* This,
//C ULONG celt,
//C IMoniker **rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumMoniker* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumMoniker* This);
//C HRESULT ( *Clone)(
//C IEnumMoniker* This,
//C IEnumMoniker **ppenum);
//C } IEnumMonikerVtbl;
struct IEnumMonikerVtbl
{
HRESULT function(IEnumMoniker *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumMoniker *This)AddRef;
ULONG function(IEnumMoniker *This)Release;
HRESULT function(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumMoniker *This, ULONG celt)Skip;
HRESULT function(IEnumMoniker *This)Reset;
HRESULT function(IEnumMoniker *This, IEnumMoniker **ppenum)Clone;
}
//C struct IEnumMoniker {
//C IEnumMonikerVtbl* lpVtbl;
//C };
struct IEnumMoniker
{
IEnumMonikerVtbl *lpVtbl;
}
//C HRESULT IEnumMoniker_RemoteNext_Proxy(
//C IEnumMoniker* This,
//C ULONG celt,
//C IMoniker **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumMoniker_RemoteNext_Proxy(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched);
//C void IEnumMoniker_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumMoniker_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumMoniker_Skip_Proxy(
//C IEnumMoniker* This,
//C ULONG celt);
HRESULT IEnumMoniker_Skip_Proxy(IEnumMoniker *This, ULONG celt);
//C void IEnumMoniker_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumMoniker_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumMoniker_Reset_Proxy(
//C IEnumMoniker* This);
HRESULT IEnumMoniker_Reset_Proxy(IEnumMoniker *This);
//C void IEnumMoniker_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumMoniker_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumMoniker_Clone_Proxy(
//C IEnumMoniker* This,
//C IEnumMoniker **ppenum);
HRESULT IEnumMoniker_Clone_Proxy(IEnumMoniker *This, IEnumMoniker **ppenum);
//C void IEnumMoniker_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumMoniker_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumMoniker_Next_Proxy(
//C IEnumMoniker* This,
//C ULONG celt,
//C IMoniker **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumMoniker_Next_Proxy(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched);
//C HRESULT IEnumMoniker_Next_Stub(
//C IEnumMoniker* This,
//C ULONG celt,
//C IMoniker **rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumMoniker_Next_Stub(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched);
//C typedef IRunnableObject *LPRUNNABLEOBJECT;
alias IRunnableObject *LPRUNNABLEOBJECT;
//C typedef struct IRunnableObjectVtbl {
//C HRESULT ( *QueryInterface)(IRunnableObject *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRunnableObject *This);
//C ULONG ( *Release)(IRunnableObject *This);
//C HRESULT ( *GetRunningClass)(IRunnableObject *This,LPCLSID lpClsid);
//C HRESULT ( *Run)(IRunnableObject *This,LPBINDCTX pbc);
//C WINBOOL ( *IsRunning)(IRunnableObject *This);
//C HRESULT ( *LockRunning)(IRunnableObject *This,WINBOOL fLock,WINBOOL fLastUnlockCloses);
//C HRESULT ( *SetContainedObject)(IRunnableObject *This,WINBOOL fContained);
//C } IRunnableObjectVtbl;
struct IRunnableObjectVtbl
{
HRESULT function(IRunnableObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRunnableObject *This)AddRef;
ULONG function(IRunnableObject *This)Release;
HRESULT function(IRunnableObject *This, LPCLSID lpClsid)GetRunningClass;
HRESULT function(IRunnableObject *This, LPBINDCTX pbc)Run;
WINBOOL function(IRunnableObject *This)IsRunning;
HRESULT function(IRunnableObject *This, WINBOOL fLock, WINBOOL fLastUnlockCloses)LockRunning;
HRESULT function(IRunnableObject *This, WINBOOL fContained)SetContainedObject;
}
//C struct IRunnableObject {
//C struct IRunnableObjectVtbl *lpVtbl;
//C };
struct IRunnableObject
{
IRunnableObjectVtbl *lpVtbl;
}
//C HRESULT IRunnableObject_GetRunningClass_Proxy(IRunnableObject *This,LPCLSID lpClsid);
HRESULT IRunnableObject_GetRunningClass_Proxy(IRunnableObject *This, LPCLSID lpClsid);
//C void IRunnableObject_GetRunningClass_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRunnableObject_GetRunningClass_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRunnableObject_Run_Proxy(IRunnableObject *This,LPBINDCTX pbc);
HRESULT IRunnableObject_Run_Proxy(IRunnableObject *This, LPBINDCTX pbc);
//C void IRunnableObject_Run_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRunnableObject_Run_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRunnableObject_RemoteIsRunning_Proxy(IRunnableObject *This);
HRESULT IRunnableObject_RemoteIsRunning_Proxy(IRunnableObject *This);
//C void IRunnableObject_RemoteIsRunning_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRunnableObject_RemoteIsRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRunnableObject_LockRunning_Proxy(IRunnableObject *This,WINBOOL fLock,WINBOOL fLastUnlockCloses);
HRESULT IRunnableObject_LockRunning_Proxy(IRunnableObject *This, WINBOOL fLock, WINBOOL fLastUnlockCloses);
//C void IRunnableObject_LockRunning_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRunnableObject_LockRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRunnableObject_SetContainedObject_Proxy(IRunnableObject *This,WINBOOL fContained);
HRESULT IRunnableObject_SetContainedObject_Proxy(IRunnableObject *This, WINBOOL fContained);
//C void IRunnableObject_SetContainedObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRunnableObject_SetContainedObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IRunningObjectTable *LPRUNNINGOBJECTTABLE;
alias IRunningObjectTable *LPRUNNINGOBJECTTABLE;
//C typedef struct IRunningObjectTableVtbl {
//C HRESULT ( *QueryInterface)(
//C IRunningObjectTable* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IRunningObjectTable* This);
//C ULONG ( *Release)(
//C IRunningObjectTable* This);
//C HRESULT ( *Register)(
//C IRunningObjectTable* This,
//C DWORD grfFlags,
//C IUnknown *punkObject,
//C IMoniker *pmkObjectName,
//C DWORD *pdwRegister);
//C HRESULT ( *Revoke)(
//C IRunningObjectTable* This,
//C DWORD dwRegister);
//C HRESULT ( *IsRunning)(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName);
//C HRESULT ( *GetObjectA)(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName,
//C IUnknown **ppunkObject);
//C HRESULT ( *NoteChangeTime)(
//C IRunningObjectTable* This,
//C DWORD dwRegister,
//C FILETIME *pfiletime);
//C HRESULT ( *GetTimeOfLastChange)(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName,
//C FILETIME *pfiletime);
//C HRESULT ( *EnumRunning)(
//C IRunningObjectTable* This,
//C IEnumMoniker **ppenumMoniker);
//C } IRunningObjectTableVtbl;
struct IRunningObjectTableVtbl
{
HRESULT function(IRunningObjectTable *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRunningObjectTable *This)AddRef;
ULONG function(IRunningObjectTable *This)Release;
HRESULT function(IRunningObjectTable *This, DWORD grfFlags, IUnknown *punkObject, IMoniker *pmkObjectName, DWORD *pdwRegister)Register;
HRESULT function(IRunningObjectTable *This, DWORD dwRegister)Revoke;
HRESULT function(IRunningObjectTable *This, IMoniker *pmkObjectName)IsRunning;
HRESULT function(IRunningObjectTable *This, IMoniker *pmkObjectName, IUnknown **ppunkObject)GetObjectA;
HRESULT function(IRunningObjectTable *This, DWORD dwRegister, FILETIME *pfiletime)NoteChangeTime;
HRESULT function(IRunningObjectTable *This, IMoniker *pmkObjectName, FILETIME *pfiletime)GetTimeOfLastChange;
HRESULT function(IRunningObjectTable *This, IEnumMoniker **ppenumMoniker)EnumRunning;
}
//C struct IRunningObjectTable {
//C IRunningObjectTableVtbl* lpVtbl;
//C };
struct IRunningObjectTable
{
IRunningObjectTableVtbl *lpVtbl;
}
//C HRESULT IRunningObjectTable_Register_Proxy(
//C IRunningObjectTable* This,
//C DWORD grfFlags,
//C IUnknown *punkObject,
//C IMoniker *pmkObjectName,
//C DWORD *pdwRegister);
HRESULT IRunningObjectTable_Register_Proxy(IRunningObjectTable *This, DWORD grfFlags, IUnknown *punkObject, IMoniker *pmkObjectName, DWORD *pdwRegister);
//C void IRunningObjectTable_Register_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_Register_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_Revoke_Proxy(
//C IRunningObjectTable* This,
//C DWORD dwRegister);
HRESULT IRunningObjectTable_Revoke_Proxy(IRunningObjectTable *This, DWORD dwRegister);
//C void IRunningObjectTable_Revoke_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_Revoke_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_IsRunning_Proxy(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName);
HRESULT IRunningObjectTable_IsRunning_Proxy(IRunningObjectTable *This, IMoniker *pmkObjectName);
//C void IRunningObjectTable_IsRunning_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_IsRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_GetObject_Proxy(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName,
//C IUnknown **ppunkObject);
HRESULT IRunningObjectTable_GetObject_Proxy(IRunningObjectTable *This, IMoniker *pmkObjectName, IUnknown **ppunkObject);
//C void IRunningObjectTable_GetObject_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_GetObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_NoteChangeTime_Proxy(
//C IRunningObjectTable* This,
//C DWORD dwRegister,
//C FILETIME *pfiletime);
HRESULT IRunningObjectTable_NoteChangeTime_Proxy(IRunningObjectTable *This, DWORD dwRegister, FILETIME *pfiletime);
//C void IRunningObjectTable_NoteChangeTime_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_NoteChangeTime_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_GetTimeOfLastChange_Proxy(
//C IRunningObjectTable* This,
//C IMoniker *pmkObjectName,
//C FILETIME *pfiletime);
HRESULT IRunningObjectTable_GetTimeOfLastChange_Proxy(IRunningObjectTable *This, IMoniker *pmkObjectName, FILETIME *pfiletime);
//C void IRunningObjectTable_GetTimeOfLastChange_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_GetTimeOfLastChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRunningObjectTable_EnumRunning_Proxy(
//C IRunningObjectTable* This,
//C IEnumMoniker **ppenumMoniker);
HRESULT IRunningObjectTable_EnumRunning_Proxy(IRunningObjectTable *This, IEnumMoniker **ppenumMoniker);
//C void IRunningObjectTable_EnumRunning_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRunningObjectTable_EnumRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IPersist *LPPERSIST;
alias IPersist *LPPERSIST;
//C typedef struct IPersistVtbl {
//C HRESULT ( *QueryInterface)(
//C IPersist* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IPersist* This);
//C ULONG ( *Release)(
//C IPersist* This);
//C HRESULT ( *GetClassID)(
//C IPersist* This,
//C CLSID *pClassID);
//C } IPersistVtbl;
struct IPersistVtbl
{
HRESULT function(IPersist *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPersist *This)AddRef;
ULONG function(IPersist *This)Release;
HRESULT function(IPersist *This, CLSID *pClassID)GetClassID;
}
//C struct IPersist {
//C IPersistVtbl* lpVtbl;
//C };
struct IPersist
{
IPersistVtbl *lpVtbl;
}
//C HRESULT IPersist_GetClassID_Proxy(
//C IPersist* This,
//C CLSID *pClassID);
HRESULT IPersist_GetClassID_Proxy(IPersist *This, CLSID *pClassID);
//C void IPersist_GetClassID_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IPersist_GetClassID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IPersistStream *LPPERSISTSTREAM;
alias IPersistStream *LPPERSISTSTREAM;
//C typedef struct IPersistStreamVtbl {
//C HRESULT ( *QueryInterface)(
//C IPersistStream* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IPersistStream* This);
//C ULONG ( *Release)(
//C IPersistStream* This);
//C HRESULT ( *GetClassID)(
//C IPersistStream* This,
//C CLSID *pClassID);
//C HRESULT ( *IsDirty)(
//C IPersistStream* This);
//C HRESULT ( *Load)(
//C IPersistStream* This,
//C IStream *pStm);
//C HRESULT ( *Save)(
//C IPersistStream* This,
//C IStream *pStm,
//C WINBOOL fClearDirty);
//C HRESULT ( *GetSizeMax)(
//C IPersistStream* This,
//C ULARGE_INTEGER *pcbSize);
//C } IPersistStreamVtbl;
struct IPersistStreamVtbl
{
HRESULT function(IPersistStream *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPersistStream *This)AddRef;
ULONG function(IPersistStream *This)Release;
HRESULT function(IPersistStream *This, CLSID *pClassID)GetClassID;
HRESULT function(IPersistStream *This)IsDirty;
HRESULT function(IPersistStream *This, IStream *pStm)Load;
HRESULT function(IPersistStream *This, IStream *pStm, WINBOOL fClearDirty)Save;
HRESULT function(IPersistStream *This, ULARGE_INTEGER *pcbSize)GetSizeMax;
}
//C struct IPersistStream {
//C IPersistStreamVtbl* lpVtbl;
//C };
struct IPersistStream
{
IPersistStreamVtbl *lpVtbl;
}
//C HRESULT IPersistStream_IsDirty_Proxy(
//C IPersistStream* This);
HRESULT IPersistStream_IsDirty_Proxy(IPersistStream *This);
//C void IPersistStream_IsDirty_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IPersistStream_IsDirty_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IPersistStream_Load_Proxy(
//C IPersistStream* This,
//C IStream *pStm);
HRESULT IPersistStream_Load_Proxy(IPersistStream *This, IStream *pStm);
//C void IPersistStream_Load_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IPersistStream_Load_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IPersistStream_Save_Proxy(
//C IPersistStream* This,
//C IStream *pStm,
//C WINBOOL fClearDirty);
HRESULT IPersistStream_Save_Proxy(IPersistStream *This, IStream *pStm, WINBOOL fClearDirty);
//C void IPersistStream_Save_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IPersistStream_Save_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IPersistStream_GetSizeMax_Proxy(
//C IPersistStream* This,
//C ULARGE_INTEGER *pcbSize);
HRESULT IPersistStream_GetSizeMax_Proxy(IPersistStream *This, ULARGE_INTEGER *pcbSize);
//C void IPersistStream_GetSizeMax_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IPersistStream_GetSizeMax_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IMoniker *LPMONIKER;
alias IMoniker *LPMONIKER;
//C typedef enum tagMKSYS {
//C MKSYS_NONE = 0,
//C MKSYS_GENERICCOMPOSITE = 1,
//C MKSYS_FILEMONIKER = 2,
//C MKSYS_ANTIMONIKER = 3,
//C MKSYS_ITEMMONIKER = 4,
//C MKSYS_POINTERMONIKER = 5,
//C MKSYS_CLASSMONIKER = 7,
//C MKSYS_OBJREFMONIKER = 8,
//C MKSYS_SESSIONMONIKER = 9,
//C MKSYS_LUAMONIKER = 10
//C } MKSYS;
enum tagMKSYS
{
MKSYS_NONE,
MKSYS_GENERICCOMPOSITE,
MKSYS_FILEMONIKER,
MKSYS_ANTIMONIKER,
MKSYS_ITEMMONIKER,
MKSYS_POINTERMONIKER,
MKSYS_CLASSMONIKER = 7,
MKSYS_OBJREFMONIKER,
MKSYS_SESSIONMONIKER,
MKSYS_LUAMONIKER,
}
alias tagMKSYS MKSYS;
//C typedef enum tagMKREDUCE {
//C MKRREDUCE_ONE = 3 << 16,
//C MKRREDUCE_TOUSER = 2 << 16,
//C MKRREDUCE_THROUGHUSER = 1 << 16,
//C MKRREDUCE_ALL = 0
//C } MKRREDUCE;
enum tagMKREDUCE
{
MKRREDUCE_ONE = 196608,
MKRREDUCE_TOUSER = 131072,
MKRREDUCE_THROUGHUSER = 65536,
MKRREDUCE_ALL = 0,
}
alias tagMKREDUCE MKRREDUCE;
//C typedef struct IMonikerVtbl {
//C HRESULT ( *QueryInterface)(
//C IMoniker* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IMoniker* This);
//C ULONG ( *Release)(
//C IMoniker* This);
//C HRESULT ( *GetClassID)(
//C IMoniker* This,
//C CLSID *pClassID);
//C HRESULT ( *IsDirty)(
//C IMoniker* This);
//C HRESULT ( *Load)(
//C IMoniker* This,
//C IStream *pStm);
//C HRESULT ( *Save)(
//C IMoniker* This,
//C IStream *pStm,
//C WINBOOL fClearDirty);
//C HRESULT ( *GetSizeMax)(
//C IMoniker* This,
//C ULARGE_INTEGER *pcbSize);
//C HRESULT ( *BindToObject)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riidResult,
//C void **ppvResult);
//C HRESULT ( *BindToStorage)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riid,
//C void **ppvObj);
//C HRESULT ( *Reduce)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C DWORD dwReduceHowFar,
//C IMoniker **ppmkToLeft,
//C IMoniker **ppmkReduced);
//C HRESULT ( *ComposeWith)(
//C IMoniker* This,
//C IMoniker *pmkRight,
//C WINBOOL fOnlyIfNotGeneric,
//C IMoniker **ppmkComposite);
//C HRESULT ( *Enum)(
//C IMoniker* This,
//C WINBOOL fForward,
//C IEnumMoniker **ppenumMoniker);
//C HRESULT ( *IsEqual)(
//C IMoniker* This,
//C IMoniker *pmkOtherMoniker);
//C HRESULT ( *Hash)(
//C IMoniker* This,
//C DWORD *pdwHash);
//C HRESULT ( *IsRunning)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C IMoniker *pmkNewlyRunning);
//C HRESULT ( *GetTimeOfLastChange)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C FILETIME *pFileTime);
//C HRESULT ( *Inverse)(
//C IMoniker* This,
//C IMoniker **ppmk);
//C HRESULT ( *CommonPrefixWith)(
//C IMoniker* This,
//C IMoniker *pmkOther,
//C IMoniker **ppmkPrefix);
//C HRESULT ( *RelativePathTo)(
//C IMoniker* This,
//C IMoniker *pmkOther,
//C IMoniker **ppmkRelPath);
//C HRESULT ( *GetDisplayName)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C LPOLESTR *ppszDisplayName);
//C HRESULT ( *ParseDisplayName)(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C LPOLESTR pszDisplayName,
//C ULONG *pchEaten,
//C IMoniker **ppmkOut);
//C HRESULT ( *IsSystemMoniker)(
//C IMoniker* This,
//C DWORD *pdwMksys);
//C } IMonikerVtbl;
struct IMonikerVtbl
{
HRESULT function(IMoniker *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMoniker *This)AddRef;
ULONG function(IMoniker *This)Release;
HRESULT function(IMoniker *This, CLSID *pClassID)GetClassID;
HRESULT function(IMoniker *This)IsDirty;
HRESULT function(IMoniker *This, IStream *pStm)Load;
HRESULT function(IMoniker *This, IStream *pStm, WINBOOL fClearDirty)Save;
HRESULT function(IMoniker *This, ULARGE_INTEGER *pcbSize)GetSizeMax;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riidResult, void **ppvResult)BindToObject;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riid, void **ppvObj)BindToStorage;
HRESULT function(IMoniker *This, IBindCtx *pbc, DWORD dwReduceHowFar, IMoniker **ppmkToLeft, IMoniker **ppmkReduced)Reduce;
HRESULT function(IMoniker *This, IMoniker *pmkRight, WINBOOL fOnlyIfNotGeneric, IMoniker **ppmkComposite)ComposeWith;
HRESULT function(IMoniker *This, WINBOOL fForward, IEnumMoniker **ppenumMoniker)Enum;
HRESULT function(IMoniker *This, IMoniker *pmkOtherMoniker)IsEqual;
HRESULT function(IMoniker *This, DWORD *pdwHash)Hash;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IMoniker *pmkNewlyRunning)IsRunning;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, FILETIME *pFileTime)GetTimeOfLastChange;
HRESULT function(IMoniker *This, IMoniker **ppmk)Inverse;
HRESULT function(IMoniker *This, IMoniker *pmkOther, IMoniker **ppmkPrefix)CommonPrefixWith;
HRESULT function(IMoniker *This, IMoniker *pmkOther, IMoniker **ppmkRelPath)RelativePathTo;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, LPOLESTR *ppszDisplayName)GetDisplayName;
HRESULT function(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut)ParseDisplayName;
HRESULT function(IMoniker *This, DWORD *pdwMksys)IsSystemMoniker;
}
//C struct IMoniker {
//C IMonikerVtbl* lpVtbl;
//C };
struct IMoniker
{
IMonikerVtbl *lpVtbl;
}
//C HRESULT IMoniker_RemoteBindToObject_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riidResult,
//C IUnknown **ppvResult);
HRESULT IMoniker_RemoteBindToObject_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riidResult, IUnknown **ppvResult);
//C void IMoniker_RemoteBindToObject_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_RemoteBindToObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_RemoteBindToStorage_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riid,
//C IUnknown **ppvObj);
HRESULT IMoniker_RemoteBindToStorage_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riid, IUnknown **ppvObj);
//C void IMoniker_RemoteBindToStorage_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_RemoteBindToStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_Reduce_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C DWORD dwReduceHowFar,
//C IMoniker **ppmkToLeft,
//C IMoniker **ppmkReduced);
HRESULT IMoniker_Reduce_Proxy(IMoniker *This, IBindCtx *pbc, DWORD dwReduceHowFar, IMoniker **ppmkToLeft, IMoniker **ppmkReduced);
//C void IMoniker_Reduce_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_Reduce_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_ComposeWith_Proxy(
//C IMoniker* This,
//C IMoniker *pmkRight,
//C WINBOOL fOnlyIfNotGeneric,
//C IMoniker **ppmkComposite);
HRESULT IMoniker_ComposeWith_Proxy(IMoniker *This, IMoniker *pmkRight, WINBOOL fOnlyIfNotGeneric, IMoniker **ppmkComposite);
//C void IMoniker_ComposeWith_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_ComposeWith_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_Enum_Proxy(
//C IMoniker* This,
//C WINBOOL fForward,
//C IEnumMoniker **ppenumMoniker);
HRESULT IMoniker_Enum_Proxy(IMoniker *This, WINBOOL fForward, IEnumMoniker **ppenumMoniker);
//C void IMoniker_Enum_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_Enum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_IsEqual_Proxy(
//C IMoniker* This,
//C IMoniker *pmkOtherMoniker);
HRESULT IMoniker_IsEqual_Proxy(IMoniker *This, IMoniker *pmkOtherMoniker);
//C void IMoniker_IsEqual_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_IsEqual_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_Hash_Proxy(
//C IMoniker* This,
//C DWORD *pdwHash);
HRESULT IMoniker_Hash_Proxy(IMoniker *This, DWORD *pdwHash);
//C void IMoniker_Hash_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_Hash_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_IsRunning_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C IMoniker *pmkNewlyRunning);
HRESULT IMoniker_IsRunning_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IMoniker *pmkNewlyRunning);
//C void IMoniker_IsRunning_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_IsRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_GetTimeOfLastChange_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C FILETIME *pFileTime);
HRESULT IMoniker_GetTimeOfLastChange_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, FILETIME *pFileTime);
//C void IMoniker_GetTimeOfLastChange_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_GetTimeOfLastChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_Inverse_Proxy(
//C IMoniker* This,
//C IMoniker **ppmk);
HRESULT IMoniker_Inverse_Proxy(IMoniker *This, IMoniker **ppmk);
//C void IMoniker_Inverse_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_Inverse_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_CommonPrefixWith_Proxy(
//C IMoniker* This,
//C IMoniker *pmkOther,
//C IMoniker **ppmkPrefix);
HRESULT IMoniker_CommonPrefixWith_Proxy(IMoniker *This, IMoniker *pmkOther, IMoniker **ppmkPrefix);
//C void IMoniker_CommonPrefixWith_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_CommonPrefixWith_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_RelativePathTo_Proxy(
//C IMoniker* This,
//C IMoniker *pmkOther,
//C IMoniker **ppmkRelPath);
HRESULT IMoniker_RelativePathTo_Proxy(IMoniker *This, IMoniker *pmkOther, IMoniker **ppmkRelPath);
//C void IMoniker_RelativePathTo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_RelativePathTo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_GetDisplayName_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C LPOLESTR *ppszDisplayName);
HRESULT IMoniker_GetDisplayName_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, LPOLESTR *ppszDisplayName);
//C void IMoniker_GetDisplayName_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_GetDisplayName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_ParseDisplayName_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C LPOLESTR pszDisplayName,
//C ULONG *pchEaten,
//C IMoniker **ppmkOut);
HRESULT IMoniker_ParseDisplayName_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut);
//C void IMoniker_ParseDisplayName_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_ParseDisplayName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_IsSystemMoniker_Proxy(
//C IMoniker* This,
//C DWORD *pdwMksys);
HRESULT IMoniker_IsSystemMoniker_Proxy(IMoniker *This, DWORD *pdwMksys);
//C void IMoniker_IsSystemMoniker_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IMoniker_IsSystemMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IMoniker_BindToObject_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riidResult,
//C void **ppvResult);
HRESULT IMoniker_BindToObject_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riidResult, void **ppvResult);
//C HRESULT IMoniker_BindToObject_Stub(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riidResult,
//C IUnknown **ppvResult);
HRESULT IMoniker_BindToObject_Stub(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riidResult, IUnknown **ppvResult);
//C HRESULT IMoniker_BindToStorage_Proxy(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riid,
//C void **ppvObj);
HRESULT IMoniker_BindToStorage_Proxy(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riid, void **ppvObj);
//C HRESULT IMoniker_BindToStorage_Stub(
//C IMoniker* This,
//C IBindCtx *pbc,
//C IMoniker *pmkToLeft,
//C const IID *const riid,
//C IUnknown **ppvObj);
HRESULT IMoniker_BindToStorage_Stub(IMoniker *This, IBindCtx *pbc, IMoniker *pmkToLeft, IID *riid, IUnknown **ppvObj);
//C typedef struct IROTDataVtbl {
//C HRESULT ( *QueryInterface)(IROTData *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IROTData *This);
//C ULONG ( *Release)(IROTData *This);
//C HRESULT ( *GetComparisonData)(IROTData *This,byte *pbData,ULONG cbMax,ULONG *pcbData);
//C } IROTDataVtbl;
struct IROTDataVtbl
{
HRESULT function(IROTData *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IROTData *This)AddRef;
ULONG function(IROTData *This)Release;
HRESULT function(IROTData *This, byte *pbData, ULONG cbMax, ULONG *pcbData)GetComparisonData;
}
//C struct IROTData {
//C struct IROTDataVtbl *lpVtbl;
//C };
struct IROTData
{
IROTDataVtbl *lpVtbl;
}
//C HRESULT IROTData_GetComparisonData_Proxy(IROTData *This,byte *pbData,ULONG cbMax,ULONG *pcbData);
HRESULT IROTData_GetComparisonData_Proxy(IROTData *This, byte *pbData, ULONG cbMax, ULONG *pcbData);
//C void IROTData_GetComparisonData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IROTData_GetComparisonData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumString *LPENUMSTRING;
alias IEnumString *LPENUMSTRING;
//C typedef struct IEnumStringVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumString* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumString* This);
//C ULONG ( *Release)(
//C IEnumString* This);
//C HRESULT ( *Next)(
//C IEnumString* This,
//C ULONG celt,
//C LPOLESTR *rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumString* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumString* This);
//C HRESULT ( *Clone)(
//C IEnumString* This,
//C IEnumString **ppenum);
//C } IEnumStringVtbl;
struct IEnumStringVtbl
{
HRESULT function(IEnumString *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumString *This)AddRef;
ULONG function(IEnumString *This)Release;
HRESULT function(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumString *This, ULONG celt)Skip;
HRESULT function(IEnumString *This)Reset;
HRESULT function(IEnumString *This, IEnumString **ppenum)Clone;
}
//C struct IEnumString {
//C IEnumStringVtbl* lpVtbl;
//C };
struct IEnumString
{
IEnumStringVtbl *lpVtbl;
}
//C HRESULT IEnumString_RemoteNext_Proxy(
//C IEnumString* This,
//C ULONG celt,
//C LPOLESTR *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumString_RemoteNext_Proxy(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched);
//C void IEnumString_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumString_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumString_Skip_Proxy(
//C IEnumString* This,
//C ULONG celt);
HRESULT IEnumString_Skip_Proxy(IEnumString *This, ULONG celt);
//C void IEnumString_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumString_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumString_Reset_Proxy(
//C IEnumString* This);
HRESULT IEnumString_Reset_Proxy(IEnumString *This);
//C void IEnumString_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumString_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumString_Clone_Proxy(
//C IEnumString* This,
//C IEnumString **ppenum);
HRESULT IEnumString_Clone_Proxy(IEnumString *This, IEnumString **ppenum);
//C void IEnumString_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumString_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumString_Next_Proxy(
//C IEnumString* This,
//C ULONG celt,
//C LPOLESTR *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumString_Next_Proxy(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumString_Next_Stub(
//C IEnumString* This,
//C ULONG celt,
//C LPOLESTR *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumString_Next_Stub(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched);
//C typedef struct ISequentialStreamVtbl {
//C HRESULT ( *QueryInterface)(
//C ISequentialStream* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C ISequentialStream* This);
//C ULONG ( *Release)(
//C ISequentialStream* This);
//C HRESULT ( *Read)(
//C ISequentialStream* This,
//C void *pv,
//C ULONG cb,
//C ULONG *pcbRead);
//C HRESULT ( *Write)(
//C ISequentialStream* This,
//C const void *pv,
//C ULONG cb,
//C ULONG *pcbWritten);
//C } ISequentialStreamVtbl;
struct ISequentialStreamVtbl
{
HRESULT function(ISequentialStream *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISequentialStream *This)AddRef;
ULONG function(ISequentialStream *This)Release;
HRESULT function(ISequentialStream *This, void *pv, ULONG cb, ULONG *pcbRead)Read;
HRESULT function(ISequentialStream *This, void *pv, ULONG cb, ULONG *pcbWritten)Write;
}
//C struct ISequentialStream {
//C ISequentialStreamVtbl* lpVtbl;
//C };
struct ISequentialStream
{
ISequentialStreamVtbl *lpVtbl;
}
//C HRESULT ISequentialStream_RemoteRead_Proxy(
//C ISequentialStream* This,
//C byte *pv,
//C ULONG cb,
//C ULONG *pcbRead);
HRESULT ISequentialStream_RemoteRead_Proxy(ISequentialStream *This, byte *pv, ULONG cb, ULONG *pcbRead);
//C void ISequentialStream_RemoteRead_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ISequentialStream_RemoteRead_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ISequentialStream_RemoteWrite_Proxy(
//C ISequentialStream* This,
//C const byte *pv,
//C ULONG cb,
//C ULONG *pcbWritten);
HRESULT ISequentialStream_RemoteWrite_Proxy(ISequentialStream *This, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void ISequentialStream_RemoteWrite_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ISequentialStream_RemoteWrite_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ISequentialStream_Read_Proxy(
//C ISequentialStream* This,
//C void *pv,
//C ULONG cb,
//C ULONG *pcbRead);
HRESULT ISequentialStream_Read_Proxy(ISequentialStream *This, void *pv, ULONG cb, ULONG *pcbRead);
//C HRESULT ISequentialStream_Read_Stub(
//C ISequentialStream* This,
//C byte *pv,
//C ULONG cb,
//C ULONG *pcbRead);
HRESULT ISequentialStream_Read_Stub(ISequentialStream *This, byte *pv, ULONG cb, ULONG *pcbRead);
//C HRESULT ISequentialStream_Write_Proxy(
//C ISequentialStream* This,
//C const void *pv,
//C ULONG cb,
//C ULONG *pcbWritten);
HRESULT ISequentialStream_Write_Proxy(ISequentialStream *This, void *pv, ULONG cb, ULONG *pcbWritten);
//C HRESULT ISequentialStream_Write_Stub(
//C ISequentialStream* This,
//C const byte *pv,
//C ULONG cb,
//C ULONG *pcbWritten);
HRESULT ISequentialStream_Write_Stub(ISequentialStream *This, byte *pv, ULONG cb, ULONG *pcbWritten);
//C typedef IStream *LPSTREAM;
alias IStream *LPSTREAM;
//C typedef struct tagSTATSTG {
//C LPOLESTR pwcsName;
//C DWORD type;
//C ULARGE_INTEGER cbSize;
//C FILETIME mtime;
//C FILETIME ctime;
//C FILETIME atime;
//C DWORD grfMode;
//C DWORD grfLocksSupported;
//C CLSID clsid;
//C DWORD grfStateBits;
//C DWORD reserved;
//C } STATSTG;
struct tagSTATSTG
{
LPOLESTR pwcsName;
DWORD type;
ULARGE_INTEGER cbSize;
FILETIME mtime;
FILETIME ctime;
FILETIME atime;
DWORD grfMode;
DWORD grfLocksSupported;
CLSID clsid;
DWORD grfStateBits;
DWORD reserved;
}
alias tagSTATSTG STATSTG;
//C typedef enum tagSTGTY {
//C STGTY_STORAGE = 1,
//C STGTY_STREAM = 2,
//C STGTY_LOCKBYTES = 3,
//C STGTY_PROPERTY = 4
//C } STGTY;
enum tagSTGTY
{
STGTY_STORAGE = 1,
STGTY_STREAM,
STGTY_LOCKBYTES,
STGTY_PROPERTY,
}
alias tagSTGTY STGTY;
//C typedef enum tagSTREAM_SEEK {
//C STREAM_SEEK_SET = 0,
//C STREAM_SEEK_CUR = 1,
//C STREAM_SEEK_END = 2
//C } STREAM_SEEK;
enum tagSTREAM_SEEK
{
STREAM_SEEK_SET,
STREAM_SEEK_CUR,
STREAM_SEEK_END,
}
alias tagSTREAM_SEEK STREAM_SEEK;
//C typedef enum tagLOCKTYPE {
//C LOCK_WRITE = 1,
//C LOCK_EXCLUSIVE = 2,
//C LOCK_ONLYONCE = 4
//C } LOCKTYPE;
enum tagLOCKTYPE
{
LOCK_WRITE = 1,
LOCK_EXCLUSIVE,
LOCK_ONLYONCE = 4,
}
alias tagLOCKTYPE LOCKTYPE;
//C typedef struct IStreamVtbl {
//C HRESULT ( *QueryInterface)(
//C IStream* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IStream* This);
//C ULONG ( *Release)(
//C IStream* This);
//C HRESULT ( *Read)(
//C IStream* This,
//C void *pv,
//C ULONG cb,
//C ULONG *pcbRead);
//C HRESULT ( *Write)(
//C IStream* This,
//C const void *pv,
//C ULONG cb,
//C ULONG *pcbWritten);
//C HRESULT ( *Seek)(
//C IStream* This,
//C LARGE_INTEGER dlibMove,
//C DWORD dwOrigin,
//C ULARGE_INTEGER *plibNewPosition);
//C HRESULT ( *SetSize)(
//C IStream* This,
//C ULARGE_INTEGER libNewSize);
//C HRESULT ( *CopyTo)(
//C IStream* This,
//C IStream *pstm,
//C ULARGE_INTEGER cb,
//C ULARGE_INTEGER *pcbRead,
//C ULARGE_INTEGER *pcbWritten);
//C HRESULT ( *Commit)(
//C IStream* This,
//C DWORD grfCommitFlags);
//C HRESULT ( *Revert)(
//C IStream* This);
//C HRESULT ( *LockRegion)(
//C IStream* This,
//C ULARGE_INTEGER libOffset,
//C ULARGE_INTEGER cb,
//C DWORD dwLockType);
//C HRESULT ( *UnlockRegion)(
//C IStream* This,
//C ULARGE_INTEGER libOffset,
//C ULARGE_INTEGER cb,
//C DWORD dwLockType);
//C HRESULT ( *Stat)(
//C IStream* This,
//C STATSTG *pstatstg,
//C DWORD grfStatFlag);
//C HRESULT ( *Clone)(
//C IStream* This,
//C IStream **ppstm);
//C } IStreamVtbl;
struct IStreamVtbl
{
HRESULT function(IStream *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IStream *This)AddRef;
ULONG function(IStream *This)Release;
HRESULT function(IStream *This, void *pv, ULONG cb, ULONG *pcbRead)Read;
HRESULT function(IStream *This, void *pv, ULONG cb, ULONG *pcbWritten)Write;
HRESULT function(IStream *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)Seek;
HRESULT function(IStream *This, ULARGE_INTEGER libNewSize)SetSize;
HRESULT function(IStream *This, IStream *pstm, ULARGE_INTEGER cb, ULARGE_INTEGER *pcbRead, ULARGE_INTEGER *pcbWritten)CopyTo;
HRESULT function(IStream *This, DWORD grfCommitFlags)Commit;
HRESULT function(IStream *This)Revert;
HRESULT function(IStream *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)LockRegion;
HRESULT function(IStream *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)UnlockRegion;
HRESULT function(IStream *This, STATSTG *pstatstg, DWORD grfStatFlag)Stat;
HRESULT function(IStream *This, IStream **ppstm)Clone;
}
//C struct IStream {
//C IStreamVtbl* lpVtbl;
//C };
struct IStream
{
IStreamVtbl *lpVtbl;
}
//C HRESULT IStream_RemoteSeek_Proxy(
//C IStream* This,
//C LARGE_INTEGER dlibMove,
//C DWORD dwOrigin,
//C ULARGE_INTEGER *plibNewPosition);
HRESULT IStream_RemoteSeek_Proxy(IStream *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition);
//C void IStream_RemoteSeek_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_RemoteSeek_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_SetSize_Proxy(
//C IStream* This,
//C ULARGE_INTEGER libNewSize);
HRESULT IStream_SetSize_Proxy(IStream *This, ULARGE_INTEGER libNewSize);
//C void IStream_SetSize_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_SetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_RemoteCopyTo_Proxy(
//C IStream* This,
//C IStream *pstm,
//C ULARGE_INTEGER cb,
//C ULARGE_INTEGER *pcbRead,
//C ULARGE_INTEGER *pcbWritten);
HRESULT IStream_RemoteCopyTo_Proxy(IStream *This, IStream *pstm, ULARGE_INTEGER cb, ULARGE_INTEGER *pcbRead, ULARGE_INTEGER *pcbWritten);
//C void IStream_RemoteCopyTo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_RemoteCopyTo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_Commit_Proxy(
//C IStream* This,
//C DWORD grfCommitFlags);
HRESULT IStream_Commit_Proxy(IStream *This, DWORD grfCommitFlags);
//C void IStream_Commit_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_Commit_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_Revert_Proxy(
//C IStream* This);
HRESULT IStream_Revert_Proxy(IStream *This);
//C void IStream_Revert_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_Revert_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_LockRegion_Proxy(
//C IStream* This,
//C ULARGE_INTEGER libOffset,
//C ULARGE_INTEGER cb,
//C DWORD dwLockType);
HRESULT IStream_LockRegion_Proxy(IStream *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
//C void IStream_LockRegion_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_LockRegion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_UnlockRegion_Proxy(
//C IStream* This,
//C ULARGE_INTEGER libOffset,
//C ULARGE_INTEGER cb,
//C DWORD dwLockType);
HRESULT IStream_UnlockRegion_Proxy(IStream *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
//C void IStream_UnlockRegion_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_UnlockRegion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_Stat_Proxy(
//C IStream* This,
//C STATSTG *pstatstg,
//C DWORD grfStatFlag);
HRESULT IStream_Stat_Proxy(IStream *This, STATSTG *pstatstg, DWORD grfStatFlag);
//C void IStream_Stat_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_Stat_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_Clone_Proxy(
//C IStream* This,
//C IStream **ppstm);
HRESULT IStream_Clone_Proxy(IStream *This, IStream **ppstm);
//C void IStream_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStream_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStream_Seek_Proxy(
//C IStream* This,
//C LARGE_INTEGER dlibMove,
//C DWORD dwOrigin,
//C ULARGE_INTEGER *plibNewPosition);
HRESULT IStream_Seek_Proxy(IStream *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition);
//C HRESULT IStream_Seek_Stub(
//C IStream* This,
//C LARGE_INTEGER dlibMove,
//C DWORD dwOrigin,
//C ULARGE_INTEGER *plibNewPosition);
HRESULT IStream_Seek_Stub(IStream *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition);
//C HRESULT IStream_CopyTo_Proxy(
//C IStream* This,
//C IStream *pstm,
//C ULARGE_INTEGER cb,
//C ULARGE_INTEGER *pcbRead,
//C ULARGE_INTEGER *pcbWritten);
HRESULT IStream_CopyTo_Proxy(IStream *This, IStream *pstm, ULARGE_INTEGER cb, ULARGE_INTEGER *pcbRead, ULARGE_INTEGER *pcbWritten);
//C HRESULT IStream_CopyTo_Stub(
//C IStream* This,
//C IStream *pstm,
//C ULARGE_INTEGER cb,
//C ULARGE_INTEGER *pcbRead,
//C ULARGE_INTEGER *pcbWritten);
HRESULT IStream_CopyTo_Stub(IStream *This, IStream *pstm, ULARGE_INTEGER cb, ULARGE_INTEGER *pcbRead, ULARGE_INTEGER *pcbWritten);
//C typedef IEnumSTATSTG *LPENUMSTATSTG;
alias IEnumSTATSTG *LPENUMSTATSTG;
//C typedef struct IEnumSTATSTGVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumSTATSTG* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumSTATSTG* This);
//C ULONG ( *Release)(
//C IEnumSTATSTG* This);
//C HRESULT ( *Next)(
//C IEnumSTATSTG* This,
//C ULONG celt,
//C STATSTG *rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumSTATSTG* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumSTATSTG* This);
//C HRESULT ( *Clone)(
//C IEnumSTATSTG* This,
//C IEnumSTATSTG **ppenum);
//C } IEnumSTATSTGVtbl;
struct IEnumSTATSTGVtbl
{
HRESULT function(IEnumSTATSTG *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumSTATSTG *This)AddRef;
ULONG function(IEnumSTATSTG *This)Release;
HRESULT function(IEnumSTATSTG *This, ULONG celt, STATSTG *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumSTATSTG *This, ULONG celt)Skip;
HRESULT function(IEnumSTATSTG *This)Reset;
HRESULT function(IEnumSTATSTG *This, IEnumSTATSTG **ppenum)Clone;
}
//C struct IEnumSTATSTG {
//C IEnumSTATSTGVtbl* lpVtbl;
//C };
struct IEnumSTATSTG
{
IEnumSTATSTGVtbl *lpVtbl;
}
//C HRESULT IEnumSTATSTG_RemoteNext_Proxy(
//C IEnumSTATSTG* This,
//C ULONG celt,
//C STATSTG *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATSTG_RemoteNext_Proxy(IEnumSTATSTG *This, ULONG celt, STATSTG *rgelt, ULONG *pceltFetched);
//C void IEnumSTATSTG_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATSTG_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATSTG_Skip_Proxy(
//C IEnumSTATSTG* This,
//C ULONG celt);
HRESULT IEnumSTATSTG_Skip_Proxy(IEnumSTATSTG *This, ULONG celt);
//C void IEnumSTATSTG_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATSTG_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATSTG_Reset_Proxy(
//C IEnumSTATSTG* This);
HRESULT IEnumSTATSTG_Reset_Proxy(IEnumSTATSTG *This);
//C void IEnumSTATSTG_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATSTG_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATSTG_Clone_Proxy(
//C IEnumSTATSTG* This,
//C IEnumSTATSTG **ppenum);
HRESULT IEnumSTATSTG_Clone_Proxy(IEnumSTATSTG *This, IEnumSTATSTG **ppenum);
//C void IEnumSTATSTG_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATSTG_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATSTG_Next_Proxy(
//C IEnumSTATSTG* This,
//C ULONG celt,
//C STATSTG *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATSTG_Next_Proxy(IEnumSTATSTG *This, ULONG celt, STATSTG *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumSTATSTG_Next_Stub(
//C IEnumSTATSTG* This,
//C ULONG celt,
//C STATSTG *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATSTG_Next_Stub(IEnumSTATSTG *This, ULONG celt, STATSTG *rgelt, ULONG *pceltFetched);
//C typedef IStorage *LPSTORAGE;
alias IStorage *LPSTORAGE;
//C typedef struct tagRemSNB {
//C ULONG ulCntStr;
//C ULONG ulCntChar;
//C OLECHAR rgString[1];
//C } RemSNB;
struct tagRemSNB
{
ULONG ulCntStr;
ULONG ulCntChar;
OLECHAR [1]rgString;
}
alias tagRemSNB RemSNB;
//C typedef RemSNB *wireSNB;
alias RemSNB *wireSNB;
//C typedef OLECHAR **SNB;
alias OLECHAR **SNB;
//C typedef struct IStorageVtbl {
//C HRESULT ( *QueryInterface)(
//C IStorage* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IStorage* This);
//C ULONG ( *Release)(
//C IStorage* This);
//C HRESULT ( *CreateStream)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C DWORD grfMode,
//C DWORD reserved1,
//C DWORD reserved2,
//C IStream **ppstm);
//C HRESULT ( *OpenStream)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C void *reserved1,
//C DWORD grfMode,
//C DWORD reserved2,
//C IStream **ppstm);
//C HRESULT ( *CreateStorage)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C DWORD grfMode,
//C DWORD dwStgFmt,
//C DWORD reserved2,
//C IStorage **ppstg);
//C HRESULT ( *OpenStorage)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C IStorage *pstgPriority,
//C DWORD grfMode,
//C SNB snbExclude,
//C DWORD reserved,
//C IStorage **ppstg);
//C HRESULT ( *CopyTo)(
//C IStorage* This,
//C DWORD ciidExclude,
//C const IID *rgiidExclude,
//C SNB snbExclude,
//C IStorage *pstgDest);
//C HRESULT ( *MoveElementTo)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C IStorage *pstgDest,
//C LPCOLESTR pwcsNewName,
//C DWORD grfFlags);
//C HRESULT ( *Commit)(
//C IStorage* This,
//C DWORD grfCommitFlags);
//C HRESULT ( *Revert)(
//C IStorage* This);
//C HRESULT ( *EnumElements)(
//C IStorage* This,
//C DWORD reserved1,
//C void *reserved2,
//C DWORD reserved3,
//C IEnumSTATSTG **ppenum);
//C HRESULT ( *DestroyElement)(
//C IStorage* This,
//C LPCOLESTR pwcsName);
//C HRESULT ( *RenameElement)(
//C IStorage* This,
//C LPCOLESTR pwcsOldName,
//C LPCOLESTR pwcsNewName);
//C HRESULT ( *SetElementTimes)(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C const FILETIME *pctime,
//C const FILETIME *patime,
//C const FILETIME *pmtime);
//C HRESULT ( *SetClass)(
//C IStorage* This,
//C const IID *const clsid);
//C HRESULT ( *SetStateBits)(
//C IStorage* This,
//C DWORD grfStateBits,
//C DWORD grfMask);
//C HRESULT ( *Stat)(
//C IStorage* This,
//C STATSTG *pstatstg,
//C DWORD grfStatFlag);
//C } IStorageVtbl;
struct IStorageVtbl
{
HRESULT function(IStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IStorage *This)AddRef;
ULONG function(IStorage *This)Release;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, DWORD grfMode, DWORD reserved1, DWORD reserved2, IStream **ppstm)CreateStream;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, void *reserved1, DWORD grfMode, DWORD reserved2, IStream **ppstm)OpenStream;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, DWORD grfMode, DWORD dwStgFmt, DWORD reserved2, IStorage **ppstg)CreateStorage;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, IStorage *pstgPriority, DWORD grfMode, SNB snbExclude, DWORD reserved, IStorage **ppstg)OpenStorage;
HRESULT function(IStorage *This, DWORD ciidExclude, IID *rgiidExclude, SNB snbExclude, IStorage *pstgDest)CopyTo;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, IStorage *pstgDest, LPCOLESTR pwcsNewName, DWORD grfFlags)MoveElementTo;
HRESULT function(IStorage *This, DWORD grfCommitFlags)Commit;
HRESULT function(IStorage *This)Revert;
HRESULT function(IStorage *This, DWORD reserved1, void *reserved2, DWORD reserved3, IEnumSTATSTG **ppenum)EnumElements;
HRESULT function(IStorage *This, LPCOLESTR pwcsName)DestroyElement;
HRESULT function(IStorage *This, LPCOLESTR pwcsOldName, LPCOLESTR pwcsNewName)RenameElement;
HRESULT function(IStorage *This, LPCOLESTR pwcsName, FILETIME *pctime, FILETIME *patime, FILETIME *pmtime)SetElementTimes;
HRESULT function(IStorage *This, IID *clsid)SetClass;
HRESULT function(IStorage *This, DWORD grfStateBits, DWORD grfMask)SetStateBits;
HRESULT function(IStorage *This, STATSTG *pstatstg, DWORD grfStatFlag)Stat;
}
//C struct IStorage {
//C IStorageVtbl* lpVtbl;
//C };
struct IStorage
{
IStorageVtbl *lpVtbl;
}
//C HRESULT IStorage_CreateStream_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C DWORD grfMode,
//C DWORD reserved1,
//C DWORD reserved2,
//C IStream **ppstm);
HRESULT IStorage_CreateStream_Proxy(IStorage *This, LPCOLESTR pwcsName, DWORD grfMode, DWORD reserved1, DWORD reserved2, IStream **ppstm);
//C void IStorage_CreateStream_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_CreateStream_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_RemoteOpenStream_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C ULONG cbReserved1,
//C byte *reserved1,
//C DWORD grfMode,
//C DWORD reserved2,
//C IStream **ppstm);
HRESULT IStorage_RemoteOpenStream_Proxy(IStorage *This, LPCOLESTR pwcsName, ULONG cbReserved1, byte *reserved1, DWORD grfMode, DWORD reserved2, IStream **ppstm);
//C void IStorage_RemoteOpenStream_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_RemoteOpenStream_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_CreateStorage_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C DWORD grfMode,
//C DWORD dwStgFmt,
//C DWORD reserved2,
//C IStorage **ppstg);
HRESULT IStorage_CreateStorage_Proxy(IStorage *This, LPCOLESTR pwcsName, DWORD grfMode, DWORD dwStgFmt, DWORD reserved2, IStorage **ppstg);
//C void IStorage_CreateStorage_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_CreateStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_OpenStorage_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C IStorage *pstgPriority,
//C DWORD grfMode,
//C SNB snbExclude,
//C DWORD reserved,
//C IStorage **ppstg);
HRESULT IStorage_OpenStorage_Proxy(IStorage *This, LPCOLESTR pwcsName, IStorage *pstgPriority, DWORD grfMode, SNB snbExclude, DWORD reserved, IStorage **ppstg);
//C void IStorage_OpenStorage_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_OpenStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_CopyTo_Proxy(
//C IStorage* This,
//C DWORD ciidExclude,
//C const IID *rgiidExclude,
//C SNB snbExclude,
//C IStorage *pstgDest);
HRESULT IStorage_CopyTo_Proxy(IStorage *This, DWORD ciidExclude, IID *rgiidExclude, SNB snbExclude, IStorage *pstgDest);
//C void IStorage_CopyTo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_CopyTo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_MoveElementTo_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C IStorage *pstgDest,
//C LPCOLESTR pwcsNewName,
//C DWORD grfFlags);
HRESULT IStorage_MoveElementTo_Proxy(IStorage *This, LPCOLESTR pwcsName, IStorage *pstgDest, LPCOLESTR pwcsNewName, DWORD grfFlags);
//C void IStorage_MoveElementTo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_MoveElementTo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_Commit_Proxy(
//C IStorage* This,
//C DWORD grfCommitFlags);
HRESULT IStorage_Commit_Proxy(IStorage *This, DWORD grfCommitFlags);
//C void IStorage_Commit_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_Commit_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_Revert_Proxy(
//C IStorage* This);
HRESULT IStorage_Revert_Proxy(IStorage *This);
//C void IStorage_Revert_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_Revert_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_RemoteEnumElements_Proxy(
//C IStorage* This,
//C DWORD reserved1,
//C ULONG cbReserved2,
//C byte *reserved2,
//C DWORD reserved3,
//C IEnumSTATSTG **ppenum);
HRESULT IStorage_RemoteEnumElements_Proxy(IStorage *This, DWORD reserved1, ULONG cbReserved2, byte *reserved2, DWORD reserved3, IEnumSTATSTG **ppenum);
//C void IStorage_RemoteEnumElements_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_RemoteEnumElements_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_DestroyElement_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName);
HRESULT IStorage_DestroyElement_Proxy(IStorage *This, LPCOLESTR pwcsName);
//C void IStorage_DestroyElement_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_DestroyElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_RenameElement_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsOldName,
//C LPCOLESTR pwcsNewName);
HRESULT IStorage_RenameElement_Proxy(IStorage *This, LPCOLESTR pwcsOldName, LPCOLESTR pwcsNewName);
//C void IStorage_RenameElement_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_RenameElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_SetElementTimes_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C const FILETIME *pctime,
//C const FILETIME *patime,
//C const FILETIME *pmtime);
HRESULT IStorage_SetElementTimes_Proxy(IStorage *This, LPCOLESTR pwcsName, FILETIME *pctime, FILETIME *patime, FILETIME *pmtime);
//C void IStorage_SetElementTimes_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_SetElementTimes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_SetClass_Proxy(
//C IStorage* This,
//C const IID *const clsid);
HRESULT IStorage_SetClass_Proxy(IStorage *This, IID *clsid);
//C void IStorage_SetClass_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_SetClass_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_SetStateBits_Proxy(
//C IStorage* This,
//C DWORD grfStateBits,
//C DWORD grfMask);
HRESULT IStorage_SetStateBits_Proxy(IStorage *This, DWORD grfStateBits, DWORD grfMask);
//C void IStorage_SetStateBits_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_SetStateBits_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_Stat_Proxy(
//C IStorage* This,
//C STATSTG *pstatstg,
//C DWORD grfStatFlag);
HRESULT IStorage_Stat_Proxy(IStorage *This, STATSTG *pstatstg, DWORD grfStatFlag);
//C void IStorage_Stat_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IStorage_Stat_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IStorage_OpenStream_Proxy(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C void *reserved1,
//C DWORD grfMode,
//C DWORD reserved2,
//C IStream **ppstm);
HRESULT IStorage_OpenStream_Proxy(IStorage *This, LPCOLESTR pwcsName, void *reserved1, DWORD grfMode, DWORD reserved2, IStream **ppstm);
//C HRESULT IStorage_OpenStream_Stub(
//C IStorage* This,
//C LPCOLESTR pwcsName,
//C ULONG cbReserved1,
//C byte *reserved1,
//C DWORD grfMode,
//C DWORD reserved2,
//C IStream **ppstm);
HRESULT IStorage_OpenStream_Stub(IStorage *This, LPCOLESTR pwcsName, ULONG cbReserved1, byte *reserved1, DWORD grfMode, DWORD reserved2, IStream **ppstm);
//C HRESULT IStorage_EnumElements_Proxy(
//C IStorage* This,
//C DWORD reserved1,
//C void *reserved2,
//C DWORD reserved3,
//C IEnumSTATSTG **ppenum);
HRESULT IStorage_EnumElements_Proxy(IStorage *This, DWORD reserved1, void *reserved2, DWORD reserved3, IEnumSTATSTG **ppenum);
//C HRESULT IStorage_EnumElements_Stub(
//C IStorage* This,
//C DWORD reserved1,
//C ULONG cbReserved2,
//C byte *reserved2,
//C DWORD reserved3,
//C IEnumSTATSTG **ppenum);
HRESULT IStorage_EnumElements_Stub(IStorage *This, DWORD reserved1, ULONG cbReserved2, byte *reserved2, DWORD reserved3, IEnumSTATSTG **ppenum);
//C typedef IPersistFile *LPPERSISTFILE;
alias IPersistFile *LPPERSISTFILE;
//C typedef struct IPersistFileVtbl {
//C HRESULT ( *QueryInterface)(IPersistFile *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPersistFile *This);
//C ULONG ( *Release)(IPersistFile *This);
//C HRESULT ( *GetClassID)(IPersistFile *This,CLSID *pClassID);
//C HRESULT ( *IsDirty)(IPersistFile *This);
//C HRESULT ( *Load)(IPersistFile *This,LPCOLESTR pszFileName,DWORD dwMode);
//C HRESULT ( *Save)(IPersistFile *This,LPCOLESTR pszFileName,WINBOOL fRemember);
//C HRESULT ( *SaveCompleted)(IPersistFile *This,LPCOLESTR pszFileName);
//C HRESULT ( *GetCurFile)(IPersistFile *This,LPOLESTR *ppszFileName);
//C } IPersistFileVtbl;
struct IPersistFileVtbl
{
HRESULT function(IPersistFile *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPersistFile *This)AddRef;
ULONG function(IPersistFile *This)Release;
HRESULT function(IPersistFile *This, CLSID *pClassID)GetClassID;
HRESULT function(IPersistFile *This)IsDirty;
HRESULT function(IPersistFile *This, LPCOLESTR pszFileName, DWORD dwMode)Load;
HRESULT function(IPersistFile *This, LPCOLESTR pszFileName, WINBOOL fRemember)Save;
HRESULT function(IPersistFile *This, LPCOLESTR pszFileName)SaveCompleted;
HRESULT function(IPersistFile *This, LPOLESTR *ppszFileName)GetCurFile;
}
//C struct IPersistFile {
//C struct IPersistFileVtbl *lpVtbl;
//C };
struct IPersistFile
{
IPersistFileVtbl *lpVtbl;
}
//C HRESULT IPersistFile_IsDirty_Proxy(IPersistFile *This);
HRESULT IPersistFile_IsDirty_Proxy(IPersistFile *This);
//C void IPersistFile_IsDirty_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistFile_IsDirty_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistFile_Load_Proxy(IPersistFile *This,LPCOLESTR pszFileName,DWORD dwMode);
HRESULT IPersistFile_Load_Proxy(IPersistFile *This, LPCOLESTR pszFileName, DWORD dwMode);
//C void IPersistFile_Load_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistFile_Load_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistFile_Save_Proxy(IPersistFile *This,LPCOLESTR pszFileName,WINBOOL fRemember);
HRESULT IPersistFile_Save_Proxy(IPersistFile *This, LPCOLESTR pszFileName, WINBOOL fRemember);
//C void IPersistFile_Save_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistFile_Save_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistFile_SaveCompleted_Proxy(IPersistFile *This,LPCOLESTR pszFileName);
HRESULT IPersistFile_SaveCompleted_Proxy(IPersistFile *This, LPCOLESTR pszFileName);
//C void IPersistFile_SaveCompleted_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistFile_SaveCompleted_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistFile_GetCurFile_Proxy(IPersistFile *This,LPOLESTR *ppszFileName);
HRESULT IPersistFile_GetCurFile_Proxy(IPersistFile *This, LPOLESTR *ppszFileName);
//C void IPersistFile_GetCurFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistFile_GetCurFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IPersistStorage *LPPERSISTSTORAGE;
alias IPersistStorage *LPPERSISTSTORAGE;
//C typedef struct IPersistStorageVtbl {
//C HRESULT ( *QueryInterface)(IPersistStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPersistStorage *This);
//C ULONG ( *Release)(IPersistStorage *This);
//C HRESULT ( *GetClassID)(IPersistStorage *This,CLSID *pClassID);
//C HRESULT ( *IsDirty)(IPersistStorage *This);
//C HRESULT ( *InitNew)(IPersistStorage *This,IStorage *pStg);
//C HRESULT ( *Load)(IPersistStorage *This,IStorage *pStg);
//C HRESULT ( *Save)(IPersistStorage *This,IStorage *pStgSave,WINBOOL fSameAsLoad);
//C HRESULT ( *SaveCompleted)(IPersistStorage *This,IStorage *pStgNew);
//C HRESULT ( *HandsOffStorage)(IPersistStorage *This);
//C } IPersistStorageVtbl;
struct IPersistStorageVtbl
{
HRESULT function(IPersistStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPersistStorage *This)AddRef;
ULONG function(IPersistStorage *This)Release;
HRESULT function(IPersistStorage *This, CLSID *pClassID)GetClassID;
HRESULT function(IPersistStorage *This)IsDirty;
HRESULT function(IPersistStorage *This, IStorage *pStg)InitNew;
HRESULT function(IPersistStorage *This, IStorage *pStg)Load;
HRESULT function(IPersistStorage *This, IStorage *pStgSave, WINBOOL fSameAsLoad)Save;
HRESULT function(IPersistStorage *This, IStorage *pStgNew)SaveCompleted;
HRESULT function(IPersistStorage *This)HandsOffStorage;
}
//C struct IPersistStorage {
//C struct IPersistStorageVtbl *lpVtbl;
//C };
struct IPersistStorage
{
IPersistStorageVtbl *lpVtbl;
}
//C HRESULT IPersistStorage_IsDirty_Proxy(IPersistStorage *This);
HRESULT IPersistStorage_IsDirty_Proxy(IPersistStorage *This);
//C void IPersistStorage_IsDirty_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_IsDirty_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistStorage_InitNew_Proxy(IPersistStorage *This,IStorage *pStg);
HRESULT IPersistStorage_InitNew_Proxy(IPersistStorage *This, IStorage *pStg);
//C void IPersistStorage_InitNew_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_InitNew_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistStorage_Load_Proxy(IPersistStorage *This,IStorage *pStg);
HRESULT IPersistStorage_Load_Proxy(IPersistStorage *This, IStorage *pStg);
//C void IPersistStorage_Load_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_Load_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistStorage_Save_Proxy(IPersistStorage *This,IStorage *pStgSave,WINBOOL fSameAsLoad);
HRESULT IPersistStorage_Save_Proxy(IPersistStorage *This, IStorage *pStgSave, WINBOOL fSameAsLoad);
//C void IPersistStorage_Save_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_Save_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistStorage_SaveCompleted_Proxy(IPersistStorage *This,IStorage *pStgNew);
HRESULT IPersistStorage_SaveCompleted_Proxy(IPersistStorage *This, IStorage *pStgNew);
//C void IPersistStorage_SaveCompleted_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_SaveCompleted_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistStorage_HandsOffStorage_Proxy(IPersistStorage *This);
HRESULT IPersistStorage_HandsOffStorage_Proxy(IPersistStorage *This);
//C void IPersistStorage_HandsOffStorage_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistStorage_HandsOffStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ILockBytes *LPLOCKBYTES;
alias ILockBytes *LPLOCKBYTES;
//C typedef struct ILockBytesVtbl {
//C HRESULT ( *QueryInterface)(ILockBytes *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ILockBytes *This);
//C ULONG ( *Release)(ILockBytes *This);
//C HRESULT ( *ReadAt)(ILockBytes *This,ULARGE_INTEGER ulOffset,void *pv,ULONG cb,ULONG *pcbRead);
//C HRESULT ( *WriteAt)(ILockBytes *This,ULARGE_INTEGER ulOffset,const void *pv,ULONG cb,ULONG *pcbWritten);
//C HRESULT ( *Flush)(ILockBytes *This);
//C HRESULT ( *SetSize)(ILockBytes *This,ULARGE_INTEGER cb);
//C HRESULT ( *LockRegion)(ILockBytes *This,ULARGE_INTEGER libOffset,ULARGE_INTEGER cb,DWORD dwLockType);
//C HRESULT ( *UnlockRegion)(ILockBytes *This,ULARGE_INTEGER libOffset,ULARGE_INTEGER cb,DWORD dwLockType);
//C HRESULT ( *Stat)(ILockBytes *This,STATSTG *pstatstg,DWORD grfStatFlag);
//C } ILockBytesVtbl;
struct ILockBytesVtbl
{
HRESULT function(ILockBytes *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ILockBytes *This)AddRef;
ULONG function(ILockBytes *This)Release;
HRESULT function(ILockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbRead)ReadAt;
HRESULT function(ILockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbWritten)WriteAt;
HRESULT function(ILockBytes *This)Flush;
HRESULT function(ILockBytes *This, ULARGE_INTEGER cb)SetSize;
HRESULT function(ILockBytes *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)LockRegion;
HRESULT function(ILockBytes *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)UnlockRegion;
HRESULT function(ILockBytes *This, STATSTG *pstatstg, DWORD grfStatFlag)Stat;
}
//C struct ILockBytes {
//C struct ILockBytesVtbl *lpVtbl;
//C };
struct ILockBytes
{
ILockBytesVtbl *lpVtbl;
}
//C HRESULT ILockBytes_RemoteReadAt_Proxy(ILockBytes *This,ULARGE_INTEGER ulOffset,byte *pv,ULONG cb,ULONG *pcbRead);
HRESULT ILockBytes_RemoteReadAt_Proxy(ILockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbRead);
//C void ILockBytes_RemoteReadAt_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_RemoteReadAt_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_RemoteWriteAt_Proxy(ILockBytes *This,ULARGE_INTEGER ulOffset,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT ILockBytes_RemoteWriteAt_Proxy(ILockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void ILockBytes_RemoteWriteAt_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_RemoteWriteAt_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_Flush_Proxy(ILockBytes *This);
HRESULT ILockBytes_Flush_Proxy(ILockBytes *This);
//C void ILockBytes_Flush_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_Flush_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_SetSize_Proxy(ILockBytes *This,ULARGE_INTEGER cb);
HRESULT ILockBytes_SetSize_Proxy(ILockBytes *This, ULARGE_INTEGER cb);
//C void ILockBytes_SetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_SetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_LockRegion_Proxy(ILockBytes *This,ULARGE_INTEGER libOffset,ULARGE_INTEGER cb,DWORD dwLockType);
HRESULT ILockBytes_LockRegion_Proxy(ILockBytes *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
//C void ILockBytes_LockRegion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_LockRegion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_UnlockRegion_Proxy(ILockBytes *This,ULARGE_INTEGER libOffset,ULARGE_INTEGER cb,DWORD dwLockType);
HRESULT ILockBytes_UnlockRegion_Proxy(ILockBytes *This, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
//C void ILockBytes_UnlockRegion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_UnlockRegion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILockBytes_Stat_Proxy(ILockBytes *This,STATSTG *pstatstg,DWORD grfStatFlag);
HRESULT ILockBytes_Stat_Proxy(ILockBytes *This, STATSTG *pstatstg, DWORD grfStatFlag);
//C void ILockBytes_Stat_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILockBytes_Stat_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumFORMATETC *LPENUMFORMATETC;
alias IEnumFORMATETC *LPENUMFORMATETC;
//C typedef struct tagDVTARGETDEVICE {
//C DWORD tdSize;
//C WORD tdDriverNameOffset;
//C WORD tdDeviceNameOffset;
//C WORD tdPortNameOffset;
//C WORD tdExtDevmodeOffset;
//C BYTE tdData[1];
//C } DVTARGETDEVICE;
struct tagDVTARGETDEVICE
{
DWORD tdSize;
WORD tdDriverNameOffset;
WORD tdDeviceNameOffset;
WORD tdPortNameOffset;
WORD tdExtDevmodeOffset;
BYTE [1]tdData;
}
alias tagDVTARGETDEVICE DVTARGETDEVICE;
//C typedef CLIPFORMAT *LPCLIPFORMAT;
alias CLIPFORMAT *LPCLIPFORMAT;
//C typedef struct tagFORMATETC {
//C CLIPFORMAT cfFormat;
//C DVTARGETDEVICE *ptd;
//C DWORD dwAspect;
//C LONG lindex;
//C DWORD tymed;
//C } FORMATETC;
struct tagFORMATETC
{
CLIPFORMAT cfFormat;
DVTARGETDEVICE *ptd;
DWORD dwAspect;
LONG lindex;
DWORD tymed;
}
alias tagFORMATETC FORMATETC;
//C typedef struct tagFORMATETC *LPFORMATETC;
alias tagFORMATETC *LPFORMATETC;
//C typedef struct IEnumFORMATETCVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumFORMATETC* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumFORMATETC* This);
//C ULONG ( *Release)(
//C IEnumFORMATETC* This);
//C HRESULT ( *Next)(
//C IEnumFORMATETC* This,
//C ULONG celt,
//C FORMATETC *rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumFORMATETC* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumFORMATETC* This);
//C HRESULT ( *Clone)(
//C IEnumFORMATETC* This,
//C IEnumFORMATETC **ppenum);
//C } IEnumFORMATETCVtbl;
struct IEnumFORMATETCVtbl
{
HRESULT function(IEnumFORMATETC *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumFORMATETC *This)AddRef;
ULONG function(IEnumFORMATETC *This)Release;
HRESULT function(IEnumFORMATETC *This, ULONG celt, FORMATETC *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumFORMATETC *This, ULONG celt)Skip;
HRESULT function(IEnumFORMATETC *This)Reset;
HRESULT function(IEnumFORMATETC *This, IEnumFORMATETC **ppenum)Clone;
}
//C struct IEnumFORMATETC {
//C IEnumFORMATETCVtbl* lpVtbl;
//C };
struct IEnumFORMATETC
{
IEnumFORMATETCVtbl *lpVtbl;
}
//C HRESULT IEnumFORMATETC_RemoteNext_Proxy(
//C IEnumFORMATETC* This,
//C ULONG celt,
//C FORMATETC *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumFORMATETC_RemoteNext_Proxy(IEnumFORMATETC *This, ULONG celt, FORMATETC *rgelt, ULONG *pceltFetched);
//C void IEnumFORMATETC_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumFORMATETC_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumFORMATETC_Skip_Proxy(
//C IEnumFORMATETC* This,
//C ULONG celt);
HRESULT IEnumFORMATETC_Skip_Proxy(IEnumFORMATETC *This, ULONG celt);
//C void IEnumFORMATETC_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumFORMATETC_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumFORMATETC_Reset_Proxy(
//C IEnumFORMATETC* This);
HRESULT IEnumFORMATETC_Reset_Proxy(IEnumFORMATETC *This);
//C void IEnumFORMATETC_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumFORMATETC_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumFORMATETC_Clone_Proxy(
//C IEnumFORMATETC* This,
//C IEnumFORMATETC **ppenum);
HRESULT IEnumFORMATETC_Clone_Proxy(IEnumFORMATETC *This, IEnumFORMATETC **ppenum);
//C void IEnumFORMATETC_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumFORMATETC_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumFORMATETC_Next_Proxy(
//C IEnumFORMATETC* This,
//C ULONG celt,
//C FORMATETC *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumFORMATETC_Next_Proxy(IEnumFORMATETC *This, ULONG celt, FORMATETC *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumFORMATETC_Next_Stub(
//C IEnumFORMATETC* This,
//C ULONG celt,
//C FORMATETC *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumFORMATETC_Next_Stub(IEnumFORMATETC *This, ULONG celt, FORMATETC *rgelt, ULONG *pceltFetched);
//C typedef IEnumSTATDATA *LPENUMSTATDATA;
alias IEnumSTATDATA *LPENUMSTATDATA;
//C typedef enum tagADVF {
//C ADVF_NODATA = 1,
//C ADVF_PRIMEFIRST = 2,
//C ADVF_ONLYONCE = 4,
//C ADVF_DATAONSTOP = 64,
//C ADVFCACHE_NOHANDLER = 8,
//C ADVFCACHE_FORCEBUILTIN = 16,
//C ADVFCACHE_ONSAVE = 32
//C } ADVF;
enum tagADVF
{
ADVF_NODATA = 1,
ADVF_PRIMEFIRST,
ADVF_ONLYONCE = 4,
ADVF_DATAONSTOP = 64,
ADVFCACHE_NOHANDLER = 8,
ADVFCACHE_FORCEBUILTIN = 16,
ADVFCACHE_ONSAVE = 32,
}
alias tagADVF ADVF;
//C typedef struct tagSTATDATA {
//C FORMATETC formatetc;
//C DWORD advf;
//C IAdviseSink *pAdvSink;
//C DWORD dwConnection;
//C } STATDATA;
struct tagSTATDATA
{
FORMATETC formatetc;
DWORD advf;
IAdviseSink *pAdvSink;
DWORD dwConnection;
}
alias tagSTATDATA STATDATA;
//C typedef STATDATA *LPSTATDATA;
alias STATDATA *LPSTATDATA;
//C typedef struct IEnumSTATDATAVtbl {
//C HRESULT ( *QueryInterface)(
//C IEnumSTATDATA* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IEnumSTATDATA* This);
//C ULONG ( *Release)(
//C IEnumSTATDATA* This);
//C HRESULT ( *Next)(
//C IEnumSTATDATA* This,
//C ULONG celt,
//C STATDATA *rgelt,
//C ULONG *pceltFetched);
//C HRESULT ( *Skip)(
//C IEnumSTATDATA* This,
//C ULONG celt);
//C HRESULT ( *Reset)(
//C IEnumSTATDATA* This);
//C HRESULT ( *Clone)(
//C IEnumSTATDATA* This,
//C IEnumSTATDATA **ppenum);
//C } IEnumSTATDATAVtbl;
struct IEnumSTATDATAVtbl
{
HRESULT function(IEnumSTATDATA *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumSTATDATA *This)AddRef;
ULONG function(IEnumSTATDATA *This)Release;
HRESULT function(IEnumSTATDATA *This, ULONG celt, STATDATA *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumSTATDATA *This, ULONG celt)Skip;
HRESULT function(IEnumSTATDATA *This)Reset;
HRESULT function(IEnumSTATDATA *This, IEnumSTATDATA **ppenum)Clone;
}
//C struct IEnumSTATDATA {
//C IEnumSTATDATAVtbl* lpVtbl;
//C };
struct IEnumSTATDATA
{
IEnumSTATDATAVtbl *lpVtbl;
}
//C HRESULT IEnumSTATDATA_RemoteNext_Proxy(
//C IEnumSTATDATA* This,
//C ULONG celt,
//C STATDATA *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATDATA_RemoteNext_Proxy(IEnumSTATDATA *This, ULONG celt, STATDATA *rgelt, ULONG *pceltFetched);
//C void IEnumSTATDATA_RemoteNext_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATDATA_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATDATA_Skip_Proxy(
//C IEnumSTATDATA* This,
//C ULONG celt);
HRESULT IEnumSTATDATA_Skip_Proxy(IEnumSTATDATA *This, ULONG celt);
//C void IEnumSTATDATA_Skip_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATDATA_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATDATA_Reset_Proxy(
//C IEnumSTATDATA* This);
HRESULT IEnumSTATDATA_Reset_Proxy(IEnumSTATDATA *This);
//C void IEnumSTATDATA_Reset_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATDATA_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATDATA_Clone_Proxy(
//C IEnumSTATDATA* This,
//C IEnumSTATDATA **ppenum);
HRESULT IEnumSTATDATA_Clone_Proxy(IEnumSTATDATA *This, IEnumSTATDATA **ppenum);
//C void IEnumSTATDATA_Clone_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IEnumSTATDATA_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IEnumSTATDATA_Next_Proxy(
//C IEnumSTATDATA* This,
//C ULONG celt,
//C STATDATA *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATDATA_Next_Proxy(IEnumSTATDATA *This, ULONG celt, STATDATA *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumSTATDATA_Next_Stub(
//C IEnumSTATDATA* This,
//C ULONG celt,
//C STATDATA *rgelt,
//C ULONG *pceltFetched);
HRESULT IEnumSTATDATA_Next_Stub(IEnumSTATDATA *This, ULONG celt, STATDATA *rgelt, ULONG *pceltFetched);
//C typedef IRootStorage *LPROOTSTORAGE;
alias IRootStorage *LPROOTSTORAGE;
//C typedef struct IRootStorageVtbl {
//C HRESULT ( *QueryInterface)(IRootStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRootStorage *This);
//C ULONG ( *Release)(IRootStorage *This);
//C HRESULT ( *SwitchToFile)(IRootStorage *This,LPOLESTR pszFile);
//C } IRootStorageVtbl;
struct IRootStorageVtbl
{
HRESULT function(IRootStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRootStorage *This)AddRef;
ULONG function(IRootStorage *This)Release;
HRESULT function(IRootStorage *This, LPOLESTR pszFile)SwitchToFile;
}
//C struct IRootStorage {
//C struct IRootStorageVtbl *lpVtbl;
//C };
struct IRootStorage
{
IRootStorageVtbl *lpVtbl;
}
//C HRESULT IRootStorage_SwitchToFile_Proxy(IRootStorage *This,LPOLESTR pszFile);
HRESULT IRootStorage_SwitchToFile_Proxy(IRootStorage *This, LPOLESTR pszFile);
//C void IRootStorage_SwitchToFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRootStorage_SwitchToFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IAdviseSink *LPADVISESINK;
alias IAdviseSink *LPADVISESINK;
//C typedef enum tagTYMED {
//C TYMED_HGLOBAL = 1,
//C TYMED_FILE = 2,
//C TYMED_ISTREAM = 4,
//C TYMED_ISTORAGE = 8,
//C TYMED_GDI = 16,
//C TYMED_MFPICT = 32,
//C TYMED_ENHMF = 64,
//C TYMED_NULL = 0
//C } TYMED;
enum tagTYMED
{
TYMED_HGLOBAL = 1,
TYMED_FILE,
TYMED_ISTREAM = 4,
TYMED_ISTORAGE = 8,
TYMED_GDI = 16,
TYMED_MFPICT = 32,
TYMED_ENHMF = 64,
TYMED_NULL = 0,
}
alias tagTYMED TYMED;
//C typedef struct tagRemSTGMEDIUM {
//C DWORD tymed;
//C DWORD dwHandleType;
//C ULONG pData;
//C ULONG pUnkForRelease;
//C ULONG cbData;
//C byte data[1];
//C } RemSTGMEDIUM;
struct tagRemSTGMEDIUM
{
DWORD tymed;
DWORD dwHandleType;
ULONG pData;
ULONG pUnkForRelease;
ULONG cbData;
byte [1]data;
}
alias tagRemSTGMEDIUM RemSTGMEDIUM;
//C typedef struct tagSTGMEDIUM {
//C DWORD tymed;
//C union {
//C HBITMAP hBitmap;
//C HMETAFILEPICT hMetaFilePict;
//C HENHMETAFILE hEnhMetaFile;
//C HGLOBAL hGlobal;
//C LPOLESTR lpszFileName;
//C IStream *pstm;
//C IStorage *pstg;
//C } ;
union _N183
{
HBITMAP hBitmap;
HMETAFILEPICT hMetaFilePict;
HENHMETAFILE hEnhMetaFile;
HGLOBAL hGlobal;
LPOLESTR lpszFileName;
IStream *pstm;
IStorage *pstg;
}
//C IUnknown *pUnkForRelease;
//C } uSTGMEDIUM;
struct tagSTGMEDIUM
{
DWORD tymed;
HBITMAP hBitmap;
HMETAFILEPICT hMetaFilePict;
HENHMETAFILE hEnhMetaFile;
HGLOBAL hGlobal;
LPOLESTR lpszFileName;
IStream *pstm;
IStorage *pstg;
IUnknown *pUnkForRelease;
}
alias tagSTGMEDIUM uSTGMEDIUM;
//C typedef struct _GDI_OBJECT {
//C DWORD ObjectType;
//C union {
//C wireHBITMAP hBitmap;
//C wireHPALETTE hPalette;
//C wireHGLOBAL hGeneric;
//C } u;
union _N184
{
wireHBITMAP hBitmap;
wireHPALETTE hPalette;
wireHGLOBAL hGeneric;
}
//C } GDI_OBJECT;
struct _GDI_OBJECT
{
DWORD ObjectType;
_N184 u;
}
alias _GDI_OBJECT GDI_OBJECT;
//C typedef struct _userSTGMEDIUM {
//C struct _STGMEDIUM_UNION {
//C DWORD tymed;
//C union {
//C wireHMETAFILEPICT hMetaFilePict;
//C wireHENHMETAFILE hHEnhMetaFile;
//C GDI_OBJECT *hGdiHandle;
//C wireHGLOBAL hGlobal;
//C LPOLESTR lpszFileName;
//C BYTE_BLOB *pstm;
//C BYTE_BLOB *pstg;
//C } u;
union _N185
{
wireHMETAFILEPICT hMetaFilePict;
wireHENHMETAFILE hHEnhMetaFile;
GDI_OBJECT *hGdiHandle;
wireHGLOBAL hGlobal;
LPOLESTR lpszFileName;
BYTE_BLOB *pstm;
BYTE_BLOB *pstg;
}
//C } ;
struct _STGMEDIUM_UNION
{
DWORD tymed;
_N185 u;
}
//C IUnknown *pUnkForRelease;
//C } userSTGMEDIUM;
struct _userSTGMEDIUM
{
IUnknown *pUnkForRelease;
}
alias _userSTGMEDIUM userSTGMEDIUM;
//C typedef userSTGMEDIUM *wireSTGMEDIUM;
alias userSTGMEDIUM *wireSTGMEDIUM;
//C typedef uSTGMEDIUM STGMEDIUM;
alias uSTGMEDIUM STGMEDIUM;
//C typedef userSTGMEDIUM *wireASYNC_STGMEDIUM;
alias userSTGMEDIUM *wireASYNC_STGMEDIUM;
//C typedef STGMEDIUM ASYNC_STGMEDIUM;
alias STGMEDIUM ASYNC_STGMEDIUM;
//C typedef STGMEDIUM *LPSTGMEDIUM;
alias STGMEDIUM *LPSTGMEDIUM;
//C typedef struct _userFLAG_STGMEDIUM {
//C LONG ContextFlags;
//C LONG fPassOwnership;
//C userSTGMEDIUM Stgmed;
//C } userFLAG_STGMEDIUM;
struct _userFLAG_STGMEDIUM
{
LONG ContextFlags;
LONG fPassOwnership;
userSTGMEDIUM Stgmed;
}
alias _userFLAG_STGMEDIUM userFLAG_STGMEDIUM;
//C typedef userFLAG_STGMEDIUM *wireFLAG_STGMEDIUM;
alias userFLAG_STGMEDIUM *wireFLAG_STGMEDIUM;
//C typedef struct _FLAG_STGMEDIUM {
//C LONG ContextFlags;
//C LONG fPassOwnership;
//C STGMEDIUM Stgmed;
//C } FLAG_STGMEDIUM;
struct _FLAG_STGMEDIUM
{
LONG ContextFlags;
LONG fPassOwnership;
STGMEDIUM Stgmed;
}
alias _FLAG_STGMEDIUM FLAG_STGMEDIUM;
//C typedef struct IAdviseSinkVtbl {
//C HRESULT ( *QueryInterface)(
//C IAdviseSink* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IAdviseSink* This);
//C ULONG ( *Release)(
//C IAdviseSink* This);
//C void ( *OnDataChange)(
//C IAdviseSink* This,
//C FORMATETC *pFormatetc,
//C STGMEDIUM *pStgmed);
//C void ( *OnViewChange)(
//C IAdviseSink* This,
//C DWORD dwAspect,
//C LONG lindex);
//C void ( *OnRename)(
//C IAdviseSink* This,
//C IMoniker *pmk);
//C void ( *OnSave)(
//C IAdviseSink* This);
//C void ( *OnClose)(
//C IAdviseSink* This);
//C } IAdviseSinkVtbl;
struct IAdviseSinkVtbl
{
HRESULT function(IAdviseSink *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAdviseSink *This)AddRef;
ULONG function(IAdviseSink *This)Release;
void function(IAdviseSink *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed)OnDataChange;
void function(IAdviseSink *This, DWORD dwAspect, LONG lindex)OnViewChange;
void function(IAdviseSink *This, IMoniker *pmk)OnRename;
void function(IAdviseSink *This)OnSave;
void function(IAdviseSink *This)OnClose;
}
//C struct IAdviseSink {
//C IAdviseSinkVtbl* lpVtbl;
//C };
struct IAdviseSink
{
IAdviseSinkVtbl *lpVtbl;
}
//C HRESULT IAdviseSink_RemoteOnDataChange_Proxy(
//C IAdviseSink* This,
//C FORMATETC *pFormatetc,
//C ASYNC_STGMEDIUM *pStgmed);
HRESULT IAdviseSink_RemoteOnDataChange_Proxy(IAdviseSink *This, FORMATETC *pFormatetc, ASYNC_STGMEDIUM *pStgmed);
//C void IAdviseSink_RemoteOnDataChange_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IAdviseSink_RemoteOnDataChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IAdviseSink_RemoteOnViewChange_Proxy(
//C IAdviseSink* This,
//C DWORD dwAspect,
//C LONG lindex);
HRESULT IAdviseSink_RemoteOnViewChange_Proxy(IAdviseSink *This, DWORD dwAspect, LONG lindex);
//C void IAdviseSink_RemoteOnViewChange_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IAdviseSink_RemoteOnViewChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IAdviseSink_RemoteOnRename_Proxy(
//C IAdviseSink* This,
//C IMoniker *pmk);
HRESULT IAdviseSink_RemoteOnRename_Proxy(IAdviseSink *This, IMoniker *pmk);
//C void IAdviseSink_RemoteOnRename_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IAdviseSink_RemoteOnRename_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IAdviseSink_RemoteOnSave_Proxy(
//C IAdviseSink* This);
HRESULT IAdviseSink_RemoteOnSave_Proxy(IAdviseSink *This);
//C void IAdviseSink_RemoteOnSave_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IAdviseSink_RemoteOnSave_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IAdviseSink_RemoteOnClose_Proxy(
//C IAdviseSink* This);
HRESULT IAdviseSink_RemoteOnClose_Proxy(IAdviseSink *This);
//C void IAdviseSink_RemoteOnClose_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IAdviseSink_RemoteOnClose_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C void IAdviseSink_OnDataChange_Proxy(
//C IAdviseSink* This,
//C FORMATETC *pFormatetc,
//C STGMEDIUM *pStgmed);
void IAdviseSink_OnDataChange_Proxy(IAdviseSink *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed);
//C HRESULT IAdviseSink_OnDataChange_Stub(
//C IAdviseSink* This,
//C FORMATETC *pFormatetc,
//C ASYNC_STGMEDIUM *pStgmed);
HRESULT IAdviseSink_OnDataChange_Stub(IAdviseSink *This, FORMATETC *pFormatetc, ASYNC_STGMEDIUM *pStgmed);
//C void IAdviseSink_OnViewChange_Proxy(
//C IAdviseSink* This,
//C DWORD dwAspect,
//C LONG lindex);
void IAdviseSink_OnViewChange_Proxy(IAdviseSink *This, DWORD dwAspect, LONG lindex);
//C HRESULT IAdviseSink_OnViewChange_Stub(
//C IAdviseSink* This,
//C DWORD dwAspect,
//C LONG lindex);
HRESULT IAdviseSink_OnViewChange_Stub(IAdviseSink *This, DWORD dwAspect, LONG lindex);
//C void IAdviseSink_OnRename_Proxy(
//C IAdviseSink* This,
//C IMoniker *pmk);
void IAdviseSink_OnRename_Proxy(IAdviseSink *This, IMoniker *pmk);
//C HRESULT IAdviseSink_OnRename_Stub(
//C IAdviseSink* This,
//C IMoniker *pmk);
HRESULT IAdviseSink_OnRename_Stub(IAdviseSink *This, IMoniker *pmk);
//C void IAdviseSink_OnSave_Proxy(
//C IAdviseSink* This);
void IAdviseSink_OnSave_Proxy(IAdviseSink *This);
//C HRESULT IAdviseSink_OnSave_Stub(
//C IAdviseSink* This);
HRESULT IAdviseSink_OnSave_Stub(IAdviseSink *This);
//C void IAdviseSink_OnClose_Proxy(
//C IAdviseSink* This);
void IAdviseSink_OnClose_Proxy(IAdviseSink *This);
//C HRESULT IAdviseSink_OnClose_Stub(
//C IAdviseSink* This);
HRESULT IAdviseSink_OnClose_Stub(IAdviseSink *This);
//C typedef struct AsyncIAdviseSinkVtbl {
//C HRESULT ( *QueryInterface)(AsyncIAdviseSink *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIAdviseSink *This);
//C ULONG ( *Release)(AsyncIAdviseSink *This);
//C void ( *Begin_OnDataChange)(AsyncIAdviseSink *This,FORMATETC *pFormatetc,STGMEDIUM *pStgmed);
//C void ( *Finish_OnDataChange)(AsyncIAdviseSink *This);
//C void ( *Begin_OnViewChange)(AsyncIAdviseSink *This,DWORD dwAspect,LONG lindex);
//C void ( *Finish_OnViewChange)(AsyncIAdviseSink *This);
//C void ( *Begin_OnRename)(AsyncIAdviseSink *This,IMoniker *pmk);
//C void ( *Finish_OnRename)(AsyncIAdviseSink *This);
//C void ( *Begin_OnSave)(AsyncIAdviseSink *This);
//C void ( *Finish_OnSave)(AsyncIAdviseSink *This);
//C void ( *Begin_OnClose)(AsyncIAdviseSink *This);
//C void ( *Finish_OnClose)(AsyncIAdviseSink *This);
//C } AsyncIAdviseSinkVtbl;
struct AsyncIAdviseSinkVtbl
{
HRESULT function(AsyncIAdviseSink *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIAdviseSink *This)AddRef;
ULONG function(AsyncIAdviseSink *This)Release;
void function(AsyncIAdviseSink *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed)Begin_OnDataChange;
void function(AsyncIAdviseSink *This)Finish_OnDataChange;
void function(AsyncIAdviseSink *This, DWORD dwAspect, LONG lindex)Begin_OnViewChange;
void function(AsyncIAdviseSink *This)Finish_OnViewChange;
void function(AsyncIAdviseSink *This, IMoniker *pmk)Begin_OnRename;
void function(AsyncIAdviseSink *This)Finish_OnRename;
void function(AsyncIAdviseSink *This)Begin_OnSave;
void function(AsyncIAdviseSink *This)Finish_OnSave;
void function(AsyncIAdviseSink *This)Begin_OnClose;
void function(AsyncIAdviseSink *This)Finish_OnClose;
}
//C struct AsyncIAdviseSink {
//C struct AsyncIAdviseSinkVtbl *lpVtbl;
//C };
struct AsyncIAdviseSink
{
AsyncIAdviseSinkVtbl *lpVtbl;
}
//C HRESULT AsyncIAdviseSink_Begin_RemoteOnDataChange_Proxy(AsyncIAdviseSink *This,FORMATETC *pFormatetc,ASYNC_STGMEDIUM *pStgmed);
HRESULT AsyncIAdviseSink_Begin_RemoteOnDataChange_Proxy(AsyncIAdviseSink *This, FORMATETC *pFormatetc, ASYNC_STGMEDIUM *pStgmed);
//C void AsyncIAdviseSink_Begin_RemoteOnDataChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Begin_RemoteOnDataChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Finish_RemoteOnDataChange_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_RemoteOnDataChange_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_RemoteOnDataChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Finish_RemoteOnDataChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Begin_RemoteOnViewChange_Proxy(AsyncIAdviseSink *This,DWORD dwAspect,LONG lindex);
HRESULT AsyncIAdviseSink_Begin_RemoteOnViewChange_Proxy(AsyncIAdviseSink *This, DWORD dwAspect, LONG lindex);
//C void AsyncIAdviseSink_Begin_RemoteOnViewChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Begin_RemoteOnViewChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Finish_RemoteOnViewChange_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_RemoteOnViewChange_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_RemoteOnViewChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Finish_RemoteOnViewChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Begin_RemoteOnRename_Proxy(AsyncIAdviseSink *This,IMoniker *pmk);
HRESULT AsyncIAdviseSink_Begin_RemoteOnRename_Proxy(AsyncIAdviseSink *This, IMoniker *pmk);
//C void AsyncIAdviseSink_Begin_RemoteOnRename_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Begin_RemoteOnRename_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Finish_RemoteOnRename_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_RemoteOnRename_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_RemoteOnRename_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Finish_RemoteOnRename_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Begin_RemoteOnSave_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Begin_RemoteOnSave_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_RemoteOnSave_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Begin_RemoteOnSave_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Finish_RemoteOnSave_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_RemoteOnSave_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_RemoteOnSave_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Finish_RemoteOnSave_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Begin_RemoteOnClose_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Begin_RemoteOnClose_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_RemoteOnClose_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Begin_RemoteOnClose_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink_Finish_RemoteOnClose_Proxy(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_RemoteOnClose_Proxy(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_RemoteOnClose_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink_Finish_RemoteOnClose_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IAdviseSink2 *LPADVISESINK2;
alias IAdviseSink2 *LPADVISESINK2;
//C typedef struct IAdviseSink2Vtbl {
//C HRESULT ( *QueryInterface)(IAdviseSink2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAdviseSink2 *This);
//C ULONG ( *Release)(IAdviseSink2 *This);
//C void ( *OnDataChange)(IAdviseSink2 *This,FORMATETC *pFormatetc,STGMEDIUM *pStgmed);
//C void ( *OnViewChange)(IAdviseSink2 *This,DWORD dwAspect,LONG lindex);
//C void ( *OnRename)(IAdviseSink2 *This,IMoniker *pmk);
//C void ( *OnSave)(IAdviseSink2 *This);
//C void ( *OnClose)(IAdviseSink2 *This);
//C void ( *OnLinkSrcChange)(IAdviseSink2 *This,IMoniker *pmk);
//C } IAdviseSink2Vtbl;
struct IAdviseSink2Vtbl
{
HRESULT function(IAdviseSink2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAdviseSink2 *This)AddRef;
ULONG function(IAdviseSink2 *This)Release;
void function(IAdviseSink2 *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed)OnDataChange;
void function(IAdviseSink2 *This, DWORD dwAspect, LONG lindex)OnViewChange;
void function(IAdviseSink2 *This, IMoniker *pmk)OnRename;
void function(IAdviseSink2 *This)OnSave;
void function(IAdviseSink2 *This)OnClose;
void function(IAdviseSink2 *This, IMoniker *pmk)OnLinkSrcChange;
}
//C struct IAdviseSink2 {
//C struct IAdviseSink2Vtbl *lpVtbl;
//C };
struct IAdviseSink2
{
IAdviseSink2Vtbl *lpVtbl;
}
//C HRESULT IAdviseSink2_RemoteOnLinkSrcChange_Proxy(IAdviseSink2 *This,IMoniker *pmk);
HRESULT IAdviseSink2_RemoteOnLinkSrcChange_Proxy(IAdviseSink2 *This, IMoniker *pmk);
//C void IAdviseSink2_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAdviseSink2_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct AsyncIAdviseSink2Vtbl {
//C HRESULT ( *QueryInterface)(AsyncIAdviseSink2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIAdviseSink2 *This);
//C ULONG ( *Release)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnDataChange)(AsyncIAdviseSink2 *This,FORMATETC *pFormatetc,STGMEDIUM *pStgmed);
//C void ( *Finish_OnDataChange)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnViewChange)(AsyncIAdviseSink2 *This,DWORD dwAspect,LONG lindex);
//C void ( *Finish_OnViewChange)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnRename)(AsyncIAdviseSink2 *This,IMoniker *pmk);
//C void ( *Finish_OnRename)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnSave)(AsyncIAdviseSink2 *This);
//C void ( *Finish_OnSave)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnClose)(AsyncIAdviseSink2 *This);
//C void ( *Finish_OnClose)(AsyncIAdviseSink2 *This);
//C void ( *Begin_OnLinkSrcChange)(AsyncIAdviseSink2 *This,IMoniker *pmk);
//C void ( *Finish_OnLinkSrcChange)(AsyncIAdviseSink2 *This);
//C } AsyncIAdviseSink2Vtbl;
struct AsyncIAdviseSink2Vtbl
{
HRESULT function(AsyncIAdviseSink2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIAdviseSink2 *This)AddRef;
ULONG function(AsyncIAdviseSink2 *This)Release;
void function(AsyncIAdviseSink2 *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed)Begin_OnDataChange;
void function(AsyncIAdviseSink2 *This)Finish_OnDataChange;
void function(AsyncIAdviseSink2 *This, DWORD dwAspect, LONG lindex)Begin_OnViewChange;
void function(AsyncIAdviseSink2 *This)Finish_OnViewChange;
void function(AsyncIAdviseSink2 *This, IMoniker *pmk)Begin_OnRename;
void function(AsyncIAdviseSink2 *This)Finish_OnRename;
void function(AsyncIAdviseSink2 *This)Begin_OnSave;
void function(AsyncIAdviseSink2 *This)Finish_OnSave;
void function(AsyncIAdviseSink2 *This)Begin_OnClose;
void function(AsyncIAdviseSink2 *This)Finish_OnClose;
void function(AsyncIAdviseSink2 *This, IMoniker *pmk)Begin_OnLinkSrcChange;
void function(AsyncIAdviseSink2 *This)Finish_OnLinkSrcChange;
}
//C struct AsyncIAdviseSink2 {
//C struct AsyncIAdviseSink2Vtbl *lpVtbl;
//C };
struct AsyncIAdviseSink2
{
AsyncIAdviseSink2Vtbl *lpVtbl;
}
//C HRESULT AsyncIAdviseSink2_Begin_RemoteOnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This,IMoniker *pmk);
HRESULT AsyncIAdviseSink2_Begin_RemoteOnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This, IMoniker *pmk);
//C void AsyncIAdviseSink2_Begin_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink2_Begin_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIAdviseSink2_Finish_RemoteOnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This);
HRESULT AsyncIAdviseSink2_Finish_RemoteOnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This);
//C void AsyncIAdviseSink2_Finish_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIAdviseSink2_Finish_RemoteOnLinkSrcChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IDataObject *LPDATAOBJECT;
alias IDataObject *LPDATAOBJECT;
//C typedef enum tagDATADIR {
//C DATADIR_GET = 1,
//C DATADIR_SET = 2
//C } DATADIR;
enum tagDATADIR
{
DATADIR_GET = 1,
DATADIR_SET,
}
alias tagDATADIR DATADIR;
//C typedef struct IDataObjectVtbl {
//C HRESULT ( *QueryInterface)(
//C IDataObject* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IDataObject* This);
//C ULONG ( *Release)(
//C IDataObject* This);
//C HRESULT ( *GetData)(
//C IDataObject* This,
//C FORMATETC *pformatetcIn,
//C STGMEDIUM *pmedium);
//C HRESULT ( *GetDataHere)(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pmedium);
//C HRESULT ( *QueryGetData)(
//C IDataObject* This,
//C FORMATETC *pformatetc);
//C HRESULT ( *GetCanonicalFormatEtc)(
//C IDataObject* This,
//C FORMATETC *pformatectIn,
//C FORMATETC *pformatetcOut);
//C HRESULT ( *SetData)(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pmedium,
//C WINBOOL fRelease);
//C HRESULT ( *EnumFormatEtc)(
//C IDataObject* This,
//C DWORD dwDirection,
//C IEnumFORMATETC **ppenumFormatEtc);
//C HRESULT ( *DAdvise)(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C DWORD advf,
//C IAdviseSink *pAdvSink,
//C DWORD *pdwConnection);
//C HRESULT ( *DUnadvise)(
//C IDataObject* This,
//C DWORD dwConnection);
//C HRESULT ( *EnumDAdvise)(
//C IDataObject* This,
//C IEnumSTATDATA **ppenumAdvise);
//C } IDataObjectVtbl;
struct IDataObjectVtbl
{
HRESULT function(IDataObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDataObject *This)AddRef;
ULONG function(IDataObject *This)Release;
HRESULT function(IDataObject *This, FORMATETC *pformatetcIn, STGMEDIUM *pmedium)GetData;
HRESULT function(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pmedium)GetDataHere;
HRESULT function(IDataObject *This, FORMATETC *pformatetc)QueryGetData;
HRESULT function(IDataObject *This, FORMATETC *pformatectIn, FORMATETC *pformatetcOut)GetCanonicalFormatEtc;
HRESULT function(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pmedium, WINBOOL fRelease)SetData;
HRESULT function(IDataObject *This, DWORD dwDirection, IEnumFORMATETC **ppenumFormatEtc)EnumFormatEtc;
HRESULT function(IDataObject *This, FORMATETC *pformatetc, DWORD advf, IAdviseSink *pAdvSink, DWORD *pdwConnection)DAdvise;
HRESULT function(IDataObject *This, DWORD dwConnection)DUnadvise;
HRESULT function(IDataObject *This, IEnumSTATDATA **ppenumAdvise)EnumDAdvise;
}
//C struct IDataObject {
//C IDataObjectVtbl* lpVtbl;
//C };
struct IDataObject
{
IDataObjectVtbl *lpVtbl;
}
//C HRESULT IDataObject_RemoteGetData_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetcIn,
//C STGMEDIUM *pRemoteMedium);
HRESULT IDataObject_RemoteGetData_Proxy(IDataObject *This, FORMATETC *pformatetcIn, STGMEDIUM *pRemoteMedium);
//C void IDataObject_RemoteGetData_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_RemoteGetData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_RemoteGetDataHere_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pRemoteMedium);
HRESULT IDataObject_RemoteGetDataHere_Proxy(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pRemoteMedium);
//C void IDataObject_RemoteGetDataHere_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_RemoteGetDataHere_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_QueryGetData_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc);
HRESULT IDataObject_QueryGetData_Proxy(IDataObject *This, FORMATETC *pformatetc);
//C void IDataObject_QueryGetData_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_QueryGetData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_GetCanonicalFormatEtc_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatectIn,
//C FORMATETC *pformatetcOut);
HRESULT IDataObject_GetCanonicalFormatEtc_Proxy(IDataObject *This, FORMATETC *pformatectIn, FORMATETC *pformatetcOut);
//C void IDataObject_GetCanonicalFormatEtc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_GetCanonicalFormatEtc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_RemoteSetData_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C FLAG_STGMEDIUM *pmedium,
//C WINBOOL fRelease);
HRESULT IDataObject_RemoteSetData_Proxy(IDataObject *This, FORMATETC *pformatetc, FLAG_STGMEDIUM *pmedium, WINBOOL fRelease);
//C void IDataObject_RemoteSetData_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_RemoteSetData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_EnumFormatEtc_Proxy(
//C IDataObject* This,
//C DWORD dwDirection,
//C IEnumFORMATETC **ppenumFormatEtc);
HRESULT IDataObject_EnumFormatEtc_Proxy(IDataObject *This, DWORD dwDirection, IEnumFORMATETC **ppenumFormatEtc);
//C void IDataObject_EnumFormatEtc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_EnumFormatEtc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_DAdvise_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C DWORD advf,
//C IAdviseSink *pAdvSink,
//C DWORD *pdwConnection);
HRESULT IDataObject_DAdvise_Proxy(IDataObject *This, FORMATETC *pformatetc, DWORD advf, IAdviseSink *pAdvSink, DWORD *pdwConnection);
//C void IDataObject_DAdvise_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_DAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_DUnadvise_Proxy(
//C IDataObject* This,
//C DWORD dwConnection);
HRESULT IDataObject_DUnadvise_Proxy(IDataObject *This, DWORD dwConnection);
//C void IDataObject_DUnadvise_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_DUnadvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_EnumDAdvise_Proxy(
//C IDataObject* This,
//C IEnumSTATDATA **ppenumAdvise);
HRESULT IDataObject_EnumDAdvise_Proxy(IDataObject *This, IEnumSTATDATA **ppenumAdvise);
//C void IDataObject_EnumDAdvise_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDataObject_EnumDAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDataObject_GetData_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetcIn,
//C STGMEDIUM *pmedium);
HRESULT IDataObject_GetData_Proxy(IDataObject *This, FORMATETC *pformatetcIn, STGMEDIUM *pmedium);
//C HRESULT IDataObject_GetData_Stub(
//C IDataObject* This,
//C FORMATETC *pformatetcIn,
//C STGMEDIUM *pRemoteMedium);
HRESULT IDataObject_GetData_Stub(IDataObject *This, FORMATETC *pformatetcIn, STGMEDIUM *pRemoteMedium);
//C HRESULT IDataObject_GetDataHere_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pmedium);
HRESULT IDataObject_GetDataHere_Proxy(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pmedium);
//C HRESULT IDataObject_GetDataHere_Stub(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pRemoteMedium);
HRESULT IDataObject_GetDataHere_Stub(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pRemoteMedium);
//C HRESULT IDataObject_SetData_Proxy(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pmedium,
//C WINBOOL fRelease);
HRESULT IDataObject_SetData_Proxy(IDataObject *This, FORMATETC *pformatetc, STGMEDIUM *pmedium, WINBOOL fRelease);
//C HRESULT IDataObject_SetData_Stub(
//C IDataObject* This,
//C FORMATETC *pformatetc,
//C FLAG_STGMEDIUM *pmedium,
//C WINBOOL fRelease);
HRESULT IDataObject_SetData_Stub(IDataObject *This, FORMATETC *pformatetc, FLAG_STGMEDIUM *pmedium, WINBOOL fRelease);
//C typedef IDataAdviseHolder *LPDATAADVISEHOLDER;
alias IDataAdviseHolder *LPDATAADVISEHOLDER;
//C typedef struct IDataAdviseHolderVtbl {
//C HRESULT ( *QueryInterface)(IDataAdviseHolder *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDataAdviseHolder *This);
//C ULONG ( *Release)(IDataAdviseHolder *This);
//C HRESULT ( *Advise)(IDataAdviseHolder *This,IDataObject *pDataObject,FORMATETC *pFetc,DWORD advf,IAdviseSink *pAdvise,DWORD *pdwConnection);
//C HRESULT ( *Unadvise)(IDataAdviseHolder *This,DWORD dwConnection);
//C HRESULT ( *EnumAdvise)(IDataAdviseHolder *This,IEnumSTATDATA **ppenumAdvise);
//C HRESULT ( *SendOnDataChange)(IDataAdviseHolder *This,IDataObject *pDataObject,DWORD dwReserved,DWORD advf);
//C } IDataAdviseHolderVtbl;
struct IDataAdviseHolderVtbl
{
HRESULT function(IDataAdviseHolder *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDataAdviseHolder *This)AddRef;
ULONG function(IDataAdviseHolder *This)Release;
HRESULT function(IDataAdviseHolder *This, IDataObject *pDataObject, FORMATETC *pFetc, DWORD advf, IAdviseSink *pAdvise, DWORD *pdwConnection)Advise;
HRESULT function(IDataAdviseHolder *This, DWORD dwConnection)Unadvise;
HRESULT function(IDataAdviseHolder *This, IEnumSTATDATA **ppenumAdvise)EnumAdvise;
HRESULT function(IDataAdviseHolder *This, IDataObject *pDataObject, DWORD dwReserved, DWORD advf)SendOnDataChange;
}
//C struct IDataAdviseHolder {
//C struct IDataAdviseHolderVtbl *lpVtbl;
//C };
struct IDataAdviseHolder
{
IDataAdviseHolderVtbl *lpVtbl;
}
//C HRESULT IDataAdviseHolder_Advise_Proxy(IDataAdviseHolder *This,IDataObject *pDataObject,FORMATETC *pFetc,DWORD advf,IAdviseSink *pAdvise,DWORD *pdwConnection);
HRESULT IDataAdviseHolder_Advise_Proxy(IDataAdviseHolder *This, IDataObject *pDataObject, FORMATETC *pFetc, DWORD advf, IAdviseSink *pAdvise, DWORD *pdwConnection);
//C void IDataAdviseHolder_Advise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataAdviseHolder_Advise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDataAdviseHolder_Unadvise_Proxy(IDataAdviseHolder *This,DWORD dwConnection);
HRESULT IDataAdviseHolder_Unadvise_Proxy(IDataAdviseHolder *This, DWORD dwConnection);
//C void IDataAdviseHolder_Unadvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataAdviseHolder_Unadvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDataAdviseHolder_EnumAdvise_Proxy(IDataAdviseHolder *This,IEnumSTATDATA **ppenumAdvise);
HRESULT IDataAdviseHolder_EnumAdvise_Proxy(IDataAdviseHolder *This, IEnumSTATDATA **ppenumAdvise);
//C void IDataAdviseHolder_EnumAdvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataAdviseHolder_EnumAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDataAdviseHolder_SendOnDataChange_Proxy(IDataAdviseHolder *This,IDataObject *pDataObject,DWORD dwReserved,DWORD advf);
HRESULT IDataAdviseHolder_SendOnDataChange_Proxy(IDataAdviseHolder *This, IDataObject *pDataObject, DWORD dwReserved, DWORD advf);
//C void IDataAdviseHolder_SendOnDataChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataAdviseHolder_SendOnDataChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IMessageFilter *LPMESSAGEFILTER;
alias IMessageFilter *LPMESSAGEFILTER;
//C typedef enum tagCALLTYPE {
//C CALLTYPE_TOPLEVEL = 1,CALLTYPE_NESTED = 2,CALLTYPE_ASYNC = 3,CALLTYPE_TOPLEVEL_CALLPENDING = 4,CALLTYPE_ASYNC_CALLPENDING = 5
//C } CALLTYPE;
enum tagCALLTYPE
{
CALLTYPE_TOPLEVEL = 1,
CALLTYPE_NESTED,
CALLTYPE_ASYNC,
CALLTYPE_TOPLEVEL_CALLPENDING,
CALLTYPE_ASYNC_CALLPENDING,
}
alias tagCALLTYPE CALLTYPE;
//C typedef enum tagSERVERCALL {
//C SERVERCALL_ISHANDLED = 0,SERVERCALL_REJECTED = 1,SERVERCALL_RETRYLATER = 2
//C } SERVERCALL;
enum tagSERVERCALL
{
SERVERCALL_ISHANDLED,
SERVERCALL_REJECTED,
SERVERCALL_RETRYLATER,
}
alias tagSERVERCALL SERVERCALL;
//C typedef enum tagPENDINGTYPE {
//C PENDINGTYPE_TOPLEVEL = 1,PENDINGTYPE_NESTED = 2
//C } PENDINGTYPE;
enum tagPENDINGTYPE
{
PENDINGTYPE_TOPLEVEL = 1,
PENDINGTYPE_NESTED,
}
alias tagPENDINGTYPE PENDINGTYPE;
//C typedef enum tagPENDINGMSG {
//C PENDINGMSG_CANCELCALL = 0,PENDINGMSG_WAITNOPROCESS = 1,PENDINGMSG_WAITDEFPROCESS = 2
//C } PENDINGMSG;
enum tagPENDINGMSG
{
PENDINGMSG_CANCELCALL,
PENDINGMSG_WAITNOPROCESS,
PENDINGMSG_WAITDEFPROCESS,
}
alias tagPENDINGMSG PENDINGMSG;
//C typedef struct tagINTERFACEINFO {
//C IUnknown *pUnk;
//C IID iid;
//C WORD wMethod;
//C } INTERFACEINFO;
struct tagINTERFACEINFO
{
IUnknown *pUnk;
IID iid;
WORD wMethod;
}
alias tagINTERFACEINFO INTERFACEINFO;
//C typedef struct tagINTERFACEINFO *LPINTERFACEINFO;
alias tagINTERFACEINFO *LPINTERFACEINFO;
//C typedef struct IMessageFilterVtbl {
//C HRESULT ( *QueryInterface)(IMessageFilter *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMessageFilter *This);
//C ULONG ( *Release)(IMessageFilter *This);
//C DWORD ( *HandleInComingCall)(IMessageFilter *This,DWORD dwCallType,HTASK htaskCaller,DWORD dwTickCount,LPINTERFACEINFO lpInterfaceInfo);
//C DWORD ( *RetryRejectedCall)(IMessageFilter *This,HTASK htaskCallee,DWORD dwTickCount,DWORD dwRejectType);
//C DWORD ( *MessagePending)(IMessageFilter *This,HTASK htaskCallee,DWORD dwTickCount,DWORD dwPendingType);
//C } IMessageFilterVtbl;
struct IMessageFilterVtbl
{
HRESULT function(IMessageFilter *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMessageFilter *This)AddRef;
ULONG function(IMessageFilter *This)Release;
DWORD function(IMessageFilter *This, DWORD dwCallType, HTASK htaskCaller, DWORD dwTickCount, LPINTERFACEINFO lpInterfaceInfo)HandleInComingCall;
DWORD function(IMessageFilter *This, HTASK htaskCallee, DWORD dwTickCount, DWORD dwRejectType)RetryRejectedCall;
DWORD function(IMessageFilter *This, HTASK htaskCallee, DWORD dwTickCount, DWORD dwPendingType)MessagePending;
}
//C struct IMessageFilter {
//C struct IMessageFilterVtbl *lpVtbl;
//C };
struct IMessageFilter
{
IMessageFilterVtbl *lpVtbl;
}
//C DWORD IMessageFilter_HandleInComingCall_Proxy(IMessageFilter *This,DWORD dwCallType,HTASK htaskCaller,DWORD dwTickCount,LPINTERFACEINFO lpInterfaceInfo);
DWORD IMessageFilter_HandleInComingCall_Proxy(IMessageFilter *This, DWORD dwCallType, HTASK htaskCaller, DWORD dwTickCount, LPINTERFACEINFO lpInterfaceInfo);
//C void IMessageFilter_HandleInComingCall_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMessageFilter_HandleInComingCall_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C DWORD IMessageFilter_RetryRejectedCall_Proxy(IMessageFilter *This,HTASK htaskCallee,DWORD dwTickCount,DWORD dwRejectType);
DWORD IMessageFilter_RetryRejectedCall_Proxy(IMessageFilter *This, HTASK htaskCallee, DWORD dwTickCount, DWORD dwRejectType);
//C void IMessageFilter_RetryRejectedCall_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMessageFilter_RetryRejectedCall_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C DWORD IMessageFilter_MessagePending_Proxy(IMessageFilter *This,HTASK htaskCallee,DWORD dwTickCount,DWORD dwPendingType);
DWORD IMessageFilter_MessagePending_Proxy(IMessageFilter *This, HTASK htaskCallee, DWORD dwTickCount, DWORD dwPendingType);
//C void IMessageFilter_MessagePending_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMessageFilter_MessagePending_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ULONG RPCOLEDATAREP;
alias ULONG RPCOLEDATAREP;
//C typedef struct tagRPCOLEMESSAGE {
//C void *reserved1;
//C RPCOLEDATAREP dataRepresentation;
//C void *Buffer;
//C ULONG cbBuffer;
//C ULONG iMethod;
//C void *reserved2[5 ];
//C ULONG rpcFlags;
//C } RPCOLEMESSAGE;
struct tagRPCOLEMESSAGE
{
void *reserved1;
RPCOLEDATAREP dataRepresentation;
void *Buffer;
ULONG cbBuffer;
ULONG iMethod;
void *[5]reserved2;
ULONG rpcFlags;
}
alias tagRPCOLEMESSAGE RPCOLEMESSAGE;
//C typedef RPCOLEMESSAGE *PRPCOLEMESSAGE;
alias RPCOLEMESSAGE *PRPCOLEMESSAGE;
//C typedef struct IRpcChannelBufferVtbl {
//C HRESULT ( *QueryInterface)(IRpcChannelBuffer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcChannelBuffer *This);
//C ULONG ( *Release)(IRpcChannelBuffer *This);
//C HRESULT ( *GetBuffer)(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,const IID *const riid);
//C HRESULT ( *SendReceive)(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,ULONG *pStatus);
//C HRESULT ( *FreeBuffer)(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage);
//C HRESULT ( *GetDestCtx)(IRpcChannelBuffer *This,DWORD *pdwDestContext,void **ppvDestContext);
//C HRESULT ( *IsConnected)(IRpcChannelBuffer *This);
//C } IRpcChannelBufferVtbl;
struct IRpcChannelBufferVtbl
{
HRESULT function(IRpcChannelBuffer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcChannelBuffer *This)AddRef;
ULONG function(IRpcChannelBuffer *This)Release;
HRESULT function(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, IID *riid)GetBuffer;
HRESULT function(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, ULONG *pStatus)SendReceive;
HRESULT function(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage)FreeBuffer;
HRESULT function(IRpcChannelBuffer *This, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtx;
HRESULT function(IRpcChannelBuffer *This)IsConnected;
}
//C struct IRpcChannelBuffer {
//C struct IRpcChannelBufferVtbl *lpVtbl;
//C };
struct IRpcChannelBuffer
{
IRpcChannelBufferVtbl *lpVtbl;
}
//C HRESULT IRpcChannelBuffer_GetBuffer_Proxy(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,const IID *const riid);
HRESULT IRpcChannelBuffer_GetBuffer_Proxy(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, IID *riid);
//C void IRpcChannelBuffer_GetBuffer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer_GetBuffer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer_SendReceive_Proxy(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,ULONG *pStatus);
HRESULT IRpcChannelBuffer_SendReceive_Proxy(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, ULONG *pStatus);
//C void IRpcChannelBuffer_SendReceive_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer_SendReceive_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer_FreeBuffer_Proxy(IRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage);
HRESULT IRpcChannelBuffer_FreeBuffer_Proxy(IRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage);
//C void IRpcChannelBuffer_FreeBuffer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer_FreeBuffer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer_GetDestCtx_Proxy(IRpcChannelBuffer *This,DWORD *pdwDestContext,void **ppvDestContext);
HRESULT IRpcChannelBuffer_GetDestCtx_Proxy(IRpcChannelBuffer *This, DWORD *pdwDestContext, void **ppvDestContext);
//C void IRpcChannelBuffer_GetDestCtx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer_GetDestCtx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer_IsConnected_Proxy(IRpcChannelBuffer *This);
HRESULT IRpcChannelBuffer_IsConnected_Proxy(IRpcChannelBuffer *This);
//C void IRpcChannelBuffer_IsConnected_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer_IsConnected_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcChannelBuffer2Vtbl {
//C HRESULT ( *QueryInterface)(IRpcChannelBuffer2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcChannelBuffer2 *This);
//C ULONG ( *Release)(IRpcChannelBuffer2 *This);
//C HRESULT ( *GetBuffer)(IRpcChannelBuffer2 *This,RPCOLEMESSAGE *pMessage,const IID *const riid);
//C HRESULT ( *SendReceive)(IRpcChannelBuffer2 *This,RPCOLEMESSAGE *pMessage,ULONG *pStatus);
//C HRESULT ( *FreeBuffer)(IRpcChannelBuffer2 *This,RPCOLEMESSAGE *pMessage);
//C HRESULT ( *GetDestCtx)(IRpcChannelBuffer2 *This,DWORD *pdwDestContext,void **ppvDestContext);
//C HRESULT ( *IsConnected)(IRpcChannelBuffer2 *This);
//C HRESULT ( *GetProtocolVersion)(IRpcChannelBuffer2 *This,DWORD *pdwVersion);
//C } IRpcChannelBuffer2Vtbl;
struct IRpcChannelBuffer2Vtbl
{
HRESULT function(IRpcChannelBuffer2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcChannelBuffer2 *This)AddRef;
ULONG function(IRpcChannelBuffer2 *This)Release;
HRESULT function(IRpcChannelBuffer2 *This, RPCOLEMESSAGE *pMessage, IID *riid)GetBuffer;
HRESULT function(IRpcChannelBuffer2 *This, RPCOLEMESSAGE *pMessage, ULONG *pStatus)SendReceive;
HRESULT function(IRpcChannelBuffer2 *This, RPCOLEMESSAGE *pMessage)FreeBuffer;
HRESULT function(IRpcChannelBuffer2 *This, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtx;
HRESULT function(IRpcChannelBuffer2 *This)IsConnected;
HRESULT function(IRpcChannelBuffer2 *This, DWORD *pdwVersion)GetProtocolVersion;
}
//C struct IRpcChannelBuffer2 {
//C struct IRpcChannelBuffer2Vtbl *lpVtbl;
//C };
struct IRpcChannelBuffer2
{
IRpcChannelBuffer2Vtbl *lpVtbl;
}
//C HRESULT IRpcChannelBuffer2_GetProtocolVersion_Proxy(IRpcChannelBuffer2 *This,DWORD *pdwVersion);
HRESULT IRpcChannelBuffer2_GetProtocolVersion_Proxy(IRpcChannelBuffer2 *This, DWORD *pdwVersion);
//C void IRpcChannelBuffer2_GetProtocolVersion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer2_GetProtocolVersion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IAsyncRpcChannelBufferVtbl {
//C HRESULT ( *QueryInterface)(IAsyncRpcChannelBuffer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAsyncRpcChannelBuffer *This);
//C ULONG ( *Release)(IAsyncRpcChannelBuffer *This);
//C HRESULT ( *GetBuffer)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,const IID *const riid);
//C HRESULT ( *SendReceive)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage,ULONG *pStatus);
//C HRESULT ( *FreeBuffer)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMessage);
//C HRESULT ( *GetDestCtx)(IAsyncRpcChannelBuffer *This,DWORD *pdwDestContext,void **ppvDestContext);
//C HRESULT ( *IsConnected)(IAsyncRpcChannelBuffer *This);
//C HRESULT ( *GetProtocolVersion)(IAsyncRpcChannelBuffer *This,DWORD *pdwVersion);
//C HRESULT ( *Send)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,ISynchronize *pSync,ULONG *pulStatus);
//C HRESULT ( *Receive)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,ULONG *pulStatus);
//C HRESULT ( *GetDestCtxEx)(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,DWORD *pdwDestContext,void **ppvDestContext);
//C } IAsyncRpcChannelBufferVtbl;
struct IAsyncRpcChannelBufferVtbl
{
HRESULT function(IAsyncRpcChannelBuffer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAsyncRpcChannelBuffer *This)AddRef;
ULONG function(IAsyncRpcChannelBuffer *This)Release;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, IID *riid)GetBuffer;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage, ULONG *pStatus)SendReceive;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMessage)FreeBuffer;
HRESULT function(IAsyncRpcChannelBuffer *This, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtx;
HRESULT function(IAsyncRpcChannelBuffer *This)IsConnected;
HRESULT function(IAsyncRpcChannelBuffer *This, DWORD *pdwVersion)GetProtocolVersion;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, ISynchronize *pSync, ULONG *pulStatus)Send;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, ULONG *pulStatus)Receive;
HRESULT function(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtxEx;
}
//C struct IAsyncRpcChannelBuffer {
//C struct IAsyncRpcChannelBufferVtbl *lpVtbl;
//C };
struct IAsyncRpcChannelBuffer
{
IAsyncRpcChannelBufferVtbl *lpVtbl;
}
//C HRESULT IAsyncRpcChannelBuffer_Send_Proxy(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,ISynchronize *pSync,ULONG *pulStatus);
HRESULT IAsyncRpcChannelBuffer_Send_Proxy(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, ISynchronize *pSync, ULONG *pulStatus);
//C void IAsyncRpcChannelBuffer_Send_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncRpcChannelBuffer_Send_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAsyncRpcChannelBuffer_Receive_Proxy(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,ULONG *pulStatus);
HRESULT IAsyncRpcChannelBuffer_Receive_Proxy(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, ULONG *pulStatus);
//C void IAsyncRpcChannelBuffer_Receive_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncRpcChannelBuffer_Receive_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAsyncRpcChannelBuffer_GetDestCtxEx_Proxy(IAsyncRpcChannelBuffer *This,RPCOLEMESSAGE *pMsg,DWORD *pdwDestContext,void **ppvDestContext);
HRESULT IAsyncRpcChannelBuffer_GetDestCtxEx_Proxy(IAsyncRpcChannelBuffer *This, RPCOLEMESSAGE *pMsg, DWORD *pdwDestContext, void **ppvDestContext);
//C void IAsyncRpcChannelBuffer_GetDestCtxEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncRpcChannelBuffer_GetDestCtxEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcChannelBuffer3Vtbl {
//C HRESULT ( *QueryInterface)(IRpcChannelBuffer3 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcChannelBuffer3 *This);
//C ULONG ( *Release)(IRpcChannelBuffer3 *This);
//C HRESULT ( *GetBuffer)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMessage,const IID *const riid);
//C HRESULT ( *SendReceive)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMessage,ULONG *pStatus);
//C HRESULT ( *FreeBuffer)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMessage);
//C HRESULT ( *GetDestCtx)(IRpcChannelBuffer3 *This,DWORD *pdwDestContext,void **ppvDestContext);
//C HRESULT ( *IsConnected)(IRpcChannelBuffer3 *This);
//C HRESULT ( *GetProtocolVersion)(IRpcChannelBuffer3 *This,DWORD *pdwVersion);
//C HRESULT ( *Send)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,ULONG *pulStatus);
//C HRESULT ( *Receive)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,ULONG ulSize,ULONG *pulStatus);
//C HRESULT ( *Cancel)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg);
//C HRESULT ( *GetCallContext)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,const IID *const riid,void **pInterface);
//C HRESULT ( *GetDestCtxEx)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,DWORD *pdwDestContext,void **ppvDestContext);
//C HRESULT ( *GetState)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,DWORD *pState);
//C HRESULT ( *RegisterAsync)(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,IAsyncManager *pAsyncMgr);
//C } IRpcChannelBuffer3Vtbl;
struct IRpcChannelBuffer3Vtbl
{
HRESULT function(IRpcChannelBuffer3 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcChannelBuffer3 *This)AddRef;
ULONG function(IRpcChannelBuffer3 *This)Release;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMessage, IID *riid)GetBuffer;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMessage, ULONG *pStatus)SendReceive;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMessage)FreeBuffer;
HRESULT function(IRpcChannelBuffer3 *This, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtx;
HRESULT function(IRpcChannelBuffer3 *This)IsConnected;
HRESULT function(IRpcChannelBuffer3 *This, DWORD *pdwVersion)GetProtocolVersion;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, ULONG *pulStatus)Send;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, ULONG ulSize, ULONG *pulStatus)Receive;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg)Cancel;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, IID *riid, void **pInterface)GetCallContext;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, DWORD *pdwDestContext, void **ppvDestContext)GetDestCtxEx;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, DWORD *pState)GetState;
HRESULT function(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, IAsyncManager *pAsyncMgr)RegisterAsync;
}
//C struct IRpcChannelBuffer3 {
//C struct IRpcChannelBuffer3Vtbl *lpVtbl;
//C };
struct IRpcChannelBuffer3
{
IRpcChannelBuffer3Vtbl *lpVtbl;
}
//C HRESULT IRpcChannelBuffer3_Send_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,ULONG *pulStatus);
HRESULT IRpcChannelBuffer3_Send_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, ULONG *pulStatus);
//C void IRpcChannelBuffer3_Send_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_Send_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_Receive_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,ULONG ulSize,ULONG *pulStatus);
HRESULT IRpcChannelBuffer3_Receive_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, ULONG ulSize, ULONG *pulStatus);
//C void IRpcChannelBuffer3_Receive_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_Receive_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_Cancel_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg);
HRESULT IRpcChannelBuffer3_Cancel_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg);
//C void IRpcChannelBuffer3_Cancel_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_Cancel_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_GetCallContext_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,const IID *const riid,void **pInterface);
HRESULT IRpcChannelBuffer3_GetCallContext_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, IID *riid, void **pInterface);
//C void IRpcChannelBuffer3_GetCallContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_GetCallContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_GetDestCtxEx_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,DWORD *pdwDestContext,void **ppvDestContext);
HRESULT IRpcChannelBuffer3_GetDestCtxEx_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, DWORD *pdwDestContext, void **ppvDestContext);
//C void IRpcChannelBuffer3_GetDestCtxEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_GetDestCtxEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_GetState_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,DWORD *pState);
HRESULT IRpcChannelBuffer3_GetState_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, DWORD *pState);
//C void IRpcChannelBuffer3_GetState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_GetState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcChannelBuffer3_RegisterAsync_Proxy(IRpcChannelBuffer3 *This,RPCOLEMESSAGE *pMsg,IAsyncManager *pAsyncMgr);
HRESULT IRpcChannelBuffer3_RegisterAsync_Proxy(IRpcChannelBuffer3 *This, RPCOLEMESSAGE *pMsg, IAsyncManager *pAsyncMgr);
//C void IRpcChannelBuffer3_RegisterAsync_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcChannelBuffer3_RegisterAsync_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcSyntaxNegotiateVtbl {
//C HRESULT ( *QueryInterface)(IRpcSyntaxNegotiate *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcSyntaxNegotiate *This);
//C ULONG ( *Release)(IRpcSyntaxNegotiate *This);
//C HRESULT ( *NegotiateSyntax)(IRpcSyntaxNegotiate *This,RPCOLEMESSAGE *pMsg);
//C } IRpcSyntaxNegotiateVtbl;
struct IRpcSyntaxNegotiateVtbl
{
HRESULT function(IRpcSyntaxNegotiate *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcSyntaxNegotiate *This)AddRef;
ULONG function(IRpcSyntaxNegotiate *This)Release;
HRESULT function(IRpcSyntaxNegotiate *This, RPCOLEMESSAGE *pMsg)NegotiateSyntax;
}
//C struct IRpcSyntaxNegotiate {
//C struct IRpcSyntaxNegotiateVtbl *lpVtbl;
//C };
struct IRpcSyntaxNegotiate
{
IRpcSyntaxNegotiateVtbl *lpVtbl;
}
//C HRESULT IRpcSyntaxNegotiate_NegotiateSyntax_Proxy(IRpcSyntaxNegotiate *This,RPCOLEMESSAGE *pMsg);
HRESULT IRpcSyntaxNegotiate_NegotiateSyntax_Proxy(IRpcSyntaxNegotiate *This, RPCOLEMESSAGE *pMsg);
//C void IRpcSyntaxNegotiate_NegotiateSyntax_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcSyntaxNegotiate_NegotiateSyntax_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcProxyBufferVtbl {
//C HRESULT ( *QueryInterface)(IRpcProxyBuffer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcProxyBuffer *This);
//C ULONG ( *Release)(IRpcProxyBuffer *This);
//C HRESULT ( *Connect)(IRpcProxyBuffer *This,IRpcChannelBuffer *pRpcChannelBuffer);
//C void ( *Disconnect)(IRpcProxyBuffer *This);
//C } IRpcProxyBufferVtbl;
struct IRpcProxyBufferVtbl
{
HRESULT function(IRpcProxyBuffer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcProxyBuffer *This)AddRef;
ULONG function(IRpcProxyBuffer *This)Release;
HRESULT function(IRpcProxyBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer)Connect;
void function(IRpcProxyBuffer *This)Disconnect;
}
//C struct IRpcProxyBuffer {
//C struct IRpcProxyBufferVtbl *lpVtbl;
//C };
struct IRpcProxyBuffer
{
IRpcProxyBufferVtbl *lpVtbl;
}
//C HRESULT IRpcProxyBuffer_Connect_Proxy(IRpcProxyBuffer *This,IRpcChannelBuffer *pRpcChannelBuffer);
HRESULT IRpcProxyBuffer_Connect_Proxy(IRpcProxyBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer);
//C void IRpcProxyBuffer_Connect_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcProxyBuffer_Connect_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IRpcProxyBuffer_Disconnect_Proxy(IRpcProxyBuffer *This);
void IRpcProxyBuffer_Disconnect_Proxy(IRpcProxyBuffer *This);
//C void IRpcProxyBuffer_Disconnect_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcProxyBuffer_Disconnect_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcStubBufferVtbl {
//C HRESULT ( *QueryInterface)(IRpcStubBuffer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcStubBuffer *This);
//C ULONG ( *Release)(IRpcStubBuffer *This);
//C HRESULT ( *Connect)(IRpcStubBuffer *This,IUnknown *pUnkServer);
//C void ( *Disconnect)(IRpcStubBuffer *This);
//C HRESULT ( *Invoke)(IRpcStubBuffer *This,RPCOLEMESSAGE *_prpcmsg,IRpcChannelBuffer *_pRpcChannelBuffer);
//C IRpcStubBuffer *( *IsIIDSupported)(IRpcStubBuffer *This,const IID *const riid);
//C ULONG ( *CountRefs)(IRpcStubBuffer *This);
//C HRESULT ( *DebugServerQueryInterface)(IRpcStubBuffer *This,void **ppv);
//C void ( *DebugServerRelease)(IRpcStubBuffer *This,void *pv);
//C } IRpcStubBufferVtbl;
struct IRpcStubBufferVtbl
{
HRESULT function(IRpcStubBuffer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcStubBuffer *This)AddRef;
ULONG function(IRpcStubBuffer *This)Release;
HRESULT function(IRpcStubBuffer *This, IUnknown *pUnkServer)Connect;
void function(IRpcStubBuffer *This)Disconnect;
HRESULT function(IRpcStubBuffer *This, RPCOLEMESSAGE *_prpcmsg, IRpcChannelBuffer *_pRpcChannelBuffer)Invoke;
IRpcStubBuffer * function(IRpcStubBuffer *This, IID *riid)IsIIDSupported;
ULONG function(IRpcStubBuffer *This)CountRefs;
HRESULT function(IRpcStubBuffer *This, void **ppv)DebugServerQueryInterface;
void function(IRpcStubBuffer *This, void *pv)DebugServerRelease;
}
//C struct IRpcStubBuffer {
//C struct IRpcStubBufferVtbl *lpVtbl;
//C };
struct IRpcStubBuffer
{
IRpcStubBufferVtbl *lpVtbl;
}
//C HRESULT IRpcStubBuffer_Connect_Proxy(IRpcStubBuffer *This,IUnknown *pUnkServer);
HRESULT IRpcStubBuffer_Connect_Proxy(IRpcStubBuffer *This, IUnknown *pUnkServer);
//C void IRpcStubBuffer_Connect_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_Connect_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IRpcStubBuffer_Disconnect_Proxy(IRpcStubBuffer *This);
void IRpcStubBuffer_Disconnect_Proxy(IRpcStubBuffer *This);
//C void IRpcStubBuffer_Disconnect_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_Disconnect_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcStubBuffer_Invoke_Proxy(IRpcStubBuffer *This,RPCOLEMESSAGE *_prpcmsg,IRpcChannelBuffer *_pRpcChannelBuffer);
HRESULT IRpcStubBuffer_Invoke_Proxy(IRpcStubBuffer *This, RPCOLEMESSAGE *_prpcmsg, IRpcChannelBuffer *_pRpcChannelBuffer);
//C void IRpcStubBuffer_Invoke_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_Invoke_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C IRpcStubBuffer * IRpcStubBuffer_IsIIDSupported_Proxy(IRpcStubBuffer *This,const IID *const riid);
IRpcStubBuffer * IRpcStubBuffer_IsIIDSupported_Proxy(IRpcStubBuffer *This, IID *riid);
//C void IRpcStubBuffer_IsIIDSupported_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_IsIIDSupported_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C ULONG IRpcStubBuffer_CountRefs_Proxy(IRpcStubBuffer *This);
ULONG IRpcStubBuffer_CountRefs_Proxy(IRpcStubBuffer *This);
//C void IRpcStubBuffer_CountRefs_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_CountRefs_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcStubBuffer_DebugServerQueryInterface_Proxy(IRpcStubBuffer *This,void **ppv);
HRESULT IRpcStubBuffer_DebugServerQueryInterface_Proxy(IRpcStubBuffer *This, void **ppv);
//C void IRpcStubBuffer_DebugServerQueryInterface_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_DebugServerQueryInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IRpcStubBuffer_DebugServerRelease_Proxy(IRpcStubBuffer *This,void *pv);
void IRpcStubBuffer_DebugServerRelease_Proxy(IRpcStubBuffer *This, void *pv);
//C void IRpcStubBuffer_DebugServerRelease_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcStubBuffer_DebugServerRelease_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IPSFactoryBufferVtbl {
//C HRESULT ( *QueryInterface)(IPSFactoryBuffer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPSFactoryBuffer *This);
//C ULONG ( *Release)(IPSFactoryBuffer *This);
//C HRESULT ( *CreateProxy)(IPSFactoryBuffer *This,IUnknown *pUnkOuter,const IID *const riid,IRpcProxyBuffer **ppProxy,void **ppv);
//C HRESULT ( *CreateStub)(IPSFactoryBuffer *This,const IID *const riid,IUnknown *pUnkServer,IRpcStubBuffer **ppStub);
//C } IPSFactoryBufferVtbl;
struct IPSFactoryBufferVtbl
{
HRESULT function(IPSFactoryBuffer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPSFactoryBuffer *This)AddRef;
ULONG function(IPSFactoryBuffer *This)Release;
HRESULT function(IPSFactoryBuffer *This, IUnknown *pUnkOuter, IID *riid, IRpcProxyBuffer **ppProxy, void **ppv)CreateProxy;
HRESULT function(IPSFactoryBuffer *This, IID *riid, IUnknown *pUnkServer, IRpcStubBuffer **ppStub)CreateStub;
}
//C struct IPSFactoryBuffer {
//C struct IPSFactoryBufferVtbl *lpVtbl;
//C };
struct IPSFactoryBuffer
{
IPSFactoryBufferVtbl *lpVtbl;
}
//C HRESULT IPSFactoryBuffer_CreateProxy_Proxy(IPSFactoryBuffer *This,IUnknown *pUnkOuter,const IID *const riid,IRpcProxyBuffer **ppProxy,void **ppv);
HRESULT IPSFactoryBuffer_CreateProxy_Proxy(IPSFactoryBuffer *This, IUnknown *pUnkOuter, IID *riid, IRpcProxyBuffer **ppProxy, void **ppv);
//C void IPSFactoryBuffer_CreateProxy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPSFactoryBuffer_CreateProxy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPSFactoryBuffer_CreateStub_Proxy(IPSFactoryBuffer *This,const IID *const riid,IUnknown *pUnkServer,IRpcStubBuffer **ppStub);
HRESULT IPSFactoryBuffer_CreateStub_Proxy(IPSFactoryBuffer *This, IID *riid, IUnknown *pUnkServer, IRpcStubBuffer **ppStub);
//C void IPSFactoryBuffer_CreateStub_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPSFactoryBuffer_CreateStub_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct SChannelHookCallInfo {
//C IID iid;
//C DWORD cbSize;
//C GUID uCausality;
//C DWORD dwServerPid;
//C DWORD iMethod;
//C void *pObject;
//C } SChannelHookCallInfo;
struct SChannelHookCallInfo
{
IID iid;
DWORD cbSize;
GUID uCausality;
DWORD dwServerPid;
DWORD iMethod;
void *pObject;
}
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0050_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0050_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0050_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0050_v0_0_s_ifspec;
//C typedef struct IChannelHookVtbl {
//C HRESULT ( *QueryInterface)(IChannelHook *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IChannelHook *This);
//C ULONG ( *Release)(IChannelHook *This);
//C void ( *ClientGetSize)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize);
//C void ( *ClientFillBuffer)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize,void *pDataBuffer);
//C void ( *ClientNotify)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG cbDataSize,void *pDataBuffer,DWORD lDataRep,HRESULT hrFault);
//C void ( *ServerNotify)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG cbDataSize,void *pDataBuffer,DWORD lDataRep);
//C void ( *ServerGetSize)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,HRESULT hrFault,ULONG *pDataSize);
//C void ( *ServerFillBuffer)(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize,void *pDataBuffer,HRESULT hrFault);
//C } IChannelHookVtbl;
struct IChannelHookVtbl
{
HRESULT function(IChannelHook *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IChannelHook *This)AddRef;
ULONG function(IChannelHook *This)Release;
void function(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize)ClientGetSize;
void function(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize, void *pDataBuffer)ClientFillBuffer;
void function(IChannelHook *This, GUID *uExtent, IID *riid, ULONG cbDataSize, void *pDataBuffer, DWORD lDataRep, HRESULT hrFault)ClientNotify;
void function(IChannelHook *This, GUID *uExtent, IID *riid, ULONG cbDataSize, void *pDataBuffer, DWORD lDataRep)ServerNotify;
void function(IChannelHook *This, GUID *uExtent, IID *riid, HRESULT hrFault, ULONG *pDataSize)ServerGetSize;
void function(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize, void *pDataBuffer, HRESULT hrFault)ServerFillBuffer;
}
//C struct IChannelHook {
//C struct IChannelHookVtbl *lpVtbl;
//C };
struct IChannelHook
{
IChannelHookVtbl *lpVtbl;
}
//C void IChannelHook_ClientGetSize_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize);
void IChannelHook_ClientGetSize_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize);
//C void IChannelHook_ClientGetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ClientGetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IChannelHook_ClientFillBuffer_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize,void *pDataBuffer);
void IChannelHook_ClientFillBuffer_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize, void *pDataBuffer);
//C void IChannelHook_ClientFillBuffer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ClientFillBuffer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IChannelHook_ClientNotify_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG cbDataSize,void *pDataBuffer,DWORD lDataRep,HRESULT hrFault);
void IChannelHook_ClientNotify_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, ULONG cbDataSize, void *pDataBuffer, DWORD lDataRep, HRESULT hrFault);
//C void IChannelHook_ClientNotify_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ClientNotify_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IChannelHook_ServerNotify_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG cbDataSize,void *pDataBuffer,DWORD lDataRep);
void IChannelHook_ServerNotify_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, ULONG cbDataSize, void *pDataBuffer, DWORD lDataRep);
//C void IChannelHook_ServerNotify_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ServerNotify_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IChannelHook_ServerGetSize_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,HRESULT hrFault,ULONG *pDataSize);
void IChannelHook_ServerGetSize_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, HRESULT hrFault, ULONG *pDataSize);
//C void IChannelHook_ServerGetSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ServerGetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C void IChannelHook_ServerFillBuffer_Proxy(IChannelHook *This,const GUID *const uExtent,const IID *const riid,ULONG *pDataSize,void *pDataBuffer,HRESULT hrFault);
void IChannelHook_ServerFillBuffer_Proxy(IChannelHook *This, GUID *uExtent, IID *riid, ULONG *pDataSize, void *pDataBuffer, HRESULT hrFault);
//C void IChannelHook_ServerFillBuffer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IChannelHook_ServerFillBuffer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern const FMTID FMTID_SummaryInformation;
extern const FMTID FMTID_SummaryInformation;
//C extern const FMTID FMTID_DocSummaryInformation;
extern const FMTID FMTID_DocSummaryInformation;
//C extern const FMTID FMTID_UserDefinedProperties;
extern const FMTID FMTID_UserDefinedProperties;
//C extern const FMTID FMTID_DiscardableInformation;
extern const FMTID FMTID_DiscardableInformation;
//C extern const FMTID FMTID_ImageSummaryInformation;
extern const FMTID FMTID_ImageSummaryInformation;
//C extern const FMTID FMTID_AudioSummaryInformation;
extern const FMTID FMTID_AudioSummaryInformation;
//C extern const FMTID FMTID_VideoSummaryInformation;
extern const FMTID FMTID_VideoSummaryInformation;
//C extern const FMTID FMTID_MediaFileSummaryInformation;
extern const FMTID FMTID_MediaFileSummaryInformation;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0051_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0051_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0051_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0051_v0_0_s_ifspec;
//C typedef struct tagSOLE_AUTHENTICATION_SERVICE {
//C DWORD dwAuthnSvc;
//C DWORD dwAuthzSvc;
//C OLECHAR *pPrincipalName;
//C HRESULT hr;
//C } SOLE_AUTHENTICATION_SERVICE;
struct tagSOLE_AUTHENTICATION_SERVICE
{
DWORD dwAuthnSvc;
DWORD dwAuthzSvc;
OLECHAR *pPrincipalName;
HRESULT hr;
}
alias tagSOLE_AUTHENTICATION_SERVICE SOLE_AUTHENTICATION_SERVICE;
//C typedef SOLE_AUTHENTICATION_SERVICE *PSOLE_AUTHENTICATION_SERVICE;
alias SOLE_AUTHENTICATION_SERVICE *PSOLE_AUTHENTICATION_SERVICE;
//C typedef enum tagEOLE_AUTHENTICATION_CAPABILITIES {
//C EOAC_NONE = 0,EOAC_MUTUAL_AUTH = 0x1,EOAC_STATIC_CLOAKING = 0x20,EOAC_DYNAMIC_CLOAKING = 0x40,EOAC_ANY_AUTHORITY = 0x80,EOAC_MAKE_FULLSIC = 0x100,
//C EOAC_DEFAULT = 0x800,EOAC_SECURE_REFS = 0x2,EOAC_ACCESS_CONTROL = 0x4,EOAC_APPID = 0x8,EOAC_DYNAMIC = 0x10,EOAC_REQUIRE_FULLSIC = 0x200,
//C EOAC_AUTO_IMPERSONATE = 0x400,EOAC_NO_CUSTOM_MARSHAL = 0x2000,EOAC_DISABLE_AAA = 0x1000
//C } EOLE_AUTHENTICATION_CAPABILITIES;
enum tagEOLE_AUTHENTICATION_CAPABILITIES
{
EOAC_NONE,
EOAC_MUTUAL_AUTH,
EOAC_STATIC_CLOAKING = 32,
EOAC_DYNAMIC_CLOAKING = 64,
EOAC_ANY_AUTHORITY = 128,
EOAC_MAKE_FULLSIC = 256,
EOAC_DEFAULT = 2048,
EOAC_SECURE_REFS = 2,
EOAC_ACCESS_CONTROL = 4,
EOAC_APPID = 8,
EOAC_DYNAMIC = 16,
EOAC_REQUIRE_FULLSIC = 512,
EOAC_AUTO_IMPERSONATE = 1024,
EOAC_NO_CUSTOM_MARSHAL = 8192,
EOAC_DISABLE_AAA = 4096,
}
alias tagEOLE_AUTHENTICATION_CAPABILITIES EOLE_AUTHENTICATION_CAPABILITIES;
//C typedef struct tagSOLE_AUTHENTICATION_INFO {
//C DWORD dwAuthnSvc;
//C DWORD dwAuthzSvc;
//C void *pAuthInfo;
//C } SOLE_AUTHENTICATION_INFO;
struct tagSOLE_AUTHENTICATION_INFO
{
DWORD dwAuthnSvc;
DWORD dwAuthzSvc;
void *pAuthInfo;
}
alias tagSOLE_AUTHENTICATION_INFO SOLE_AUTHENTICATION_INFO;
//C typedef struct tagSOLE_AUTHENTICATION_INFO *PSOLE_AUTHENTICATION_INFO;
alias tagSOLE_AUTHENTICATION_INFO *PSOLE_AUTHENTICATION_INFO;
//C typedef struct tagSOLE_AUTHENTICATION_LIST {
//C DWORD cAuthInfo;
//C SOLE_AUTHENTICATION_INFO *aAuthInfo;
//C } SOLE_AUTHENTICATION_LIST;
struct tagSOLE_AUTHENTICATION_LIST
{
DWORD cAuthInfo;
SOLE_AUTHENTICATION_INFO *aAuthInfo;
}
alias tagSOLE_AUTHENTICATION_LIST SOLE_AUTHENTICATION_LIST;
//C typedef struct tagSOLE_AUTHENTICATION_LIST *PSOLE_AUTHENTICATION_LIST;
alias tagSOLE_AUTHENTICATION_LIST *PSOLE_AUTHENTICATION_LIST;
//C typedef struct IClientSecurityVtbl {
//C HRESULT ( *QueryInterface)(IClientSecurity *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IClientSecurity *This);
//C ULONG ( *Release)(IClientSecurity *This);
//C HRESULT ( *QueryBlanket)(IClientSecurity *This,IUnknown *pProxy,DWORD *pAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,void **pAuthInfo,DWORD *pCapabilites);
//C HRESULT ( *SetBlanket)(IClientSecurity *This,IUnknown *pProxy,DWORD dwAuthnSvc,DWORD dwAuthzSvc,OLECHAR *pServerPrincName,DWORD dwAuthnLevel,DWORD dwImpLevel,void *pAuthInfo,DWORD dwCapabilities);
//C HRESULT ( *CopyProxy)(IClientSecurity *This,IUnknown *pProxy,IUnknown **ppCopy);
//C } IClientSecurityVtbl;
struct IClientSecurityVtbl
{
HRESULT function(IClientSecurity *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IClientSecurity *This)AddRef;
ULONG function(IClientSecurity *This)Release;
HRESULT function(IClientSecurity *This, IUnknown *pProxy, DWORD *pAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, void **pAuthInfo, DWORD *pCapabilites)QueryBlanket;
HRESULT function(IClientSecurity *This, IUnknown *pProxy, DWORD dwAuthnSvc, DWORD dwAuthzSvc, OLECHAR *pServerPrincName, DWORD dwAuthnLevel, DWORD dwImpLevel, void *pAuthInfo, DWORD dwCapabilities)SetBlanket;
HRESULT function(IClientSecurity *This, IUnknown *pProxy, IUnknown **ppCopy)CopyProxy;
}
//C struct IClientSecurity {
//C struct IClientSecurityVtbl *lpVtbl;
//C };
struct IClientSecurity
{
IClientSecurityVtbl *lpVtbl;
}
//C HRESULT IClientSecurity_QueryBlanket_Proxy(IClientSecurity *This,IUnknown *pProxy,DWORD *pAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,void **pAuthInfo,DWORD *pCapabilites);
HRESULT IClientSecurity_QueryBlanket_Proxy(IClientSecurity *This, IUnknown *pProxy, DWORD *pAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, void **pAuthInfo, DWORD *pCapabilites);
//C void IClientSecurity_QueryBlanket_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IClientSecurity_QueryBlanket_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IClientSecurity_SetBlanket_Proxy(IClientSecurity *This,IUnknown *pProxy,DWORD dwAuthnSvc,DWORD dwAuthzSvc,OLECHAR *pServerPrincName,DWORD dwAuthnLevel,DWORD dwImpLevel,void *pAuthInfo,DWORD dwCapabilities);
HRESULT IClientSecurity_SetBlanket_Proxy(IClientSecurity *This, IUnknown *pProxy, DWORD dwAuthnSvc, DWORD dwAuthzSvc, OLECHAR *pServerPrincName, DWORD dwAuthnLevel, DWORD dwImpLevel, void *pAuthInfo, DWORD dwCapabilities);
//C void IClientSecurity_SetBlanket_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IClientSecurity_SetBlanket_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IClientSecurity_CopyProxy_Proxy(IClientSecurity *This,IUnknown *pProxy,IUnknown **ppCopy);
HRESULT IClientSecurity_CopyProxy_Proxy(IClientSecurity *This, IUnknown *pProxy, IUnknown **ppCopy);
//C void IClientSecurity_CopyProxy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IClientSecurity_CopyProxy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IServerSecurityVtbl {
//C HRESULT ( *QueryInterface)(IServerSecurity *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IServerSecurity *This);
//C ULONG ( *Release)(IServerSecurity *This);
//C HRESULT ( *QueryBlanket)(IServerSecurity *This,DWORD *pAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,void **pPrivs,DWORD *pCapabilities);
//C HRESULT ( *ImpersonateClient)(IServerSecurity *This);
//C HRESULT ( *RevertToSelf)(IServerSecurity *This);
//C WINBOOL ( *IsImpersonating)(IServerSecurity *This);
//C } IServerSecurityVtbl;
struct IServerSecurityVtbl
{
HRESULT function(IServerSecurity *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IServerSecurity *This)AddRef;
ULONG function(IServerSecurity *This)Release;
HRESULT function(IServerSecurity *This, DWORD *pAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, void **pPrivs, DWORD *pCapabilities)QueryBlanket;
HRESULT function(IServerSecurity *This)ImpersonateClient;
HRESULT function(IServerSecurity *This)RevertToSelf;
WINBOOL function(IServerSecurity *This)IsImpersonating;
}
//C struct IServerSecurity {
//C struct IServerSecurityVtbl *lpVtbl;
//C };
struct IServerSecurity
{
IServerSecurityVtbl *lpVtbl;
}
//C HRESULT IServerSecurity_QueryBlanket_Proxy(IServerSecurity *This,DWORD *pAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,void **pPrivs,DWORD *pCapabilities);
HRESULT IServerSecurity_QueryBlanket_Proxy(IServerSecurity *This, DWORD *pAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, void **pPrivs, DWORD *pCapabilities);
//C void IServerSecurity_QueryBlanket_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IServerSecurity_QueryBlanket_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IServerSecurity_ImpersonateClient_Proxy(IServerSecurity *This);
HRESULT IServerSecurity_ImpersonateClient_Proxy(IServerSecurity *This);
//C void IServerSecurity_ImpersonateClient_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IServerSecurity_ImpersonateClient_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IServerSecurity_RevertToSelf_Proxy(IServerSecurity *This);
HRESULT IServerSecurity_RevertToSelf_Proxy(IServerSecurity *This);
//C void IServerSecurity_RevertToSelf_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IServerSecurity_RevertToSelf_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C WINBOOL IServerSecurity_IsImpersonating_Proxy(IServerSecurity *This);
WINBOOL IServerSecurity_IsImpersonating_Proxy(IServerSecurity *This);
//C void IServerSecurity_IsImpersonating_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IServerSecurity_IsImpersonating_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IClassActivatorVtbl {
//C HRESULT ( *QueryInterface)(IClassActivator *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IClassActivator *This);
//C ULONG ( *Release)(IClassActivator *This);
//C HRESULT ( *GetClassObject)(IClassActivator *This,const IID *const rclsid,DWORD dwClassContext,LCID locale,const IID *const riid,void **ppv);
//C } IClassActivatorVtbl;
struct IClassActivatorVtbl
{
HRESULT function(IClassActivator *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IClassActivator *This)AddRef;
ULONG function(IClassActivator *This)Release;
HRESULT function(IClassActivator *This, IID *rclsid, DWORD dwClassContext, LCID locale, IID *riid, void **ppv)GetClassObject;
}
//C struct IClassActivator {
//C struct IClassActivatorVtbl *lpVtbl;
//C };
struct IClassActivator
{
IClassActivatorVtbl *lpVtbl;
}
//C HRESULT IClassActivator_GetClassObject_Proxy(IClassActivator *This,const IID *const rclsid,DWORD dwClassContext,LCID locale,const IID *const riid,void **ppv);
HRESULT IClassActivator_GetClassObject_Proxy(IClassActivator *This, IID *rclsid, DWORD dwClassContext, LCID locale, IID *riid, void **ppv);
//C void IClassActivator_GetClassObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IClassActivator_GetClassObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcOptionsVtbl {
//C HRESULT ( *QueryInterface)(IRpcOptions *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcOptions *This);
//C ULONG ( *Release)(IRpcOptions *This);
//C HRESULT ( *Set)(IRpcOptions *This,IUnknown *pPrx,DWORD dwProperty,ULONG_PTR dwValue);
//C HRESULT ( *Query)(IRpcOptions *This,IUnknown *pPrx,DWORD dwProperty,ULONG_PTR *pdwValue);
//C } IRpcOptionsVtbl;
struct IRpcOptionsVtbl
{
HRESULT function(IRpcOptions *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcOptions *This)AddRef;
ULONG function(IRpcOptions *This)Release;
HRESULT function(IRpcOptions *This, IUnknown *pPrx, DWORD dwProperty, ULONG_PTR dwValue)Set;
HRESULT function(IRpcOptions *This, IUnknown *pPrx, DWORD dwProperty, ULONG_PTR *pdwValue)Query;
}
//C struct IRpcOptions {
//C struct IRpcOptionsVtbl *lpVtbl;
//C };
struct IRpcOptions
{
IRpcOptionsVtbl *lpVtbl;
}
//C HRESULT IRpcOptions_Set_Proxy(IRpcOptions *This,IUnknown *pPrx,DWORD dwProperty,ULONG_PTR dwValue);
HRESULT IRpcOptions_Set_Proxy(IRpcOptions *This, IUnknown *pPrx, DWORD dwProperty, ULONG_PTR dwValue);
//C void IRpcOptions_Set_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcOptions_Set_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcOptions_Query_Proxy(IRpcOptions *This,IUnknown *pPrx,DWORD dwProperty,ULONG_PTR *pdwValue);
HRESULT IRpcOptions_Query_Proxy(IRpcOptions *This, IUnknown *pPrx, DWORD dwProperty, ULONG_PTR *pdwValue);
//C void IRpcOptions_Query_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcOptions_Query_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C enum __MIDL___MIDL_itf_objidl_0055_0001 {
//C COMBND_RPCTIMEOUT = 0x1,COMBND_SERVER_LOCALITY = 0x2
//C };
enum __MIDL___MIDL_itf_objidl_0055_0001
{
COMBND_RPCTIMEOUT = 1,
COMBND_SERVER_LOCALITY,
}
//C enum __MIDL___MIDL_itf_objidl_0055_0002 {
//C SERVER_LOCALITY_PROCESS_LOCAL = 0,SERVER_LOCALITY_MACHINE_LOCAL = 1,SERVER_LOCALITY_REMOTE = 2
//C };
enum __MIDL___MIDL_itf_objidl_0055_0002
{
SERVER_LOCALITY_PROCESS_LOCAL,
SERVER_LOCALITY_MACHINE_LOCAL,
SERVER_LOCALITY_REMOTE,
}
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0055_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0055_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0055_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0055_v0_0_s_ifspec;
//C typedef struct IFillLockBytesVtbl {
//C HRESULT ( *QueryInterface)(IFillLockBytes *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IFillLockBytes *This);
//C ULONG ( *Release)(IFillLockBytes *This);
//C HRESULT ( *FillAppend)(IFillLockBytes *This,const void *pv,ULONG cb,ULONG *pcbWritten);
//C HRESULT ( *FillAt)(IFillLockBytes *This,ULARGE_INTEGER ulOffset,const void *pv,ULONG cb,ULONG *pcbWritten);
//C HRESULT ( *SetFillSize)(IFillLockBytes *This,ULARGE_INTEGER ulSize);
//C HRESULT ( *Terminate)(IFillLockBytes *This,WINBOOL bCanceled);
//C } IFillLockBytesVtbl;
struct IFillLockBytesVtbl
{
HRESULT function(IFillLockBytes *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IFillLockBytes *This)AddRef;
ULONG function(IFillLockBytes *This)Release;
HRESULT function(IFillLockBytes *This, void *pv, ULONG cb, ULONG *pcbWritten)FillAppend;
HRESULT function(IFillLockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbWritten)FillAt;
HRESULT function(IFillLockBytes *This, ULARGE_INTEGER ulSize)SetFillSize;
HRESULT function(IFillLockBytes *This, WINBOOL bCanceled)Terminate;
}
//C struct IFillLockBytes {
//C struct IFillLockBytesVtbl *lpVtbl;
//C };
struct IFillLockBytes
{
IFillLockBytesVtbl *lpVtbl;
}
//C HRESULT IFillLockBytes_RemoteFillAppend_Proxy(IFillLockBytes *This,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_RemoteFillAppend_Proxy(IFillLockBytes *This, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void IFillLockBytes_RemoteFillAppend_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IFillLockBytes_RemoteFillAppend_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IFillLockBytes_RemoteFillAt_Proxy(IFillLockBytes *This,ULARGE_INTEGER ulOffset,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_RemoteFillAt_Proxy(IFillLockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void IFillLockBytes_RemoteFillAt_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IFillLockBytes_RemoteFillAt_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IFillLockBytes_SetFillSize_Proxy(IFillLockBytes *This,ULARGE_INTEGER ulSize);
HRESULT IFillLockBytes_SetFillSize_Proxy(IFillLockBytes *This, ULARGE_INTEGER ulSize);
//C void IFillLockBytes_SetFillSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IFillLockBytes_SetFillSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IFillLockBytes_Terminate_Proxy(IFillLockBytes *This,WINBOOL bCanceled);
HRESULT IFillLockBytes_Terminate_Proxy(IFillLockBytes *This, WINBOOL bCanceled);
//C void IFillLockBytes_Terminate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IFillLockBytes_Terminate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IProgressNotifyVtbl {
//C HRESULT ( *QueryInterface)(IProgressNotify *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IProgressNotify *This);
//C ULONG ( *Release)(IProgressNotify *This);
//C HRESULT ( *OnProgress)(IProgressNotify *This,DWORD dwProgressCurrent,DWORD dwProgressMaximum,WINBOOL fAccurate,WINBOOL fOwner);
//C } IProgressNotifyVtbl;
struct IProgressNotifyVtbl
{
HRESULT function(IProgressNotify *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IProgressNotify *This)AddRef;
ULONG function(IProgressNotify *This)Release;
HRESULT function(IProgressNotify *This, DWORD dwProgressCurrent, DWORD dwProgressMaximum, WINBOOL fAccurate, WINBOOL fOwner)OnProgress;
}
//C struct IProgressNotify {
//C struct IProgressNotifyVtbl *lpVtbl;
//C };
struct IProgressNotify
{
IProgressNotifyVtbl *lpVtbl;
}
//C HRESULT IProgressNotify_OnProgress_Proxy(IProgressNotify *This,DWORD dwProgressCurrent,DWORD dwProgressMaximum,WINBOOL fAccurate,WINBOOL fOwner);
HRESULT IProgressNotify_OnProgress_Proxy(IProgressNotify *This, DWORD dwProgressCurrent, DWORD dwProgressMaximum, WINBOOL fAccurate, WINBOOL fOwner);
//C void IProgressNotify_OnProgress_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IProgressNotify_OnProgress_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct tagStorageLayout {
//C DWORD LayoutType;
//C OLECHAR *pwcsElementName;
//C LARGE_INTEGER cOffset;
//C LARGE_INTEGER cBytes;
//C } StorageLayout;
struct tagStorageLayout
{
DWORD LayoutType;
OLECHAR *pwcsElementName;
LARGE_INTEGER cOffset;
LARGE_INTEGER cBytes;
}
alias tagStorageLayout StorageLayout;
//C typedef struct ILayoutStorageVtbl {
//C HRESULT ( *QueryInterface)(ILayoutStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ILayoutStorage *This);
//C ULONG ( *Release)(ILayoutStorage *This);
//C HRESULT ( *LayoutScript)(ILayoutStorage *This,StorageLayout *pStorageLayout,DWORD nEntries,DWORD glfInterleavedFlag);
//C HRESULT ( *BeginMonitor)(ILayoutStorage *This);
//C HRESULT ( *EndMonitor)(ILayoutStorage *This);
//C HRESULT ( *ReLayoutDocfile)(ILayoutStorage *This,OLECHAR *pwcsNewDfName);
//C HRESULT ( *ReLayoutDocfileOnILockBytes)(ILayoutStorage *This,ILockBytes *pILockBytes);
//C } ILayoutStorageVtbl;
struct ILayoutStorageVtbl
{
HRESULT function(ILayoutStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ILayoutStorage *This)AddRef;
ULONG function(ILayoutStorage *This)Release;
HRESULT function(ILayoutStorage *This, StorageLayout *pStorageLayout, DWORD nEntries, DWORD glfInterleavedFlag)LayoutScript;
HRESULT function(ILayoutStorage *This)BeginMonitor;
HRESULT function(ILayoutStorage *This)EndMonitor;
HRESULT function(ILayoutStorage *This, OLECHAR *pwcsNewDfName)ReLayoutDocfile;
HRESULT function(ILayoutStorage *This, ILockBytes *pILockBytes)ReLayoutDocfileOnILockBytes;
}
//C struct ILayoutStorage {
//C struct ILayoutStorageVtbl *lpVtbl;
//C };
struct ILayoutStorage
{
ILayoutStorageVtbl *lpVtbl;
}
//C HRESULT ILayoutStorage_LayoutScript_Proxy(ILayoutStorage *This,StorageLayout *pStorageLayout,DWORD nEntries,DWORD glfInterleavedFlag);
HRESULT ILayoutStorage_LayoutScript_Proxy(ILayoutStorage *This, StorageLayout *pStorageLayout, DWORD nEntries, DWORD glfInterleavedFlag);
//C void ILayoutStorage_LayoutScript_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILayoutStorage_LayoutScript_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILayoutStorage_BeginMonitor_Proxy(ILayoutStorage *This);
HRESULT ILayoutStorage_BeginMonitor_Proxy(ILayoutStorage *This);
//C void ILayoutStorage_BeginMonitor_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILayoutStorage_BeginMonitor_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILayoutStorage_EndMonitor_Proxy(ILayoutStorage *This);
HRESULT ILayoutStorage_EndMonitor_Proxy(ILayoutStorage *This);
//C void ILayoutStorage_EndMonitor_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILayoutStorage_EndMonitor_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILayoutStorage_ReLayoutDocfile_Proxy(ILayoutStorage *This,OLECHAR *pwcsNewDfName);
HRESULT ILayoutStorage_ReLayoutDocfile_Proxy(ILayoutStorage *This, OLECHAR *pwcsNewDfName);
//C void ILayoutStorage_ReLayoutDocfile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILayoutStorage_ReLayoutDocfile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ILayoutStorage_ReLayoutDocfileOnILockBytes_Proxy(ILayoutStorage *This,ILockBytes *pILockBytes);
HRESULT ILayoutStorage_ReLayoutDocfileOnILockBytes_Proxy(ILayoutStorage *This, ILockBytes *pILockBytes);
//C void ILayoutStorage_ReLayoutDocfileOnILockBytes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ILayoutStorage_ReLayoutDocfileOnILockBytes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IBlockingLockVtbl {
//C HRESULT ( *QueryInterface)(IBlockingLock *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IBlockingLock *This);
//C ULONG ( *Release)(IBlockingLock *This);
//C HRESULT ( *Lock)(IBlockingLock *This,DWORD dwTimeout);
//C HRESULT ( *Unlock)(IBlockingLock *This);
//C } IBlockingLockVtbl;
struct IBlockingLockVtbl
{
HRESULT function(IBlockingLock *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBlockingLock *This)AddRef;
ULONG function(IBlockingLock *This)Release;
HRESULT function(IBlockingLock *This, DWORD dwTimeout)Lock;
HRESULT function(IBlockingLock *This)Unlock;
}
//C struct IBlockingLock {
//C struct IBlockingLockVtbl *lpVtbl;
//C };
struct IBlockingLock
{
IBlockingLockVtbl *lpVtbl;
}
//C HRESULT IBlockingLock_Lock_Proxy(IBlockingLock *This,DWORD dwTimeout);
HRESULT IBlockingLock_Lock_Proxy(IBlockingLock *This, DWORD dwTimeout);
//C void IBlockingLock_Lock_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBlockingLock_Lock_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IBlockingLock_Unlock_Proxy(IBlockingLock *This);
HRESULT IBlockingLock_Unlock_Proxy(IBlockingLock *This);
//C void IBlockingLock_Unlock_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBlockingLock_Unlock_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ITimeAndNoticeControlVtbl {
//C HRESULT ( *QueryInterface)(ITimeAndNoticeControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITimeAndNoticeControl *This);
//C ULONG ( *Release)(ITimeAndNoticeControl *This);
//C HRESULT ( *SuppressChanges)(ITimeAndNoticeControl *This,DWORD res1,DWORD res2);
//C } ITimeAndNoticeControlVtbl;
struct ITimeAndNoticeControlVtbl
{
HRESULT function(ITimeAndNoticeControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITimeAndNoticeControl *This)AddRef;
ULONG function(ITimeAndNoticeControl *This)Release;
HRESULT function(ITimeAndNoticeControl *This, DWORD res1, DWORD res2)SuppressChanges;
}
//C struct ITimeAndNoticeControl {
//C struct ITimeAndNoticeControlVtbl *lpVtbl;
//C };
struct ITimeAndNoticeControl
{
ITimeAndNoticeControlVtbl *lpVtbl;
}
//C HRESULT ITimeAndNoticeControl_SuppressChanges_Proxy(ITimeAndNoticeControl *This,DWORD res1,DWORD res2);
HRESULT ITimeAndNoticeControl_SuppressChanges_Proxy(ITimeAndNoticeControl *This, DWORD res1, DWORD res2);
//C void ITimeAndNoticeControl_SuppressChanges_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITimeAndNoticeControl_SuppressChanges_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IOplockStorageVtbl {
//C HRESULT ( *QueryInterface)(IOplockStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOplockStorage *This);
//C ULONG ( *Release)(IOplockStorage *This);
//C HRESULT ( *CreateStorageEx)(IOplockStorage *This,LPCWSTR pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,const IID *const riid,void **ppstgOpen);
//C HRESULT ( *OpenStorageEx)(IOplockStorage *This,LPCWSTR pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,const IID *const riid,void **ppstgOpen);
//C } IOplockStorageVtbl;
struct IOplockStorageVtbl
{
HRESULT function(IOplockStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOplockStorage *This)AddRef;
ULONG function(IOplockStorage *This)Release;
HRESULT function(IOplockStorage *This, LPCWSTR pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, IID *riid, void **ppstgOpen)CreateStorageEx;
HRESULT function(IOplockStorage *This, LPCWSTR pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, IID *riid, void **ppstgOpen)OpenStorageEx;
}
//C struct IOplockStorage {
//C struct IOplockStorageVtbl *lpVtbl;
//C };
struct IOplockStorage
{
IOplockStorageVtbl *lpVtbl;
}
//C HRESULT IOplockStorage_CreateStorageEx_Proxy(IOplockStorage *This,LPCWSTR pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,const IID *const riid,void **ppstgOpen);
HRESULT IOplockStorage_CreateStorageEx_Proxy(IOplockStorage *This, LPCWSTR pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, IID *riid, void **ppstgOpen);
//C void IOplockStorage_CreateStorageEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOplockStorage_CreateStorageEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOplockStorage_OpenStorageEx_Proxy(IOplockStorage *This,LPCWSTR pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,const IID *const riid,void **ppstgOpen);
HRESULT IOplockStorage_OpenStorageEx_Proxy(IOplockStorage *This, LPCWSTR pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, IID *riid, void **ppstgOpen);
//C void IOplockStorage_OpenStorageEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOplockStorage_OpenStorageEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ISurrogate *LPSURROGATE;
alias ISurrogate *LPSURROGATE;
//C typedef struct ISurrogateVtbl {
//C HRESULT ( *QueryInterface)(ISurrogate *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISurrogate *This);
//C ULONG ( *Release)(ISurrogate *This);
//C HRESULT ( *LoadDllServer)(ISurrogate *This,const IID *const Clsid);
//C HRESULT ( *FreeSurrogate)(ISurrogate *This);
//C } ISurrogateVtbl;
struct ISurrogateVtbl
{
HRESULT function(ISurrogate *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISurrogate *This)AddRef;
ULONG function(ISurrogate *This)Release;
HRESULT function(ISurrogate *This, IID *Clsid)LoadDllServer;
HRESULT function(ISurrogate *This)FreeSurrogate;
}
//C struct ISurrogate {
//C struct ISurrogateVtbl *lpVtbl;
//C };
struct ISurrogate
{
ISurrogateVtbl *lpVtbl;
}
//C HRESULT ISurrogate_LoadDllServer_Proxy(ISurrogate *This,const IID *const Clsid);
HRESULT ISurrogate_LoadDllServer_Proxy(ISurrogate *This, IID *Clsid);
//C void ISurrogate_LoadDllServer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogate_LoadDllServer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISurrogate_FreeSurrogate_Proxy(ISurrogate *This);
HRESULT ISurrogate_FreeSurrogate_Proxy(ISurrogate *This);
//C void ISurrogate_FreeSurrogate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogate_FreeSurrogate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IGlobalInterfaceTable *LPGLOBALINTERFACETABLE;
alias IGlobalInterfaceTable *LPGLOBALINTERFACETABLE;
//C typedef struct IGlobalInterfaceTableVtbl {
//C HRESULT ( *QueryInterface)(IGlobalInterfaceTable *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IGlobalInterfaceTable *This);
//C ULONG ( *Release)(IGlobalInterfaceTable *This);
//C HRESULT ( *RegisterInterfaceInGlobal)(IGlobalInterfaceTable *This,IUnknown *pUnk,const IID *const riid,DWORD *pdwCookie);
//C HRESULT ( *RevokeInterfaceFromGlobal)(IGlobalInterfaceTable *This,DWORD dwCookie);
//C HRESULT ( *GetInterfaceFromGlobal)(IGlobalInterfaceTable *This,DWORD dwCookie,const IID *const riid,void **ppv);
//C } IGlobalInterfaceTableVtbl;
struct IGlobalInterfaceTableVtbl
{
HRESULT function(IGlobalInterfaceTable *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IGlobalInterfaceTable *This)AddRef;
ULONG function(IGlobalInterfaceTable *This)Release;
HRESULT function(IGlobalInterfaceTable *This, IUnknown *pUnk, IID *riid, DWORD *pdwCookie)RegisterInterfaceInGlobal;
HRESULT function(IGlobalInterfaceTable *This, DWORD dwCookie)RevokeInterfaceFromGlobal;
HRESULT function(IGlobalInterfaceTable *This, DWORD dwCookie, IID *riid, void **ppv)GetInterfaceFromGlobal;
}
//C struct IGlobalInterfaceTable {
//C struct IGlobalInterfaceTableVtbl *lpVtbl;
//C };
struct IGlobalInterfaceTable
{
IGlobalInterfaceTableVtbl *lpVtbl;
}
//C HRESULT IGlobalInterfaceTable_RegisterInterfaceInGlobal_Proxy(IGlobalInterfaceTable *This,IUnknown *pUnk,const IID *const riid,DWORD *pdwCookie);
HRESULT IGlobalInterfaceTable_RegisterInterfaceInGlobal_Proxy(IGlobalInterfaceTable *This, IUnknown *pUnk, IID *riid, DWORD *pdwCookie);
//C void IGlobalInterfaceTable_RegisterInterfaceInGlobal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IGlobalInterfaceTable_RegisterInterfaceInGlobal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IGlobalInterfaceTable_RevokeInterfaceFromGlobal_Proxy(IGlobalInterfaceTable *This,DWORD dwCookie);
HRESULT IGlobalInterfaceTable_RevokeInterfaceFromGlobal_Proxy(IGlobalInterfaceTable *This, DWORD dwCookie);
//C void IGlobalInterfaceTable_RevokeInterfaceFromGlobal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IGlobalInterfaceTable_RevokeInterfaceFromGlobal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IGlobalInterfaceTable_GetInterfaceFromGlobal_Proxy(IGlobalInterfaceTable *This,DWORD dwCookie,const IID *const riid,void **ppv);
HRESULT IGlobalInterfaceTable_GetInterfaceFromGlobal_Proxy(IGlobalInterfaceTable *This, DWORD dwCookie, IID *riid, void **ppv);
//C void IGlobalInterfaceTable_GetInterfaceFromGlobal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IGlobalInterfaceTable_GetInterfaceFromGlobal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IDirectWriterLockVtbl {
//C HRESULT ( *QueryInterface)(IDirectWriterLock *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDirectWriterLock *This);
//C ULONG ( *Release)(IDirectWriterLock *This);
//C HRESULT ( *WaitForWriteAccess)(IDirectWriterLock *This,DWORD dwTimeout);
//C HRESULT ( *ReleaseWriteAccess)(IDirectWriterLock *This);
//C HRESULT ( *HaveWriteAccess)(IDirectWriterLock *This);
//C } IDirectWriterLockVtbl;
struct IDirectWriterLockVtbl
{
HRESULT function(IDirectWriterLock *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDirectWriterLock *This)AddRef;
ULONG function(IDirectWriterLock *This)Release;
HRESULT function(IDirectWriterLock *This, DWORD dwTimeout)WaitForWriteAccess;
HRESULT function(IDirectWriterLock *This)ReleaseWriteAccess;
HRESULT function(IDirectWriterLock *This)HaveWriteAccess;
}
//C struct IDirectWriterLock {
//C struct IDirectWriterLockVtbl *lpVtbl;
//C };
struct IDirectWriterLock
{
IDirectWriterLockVtbl *lpVtbl;
}
//C HRESULT IDirectWriterLock_WaitForWriteAccess_Proxy(IDirectWriterLock *This,DWORD dwTimeout);
HRESULT IDirectWriterLock_WaitForWriteAccess_Proxy(IDirectWriterLock *This, DWORD dwTimeout);
//C void IDirectWriterLock_WaitForWriteAccess_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDirectWriterLock_WaitForWriteAccess_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDirectWriterLock_ReleaseWriteAccess_Proxy(IDirectWriterLock *This);
HRESULT IDirectWriterLock_ReleaseWriteAccess_Proxy(IDirectWriterLock *This);
//C void IDirectWriterLock_ReleaseWriteAccess_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDirectWriterLock_ReleaseWriteAccess_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDirectWriterLock_HaveWriteAccess_Proxy(IDirectWriterLock *This);
HRESULT IDirectWriterLock_HaveWriteAccess_Proxy(IDirectWriterLock *This);
//C void IDirectWriterLock_HaveWriteAccess_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDirectWriterLock_HaveWriteAccess_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISynchronizeVtbl {
//C HRESULT ( *QueryInterface)(ISynchronize *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISynchronize *This);
//C ULONG ( *Release)(ISynchronize *This);
//C HRESULT ( *Wait)(ISynchronize *This,DWORD dwFlags,DWORD dwMilliseconds);
//C HRESULT ( *Signal)(ISynchronize *This);
//C HRESULT ( *Reset)(ISynchronize *This);
//C } ISynchronizeVtbl;
struct ISynchronizeVtbl
{
HRESULT function(ISynchronize *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISynchronize *This)AddRef;
ULONG function(ISynchronize *This)Release;
HRESULT function(ISynchronize *This, DWORD dwFlags, DWORD dwMilliseconds)Wait;
HRESULT function(ISynchronize *This)Signal;
HRESULT function(ISynchronize *This)Reset;
}
//C struct ISynchronize {
//C struct ISynchronizeVtbl *lpVtbl;
//C };
struct ISynchronize
{
ISynchronizeVtbl *lpVtbl;
}
//C HRESULT ISynchronize_Wait_Proxy(ISynchronize *This,DWORD dwFlags,DWORD dwMilliseconds);
HRESULT ISynchronize_Wait_Proxy(ISynchronize *This, DWORD dwFlags, DWORD dwMilliseconds);
//C void ISynchronize_Wait_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronize_Wait_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISynchronize_Signal_Proxy(ISynchronize *This);
HRESULT ISynchronize_Signal_Proxy(ISynchronize *This);
//C void ISynchronize_Signal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronize_Signal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISynchronize_Reset_Proxy(ISynchronize *This);
HRESULT ISynchronize_Reset_Proxy(ISynchronize *This);
//C void ISynchronize_Reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronize_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISynchronizeHandleVtbl {
//C HRESULT ( *QueryInterface)(ISynchronizeHandle *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISynchronizeHandle *This);
//C ULONG ( *Release)(ISynchronizeHandle *This);
//C HRESULT ( *GetHandle)(ISynchronizeHandle *This,HANDLE *ph);
//C } ISynchronizeHandleVtbl;
struct ISynchronizeHandleVtbl
{
HRESULT function(ISynchronizeHandle *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISynchronizeHandle *This)AddRef;
ULONG function(ISynchronizeHandle *This)Release;
HRESULT function(ISynchronizeHandle *This, HANDLE *ph)GetHandle;
}
//C struct ISynchronizeHandle {
//C struct ISynchronizeHandleVtbl *lpVtbl;
//C };
struct ISynchronizeHandle
{
ISynchronizeHandleVtbl *lpVtbl;
}
//C HRESULT ISynchronizeHandle_GetHandle_Proxy(ISynchronizeHandle *This,HANDLE *ph);
HRESULT ISynchronizeHandle_GetHandle_Proxy(ISynchronizeHandle *This, HANDLE *ph);
//C void ISynchronizeHandle_GetHandle_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronizeHandle_GetHandle_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISynchronizeEventVtbl {
//C HRESULT ( *QueryInterface)(ISynchronizeEvent *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISynchronizeEvent *This);
//C ULONG ( *Release)(ISynchronizeEvent *This);
//C HRESULT ( *GetHandle)(ISynchronizeEvent *This,HANDLE *ph);
//C HRESULT ( *SetEventHandle)(ISynchronizeEvent *This,HANDLE *ph);
//C } ISynchronizeEventVtbl;
struct ISynchronizeEventVtbl
{
HRESULT function(ISynchronizeEvent *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISynchronizeEvent *This)AddRef;
ULONG function(ISynchronizeEvent *This)Release;
HRESULT function(ISynchronizeEvent *This, HANDLE *ph)GetHandle;
HRESULT function(ISynchronizeEvent *This, HANDLE *ph)SetEventHandle;
}
//C struct ISynchronizeEvent {
//C struct ISynchronizeEventVtbl *lpVtbl;
//C };
struct ISynchronizeEvent
{
ISynchronizeEventVtbl *lpVtbl;
}
//C HRESULT ISynchronizeEvent_SetEventHandle_Proxy(ISynchronizeEvent *This,HANDLE *ph);
HRESULT ISynchronizeEvent_SetEventHandle_Proxy(ISynchronizeEvent *This, HANDLE *ph);
//C void ISynchronizeEvent_SetEventHandle_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronizeEvent_SetEventHandle_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISynchronizeContainerVtbl {
//C HRESULT ( *QueryInterface)(ISynchronizeContainer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISynchronizeContainer *This);
//C ULONG ( *Release)(ISynchronizeContainer *This);
//C HRESULT ( *AddSynchronize)(ISynchronizeContainer *This,ISynchronize *pSync);
//C HRESULT ( *WaitMultiple)(ISynchronizeContainer *This,DWORD dwFlags,DWORD dwTimeOut,ISynchronize **ppSync);
//C } ISynchronizeContainerVtbl;
struct ISynchronizeContainerVtbl
{
HRESULT function(ISynchronizeContainer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISynchronizeContainer *This)AddRef;
ULONG function(ISynchronizeContainer *This)Release;
HRESULT function(ISynchronizeContainer *This, ISynchronize *pSync)AddSynchronize;
HRESULT function(ISynchronizeContainer *This, DWORD dwFlags, DWORD dwTimeOut, ISynchronize **ppSync)WaitMultiple;
}
//C struct ISynchronizeContainer {
//C struct ISynchronizeContainerVtbl *lpVtbl;
//C };
struct ISynchronizeContainer
{
ISynchronizeContainerVtbl *lpVtbl;
}
//C HRESULT ISynchronizeContainer_AddSynchronize_Proxy(ISynchronizeContainer *This,ISynchronize *pSync);
HRESULT ISynchronizeContainer_AddSynchronize_Proxy(ISynchronizeContainer *This, ISynchronize *pSync);
//C void ISynchronizeContainer_AddSynchronize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronizeContainer_AddSynchronize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISynchronizeContainer_WaitMultiple_Proxy(ISynchronizeContainer *This,DWORD dwFlags,DWORD dwTimeOut,ISynchronize **ppSync);
HRESULT ISynchronizeContainer_WaitMultiple_Proxy(ISynchronizeContainer *This, DWORD dwFlags, DWORD dwTimeOut, ISynchronize **ppSync);
//C void ISynchronizeContainer_WaitMultiple_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronizeContainer_WaitMultiple_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISynchronizeMutexVtbl {
//C HRESULT ( *QueryInterface)(ISynchronizeMutex *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISynchronizeMutex *This);
//C ULONG ( *Release)(ISynchronizeMutex *This);
//C HRESULT ( *Wait)(ISynchronizeMutex *This,DWORD dwFlags,DWORD dwMilliseconds);
//C HRESULT ( *Signal)(ISynchronizeMutex *This);
//C HRESULT ( *Reset)(ISynchronizeMutex *This);
//C HRESULT ( *ReleaseMutex)(ISynchronizeMutex *This);
//C } ISynchronizeMutexVtbl;
struct ISynchronizeMutexVtbl
{
HRESULT function(ISynchronizeMutex *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISynchronizeMutex *This)AddRef;
ULONG function(ISynchronizeMutex *This)Release;
HRESULT function(ISynchronizeMutex *This, DWORD dwFlags, DWORD dwMilliseconds)Wait;
HRESULT function(ISynchronizeMutex *This)Signal;
HRESULT function(ISynchronizeMutex *This)Reset;
HRESULT function(ISynchronizeMutex *This)ReleaseMutex;
}
//C struct ISynchronizeMutex {
//C struct ISynchronizeMutexVtbl *lpVtbl;
//C };
struct ISynchronizeMutex
{
ISynchronizeMutexVtbl *lpVtbl;
}
//C HRESULT ISynchronizeMutex_ReleaseMutex_Proxy(ISynchronizeMutex *This);
HRESULT ISynchronizeMutex_ReleaseMutex_Proxy(ISynchronizeMutex *This);
//C void ISynchronizeMutex_ReleaseMutex_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISynchronizeMutex_ReleaseMutex_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ICancelMethodCalls *LPCANCELMETHODCALLS;
alias ICancelMethodCalls *LPCANCELMETHODCALLS;
//C typedef struct ICancelMethodCallsVtbl {
//C HRESULT ( *QueryInterface)(ICancelMethodCalls *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICancelMethodCalls *This);
//C ULONG ( *Release)(ICancelMethodCalls *This);
//C HRESULT ( *Cancel)(ICancelMethodCalls *This,ULONG ulSeconds);
//C HRESULT ( *TestCancel)(ICancelMethodCalls *This);
//C } ICancelMethodCallsVtbl;
struct ICancelMethodCallsVtbl
{
HRESULT function(ICancelMethodCalls *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICancelMethodCalls *This)AddRef;
ULONG function(ICancelMethodCalls *This)Release;
HRESULT function(ICancelMethodCalls *This, ULONG ulSeconds)Cancel;
HRESULT function(ICancelMethodCalls *This)TestCancel;
}
//C struct ICancelMethodCalls {
//C struct ICancelMethodCallsVtbl *lpVtbl;
//C };
struct ICancelMethodCalls
{
ICancelMethodCallsVtbl *lpVtbl;
}
//C HRESULT ICancelMethodCalls_Cancel_Proxy(ICancelMethodCalls *This,ULONG ulSeconds);
HRESULT ICancelMethodCalls_Cancel_Proxy(ICancelMethodCalls *This, ULONG ulSeconds);
//C void ICancelMethodCalls_Cancel_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICancelMethodCalls_Cancel_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICancelMethodCalls_TestCancel_Proxy(ICancelMethodCalls *This);
HRESULT ICancelMethodCalls_TestCancel_Proxy(ICancelMethodCalls *This);
//C void ICancelMethodCalls_TestCancel_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICancelMethodCalls_TestCancel_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef enum tagDCOM_CALL_STATE {
//C DCOM_NONE = 0,DCOM_CALL_COMPLETE = 0x1,DCOM_CALL_CANCELED = 0x2
//C } DCOM_CALL_STATE;
enum tagDCOM_CALL_STATE
{
DCOM_NONE,
DCOM_CALL_COMPLETE,
DCOM_CALL_CANCELED,
}
alias tagDCOM_CALL_STATE DCOM_CALL_STATE;
//C typedef struct IAsyncManagerVtbl {
//C HRESULT ( *QueryInterface)(IAsyncManager *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAsyncManager *This);
//C ULONG ( *Release)(IAsyncManager *This);
//C HRESULT ( *CompleteCall)(IAsyncManager *This,HRESULT Result);
//C HRESULT ( *GetCallContext)(IAsyncManager *This,const IID *const riid,void **pInterface);
//C HRESULT ( *GetState)(IAsyncManager *This,ULONG *pulStateFlags);
//C } IAsyncManagerVtbl;
struct IAsyncManagerVtbl
{
HRESULT function(IAsyncManager *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAsyncManager *This)AddRef;
ULONG function(IAsyncManager *This)Release;
HRESULT function(IAsyncManager *This, HRESULT Result)CompleteCall;
HRESULT function(IAsyncManager *This, IID *riid, void **pInterface)GetCallContext;
HRESULT function(IAsyncManager *This, ULONG *pulStateFlags)GetState;
}
//C struct IAsyncManager {
//C struct IAsyncManagerVtbl *lpVtbl;
//C };
struct IAsyncManager
{
IAsyncManagerVtbl *lpVtbl;
}
//C HRESULT IAsyncManager_CompleteCall_Proxy(IAsyncManager *This,HRESULT Result);
HRESULT IAsyncManager_CompleteCall_Proxy(IAsyncManager *This, HRESULT Result);
//C void IAsyncManager_CompleteCall_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncManager_CompleteCall_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAsyncManager_GetCallContext_Proxy(IAsyncManager *This,const IID *const riid,void **pInterface);
HRESULT IAsyncManager_GetCallContext_Proxy(IAsyncManager *This, IID *riid, void **pInterface);
//C void IAsyncManager_GetCallContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncManager_GetCallContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAsyncManager_GetState_Proxy(IAsyncManager *This,ULONG *pulStateFlags);
HRESULT IAsyncManager_GetState_Proxy(IAsyncManager *This, ULONG *pulStateFlags);
//C void IAsyncManager_GetState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAsyncManager_GetState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ICallFactoryVtbl {
//C HRESULT ( *QueryInterface)(ICallFactory *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICallFactory *This);
//C ULONG ( *Release)(ICallFactory *This);
//C HRESULT ( *CreateCall)(ICallFactory *This,const IID *const riid,IUnknown *pCtrlUnk,const IID *const riid2,IUnknown **ppv);
//C } ICallFactoryVtbl;
struct ICallFactoryVtbl
{
HRESULT function(ICallFactory *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICallFactory *This)AddRef;
ULONG function(ICallFactory *This)Release;
HRESULT function(ICallFactory *This, IID *riid, IUnknown *pCtrlUnk, IID *riid2, IUnknown **ppv)CreateCall;
}
//C struct ICallFactory {
//C struct ICallFactoryVtbl *lpVtbl;
//C };
struct ICallFactory
{
ICallFactoryVtbl *lpVtbl;
}
//C HRESULT ICallFactory_CreateCall_Proxy(ICallFactory *This,const IID *const riid,IUnknown *pCtrlUnk,const IID *const riid2,IUnknown **ppv);
HRESULT ICallFactory_CreateCall_Proxy(ICallFactory *This, IID *riid, IUnknown *pCtrlUnk, IID *riid2, IUnknown **ppv);
//C void ICallFactory_CreateCall_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICallFactory_CreateCall_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IRpcHelperVtbl {
//C HRESULT ( *QueryInterface)(IRpcHelper *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IRpcHelper *This);
//C ULONG ( *Release)(IRpcHelper *This);
//C HRESULT ( *GetDCOMProtocolVersion)(IRpcHelper *This,DWORD *pComVersion);
//C HRESULT ( *GetIIDFromOBJREF)(IRpcHelper *This,void *pObjRef,IID **piid);
//C } IRpcHelperVtbl;
struct IRpcHelperVtbl
{
HRESULT function(IRpcHelper *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRpcHelper *This)AddRef;
ULONG function(IRpcHelper *This)Release;
HRESULT function(IRpcHelper *This, DWORD *pComVersion)GetDCOMProtocolVersion;
HRESULT function(IRpcHelper *This, void *pObjRef, IID **piid)GetIIDFromOBJREF;
}
//C struct IRpcHelper {
//C struct IRpcHelperVtbl *lpVtbl;
//C };
struct IRpcHelper
{
IRpcHelperVtbl *lpVtbl;
}
//C HRESULT IRpcHelper_GetDCOMProtocolVersion_Proxy(IRpcHelper *This,DWORD *pComVersion);
HRESULT IRpcHelper_GetDCOMProtocolVersion_Proxy(IRpcHelper *This, DWORD *pComVersion);
//C void IRpcHelper_GetDCOMProtocolVersion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcHelper_GetDCOMProtocolVersion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IRpcHelper_GetIIDFromOBJREF_Proxy(IRpcHelper *This,void *pObjRef,IID **piid);
HRESULT IRpcHelper_GetIIDFromOBJREF_Proxy(IRpcHelper *This, void *pObjRef, IID **piid);
//C void IRpcHelper_GetIIDFromOBJREF_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IRpcHelper_GetIIDFromOBJREF_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IReleaseMarshalBuffersVtbl {
//C HRESULT ( *QueryInterface)(IReleaseMarshalBuffers *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IReleaseMarshalBuffers *This);
//C ULONG ( *Release)(IReleaseMarshalBuffers *This);
//C HRESULT ( *ReleaseMarshalBuffer)(IReleaseMarshalBuffers *This,RPCOLEMESSAGE *pMsg,DWORD dwFlags,IUnknown *pChnl);
//C } IReleaseMarshalBuffersVtbl;
struct IReleaseMarshalBuffersVtbl
{
HRESULT function(IReleaseMarshalBuffers *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IReleaseMarshalBuffers *This)AddRef;
ULONG function(IReleaseMarshalBuffers *This)Release;
HRESULT function(IReleaseMarshalBuffers *This, RPCOLEMESSAGE *pMsg, DWORD dwFlags, IUnknown *pChnl)ReleaseMarshalBuffer;
}
//C struct IReleaseMarshalBuffers {
//C struct IReleaseMarshalBuffersVtbl *lpVtbl;
//C };
struct IReleaseMarshalBuffers
{
IReleaseMarshalBuffersVtbl *lpVtbl;
}
//C HRESULT IReleaseMarshalBuffers_ReleaseMarshalBuffer_Proxy(IReleaseMarshalBuffers *This,RPCOLEMESSAGE *pMsg,DWORD dwFlags,IUnknown *pChnl);
HRESULT IReleaseMarshalBuffers_ReleaseMarshalBuffer_Proxy(IReleaseMarshalBuffers *This, RPCOLEMESSAGE *pMsg, DWORD dwFlags, IUnknown *pChnl);
//C void IReleaseMarshalBuffers_ReleaseMarshalBuffer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IReleaseMarshalBuffers_ReleaseMarshalBuffer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IWaitMultipleVtbl {
//C HRESULT ( *QueryInterface)(IWaitMultiple *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWaitMultiple *This);
//C ULONG ( *Release)(IWaitMultiple *This);
//C HRESULT ( *WaitMultiple)(IWaitMultiple *This,DWORD timeout,ISynchronize **pSync);
//C HRESULT ( *AddSynchronize)(IWaitMultiple *This,ISynchronize *pSync);
//C } IWaitMultipleVtbl;
struct IWaitMultipleVtbl
{
HRESULT function(IWaitMultiple *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWaitMultiple *This)AddRef;
ULONG function(IWaitMultiple *This)Release;
HRESULT function(IWaitMultiple *This, DWORD timeout, ISynchronize **pSync)WaitMultiple;
HRESULT function(IWaitMultiple *This, ISynchronize *pSync)AddSynchronize;
}
//C struct IWaitMultiple {
//C struct IWaitMultipleVtbl *lpVtbl;
//C };
struct IWaitMultiple
{
IWaitMultipleVtbl *lpVtbl;
}
//C HRESULT IWaitMultiple_WaitMultiple_Proxy(IWaitMultiple *This,DWORD timeout,ISynchronize **pSync);
HRESULT IWaitMultiple_WaitMultiple_Proxy(IWaitMultiple *This, DWORD timeout, ISynchronize **pSync);
//C void IWaitMultiple_WaitMultiple_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWaitMultiple_WaitMultiple_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IWaitMultiple_AddSynchronize_Proxy(IWaitMultiple *This,ISynchronize *pSync);
HRESULT IWaitMultiple_AddSynchronize_Proxy(IWaitMultiple *This, ISynchronize *pSync);
//C void IWaitMultiple_AddSynchronize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWaitMultiple_AddSynchronize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IUrlMonVtbl {
//C HRESULT ( *QueryInterface)(IUrlMon *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IUrlMon *This);
//C ULONG ( *Release)(IUrlMon *This);
//C HRESULT ( *AsyncGetClassBits)(IUrlMon *This,const IID *const rclsid,LPCWSTR pszTYPE,LPCWSTR pszExt,DWORD dwFileVersionMS,DWORD dwFileVersionLS,LPCWSTR pszCodeBase,IBindCtx *pbc,DWORD dwClassContext,const IID *const riid,DWORD flags);
//C } IUrlMonVtbl;
struct IUrlMonVtbl
{
HRESULT function(IUrlMon *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IUrlMon *This)AddRef;
ULONG function(IUrlMon *This)Release;
HRESULT function(IUrlMon *This, IID *rclsid, LPCWSTR pszTYPE, LPCWSTR pszExt, DWORD dwFileVersionMS, DWORD dwFileVersionLS, LPCWSTR pszCodeBase, IBindCtx *pbc, DWORD dwClassContext, IID *riid, DWORD flags)AsyncGetClassBits;
}
//C struct IUrlMon {
//C struct IUrlMonVtbl *lpVtbl;
//C };
struct IUrlMon
{
IUrlMonVtbl *lpVtbl;
}
//C HRESULT IUrlMon_AsyncGetClassBits_Proxy(IUrlMon *This,const IID *const rclsid,LPCWSTR pszTYPE,LPCWSTR pszExt,DWORD dwFileVersionMS,DWORD dwFileVersionLS,LPCWSTR pszCodeBase,IBindCtx *pbc,DWORD dwClassContext,const IID *const riid,DWORD flags);
HRESULT IUrlMon_AsyncGetClassBits_Proxy(IUrlMon *This, IID *rclsid, LPCWSTR pszTYPE, LPCWSTR pszExt, DWORD dwFileVersionMS, DWORD dwFileVersionLS, LPCWSTR pszCodeBase, IBindCtx *pbc, DWORD dwClassContext, IID *riid, DWORD flags);
//C void IUrlMon_AsyncGetClassBits_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IUrlMon_AsyncGetClassBits_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IForegroundTransferVtbl {
//C HRESULT ( *QueryInterface)(IForegroundTransfer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IForegroundTransfer *This);
//C ULONG ( *Release)(IForegroundTransfer *This);
//C HRESULT ( *AllowForegroundTransfer)(IForegroundTransfer *This,void *lpvReserved);
//C } IForegroundTransferVtbl;
struct IForegroundTransferVtbl
{
HRESULT function(IForegroundTransfer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IForegroundTransfer *This)AddRef;
ULONG function(IForegroundTransfer *This)Release;
HRESULT function(IForegroundTransfer *This, void *lpvReserved)AllowForegroundTransfer;
}
//C struct IForegroundTransfer {
//C struct IForegroundTransferVtbl *lpVtbl;
//C };
struct IForegroundTransfer
{
IForegroundTransferVtbl *lpVtbl;
}
//C HRESULT IForegroundTransfer_AllowForegroundTransfer_Proxy(IForegroundTransfer *This,void *lpvReserved);
HRESULT IForegroundTransfer_AllowForegroundTransfer_Proxy(IForegroundTransfer *This, void *lpvReserved);
//C void IForegroundTransfer_AllowForegroundTransfer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IForegroundTransfer_AllowForegroundTransfer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IAddrTrackingControl *LPADDRTRACKINGCONTROL;
alias IAddrTrackingControl *LPADDRTRACKINGCONTROL;
//C typedef struct IAddrTrackingControlVtbl {
//C HRESULT ( *QueryInterface)(IAddrTrackingControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAddrTrackingControl *This);
//C ULONG ( *Release)(IAddrTrackingControl *This);
//C HRESULT ( *EnableCOMDynamicAddrTracking)(IAddrTrackingControl *This);
//C HRESULT ( *DisableCOMDynamicAddrTracking)(IAddrTrackingControl *This);
//C } IAddrTrackingControlVtbl;
struct IAddrTrackingControlVtbl
{
HRESULT function(IAddrTrackingControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAddrTrackingControl *This)AddRef;
ULONG function(IAddrTrackingControl *This)Release;
HRESULT function(IAddrTrackingControl *This)EnableCOMDynamicAddrTracking;
HRESULT function(IAddrTrackingControl *This)DisableCOMDynamicAddrTracking;
}
//C struct IAddrTrackingControl {
//C struct IAddrTrackingControlVtbl *lpVtbl;
//C };
struct IAddrTrackingControl
{
IAddrTrackingControlVtbl *lpVtbl;
}
//C HRESULT IAddrTrackingControl_EnableCOMDynamicAddrTracking_Proxy(IAddrTrackingControl *This);
HRESULT IAddrTrackingControl_EnableCOMDynamicAddrTracking_Proxy(IAddrTrackingControl *This);
//C void IAddrTrackingControl_EnableCOMDynamicAddrTracking_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAddrTrackingControl_EnableCOMDynamicAddrTracking_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAddrTrackingControl_DisableCOMDynamicAddrTracking_Proxy(IAddrTrackingControl *This);
HRESULT IAddrTrackingControl_DisableCOMDynamicAddrTracking_Proxy(IAddrTrackingControl *This);
//C void IAddrTrackingControl_DisableCOMDynamicAddrTracking_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAddrTrackingControl_DisableCOMDynamicAddrTracking_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IAddrExclusionControl *LPADDREXCLUSIONCONTROL;
alias IAddrExclusionControl *LPADDREXCLUSIONCONTROL;
//C typedef struct IAddrExclusionControlVtbl {
//C HRESULT ( *QueryInterface)(IAddrExclusionControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAddrExclusionControl *This);
//C ULONG ( *Release)(IAddrExclusionControl *This);
//C HRESULT ( *GetCurrentAddrExclusionList)(IAddrExclusionControl *This,const IID *const riid,void **ppEnumerator);
//C HRESULT ( *UpdateAddrExclusionList)(IAddrExclusionControl *This,IUnknown *pEnumerator);
//C } IAddrExclusionControlVtbl;
struct IAddrExclusionControlVtbl
{
HRESULT function(IAddrExclusionControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAddrExclusionControl *This)AddRef;
ULONG function(IAddrExclusionControl *This)Release;
HRESULT function(IAddrExclusionControl *This, IID *riid, void **ppEnumerator)GetCurrentAddrExclusionList;
HRESULT function(IAddrExclusionControl *This, IUnknown *pEnumerator)UpdateAddrExclusionList;
}
//C struct IAddrExclusionControl {
//C struct IAddrExclusionControlVtbl *lpVtbl;
//C };
struct IAddrExclusionControl
{
IAddrExclusionControlVtbl *lpVtbl;
}
//C HRESULT IAddrExclusionControl_GetCurrentAddrExclusionList_Proxy(IAddrExclusionControl *This,const IID *const riid,void **ppEnumerator);
HRESULT IAddrExclusionControl_GetCurrentAddrExclusionList_Proxy(IAddrExclusionControl *This, IID *riid, void **ppEnumerator);
//C void IAddrExclusionControl_GetCurrentAddrExclusionList_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAddrExclusionControl_GetCurrentAddrExclusionList_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IAddrExclusionControl_UpdateAddrExclusionList_Proxy(IAddrExclusionControl *This,IUnknown *pEnumerator);
HRESULT IAddrExclusionControl_UpdateAddrExclusionList_Proxy(IAddrExclusionControl *This, IUnknown *pEnumerator);
//C void IAddrExclusionControl_UpdateAddrExclusionList_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAddrExclusionControl_UpdateAddrExclusionList_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IPipeByteVtbl {
//C HRESULT ( *QueryInterface)(IPipeByte *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPipeByte *This);
//C ULONG ( *Release)(IPipeByte *This);
//C HRESULT ( *Pull)(IPipeByte *This,BYTE *buf,ULONG cRequest,ULONG *pcReturned);
//C HRESULT ( *Push)(IPipeByte *This,BYTE *buf,ULONG cSent);
//C } IPipeByteVtbl;
struct IPipeByteVtbl
{
HRESULT function(IPipeByte *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPipeByte *This)AddRef;
ULONG function(IPipeByte *This)Release;
HRESULT function(IPipeByte *This, BYTE *buf, ULONG cRequest, ULONG *pcReturned)Pull;
HRESULT function(IPipeByte *This, BYTE *buf, ULONG cSent)Push;
}
//C struct IPipeByte {
//C struct IPipeByteVtbl *lpVtbl;
//C };
struct IPipeByte
{
IPipeByteVtbl *lpVtbl;
}
//C HRESULT IPipeByte_Pull_Proxy(IPipeByte *This,BYTE *buf,ULONG cRequest,ULONG *pcReturned);
HRESULT IPipeByte_Pull_Proxy(IPipeByte *This, BYTE *buf, ULONG cRequest, ULONG *pcReturned);
//C void IPipeByte_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeByte_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPipeByte_Push_Proxy(IPipeByte *This,BYTE *buf,ULONG cSent);
HRESULT IPipeByte_Push_Proxy(IPipeByte *This, BYTE *buf, ULONG cSent);
//C void IPipeByte_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeByte_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct AsyncIPipeByteVtbl {
//C HRESULT ( *QueryInterface)(AsyncIPipeByte *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIPipeByte *This);
//C ULONG ( *Release)(AsyncIPipeByte *This);
//C HRESULT ( *Begin_Pull)(AsyncIPipeByte *This,ULONG cRequest);
//C HRESULT ( *Finish_Pull)(AsyncIPipeByte *This,BYTE *buf,ULONG *pcReturned);
//C HRESULT ( *Begin_Push)(AsyncIPipeByte *This,BYTE *buf,ULONG cSent);
//C HRESULT ( *Finish_Push)(AsyncIPipeByte *This);
//C } AsyncIPipeByteVtbl;
struct AsyncIPipeByteVtbl
{
HRESULT function(AsyncIPipeByte *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIPipeByte *This)AddRef;
ULONG function(AsyncIPipeByte *This)Release;
HRESULT function(AsyncIPipeByte *This, ULONG cRequest)Begin_Pull;
HRESULT function(AsyncIPipeByte *This, BYTE *buf, ULONG *pcReturned)Finish_Pull;
HRESULT function(AsyncIPipeByte *This, BYTE *buf, ULONG cSent)Begin_Push;
HRESULT function(AsyncIPipeByte *This)Finish_Push;
}
//C struct AsyncIPipeByte {
//C struct AsyncIPipeByteVtbl *lpVtbl;
//C };
struct AsyncIPipeByte
{
AsyncIPipeByteVtbl *lpVtbl;
}
//C HRESULT AsyncIPipeByte_Begin_Pull_Proxy(AsyncIPipeByte *This,ULONG cRequest);
HRESULT AsyncIPipeByte_Begin_Pull_Proxy(AsyncIPipeByte *This, ULONG cRequest);
//C void AsyncIPipeByte_Begin_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeByte_Begin_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeByte_Finish_Pull_Proxy(AsyncIPipeByte *This,BYTE *buf,ULONG *pcReturned);
HRESULT AsyncIPipeByte_Finish_Pull_Proxy(AsyncIPipeByte *This, BYTE *buf, ULONG *pcReturned);
//C void AsyncIPipeByte_Finish_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeByte_Finish_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeByte_Begin_Push_Proxy(AsyncIPipeByte *This,BYTE *buf,ULONG cSent);
HRESULT AsyncIPipeByte_Begin_Push_Proxy(AsyncIPipeByte *This, BYTE *buf, ULONG cSent);
//C void AsyncIPipeByte_Begin_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeByte_Begin_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeByte_Finish_Push_Proxy(AsyncIPipeByte *This);
HRESULT AsyncIPipeByte_Finish_Push_Proxy(AsyncIPipeByte *This);
//C void AsyncIPipeByte_Finish_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeByte_Finish_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IPipeLongVtbl {
//C HRESULT ( *QueryInterface)(IPipeLong *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPipeLong *This);
//C ULONG ( *Release)(IPipeLong *This);
//C HRESULT ( *Pull)(IPipeLong *This,LONG *buf,ULONG cRequest,ULONG *pcReturned);
//C HRESULT ( *Push)(IPipeLong *This,LONG *buf,ULONG cSent);
//C } IPipeLongVtbl;
struct IPipeLongVtbl
{
HRESULT function(IPipeLong *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPipeLong *This)AddRef;
ULONG function(IPipeLong *This)Release;
HRESULT function(IPipeLong *This, LONG *buf, ULONG cRequest, ULONG *pcReturned)Pull;
HRESULT function(IPipeLong *This, LONG *buf, ULONG cSent)Push;
}
//C struct IPipeLong {
//C struct IPipeLongVtbl *lpVtbl;
//C };
struct IPipeLong
{
IPipeLongVtbl *lpVtbl;
}
//C HRESULT IPipeLong_Pull_Proxy(IPipeLong *This,LONG *buf,ULONG cRequest,ULONG *pcReturned);
HRESULT IPipeLong_Pull_Proxy(IPipeLong *This, LONG *buf, ULONG cRequest, ULONG *pcReturned);
//C void IPipeLong_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeLong_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPipeLong_Push_Proxy(IPipeLong *This,LONG *buf,ULONG cSent);
HRESULT IPipeLong_Push_Proxy(IPipeLong *This, LONG *buf, ULONG cSent);
//C void IPipeLong_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeLong_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct AsyncIPipeLongVtbl {
//C HRESULT ( *QueryInterface)(AsyncIPipeLong *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIPipeLong *This);
//C ULONG ( *Release)(AsyncIPipeLong *This);
//C HRESULT ( *Begin_Pull)(AsyncIPipeLong *This,ULONG cRequest);
//C HRESULT ( *Finish_Pull)(AsyncIPipeLong *This,LONG *buf,ULONG *pcReturned);
//C HRESULT ( *Begin_Push)(AsyncIPipeLong *This,LONG *buf,ULONG cSent);
//C HRESULT ( *Finish_Push)(AsyncIPipeLong *This);
//C } AsyncIPipeLongVtbl;
struct AsyncIPipeLongVtbl
{
HRESULT function(AsyncIPipeLong *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIPipeLong *This)AddRef;
ULONG function(AsyncIPipeLong *This)Release;
HRESULT function(AsyncIPipeLong *This, ULONG cRequest)Begin_Pull;
HRESULT function(AsyncIPipeLong *This, LONG *buf, ULONG *pcReturned)Finish_Pull;
HRESULT function(AsyncIPipeLong *This, LONG *buf, ULONG cSent)Begin_Push;
HRESULT function(AsyncIPipeLong *This)Finish_Push;
}
//C struct AsyncIPipeLong {
//C struct AsyncIPipeLongVtbl *lpVtbl;
//C };
struct AsyncIPipeLong
{
AsyncIPipeLongVtbl *lpVtbl;
}
//C HRESULT AsyncIPipeLong_Begin_Pull_Proxy(AsyncIPipeLong *This,ULONG cRequest);
HRESULT AsyncIPipeLong_Begin_Pull_Proxy(AsyncIPipeLong *This, ULONG cRequest);
//C void AsyncIPipeLong_Begin_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeLong_Begin_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeLong_Finish_Pull_Proxy(AsyncIPipeLong *This,LONG *buf,ULONG *pcReturned);
HRESULT AsyncIPipeLong_Finish_Pull_Proxy(AsyncIPipeLong *This, LONG *buf, ULONG *pcReturned);
//C void AsyncIPipeLong_Finish_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeLong_Finish_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeLong_Begin_Push_Proxy(AsyncIPipeLong *This,LONG *buf,ULONG cSent);
HRESULT AsyncIPipeLong_Begin_Push_Proxy(AsyncIPipeLong *This, LONG *buf, ULONG cSent);
//C void AsyncIPipeLong_Begin_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeLong_Begin_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeLong_Finish_Push_Proxy(AsyncIPipeLong *This);
HRESULT AsyncIPipeLong_Finish_Push_Proxy(AsyncIPipeLong *This);
//C void AsyncIPipeLong_Finish_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeLong_Finish_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IPipeDoubleVtbl {
//C HRESULT ( *QueryInterface)(IPipeDouble *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPipeDouble *This);
//C ULONG ( *Release)(IPipeDouble *This);
//C HRESULT ( *Pull)(IPipeDouble *This,DOUBLE *buf,ULONG cRequest,ULONG *pcReturned);
//C HRESULT ( *Push)(IPipeDouble *This,DOUBLE *buf,ULONG cSent);
//C } IPipeDoubleVtbl;
struct IPipeDoubleVtbl
{
HRESULT function(IPipeDouble *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPipeDouble *This)AddRef;
ULONG function(IPipeDouble *This)Release;
HRESULT function(IPipeDouble *This, DOUBLE *buf, ULONG cRequest, ULONG *pcReturned)Pull;
HRESULT function(IPipeDouble *This, DOUBLE *buf, ULONG cSent)Push;
}
//C struct IPipeDouble {
//C struct IPipeDoubleVtbl *lpVtbl;
//C };
struct IPipeDouble
{
IPipeDoubleVtbl *lpVtbl;
}
//C HRESULT IPipeDouble_Pull_Proxy(IPipeDouble *This,DOUBLE *buf,ULONG cRequest,ULONG *pcReturned);
HRESULT IPipeDouble_Pull_Proxy(IPipeDouble *This, DOUBLE *buf, ULONG cRequest, ULONG *pcReturned);
//C void IPipeDouble_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeDouble_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPipeDouble_Push_Proxy(IPipeDouble *This,DOUBLE *buf,ULONG cSent);
HRESULT IPipeDouble_Push_Proxy(IPipeDouble *This, DOUBLE *buf, ULONG cSent);
//C void IPipeDouble_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPipeDouble_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct AsyncIPipeDoubleVtbl {
//C HRESULT ( *QueryInterface)(AsyncIPipeDouble *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(AsyncIPipeDouble *This);
//C ULONG ( *Release)(AsyncIPipeDouble *This);
//C HRESULT ( *Begin_Pull)(AsyncIPipeDouble *This,ULONG cRequest);
//C HRESULT ( *Finish_Pull)(AsyncIPipeDouble *This,DOUBLE *buf,ULONG *pcReturned);
//C HRESULT ( *Begin_Push)(AsyncIPipeDouble *This,DOUBLE *buf,ULONG cSent);
//C HRESULT ( *Finish_Push)(AsyncIPipeDouble *This);
//C } AsyncIPipeDoubleVtbl;
struct AsyncIPipeDoubleVtbl
{
HRESULT function(AsyncIPipeDouble *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(AsyncIPipeDouble *This)AddRef;
ULONG function(AsyncIPipeDouble *This)Release;
HRESULT function(AsyncIPipeDouble *This, ULONG cRequest)Begin_Pull;
HRESULT function(AsyncIPipeDouble *This, DOUBLE *buf, ULONG *pcReturned)Finish_Pull;
HRESULT function(AsyncIPipeDouble *This, DOUBLE *buf, ULONG cSent)Begin_Push;
HRESULT function(AsyncIPipeDouble *This)Finish_Push;
}
//C struct AsyncIPipeDouble {
//C struct AsyncIPipeDoubleVtbl *lpVtbl;
//C };
struct AsyncIPipeDouble
{
AsyncIPipeDoubleVtbl *lpVtbl;
}
//C HRESULT AsyncIPipeDouble_Begin_Pull_Proxy(AsyncIPipeDouble *This,ULONG cRequest);
HRESULT AsyncIPipeDouble_Begin_Pull_Proxy(AsyncIPipeDouble *This, ULONG cRequest);
//C void AsyncIPipeDouble_Begin_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeDouble_Begin_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeDouble_Finish_Pull_Proxy(AsyncIPipeDouble *This,DOUBLE *buf,ULONG *pcReturned);
HRESULT AsyncIPipeDouble_Finish_Pull_Proxy(AsyncIPipeDouble *This, DOUBLE *buf, ULONG *pcReturned);
//C void AsyncIPipeDouble_Finish_Pull_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeDouble_Finish_Pull_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeDouble_Begin_Push_Proxy(AsyncIPipeDouble *This,DOUBLE *buf,ULONG cSent);
HRESULT AsyncIPipeDouble_Begin_Push_Proxy(AsyncIPipeDouble *This, DOUBLE *buf, ULONG cSent);
//C void AsyncIPipeDouble_Begin_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeDouble_Begin_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT AsyncIPipeDouble_Finish_Push_Proxy(AsyncIPipeDouble *This);
HRESULT AsyncIPipeDouble_Finish_Push_Proxy(AsyncIPipeDouble *This);
//C void AsyncIPipeDouble_Finish_Push_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void AsyncIPipeDouble_Finish_Push_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IThumbnailExtractorVtbl {
//C HRESULT ( *QueryInterface)(IThumbnailExtractor *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IThumbnailExtractor *This);
//C ULONG ( *Release)(IThumbnailExtractor *This);
//C HRESULT ( *ExtractThumbnail)(IThumbnailExtractor *This,IStorage *pStg,ULONG ulLength,ULONG ulHeight,ULONG *pulOutputLength,ULONG *pulOutputHeight,HBITMAP *phOutputBitmap);
//C HRESULT ( *OnFileUpdated)(IThumbnailExtractor *This,IStorage *pStg);
//C } IThumbnailExtractorVtbl;
struct IThumbnailExtractorVtbl
{
HRESULT function(IThumbnailExtractor *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IThumbnailExtractor *This)AddRef;
ULONG function(IThumbnailExtractor *This)Release;
HRESULT function(IThumbnailExtractor *This, IStorage *pStg, ULONG ulLength, ULONG ulHeight, ULONG *pulOutputLength, ULONG *pulOutputHeight, HBITMAP *phOutputBitmap)ExtractThumbnail;
HRESULT function(IThumbnailExtractor *This, IStorage *pStg)OnFileUpdated;
}
//C struct IThumbnailExtractor {
//C struct IThumbnailExtractorVtbl *lpVtbl;
//C };
struct IThumbnailExtractor
{
IThumbnailExtractorVtbl *lpVtbl;
}
//C HRESULT IThumbnailExtractor_ExtractThumbnail_Proxy(IThumbnailExtractor *This,IStorage *pStg,ULONG ulLength,ULONG ulHeight,ULONG *pulOutputLength,ULONG *pulOutputHeight,HBITMAP *phOutputBitmap);
HRESULT IThumbnailExtractor_ExtractThumbnail_Proxy(IThumbnailExtractor *This, IStorage *pStg, ULONG ulLength, ULONG ulHeight, ULONG *pulOutputLength, ULONG *pulOutputHeight, HBITMAP *phOutputBitmap);
//C void IThumbnailExtractor_ExtractThumbnail_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IThumbnailExtractor_ExtractThumbnail_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IThumbnailExtractor_OnFileUpdated_Proxy(IThumbnailExtractor *This,IStorage *pStg);
HRESULT IThumbnailExtractor_OnFileUpdated_Proxy(IThumbnailExtractor *This, IStorage *pStg);
//C void IThumbnailExtractor_OnFileUpdated_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IThumbnailExtractor_OnFileUpdated_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IDummyHICONIncluderVtbl {
//C HRESULT ( *QueryInterface)(IDummyHICONIncluder *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDummyHICONIncluder *This);
//C ULONG ( *Release)(IDummyHICONIncluder *This);
//C HRESULT ( *Dummy)(IDummyHICONIncluder *This,HICON h1,HDC h2);
//C } IDummyHICONIncluderVtbl;
struct IDummyHICONIncluderVtbl
{
HRESULT function(IDummyHICONIncluder *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDummyHICONIncluder *This)AddRef;
ULONG function(IDummyHICONIncluder *This)Release;
HRESULT function(IDummyHICONIncluder *This, HICON h1, HDC h2)Dummy;
}
//C struct IDummyHICONIncluder {
//C struct IDummyHICONIncluderVtbl *lpVtbl;
//C };
struct IDummyHICONIncluder
{
IDummyHICONIncluderVtbl *lpVtbl;
}
//C HRESULT IDummyHICONIncluder_Dummy_Proxy(IDummyHICONIncluder *This,HICON h1,HDC h2);
HRESULT IDummyHICONIncluder_Dummy_Proxy(IDummyHICONIncluder *This, HICON h1, HDC h2);
//C void IDummyHICONIncluder_Dummy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDummyHICONIncluder_Dummy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef enum tagApplicationType {
//C ServerApplication = 0,LibraryApplication = ServerApplication + 1
//C } ApplicationType;
enum tagApplicationType
{
ServerApplication,
LibraryApplication,
}
alias tagApplicationType ApplicationType;
//C typedef enum tagShutdownType {
//C IdleShutdown = 0,ForcedShutdown = IdleShutdown + 1
//C } ShutdownType;
enum tagShutdownType
{
IdleShutdown,
ForcedShutdown,
}
alias tagShutdownType ShutdownType;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0087_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0087_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0087_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0087_v0_0_s_ifspec;
//C typedef struct IProcessLockVtbl {
//C HRESULT ( *QueryInterface)(IProcessLock *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IProcessLock *This);
//C ULONG ( *Release)(IProcessLock *This);
//C ULONG ( *AddRefOnProcess)(IProcessLock *This);
//C ULONG ( *ReleaseRefOnProcess)(IProcessLock *This);
//C } IProcessLockVtbl;
struct IProcessLockVtbl
{
HRESULT function(IProcessLock *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IProcessLock *This)AddRef;
ULONG function(IProcessLock *This)Release;
ULONG function(IProcessLock *This)AddRefOnProcess;
ULONG function(IProcessLock *This)ReleaseRefOnProcess;
}
//C struct IProcessLock {
//C struct IProcessLockVtbl *lpVtbl;
//C };
struct IProcessLock
{
IProcessLockVtbl *lpVtbl;
}
//C ULONG IProcessLock_AddRefOnProcess_Proxy(IProcessLock *This);
ULONG IProcessLock_AddRefOnProcess_Proxy(IProcessLock *This);
//C void IProcessLock_AddRefOnProcess_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IProcessLock_AddRefOnProcess_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C ULONG IProcessLock_ReleaseRefOnProcess_Proxy(IProcessLock *This);
ULONG IProcessLock_ReleaseRefOnProcess_Proxy(IProcessLock *This);
//C void IProcessLock_ReleaseRefOnProcess_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IProcessLock_ReleaseRefOnProcess_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ISurrogateServiceVtbl {
//C HRESULT ( *QueryInterface)(ISurrogateService *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISurrogateService *This);
//C ULONG ( *Release)(ISurrogateService *This);
//C HRESULT ( *Init)(ISurrogateService *This,const GUID *const rguidProcessID,IProcessLock *pProcessLock,WINBOOL *pfApplicationAware);
//C HRESULT ( *ApplicationLaunch)(ISurrogateService *This,const GUID *const rguidApplID,ApplicationType appType);
//C HRESULT ( *ApplicationFree)(ISurrogateService *This,const GUID *const rguidApplID);
//C HRESULT ( *CatalogRefresh)(ISurrogateService *This,ULONG ulReserved);
//C HRESULT ( *ProcessShutdown)(ISurrogateService *This,ShutdownType shutdownType);
//C } ISurrogateServiceVtbl;
struct ISurrogateServiceVtbl
{
HRESULT function(ISurrogateService *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISurrogateService *This)AddRef;
ULONG function(ISurrogateService *This)Release;
HRESULT function(ISurrogateService *This, GUID *rguidProcessID, IProcessLock *pProcessLock, WINBOOL *pfApplicationAware)Init;
HRESULT function(ISurrogateService *This, GUID *rguidApplID, ApplicationType appType)ApplicationLaunch;
HRESULT function(ISurrogateService *This, GUID *rguidApplID)ApplicationFree;
HRESULT function(ISurrogateService *This, ULONG ulReserved)CatalogRefresh;
HRESULT function(ISurrogateService *This, ShutdownType shutdownType)ProcessShutdown;
}
//C struct ISurrogateService {
//C struct ISurrogateServiceVtbl *lpVtbl;
//C };
struct ISurrogateService
{
ISurrogateServiceVtbl *lpVtbl;
}
//C HRESULT ISurrogateService_Init_Proxy(ISurrogateService *This,const GUID *const rguidProcessID,IProcessLock *pProcessLock,WINBOOL *pfApplicationAware);
HRESULT ISurrogateService_Init_Proxy(ISurrogateService *This, GUID *rguidProcessID, IProcessLock *pProcessLock, WINBOOL *pfApplicationAware);
//C void ISurrogateService_Init_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogateService_Init_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISurrogateService_ApplicationLaunch_Proxy(ISurrogateService *This,const GUID *const rguidApplID,ApplicationType appType);
HRESULT ISurrogateService_ApplicationLaunch_Proxy(ISurrogateService *This, GUID *rguidApplID, ApplicationType appType);
//C void ISurrogateService_ApplicationLaunch_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogateService_ApplicationLaunch_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISurrogateService_ApplicationFree_Proxy(ISurrogateService *This,const GUID *const rguidApplID);
HRESULT ISurrogateService_ApplicationFree_Proxy(ISurrogateService *This, GUID *rguidApplID);
//C void ISurrogateService_ApplicationFree_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogateService_ApplicationFree_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISurrogateService_CatalogRefresh_Proxy(ISurrogateService *This,ULONG ulReserved);
HRESULT ISurrogateService_CatalogRefresh_Proxy(ISurrogateService *This, ULONG ulReserved);
//C void ISurrogateService_CatalogRefresh_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogateService_CatalogRefresh_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISurrogateService_ProcessShutdown_Proxy(ISurrogateService *This,ShutdownType shutdownType);
HRESULT ISurrogateService_ProcessShutdown_Proxy(ISurrogateService *This, ShutdownType shutdownType);
//C void ISurrogateService_ProcessShutdown_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISurrogateService_ProcessShutdown_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef enum _APTTYPE {
//C APTTYPE_CURRENT = -1,APTTYPE_STA = 0,APTTYPE_MTA = 1,APTTYPE_NA = 2,APTTYPE_MAINSTA = 3
//C } APTTYPE;
enum _APTTYPE
{
APTTYPE_CURRENT = -1,
APTTYPE_STA,
APTTYPE_MTA,
APTTYPE_NA,
APTTYPE_MAINSTA,
}
alias _APTTYPE APTTYPE;
//C typedef enum _THDTYPE {
//C THDTYPE_BLOCKMESSAGES = 0,THDTYPE_PROCESSMESSAGES = 1
//C } THDTYPE;
enum _THDTYPE
{
THDTYPE_BLOCKMESSAGES,
THDTYPE_PROCESSMESSAGES,
}
alias _THDTYPE THDTYPE;
//C typedef DWORD APARTMENTID;
alias DWORD APARTMENTID;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0089_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0089_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0089_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0089_v0_0_s_ifspec;
//C typedef struct IComThreadingInfoVtbl {
//C HRESULT ( *QueryInterface)(IComThreadingInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IComThreadingInfo *This);
//C ULONG ( *Release)(IComThreadingInfo *This);
//C HRESULT ( *GetCurrentApartmentType)(IComThreadingInfo *This,APTTYPE *pAptType);
//C HRESULT ( *GetCurrentThreadType)(IComThreadingInfo *This,THDTYPE *pThreadType);
//C HRESULT ( *GetCurrentLogicalThreadId)(IComThreadingInfo *This,GUID *pguidLogicalThreadId);
//C HRESULT ( *SetCurrentLogicalThreadId)(IComThreadingInfo *This,const GUID *const rguid);
//C } IComThreadingInfoVtbl;
struct IComThreadingInfoVtbl
{
HRESULT function(IComThreadingInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IComThreadingInfo *This)AddRef;
ULONG function(IComThreadingInfo *This)Release;
HRESULT function(IComThreadingInfo *This, APTTYPE *pAptType)GetCurrentApartmentType;
HRESULT function(IComThreadingInfo *This, THDTYPE *pThreadType)GetCurrentThreadType;
HRESULT function(IComThreadingInfo *This, GUID *pguidLogicalThreadId)GetCurrentLogicalThreadId;
HRESULT function(IComThreadingInfo *This, GUID *rguid)SetCurrentLogicalThreadId;
}
//C struct IComThreadingInfo {
//C struct IComThreadingInfoVtbl *lpVtbl;
//C };
struct IComThreadingInfo
{
IComThreadingInfoVtbl *lpVtbl;
}
//C HRESULT IComThreadingInfo_GetCurrentApartmentType_Proxy(IComThreadingInfo *This,APTTYPE *pAptType);
HRESULT IComThreadingInfo_GetCurrentApartmentType_Proxy(IComThreadingInfo *This, APTTYPE *pAptType);
//C void IComThreadingInfo_GetCurrentApartmentType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IComThreadingInfo_GetCurrentApartmentType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IComThreadingInfo_GetCurrentThreadType_Proxy(IComThreadingInfo *This,THDTYPE *pThreadType);
HRESULT IComThreadingInfo_GetCurrentThreadType_Proxy(IComThreadingInfo *This, THDTYPE *pThreadType);
//C void IComThreadingInfo_GetCurrentThreadType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IComThreadingInfo_GetCurrentThreadType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IComThreadingInfo_GetCurrentLogicalThreadId_Proxy(IComThreadingInfo *This,GUID *pguidLogicalThreadId);
HRESULT IComThreadingInfo_GetCurrentLogicalThreadId_Proxy(IComThreadingInfo *This, GUID *pguidLogicalThreadId);
//C void IComThreadingInfo_GetCurrentLogicalThreadId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IComThreadingInfo_GetCurrentLogicalThreadId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IComThreadingInfo_SetCurrentLogicalThreadId_Proxy(IComThreadingInfo *This,const GUID *const rguid);
HRESULT IComThreadingInfo_SetCurrentLogicalThreadId_Proxy(IComThreadingInfo *This, GUID *rguid);
//C void IComThreadingInfo_SetCurrentLogicalThreadId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IComThreadingInfo_SetCurrentLogicalThreadId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IProcessInitControlVtbl {
//C HRESULT ( *QueryInterface)(IProcessInitControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IProcessInitControl *This);
//C ULONG ( *Release)(IProcessInitControl *This);
//C HRESULT ( *ResetInitializerTimeout)(IProcessInitControl *This,DWORD dwSecondsRemaining);
//C } IProcessInitControlVtbl;
struct IProcessInitControlVtbl
{
HRESULT function(IProcessInitControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IProcessInitControl *This)AddRef;
ULONG function(IProcessInitControl *This)Release;
HRESULT function(IProcessInitControl *This, DWORD dwSecondsRemaining)ResetInitializerTimeout;
}
//C struct IProcessInitControl {
//C struct IProcessInitControlVtbl *lpVtbl;
//C };
struct IProcessInitControl
{
IProcessInitControlVtbl *lpVtbl;
}
//C HRESULT IProcessInitControl_ResetInitializerTimeout_Proxy(IProcessInitControl *This,DWORD dwSecondsRemaining);
HRESULT IProcessInitControl_ResetInitializerTimeout_Proxy(IProcessInitControl *This, DWORD dwSecondsRemaining);
//C void IProcessInitControl_ResetInitializerTimeout_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IProcessInitControl_ResetInitializerTimeout_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0091_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0091_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0091_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0091_v0_0_s_ifspec;
//C typedef IInitializeSpy *LPINITIALIZESPY;
alias IInitializeSpy *LPINITIALIZESPY;
//C typedef struct IInitializeSpyVtbl {
//C HRESULT ( *QueryInterface)(IInitializeSpy *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInitializeSpy *This);
//C ULONG ( *Release)(IInitializeSpy *This);
//C HRESULT ( *PreInitialize)(IInitializeSpy *This,DWORD dwCoInit,DWORD dwCurThreadAptRefs);
//C HRESULT ( *PostInitialize)(IInitializeSpy *This,HRESULT hrCoInit,DWORD dwCoInit,DWORD dwNewThreadAptRefs);
//C HRESULT ( *PreUninitialize)(IInitializeSpy *This,DWORD dwCurThreadAptRefs);
//C HRESULT ( *PostUninitialize)(IInitializeSpy *This,DWORD dwNewThreadAptRefs);
//C } IInitializeSpyVtbl;
struct IInitializeSpyVtbl
{
HRESULT function(IInitializeSpy *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInitializeSpy *This)AddRef;
ULONG function(IInitializeSpy *This)Release;
HRESULT function(IInitializeSpy *This, DWORD dwCoInit, DWORD dwCurThreadAptRefs)PreInitialize;
HRESULT function(IInitializeSpy *This, HRESULT hrCoInit, DWORD dwCoInit, DWORD dwNewThreadAptRefs)PostInitialize;
HRESULT function(IInitializeSpy *This, DWORD dwCurThreadAptRefs)PreUninitialize;
HRESULT function(IInitializeSpy *This, DWORD dwNewThreadAptRefs)PostUninitialize;
}
//C struct IInitializeSpy {
//C struct IInitializeSpyVtbl *lpVtbl;
//C };
struct IInitializeSpy
{
IInitializeSpyVtbl *lpVtbl;
}
//C HRESULT IInitializeSpy_PreInitialize_Proxy(IInitializeSpy *This,DWORD dwCoInit,DWORD dwCurThreadAptRefs);
HRESULT IInitializeSpy_PreInitialize_Proxy(IInitializeSpy *This, DWORD dwCoInit, DWORD dwCurThreadAptRefs);
//C void IInitializeSpy_PreInitialize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInitializeSpy_PreInitialize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInitializeSpy_PostInitialize_Proxy(IInitializeSpy *This,HRESULT hrCoInit,DWORD dwCoInit,DWORD dwNewThreadAptRefs);
HRESULT IInitializeSpy_PostInitialize_Proxy(IInitializeSpy *This, HRESULT hrCoInit, DWORD dwCoInit, DWORD dwNewThreadAptRefs);
//C void IInitializeSpy_PostInitialize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInitializeSpy_PostInitialize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInitializeSpy_PreUninitialize_Proxy(IInitializeSpy *This,DWORD dwCurThreadAptRefs);
HRESULT IInitializeSpy_PreUninitialize_Proxy(IInitializeSpy *This, DWORD dwCurThreadAptRefs);
//C void IInitializeSpy_PreUninitialize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInitializeSpy_PreUninitialize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInitializeSpy_PostUninitialize_Proxy(IInitializeSpy *This,DWORD dwNewThreadAptRefs);
HRESULT IInitializeSpy_PostUninitialize_Proxy(IInitializeSpy *This, DWORD dwNewThreadAptRefs);
//C void IInitializeSpy_PostUninitialize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInitializeSpy_PostUninitialize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0092_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0092_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_objidl_0092_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_objidl_0092_v0_0_s_ifspec;
//C ULONG CLIPFORMAT_UserSize(ULONG *,ULONG,CLIPFORMAT *);
ULONG CLIPFORMAT_UserSize(ULONG *, ULONG , CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserMarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserMarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserUnmarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserUnmarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C void CLIPFORMAT_UserFree(ULONG *,CLIPFORMAT *);
void CLIPFORMAT_UserFree(ULONG *, CLIPFORMAT *);
//C ULONG HBITMAP_UserSize(ULONG *,ULONG,HBITMAP *);
ULONG HBITMAP_UserSize(ULONG *, ULONG , HBITMAP *);
//C unsigned char * HBITMAP_UserMarshal(ULONG *,unsigned char *,HBITMAP *);
ubyte * HBITMAP_UserMarshal(ULONG *, ubyte *, HBITMAP *);
//C unsigned char * HBITMAP_UserUnmarshal(ULONG *,unsigned char *,HBITMAP *);
ubyte * HBITMAP_UserUnmarshal(ULONG *, ubyte *, HBITMAP *);
//C void HBITMAP_UserFree(ULONG *,HBITMAP *);
void HBITMAP_UserFree(ULONG *, HBITMAP *);
//C ULONG HDC_UserSize(ULONG *,ULONG,HDC *);
ULONG HDC_UserSize(ULONG *, ULONG , HDC *);
//C unsigned char * HDC_UserMarshal(ULONG *,unsigned char *,HDC *);
ubyte * HDC_UserMarshal(ULONG *, ubyte *, HDC *);
//C unsigned char * HDC_UserUnmarshal(ULONG *,unsigned char *,HDC *);
ubyte * HDC_UserUnmarshal(ULONG *, ubyte *, HDC *);
//C void HDC_UserFree(ULONG *,HDC *);
void HDC_UserFree(ULONG *, HDC *);
//C ULONG HICON_UserSize(ULONG *,ULONG,HICON *);
ULONG HICON_UserSize(ULONG *, ULONG , HICON *);
//C unsigned char * HICON_UserMarshal(ULONG *,unsigned char *,HICON *);
ubyte * HICON_UserMarshal(ULONG *, ubyte *, HICON *);
//C unsigned char * HICON_UserUnmarshal(ULONG *,unsigned char *,HICON *);
ubyte * HICON_UserUnmarshal(ULONG *, ubyte *, HICON *);
//C void HICON_UserFree(ULONG *,HICON *);
void HICON_UserFree(ULONG *, HICON *);
//C HRESULT IEnumUnknown_Next_Proxy(IEnumUnknown *This,ULONG celt,IUnknown **rgelt,ULONG *pceltFetched);
HRESULT IEnumUnknown_Next_Proxy(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched);
//C HRESULT IEnumUnknown_Next_Stub(IEnumUnknown *This,ULONG celt,IUnknown **rgelt,ULONG *pceltFetched);
HRESULT IEnumUnknown_Next_Stub(IEnumUnknown *This, ULONG celt, IUnknown **rgelt, ULONG *pceltFetched);
//C HRESULT IBindCtx_SetBindOptions_Proxy(IBindCtx *This,BIND_OPTS *pbindopts);
HRESULT IBindCtx_SetBindOptions_Proxy(IBindCtx *This, BIND_OPTS *pbindopts);
//C HRESULT IBindCtx_SetBindOptions_Stub(IBindCtx *This,BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_SetBindOptions_Stub(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C HRESULT IBindCtx_GetBindOptions_Proxy(IBindCtx *This,BIND_OPTS *pbindopts);
HRESULT IBindCtx_GetBindOptions_Proxy(IBindCtx *This, BIND_OPTS *pbindopts);
//C HRESULT IBindCtx_GetBindOptions_Stub(IBindCtx *This,BIND_OPTS2 *pbindopts);
HRESULT IBindCtx_GetBindOptions_Stub(IBindCtx *This, BIND_OPTS2 *pbindopts);
//C HRESULT IEnumMoniker_Next_Proxy(IEnumMoniker *This,ULONG celt,IMoniker **rgelt,ULONG *pceltFetched);
HRESULT IEnumMoniker_Next_Proxy(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched);
//C HRESULT IEnumMoniker_Next_Stub(IEnumMoniker *This,ULONG celt,IMoniker **rgelt,ULONG *pceltFetched);
HRESULT IEnumMoniker_Next_Stub(IEnumMoniker *This, ULONG celt, IMoniker **rgelt, ULONG *pceltFetched);
//C WINBOOL IRunnableObject_IsRunning_Proxy(IRunnableObject *This);
WINBOOL IRunnableObject_IsRunning_Proxy(IRunnableObject *This);
//C HRESULT IRunnableObject_IsRunning_Stub(IRunnableObject *This);
HRESULT IRunnableObject_IsRunning_Stub(IRunnableObject *This);
//C HRESULT IEnumString_Next_Proxy(IEnumString *This,ULONG celt,LPOLESTR *rgelt,ULONG *pceltFetched);
HRESULT IEnumString_Next_Proxy(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumString_Next_Stub(IEnumString *This,ULONG celt,LPOLESTR *rgelt,ULONG *pceltFetched);
HRESULT IEnumString_Next_Stub(IEnumString *This, ULONG celt, LPOLESTR *rgelt, ULONG *pceltFetched);
//C HRESULT ILockBytes_ReadAt_Proxy(ILockBytes *This,ULARGE_INTEGER ulOffset,void *pv,ULONG cb,ULONG *pcbRead);
HRESULT ILockBytes_ReadAt_Proxy(ILockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbRead);
//C HRESULT ILockBytes_ReadAt_Stub(ILockBytes *This,ULARGE_INTEGER ulOffset,byte *pv,ULONG cb,ULONG *pcbRead);
HRESULT ILockBytes_ReadAt_Stub(ILockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbRead);
//C HRESULT ILockBytes_WriteAt_Proxy(ILockBytes *This,ULARGE_INTEGER ulOffset,const void *pv,ULONG cb,ULONG *pcbWritten);
HRESULT ILockBytes_WriteAt_Proxy(ILockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbWritten);
//C HRESULT ILockBytes_WriteAt_Stub(ILockBytes *This,ULARGE_INTEGER ulOffset,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT ILockBytes_WriteAt_Stub(ILockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void IAdviseSink2_OnLinkSrcChange_Proxy(IAdviseSink2 *This,IMoniker *pmk);
void IAdviseSink2_OnLinkSrcChange_Proxy(IAdviseSink2 *This, IMoniker *pmk);
//C HRESULT IAdviseSink2_OnLinkSrcChange_Stub(IAdviseSink2 *This,IMoniker *pmk);
HRESULT IAdviseSink2_OnLinkSrcChange_Stub(IAdviseSink2 *This, IMoniker *pmk);
//C HRESULT IFillLockBytes_FillAppend_Proxy(IFillLockBytes *This,const void *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_FillAppend_Proxy(IFillLockBytes *This, void *pv, ULONG cb, ULONG *pcbWritten);
//C HRESULT IFillLockBytes_FillAppend_Stub(IFillLockBytes *This,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_FillAppend_Stub(IFillLockBytes *This, byte *pv, ULONG cb, ULONG *pcbWritten);
//C HRESULT IFillLockBytes_FillAt_Proxy(IFillLockBytes *This,ULARGE_INTEGER ulOffset,const void *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_FillAt_Proxy(IFillLockBytes *This, ULARGE_INTEGER ulOffset, void *pv, ULONG cb, ULONG *pcbWritten);
//C HRESULT IFillLockBytes_FillAt_Stub(IFillLockBytes *This,ULARGE_INTEGER ulOffset,const byte *pv,ULONG cb,ULONG *pcbWritten);
HRESULT IFillLockBytes_FillAt_Stub(IFillLockBytes *This, ULARGE_INTEGER ulOffset, byte *pv, ULONG cb, ULONG *pcbWritten);
//C void AsyncIAdviseSink_Begin_OnDataChange_Proxy(AsyncIAdviseSink *This,FORMATETC *pFormatetc,STGMEDIUM *pStgmed);
void AsyncIAdviseSink_Begin_OnDataChange_Proxy(AsyncIAdviseSink *This, FORMATETC *pFormatetc, STGMEDIUM *pStgmed);
//C HRESULT AsyncIAdviseSink_Begin_OnDataChange_Stub(AsyncIAdviseSink *This,FORMATETC *pFormatetc,ASYNC_STGMEDIUM *pStgmed);
HRESULT AsyncIAdviseSink_Begin_OnDataChange_Stub(AsyncIAdviseSink *This, FORMATETC *pFormatetc, ASYNC_STGMEDIUM *pStgmed);
//C void AsyncIAdviseSink_Finish_OnDataChange_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Finish_OnDataChange_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Finish_OnDataChange_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_OnDataChange_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_OnViewChange_Proxy(AsyncIAdviseSink *This,DWORD dwAspect,LONG lindex);
void AsyncIAdviseSink_Begin_OnViewChange_Proxy(AsyncIAdviseSink *This, DWORD dwAspect, LONG lindex);
//C HRESULT AsyncIAdviseSink_Begin_OnViewChange_Stub(AsyncIAdviseSink *This,DWORD dwAspect,LONG lindex);
HRESULT AsyncIAdviseSink_Begin_OnViewChange_Stub(AsyncIAdviseSink *This, DWORD dwAspect, LONG lindex);
//C void AsyncIAdviseSink_Finish_OnViewChange_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Finish_OnViewChange_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Finish_OnViewChange_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_OnViewChange_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_OnRename_Proxy(AsyncIAdviseSink *This,IMoniker *pmk);
void AsyncIAdviseSink_Begin_OnRename_Proxy(AsyncIAdviseSink *This, IMoniker *pmk);
//C HRESULT AsyncIAdviseSink_Begin_OnRename_Stub(AsyncIAdviseSink *This,IMoniker *pmk);
HRESULT AsyncIAdviseSink_Begin_OnRename_Stub(AsyncIAdviseSink *This, IMoniker *pmk);
//C void AsyncIAdviseSink_Finish_OnRename_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Finish_OnRename_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Finish_OnRename_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_OnRename_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_OnSave_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Begin_OnSave_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Begin_OnSave_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Begin_OnSave_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_OnSave_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Finish_OnSave_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Finish_OnSave_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_OnSave_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Begin_OnClose_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Begin_OnClose_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Begin_OnClose_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Begin_OnClose_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink_Finish_OnClose_Proxy(AsyncIAdviseSink *This);
void AsyncIAdviseSink_Finish_OnClose_Proxy(AsyncIAdviseSink *This);
//C HRESULT AsyncIAdviseSink_Finish_OnClose_Stub(AsyncIAdviseSink *This);
HRESULT AsyncIAdviseSink_Finish_OnClose_Stub(AsyncIAdviseSink *This);
//C void AsyncIAdviseSink2_Begin_OnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This,IMoniker *pmk);
void AsyncIAdviseSink2_Begin_OnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This, IMoniker *pmk);
//C HRESULT AsyncIAdviseSink2_Begin_OnLinkSrcChange_Stub(AsyncIAdviseSink2 *This,IMoniker *pmk);
HRESULT AsyncIAdviseSink2_Begin_OnLinkSrcChange_Stub(AsyncIAdviseSink2 *This, IMoniker *pmk);
//C void AsyncIAdviseSink2_Finish_OnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This);
void AsyncIAdviseSink2_Finish_OnLinkSrcChange_Proxy(AsyncIAdviseSink2 *This);
//C HRESULT AsyncIAdviseSink2_Finish_OnLinkSrcChange_Stub(AsyncIAdviseSink2 *This);
HRESULT AsyncIAdviseSink2_Finish_OnLinkSrcChange_Stub(AsyncIAdviseSink2 *This);
//C ULONG SNB_UserSize (ULONG *,ULONG,SNB *);
ULONG SNB_UserSize(ULONG *, ULONG , SNB *);
//C unsigned char * SNB_UserMarshal (ULONG *,unsigned char *,SNB *);
ubyte * SNB_UserMarshal(ULONG *, ubyte *, SNB *);
//C unsigned char * SNB_UserUnmarshal(ULONG *,unsigned char *,SNB *);
ubyte * SNB_UserUnmarshal(ULONG *, ubyte *, SNB *);
//C void SNB_UserFree (ULONG *,SNB *);
void SNB_UserFree(ULONG *, SNB *);
//C ULONG CLIPFORMAT_UserSize (ULONG *,ULONG,CLIPFORMAT *);
ULONG CLIPFORMAT_UserSize(ULONG *, ULONG , CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserMarshal (ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserMarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserUnmarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserUnmarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C void CLIPFORMAT_UserFree (ULONG *,CLIPFORMAT *);
void CLIPFORMAT_UserFree(ULONG *, CLIPFORMAT *);
//C ULONG STGMEDIUM_UserSize (ULONG *,ULONG,STGMEDIUM *);
ULONG STGMEDIUM_UserSize(ULONG *, ULONG , STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserMarshal (ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserMarshal(ULONG *, ubyte *, STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserUnmarshal(ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserUnmarshal(ULONG *, ubyte *, STGMEDIUM *);
//C void STGMEDIUM_UserFree (ULONG *,STGMEDIUM *);
void STGMEDIUM_UserFree(ULONG *, STGMEDIUM *);
//C ULONG ASYNC_STGMEDIUM_UserSize (ULONG *,ULONG,ASYNC_STGMEDIUM *);
ULONG ASYNC_STGMEDIUM_UserSize(ULONG *, ULONG , ASYNC_STGMEDIUM *);
//C unsigned char * ASYNC_STGMEDIUM_UserMarshal (ULONG *,unsigned char *,ASYNC_STGMEDIUM *);
ubyte * ASYNC_STGMEDIUM_UserMarshal(ULONG *, ubyte *, ASYNC_STGMEDIUM *);
//C unsigned char * ASYNC_STGMEDIUM_UserUnmarshal(ULONG *,unsigned char *,ASYNC_STGMEDIUM *);
ubyte * ASYNC_STGMEDIUM_UserUnmarshal(ULONG *, ubyte *, ASYNC_STGMEDIUM *);
//C void ASYNC_STGMEDIUM_UserFree (ULONG *,ASYNC_STGMEDIUM *);
void ASYNC_STGMEDIUM_UserFree(ULONG *, ASYNC_STGMEDIUM *);
//C ULONG FLAG_STGMEDIUM_UserSize (ULONG *,ULONG,FLAG_STGMEDIUM *);
ULONG FLAG_STGMEDIUM_UserSize(ULONG *, ULONG , FLAG_STGMEDIUM *);
//C unsigned char * FLAG_STGMEDIUM_UserMarshal (ULONG *,unsigned char *,FLAG_STGMEDIUM *);
ubyte * FLAG_STGMEDIUM_UserMarshal(ULONG *, ubyte *, FLAG_STGMEDIUM *);
//C unsigned char * FLAG_STGMEDIUM_UserUnmarshal(ULONG *,unsigned char *,FLAG_STGMEDIUM *);
ubyte * FLAG_STGMEDIUM_UserUnmarshal(ULONG *, ubyte *, FLAG_STGMEDIUM *);
//C void FLAG_STGMEDIUM_UserFree (ULONG *,FLAG_STGMEDIUM *);
void FLAG_STGMEDIUM_UserFree(ULONG *, FLAG_STGMEDIUM *);
//C extern const CLSID CLSID_StdMarshal;
extern const CLSID CLSID_StdMarshal;
//C extern const CLSID CLSID_AggStdMarshal;
extern const CLSID CLSID_AggStdMarshal;
//C extern const CLSID CLSID_StdAsyncActManager;
extern const CLSID CLSID_StdAsyncActManager;
//C extern const CLSID CLSID_PSGenObject;
extern const CLSID CLSID_PSGenObject;
//C extern const CLSID CLSID_PSClientSite;
extern const CLSID CLSID_PSClientSite;
//C extern const CLSID CLSID_PSClassObject;
extern const CLSID CLSID_PSClassObject;
//C extern const CLSID CLSID_PSInPlaceActive;
extern const CLSID CLSID_PSInPlaceActive;
//C extern const CLSID CLSID_PSInPlaceFrame;
extern const CLSID CLSID_PSInPlaceFrame;
//C extern const CLSID CLSID_PSDragDrop;
extern const CLSID CLSID_PSDragDrop;
//C extern const CLSID CLSID_PSBindCtx;
extern const CLSID CLSID_PSBindCtx;
//C extern const CLSID CLSID_PSEnumerators;
extern const CLSID CLSID_PSEnumerators;
//C extern const CLSID CLSID_StaticMetafile;
extern const CLSID CLSID_StaticMetafile;
//C extern const CLSID CLSID_StaticDib;
extern const CLSID CLSID_StaticDib;
//C extern const CLSID CID_CDfsVolume;
extern const CLSID CID_CDfsVolume;
//C extern const CLSID CLSID_DCOMAccessControl;
extern const CLSID CLSID_DCOMAccessControl;
//C extern const CLSID CLSID_StdGlobalInterfaceTable;
extern const CLSID CLSID_StdGlobalInterfaceTable;
//C extern const CLSID CLSID_ComBinding;
extern const CLSID CLSID_ComBinding;
//C extern const CLSID CLSID_StdEvent;
extern const CLSID CLSID_StdEvent;
//C extern const CLSID CLSID_ManualResetEvent;
extern const CLSID CLSID_ManualResetEvent;
//C extern const CLSID CLSID_SynchronizeContainer;
extern const CLSID CLSID_SynchronizeContainer;
//C extern const CLSID CLSID_AddrControl;
extern const CLSID CLSID_AddrControl;
//C extern const CLSID CLSID_CCDFormKrnl;
extern const CLSID CLSID_CCDFormKrnl;
//C extern const CLSID CLSID_CCDPropertyPage;
extern const CLSID CLSID_CCDPropertyPage;
//C extern const CLSID CLSID_CCDFormDialog;
extern const CLSID CLSID_CCDFormDialog;
//C extern const CLSID CLSID_CCDCommandButton;
extern const CLSID CLSID_CCDCommandButton;
//C extern const CLSID CLSID_CCDComboBox;
extern const CLSID CLSID_CCDComboBox;
//C extern const CLSID CLSID_CCDTextBox;
extern const CLSID CLSID_CCDTextBox;
//C extern const CLSID CLSID_CCDCheckBox;
extern const CLSID CLSID_CCDCheckBox;
//C extern const CLSID CLSID_CCDLabel;
extern const CLSID CLSID_CCDLabel;
//C extern const CLSID CLSID_CCDOptionButton;
extern const CLSID CLSID_CCDOptionButton;
//C extern const CLSID CLSID_CCDListBox;
extern const CLSID CLSID_CCDListBox;
//C extern const CLSID CLSID_CCDScrollBar;
extern const CLSID CLSID_CCDScrollBar;
//C extern const CLSID CLSID_CCDGroupBox;
extern const CLSID CLSID_CCDGroupBox;
//C extern const CLSID CLSID_CCDGeneralPropertyPage;
extern const CLSID CLSID_CCDGeneralPropertyPage;
//C extern const CLSID CLSID_CCDGenericPropertyPage;
extern const CLSID CLSID_CCDGenericPropertyPage;
//C extern const CLSID CLSID_CCDFontPropertyPage;
extern const CLSID CLSID_CCDFontPropertyPage;
//C extern const CLSID CLSID_CCDColorPropertyPage;
extern const CLSID CLSID_CCDColorPropertyPage;
//C extern const CLSID CLSID_CCDLabelPropertyPage;
extern const CLSID CLSID_CCDLabelPropertyPage;
//C extern const CLSID CLSID_CCDCheckBoxPropertyPage;
extern const CLSID CLSID_CCDCheckBoxPropertyPage;
//C extern const CLSID CLSID_CCDTextBoxPropertyPage;
extern const CLSID CLSID_CCDTextBoxPropertyPage;
//C extern const CLSID CLSID_CCDOptionButtonPropertyPage;
extern const CLSID CLSID_CCDOptionButtonPropertyPage;
//C extern const CLSID CLSID_CCDListBoxPropertyPage;
extern const CLSID CLSID_CCDListBoxPropertyPage;
//C extern const CLSID CLSID_CCDCommandButtonPropertyPage;
extern const CLSID CLSID_CCDCommandButtonPropertyPage;
//C extern const CLSID CLSID_CCDComboBoxPropertyPage;
extern const CLSID CLSID_CCDComboBoxPropertyPage;
//C extern const CLSID CLSID_CCDScrollBarPropertyPage;
extern const CLSID CLSID_CCDScrollBarPropertyPage;
//C extern const CLSID CLSID_CCDGroupBoxPropertyPage;
extern const CLSID CLSID_CCDGroupBoxPropertyPage;
//C extern const CLSID CLSID_CCDXObjectPropertyPage;
extern const CLSID CLSID_CCDXObjectPropertyPage;
//C extern const CLSID CLSID_CStdPropertyFrame;
extern const CLSID CLSID_CStdPropertyFrame;
//C extern const CLSID CLSID_CFormPropertyPage;
extern const CLSID CLSID_CFormPropertyPage;
//C extern const CLSID CLSID_CGridPropertyPage;
extern const CLSID CLSID_CGridPropertyPage;
//C extern const CLSID CLSID_CWSJArticlePage;
extern const CLSID CLSID_CWSJArticlePage;
//C extern const CLSID CLSID_CSystemPage;
extern const CLSID CLSID_CSystemPage;
//C extern const CLSID CLSID_IdentityUnmarshal;
extern const CLSID CLSID_IdentityUnmarshal;
//C extern const CLSID CLSID_InProcFreeMarshaler;
extern const CLSID CLSID_InProcFreeMarshaler;
//C extern const CLSID CLSID_Picture_Metafile;
extern const CLSID CLSID_Picture_Metafile;
//C extern const CLSID CLSID_Picture_EnhMetafile;
extern const CLSID CLSID_Picture_EnhMetafile;
//C extern const CLSID CLSID_Picture_Dib;
extern const CLSID CLSID_Picture_Dib;
//C typedef enum tagCOINIT {
//C COINIT_APARTMENTTHREADED = 0x2,COINIT_MULTITHREADED = 0x0,COINIT_DISABLE_OLE1DDE = 0x4,COINIT_SPEED_OVER_MEMORY = 0x8
//C } COINIT;
enum tagCOINIT
{
COINIT_APARTMENTTHREADED = 2,
COINIT_MULTITHREADED = 0,
COINIT_DISABLE_OLE1DDE = 4,
COINIT_SPEED_OVER_MEMORY = 8,
}
alias tagCOINIT COINIT;
//C extern DWORD CoBuildVersion(void);
DWORD CoBuildVersion();
//C extern HRESULT CoInitialize(LPVOID pvReserved);
HRESULT CoInitialize(LPVOID pvReserved);
//C extern void CoUninitialize(void);
void CoUninitialize();
//C extern HRESULT CoGetMalloc(DWORD dwMemContext,LPMALLOC *ppMalloc);
HRESULT CoGetMalloc(DWORD dwMemContext, LPMALLOC *ppMalloc);
//C extern DWORD CoGetCurrentProcess(void);
DWORD CoGetCurrentProcess();
//C extern HRESULT CoRegisterMallocSpy(LPMALLOCSPY pMallocSpy);
HRESULT CoRegisterMallocSpy(LPMALLOCSPY pMallocSpy);
//C extern HRESULT CoRevokeMallocSpy(void);
HRESULT CoRevokeMallocSpy();
//C extern HRESULT CoCreateStandardMalloc(DWORD memctx,IMalloc **ppMalloc);
HRESULT CoCreateStandardMalloc(DWORD memctx, IMalloc **ppMalloc);
//C extern HRESULT CoInitializeEx(LPVOID pvReserved,DWORD dwCoInit);
HRESULT CoInitializeEx(LPVOID pvReserved, DWORD dwCoInit);
//C extern HRESULT CoGetCallerTID(LPDWORD lpdwTID);
HRESULT CoGetCallerTID(LPDWORD lpdwTID);
//C extern HRESULT CoRegisterInitializeSpy(LPINITIALIZESPY pSpy,ULARGE_INTEGER *puliCookie);
HRESULT CoRegisterInitializeSpy(LPINITIALIZESPY pSpy, ULARGE_INTEGER *puliCookie);
//C extern HRESULT CoRevokeInitializeSpy(ULARGE_INTEGER uliCookie);
HRESULT CoRevokeInitializeSpy(ULARGE_INTEGER uliCookie);
//C extern HRESULT CoGetContextToken(ULONG_PTR *pToken);
HRESULT CoGetContextToken(ULONG_PTR *pToken);
//C typedef enum tagCOMSD {
//C SD_LAUNCHPERMISSIONS = 0,SD_ACCESSPERMISSIONS = 1,SD_LAUNCHRESTRICTIONS = 2,SD_ACCESSRESTRICTIONS = 3
//C } COMSD;
enum tagCOMSD
{
SD_LAUNCHPERMISSIONS,
SD_ACCESSPERMISSIONS,
SD_LAUNCHRESTRICTIONS,
SD_ACCESSRESTRICTIONS,
}
alias tagCOMSD COMSD;
//C extern HRESULT CoGetSystemSecurityPermissions(COMSD comSDType,PSECURITY_DESCRIPTOR *ppSD);
HRESULT CoGetSystemSecurityPermissions(COMSD comSDType, PSECURITY_DESCRIPTOR *ppSD);
//C typedef struct tagSOleTlsDataPublic {
//C void *pvReserved0[2];
//C DWORD dwReserved0[3];
//C void *pvReserved1[1];
//C DWORD dwReserved1[3];
//C void *pvReserved2[4];
//C DWORD dwReserved2[1];
//C void *pCurrentCtx;
//C } SOleTlsDataPublic;
struct tagSOleTlsDataPublic
{
void *[2]pvReserved0;
DWORD [3]dwReserved0;
void *[1]pvReserved1;
DWORD [3]dwReserved1;
void *[4]pvReserved2;
DWORD [1]dwReserved2;
void *pCurrentCtx;
}
alias tagSOleTlsDataPublic SOleTlsDataPublic;
//C extern HRESULT CoGetObjectContext(const IID *const riid,LPVOID *ppv);
HRESULT CoGetObjectContext(IID *riid, LPVOID *ppv);
//C extern HRESULT CoGetClassObject(const IID *const rclsid,DWORD dwClsContext,LPVOID pvReserved,const IID *const riid,LPVOID *ppv);
HRESULT CoGetClassObject(IID *rclsid, DWORD dwClsContext, LPVOID pvReserved, IID *riid, LPVOID *ppv);
//C extern HRESULT CoRegisterClassObject(const IID *const rclsid,LPUNKNOWN pUnk,DWORD dwClsContext,DWORD flags,LPDWORD lpdwRegister);
HRESULT CoRegisterClassObject(IID *rclsid, LPUNKNOWN pUnk, DWORD dwClsContext, DWORD flags, LPDWORD lpdwRegister);
//C extern HRESULT CoRevokeClassObject(DWORD dwRegister);
HRESULT CoRevokeClassObject(DWORD dwRegister);
//C extern HRESULT CoResumeClassObjects(void);
HRESULT CoResumeClassObjects();
//C extern HRESULT CoSuspendClassObjects(void);
HRESULT CoSuspendClassObjects();
//C extern ULONG CoAddRefServerProcess(void);
ULONG CoAddRefServerProcess();
//C extern ULONG CoReleaseServerProcess(void);
ULONG CoReleaseServerProcess();
//C extern HRESULT CoGetPSClsid(const IID *const riid,CLSID *pClsid);
HRESULT CoGetPSClsid(IID *riid, CLSID *pClsid);
//C extern HRESULT CoRegisterPSClsid(const IID *const riid,const IID *const rclsid);
HRESULT CoRegisterPSClsid(IID *riid, IID *rclsid);
//C extern HRESULT CoRegisterSurrogate(LPSURROGATE pSurrogate);
HRESULT CoRegisterSurrogate(LPSURROGATE pSurrogate);
//C extern HRESULT CoGetMarshalSizeMax(ULONG *pulSize,const IID *const riid,LPUNKNOWN pUnk,DWORD dwDestContext,LPVOID pvDestContext,DWORD mshlflags);
HRESULT CoGetMarshalSizeMax(ULONG *pulSize, IID *riid, LPUNKNOWN pUnk, DWORD dwDestContext, LPVOID pvDestContext, DWORD mshlflags);
//C extern HRESULT CoMarshalInterface(LPSTREAM pStm,const IID *const riid,LPUNKNOWN pUnk,DWORD dwDestContext,LPVOID pvDestContext,DWORD mshlflags);
HRESULT CoMarshalInterface(LPSTREAM pStm, IID *riid, LPUNKNOWN pUnk, DWORD dwDestContext, LPVOID pvDestContext, DWORD mshlflags);
//C extern HRESULT CoUnmarshalInterface(LPSTREAM pStm,const IID *const riid,LPVOID *ppv);
HRESULT CoUnmarshalInterface(LPSTREAM pStm, IID *riid, LPVOID *ppv);
//C extern HRESULT CoMarshalHresult(LPSTREAM pstm,HRESULT hresult);
HRESULT CoMarshalHresult(LPSTREAM pstm, HRESULT hresult);
//C extern HRESULT CoUnmarshalHresult(LPSTREAM pstm,HRESULT *phresult);
HRESULT CoUnmarshalHresult(LPSTREAM pstm, HRESULT *phresult);
//C extern HRESULT CoReleaseMarshalData(LPSTREAM pStm);
HRESULT CoReleaseMarshalData(LPSTREAM pStm);
//C extern HRESULT CoDisconnectObject(LPUNKNOWN pUnk,DWORD dwReserved);
HRESULT CoDisconnectObject(LPUNKNOWN pUnk, DWORD dwReserved);
//C extern HRESULT CoLockObjectExternal(LPUNKNOWN pUnk,WINBOOL fLock,WINBOOL fLastUnlockReleases);
HRESULT CoLockObjectExternal(LPUNKNOWN pUnk, WINBOOL fLock, WINBOOL fLastUnlockReleases);
//C extern HRESULT CoGetStandardMarshal(const IID *const riid,LPUNKNOWN pUnk,DWORD dwDestContext,LPVOID pvDestContext,DWORD mshlflags,LPMARSHAL *ppMarshal);
HRESULT CoGetStandardMarshal(IID *riid, LPUNKNOWN pUnk, DWORD dwDestContext, LPVOID pvDestContext, DWORD mshlflags, LPMARSHAL *ppMarshal);
//C extern HRESULT CoGetStdMarshalEx(LPUNKNOWN pUnkOuter,DWORD smexflags,LPUNKNOWN *ppUnkInner);
HRESULT CoGetStdMarshalEx(LPUNKNOWN pUnkOuter, DWORD smexflags, LPUNKNOWN *ppUnkInner);
//C typedef enum tagSTDMSHLFLAGS {
//C SMEXF_SERVER = 0x01,SMEXF_HANDLER = 0x02
//C } STDMSHLFLAGS;
enum tagSTDMSHLFLAGS
{
SMEXF_SERVER = 1,
SMEXF_HANDLER,
}
alias tagSTDMSHLFLAGS STDMSHLFLAGS;
//C extern WINBOOL CoIsHandlerConnected(LPUNKNOWN pUnk);
WINBOOL CoIsHandlerConnected(LPUNKNOWN pUnk);
//C extern HRESULT CoMarshalInterThreadInterfaceInStream(const IID *const riid,LPUNKNOWN pUnk,LPSTREAM *ppStm);
HRESULT CoMarshalInterThreadInterfaceInStream(IID *riid, LPUNKNOWN pUnk, LPSTREAM *ppStm);
//C extern HRESULT CoGetInterfaceAndReleaseStream(LPSTREAM pStm,const IID *const iid,LPVOID *ppv);
HRESULT CoGetInterfaceAndReleaseStream(LPSTREAM pStm, IID *iid, LPVOID *ppv);
//C extern HRESULT CoCreateFreeThreadedMarshaler(LPUNKNOWN punkOuter,LPUNKNOWN *ppunkMarshal);
HRESULT CoCreateFreeThreadedMarshaler(LPUNKNOWN punkOuter, LPUNKNOWN *ppunkMarshal);
//C extern HINSTANCE CoLoadLibrary(LPOLESTR lpszLibName,WINBOOL bAutoFree);
HINSTANCE CoLoadLibrary(LPOLESTR lpszLibName, WINBOOL bAutoFree);
//C extern void CoFreeLibrary(HINSTANCE hInst);
void CoFreeLibrary(HINSTANCE hInst);
//C extern void CoFreeAllLibraries(void);
void CoFreeAllLibraries();
//C extern void CoFreeUnusedLibraries(void);
void CoFreeUnusedLibraries();
//C extern void CoFreeUnusedLibrariesEx(DWORD dwUnloadDelay,DWORD dwReserved);
void CoFreeUnusedLibrariesEx(DWORD dwUnloadDelay, DWORD dwReserved);
//C extern HRESULT CoInitializeSecurity(PSECURITY_DESCRIPTOR pSecDesc,LONG cAuthSvc,SOLE_AUTHENTICATION_SERVICE *asAuthSvc,void *pReserved1,DWORD dwAuthnLevel,DWORD dwImpLevel,void *pAuthList,DWORD dwCapabilities,void *pReserved3);
HRESULT CoInitializeSecurity(PSECURITY_DESCRIPTOR pSecDesc, LONG cAuthSvc, SOLE_AUTHENTICATION_SERVICE *asAuthSvc, void *pReserved1, DWORD dwAuthnLevel, DWORD dwImpLevel, void *pAuthList, DWORD dwCapabilities, void *pReserved3);
//C extern HRESULT CoGetCallContext(const IID *const riid,void **ppInterface);
HRESULT CoGetCallContext(IID *riid, void **ppInterface);
//C extern HRESULT CoQueryProxyBlanket(IUnknown *pProxy,DWORD *pwAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,RPC_AUTH_IDENTITY_HANDLE *pAuthInfo,DWORD *pCapabilites);
HRESULT CoQueryProxyBlanket(IUnknown *pProxy, DWORD *pwAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, RPC_AUTH_IDENTITY_HANDLE *pAuthInfo, DWORD *pCapabilites);
//C extern HRESULT CoSetProxyBlanket(IUnknown *pProxy,DWORD dwAuthnSvc,DWORD dwAuthzSvc,OLECHAR *pServerPrincName,DWORD dwAuthnLevel,DWORD dwImpLevel,RPC_AUTH_IDENTITY_HANDLE pAuthInfo,DWORD dwCapabilities);
HRESULT CoSetProxyBlanket(IUnknown *pProxy, DWORD dwAuthnSvc, DWORD dwAuthzSvc, OLECHAR *pServerPrincName, DWORD dwAuthnLevel, DWORD dwImpLevel, RPC_AUTH_IDENTITY_HANDLE pAuthInfo, DWORD dwCapabilities);
//C extern HRESULT CoCopyProxy(IUnknown *pProxy,IUnknown **ppCopy);
HRESULT CoCopyProxy(IUnknown *pProxy, IUnknown **ppCopy);
//C extern HRESULT CoQueryClientBlanket(DWORD *pAuthnSvc,DWORD *pAuthzSvc,OLECHAR **pServerPrincName,DWORD *pAuthnLevel,DWORD *pImpLevel,RPC_AUTHZ_HANDLE *pPrivs,DWORD *pCapabilities);
HRESULT CoQueryClientBlanket(DWORD *pAuthnSvc, DWORD *pAuthzSvc, OLECHAR **pServerPrincName, DWORD *pAuthnLevel, DWORD *pImpLevel, RPC_AUTHZ_HANDLE *pPrivs, DWORD *pCapabilities);
//C extern HRESULT CoImpersonateClient();
HRESULT CoImpersonateClient();
//C extern HRESULT CoRevertToSelf();
HRESULT CoRevertToSelf();
//C extern HRESULT CoQueryAuthenticationServices(DWORD *pcAuthSvc,SOLE_AUTHENTICATION_SERVICE **asAuthSvc);
HRESULT CoQueryAuthenticationServices(DWORD *pcAuthSvc, SOLE_AUTHENTICATION_SERVICE **asAuthSvc);
//C extern HRESULT CoSwitchCallContext(IUnknown *pNewObject,IUnknown **ppOldObject);
HRESULT CoSwitchCallContext(IUnknown *pNewObject, IUnknown **ppOldObject);
//C extern HRESULT CoCreateInstance(const IID *const rclsid,LPUNKNOWN pUnkOuter,DWORD dwClsContext,const IID *const riid,LPVOID *ppv);
HRESULT CoCreateInstance(IID *rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext, IID *riid, LPVOID *ppv);
//C extern HRESULT CoGetInstanceFromFile(COSERVERINFO *pServerInfo,CLSID *pClsid,IUnknown *punkOuter,DWORD dwClsCtx,DWORD grfMode,OLECHAR *pwszName,DWORD dwCount,MULTI_QI *pResults);
HRESULT CoGetInstanceFromFile(COSERVERINFO *pServerInfo, CLSID *pClsid, IUnknown *punkOuter, DWORD dwClsCtx, DWORD grfMode, OLECHAR *pwszName, DWORD dwCount, MULTI_QI *pResults);
//C extern HRESULT CoGetInstanceFromIStorage(COSERVERINFO *pServerInfo,CLSID *pClsid,IUnknown *punkOuter,DWORD dwClsCtx,struct IStorage *pstg,DWORD dwCount,MULTI_QI *pResults);
HRESULT CoGetInstanceFromIStorage(COSERVERINFO *pServerInfo, CLSID *pClsid, IUnknown *punkOuter, DWORD dwClsCtx, IStorage *pstg, DWORD dwCount, MULTI_QI *pResults);
//C extern HRESULT CoCreateInstanceEx(const IID *const Clsid,IUnknown *punkOuter,DWORD dwClsCtx,COSERVERINFO *pServerInfo,DWORD dwCount,MULTI_QI *pResults);
HRESULT CoCreateInstanceEx(IID *Clsid, IUnknown *punkOuter, DWORD dwClsCtx, COSERVERINFO *pServerInfo, DWORD dwCount, MULTI_QI *pResults);
//C extern HRESULT CoGetCancelObject(DWORD dwThreadId,const IID *const iid,void **ppUnk);
HRESULT CoGetCancelObject(DWORD dwThreadId, IID *iid, void **ppUnk);
//C extern HRESULT CoSetCancelObject(IUnknown *pUnk);
HRESULT CoSetCancelObject(IUnknown *pUnk);
//C extern HRESULT CoCancelCall(DWORD dwThreadId,ULONG ulTimeout);
HRESULT CoCancelCall(DWORD dwThreadId, ULONG ulTimeout);
//C extern HRESULT CoTestCancel();
HRESULT CoTestCancel();
//C extern HRESULT CoEnableCallCancellation(LPVOID pReserved);
HRESULT CoEnableCallCancellation(LPVOID pReserved);
//C extern HRESULT CoDisableCallCancellation(LPVOID pReserved);
HRESULT CoDisableCallCancellation(LPVOID pReserved);
//C extern HRESULT CoAllowSetForegroundWindow(IUnknown *pUnk,LPVOID lpvReserved);
HRESULT CoAllowSetForegroundWindow(IUnknown *pUnk, LPVOID lpvReserved);
//C extern HRESULT DcomChannelSetHResult(LPVOID pvReserved,ULONG *pulReserved,HRESULT appsHR);
HRESULT DcomChannelSetHResult(LPVOID pvReserved, ULONG *pulReserved, HRESULT appsHR);
//C extern HRESULT StringFromCLSID(const IID *const rclsid,LPOLESTR *lplpsz);
HRESULT StringFromCLSID(IID *rclsid, LPOLESTR *lplpsz);
//C extern HRESULT CLSIDFromString(LPOLESTR lpsz,LPCLSID pclsid);
HRESULT CLSIDFromString(LPOLESTR lpsz, LPCLSID pclsid);
//C extern HRESULT StringFromIID(const IID *const rclsid,LPOLESTR *lplpsz);
HRESULT StringFromIID(IID *rclsid, LPOLESTR *lplpsz);
//C extern HRESULT IIDFromString(LPOLESTR lpsz,LPIID lpiid);
HRESULT IIDFromString(LPOLESTR lpsz, LPIID lpiid);
//C extern WINBOOL CoIsOle1Class(const IID *const rclsid);
WINBOOL CoIsOle1Class(IID *rclsid);
//C extern HRESULT ProgIDFromCLSID (const IID *const clsid,LPOLESTR *lplpszProgID);
HRESULT ProgIDFromCLSID(IID *clsid, LPOLESTR *lplpszProgID);
//C extern HRESULT CLSIDFromProgID (LPCOLESTR lpszProgID,LPCLSID lpclsid);
HRESULT CLSIDFromProgID(LPCOLESTR lpszProgID, LPCLSID lpclsid);
//C extern HRESULT CLSIDFromProgIDEx (LPCOLESTR lpszProgID,LPCLSID lpclsid);
HRESULT CLSIDFromProgIDEx(LPCOLESTR lpszProgID, LPCLSID lpclsid);
//C extern int StringFromGUID2(const GUID *const rguid,LPOLESTR lpsz,int cchMax);
int StringFromGUID2(GUID *rguid, LPOLESTR lpsz, int cchMax);
//C extern HRESULT CoCreateGuid(GUID *pguid);
HRESULT CoCreateGuid(GUID *pguid);
//C extern WINBOOL CoFileTimeToDosDateTime(FILETIME *lpFileTime,LPWORD lpDosDate,LPWORD lpDosTime);
WINBOOL CoFileTimeToDosDateTime(FILETIME *lpFileTime, LPWORD lpDosDate, LPWORD lpDosTime);
//C extern WINBOOL CoDosDateTimeToFileTime(WORD nDosDate,WORD nDosTime,FILETIME *lpFileTime);
WINBOOL CoDosDateTimeToFileTime(WORD nDosDate, WORD nDosTime, FILETIME *lpFileTime);
//C extern HRESULT CoFileTimeNow(FILETIME *lpFileTime);
HRESULT CoFileTimeNow(FILETIME *lpFileTime);
//C extern HRESULT CoRegisterMessageFilter(LPMESSAGEFILTER lpMessageFilter,LPMESSAGEFILTER *lplpMessageFilter);
HRESULT CoRegisterMessageFilter(LPMESSAGEFILTER lpMessageFilter, LPMESSAGEFILTER *lplpMessageFilter);
//C extern HRESULT CoRegisterChannelHook(const GUID *const ExtensionUuid,IChannelHook *pChannelHook);
HRESULT CoRegisterChannelHook(GUID *ExtensionUuid, IChannelHook *pChannelHook);
//C extern HRESULT CoWaitForMultipleHandles (DWORD dwFlags,DWORD dwTimeout,ULONG cHandles,LPHANDLE pHandles,LPDWORD lpdwindex);
HRESULT CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, ULONG cHandles, LPHANDLE pHandles, LPDWORD lpdwindex);
//C typedef enum tagCOWAIT_FLAGS {
//C COWAIT_WAITALL = 1,COWAIT_ALERTABLE = 2,COWAIT_INPUTAVAILABLE = 4
//C } COWAIT_FLAGS;
enum tagCOWAIT_FLAGS
{
COWAIT_WAITALL = 1,
COWAIT_ALERTABLE,
COWAIT_INPUTAVAILABLE = 4,
}
alias tagCOWAIT_FLAGS COWAIT_FLAGS;
//C extern HRESULT CoInvalidateRemoteMachineBindings(LPOLESTR pszMachineName);
HRESULT CoInvalidateRemoteMachineBindings(LPOLESTR pszMachineName);
//C extern HRESULT CoGetTreatAsClass(const IID *const clsidOld,LPCLSID pClsidNew);
HRESULT CoGetTreatAsClass(IID *clsidOld, LPCLSID pClsidNew);
//C extern HRESULT CoTreatAsClass(const IID *const clsidOld,const IID *const clsidNew);
HRESULT CoTreatAsClass(IID *clsidOld, IID *clsidNew);
//C typedef HRESULT ( *LPFNGETCLASSOBJECT)(const IID *const,const IID *const,LPVOID *);
alias HRESULT function(IID *, IID *, LPVOID *)LPFNGETCLASSOBJECT;
//C typedef HRESULT ( *LPFNCANUNLOADNOW)(void);
alias HRESULT function()LPFNCANUNLOADNOW;
//C extern HRESULT DllGetClassObject(const IID *const rclsid,const IID *const riid,LPVOID *ppv);
HRESULT DllGetClassObject(IID *rclsid, IID *riid, LPVOID *ppv);
//C extern HRESULT DllCanUnloadNow(void);
HRESULT DllCanUnloadNow();
//C extern LPVOID CoTaskMemAlloc(SIZE_T cb);
LPVOID CoTaskMemAlloc(SIZE_T cb);
//C extern LPVOID CoTaskMemRealloc(LPVOID pv,SIZE_T cb);
LPVOID CoTaskMemRealloc(LPVOID pv, SIZE_T cb);
//C extern void CoTaskMemFree(LPVOID pv);
void CoTaskMemFree(LPVOID pv);
//C extern HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *ppDAHolder);
HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *ppDAHolder);
//C extern HRESULT CreateDataCache(LPUNKNOWN pUnkOuter,const IID *const rclsid,const IID *const iid,LPVOID *ppv);
HRESULT CreateDataCache(LPUNKNOWN pUnkOuter, IID *rclsid, IID *iid, LPVOID *ppv);
//C extern HRESULT StgCreateDocfile(const OLECHAR *pwcsName,DWORD grfMode,DWORD reserved,IStorage **ppstgOpen);
HRESULT StgCreateDocfile(OLECHAR *pwcsName, DWORD grfMode, DWORD reserved, IStorage **ppstgOpen);
//C extern HRESULT StgCreateDocfileOnILockBytes(ILockBytes *plkbyt,DWORD grfMode,DWORD reserved,IStorage **ppstgOpen);
HRESULT StgCreateDocfileOnILockBytes(ILockBytes *plkbyt, DWORD grfMode, DWORD reserved, IStorage **ppstgOpen);
//C extern HRESULT StgOpenStorage(const OLECHAR *pwcsName,IStorage *pstgPriority,DWORD grfMode,SNB snbExclude,DWORD reserved,IStorage **ppstgOpen);
HRESULT StgOpenStorage(OLECHAR *pwcsName, IStorage *pstgPriority, DWORD grfMode, SNB snbExclude, DWORD reserved, IStorage **ppstgOpen);
//C extern HRESULT StgOpenStorageOnILockBytes(ILockBytes *plkbyt,IStorage *pstgPriority,DWORD grfMode,SNB snbExclude,DWORD reserved,IStorage **ppstgOpen);
HRESULT StgOpenStorageOnILockBytes(ILockBytes *plkbyt, IStorage *pstgPriority, DWORD grfMode, SNB snbExclude, DWORD reserved, IStorage **ppstgOpen);
//C extern HRESULT StgIsStorageFile(const OLECHAR *pwcsName);
HRESULT StgIsStorageFile(OLECHAR *pwcsName);
//C extern HRESULT StgIsStorageILockBytes(ILockBytes *plkbyt);
HRESULT StgIsStorageILockBytes(ILockBytes *plkbyt);
//C extern HRESULT StgSetTimes(OLECHAR const *lpszName,FILETIME const *pctime,FILETIME const *patime,FILETIME const *pmtime);
HRESULT StgSetTimes(OLECHAR *lpszName, FILETIME *pctime, FILETIME *patime, FILETIME *pmtime);
//C extern HRESULT StgOpenAsyncDocfileOnIFillLockBytes(IFillLockBytes *pflb,DWORD grfMode,DWORD asyncFlags,IStorage **ppstgOpen);
HRESULT StgOpenAsyncDocfileOnIFillLockBytes(IFillLockBytes *pflb, DWORD grfMode, DWORD asyncFlags, IStorage **ppstgOpen);
//C extern HRESULT StgGetIFillLockBytesOnILockBytes(ILockBytes *pilb,IFillLockBytes **ppflb);
HRESULT StgGetIFillLockBytesOnILockBytes(ILockBytes *pilb, IFillLockBytes **ppflb);
//C extern HRESULT StgGetIFillLockBytesOnFile(OLECHAR const *pwcsName,IFillLockBytes **ppflb);
HRESULT StgGetIFillLockBytesOnFile(OLECHAR *pwcsName, IFillLockBytes **ppflb);
//C extern HRESULT StgOpenLayoutDocfile(OLECHAR const *pwcsDfName,DWORD grfMode,DWORD reserved,IStorage **ppstgOpen);
HRESULT StgOpenLayoutDocfile(OLECHAR *pwcsDfName, DWORD grfMode, DWORD reserved, IStorage **ppstgOpen);
//C typedef struct tagSTGOPTIONS {
//C USHORT usVersion;
//C USHORT reserved;
//C ULONG ulSectorSize;
//C const WCHAR *pwcsTemplateFile;
//C } STGOPTIONS;
struct tagSTGOPTIONS
{
USHORT usVersion;
USHORT reserved;
ULONG ulSectorSize;
WCHAR *pwcsTemplateFile;
}
alias tagSTGOPTIONS STGOPTIONS;
//C extern HRESULT StgCreateStorageEx (const WCHAR *pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,STGOPTIONS *pStgOptions,void *reserved,const IID *const riid,void **ppObjectOpen);
HRESULT StgCreateStorageEx(WCHAR *pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, STGOPTIONS *pStgOptions, void *reserved, IID *riid, void **ppObjectOpen);
//C extern HRESULT StgOpenStorageEx (const WCHAR *pwcsName,DWORD grfMode,DWORD stgfmt,DWORD grfAttrs,STGOPTIONS *pStgOptions,void *reserved,const IID *const riid,void **ppObjectOpen);
HRESULT StgOpenStorageEx(WCHAR *pwcsName, DWORD grfMode, DWORD stgfmt, DWORD grfAttrs, STGOPTIONS *pStgOptions, void *reserved, IID *riid, void **ppObjectOpen);
//C extern HRESULT BindMoniker(LPMONIKER pmk,DWORD grfOpt,const IID *const iidResult,LPVOID *ppvResult);
HRESULT BindMoniker(LPMONIKER pmk, DWORD grfOpt, IID *iidResult, LPVOID *ppvResult);
//C extern HRESULT CoInstall(IBindCtx *pbc,DWORD dwFlags,uCLSSPEC *pClassSpec,QUERYCONTEXT *pQuery,LPWSTR pszCodeBase);
HRESULT CoInstall(IBindCtx *pbc, DWORD dwFlags, uCLSSPEC *pClassSpec, QUERYCONTEXT *pQuery, LPWSTR pszCodeBase);
//C extern HRESULT CoGetObject(LPCWSTR pszName,BIND_OPTS *pBindOptions,const IID *const riid,void **ppv);
HRESULT CoGetObject(LPCWSTR pszName, BIND_OPTS *pBindOptions, IID *riid, void **ppv);
//C extern HRESULT MkParseDisplayName(LPBC pbc,LPCOLESTR szUserName,ULONG *pchEaten,LPMONIKER *ppmk);
HRESULT MkParseDisplayName(LPBC pbc, LPCOLESTR szUserName, ULONG *pchEaten, LPMONIKER *ppmk);
//C extern HRESULT MonikerRelativePathTo(LPMONIKER pmkSrc,LPMONIKER pmkDest,LPMONIKER *ppmkRelPath,WINBOOL dwReserved);
HRESULT MonikerRelativePathTo(LPMONIKER pmkSrc, LPMONIKER pmkDest, LPMONIKER *ppmkRelPath, WINBOOL dwReserved);
//C extern HRESULT MonikerCommonPrefixWith(LPMONIKER pmkThis,LPMONIKER pmkOther,LPMONIKER *ppmkCommon);
HRESULT MonikerCommonPrefixWith(LPMONIKER pmkThis, LPMONIKER pmkOther, LPMONIKER *ppmkCommon);
//C extern HRESULT CreateBindCtx(DWORD reserved,LPBC *ppbc);
HRESULT CreateBindCtx(DWORD reserved, LPBC *ppbc);
//C extern HRESULT CreateGenericComposite(LPMONIKER pmkFirst,LPMONIKER pmkRest,LPMONIKER *ppmkComposite);
HRESULT CreateGenericComposite(LPMONIKER pmkFirst, LPMONIKER pmkRest, LPMONIKER *ppmkComposite);
//C extern HRESULT GetClassFile (LPCOLESTR szFilename,CLSID *pclsid);
HRESULT GetClassFile(LPCOLESTR szFilename, CLSID *pclsid);
//C extern HRESULT CreateClassMoniker(const IID *const rclsid,LPMONIKER *ppmk);
HRESULT CreateClassMoniker(IID *rclsid, LPMONIKER *ppmk);
//C extern HRESULT CreateFileMoniker(LPCOLESTR lpszPathName,LPMONIKER *ppmk);
HRESULT CreateFileMoniker(LPCOLESTR lpszPathName, LPMONIKER *ppmk);
//C extern HRESULT CreateItemMoniker(LPCOLESTR lpszDelim,LPCOLESTR lpszItem,LPMONIKER *ppmk);
HRESULT CreateItemMoniker(LPCOLESTR lpszDelim, LPCOLESTR lpszItem, LPMONIKER *ppmk);
//C extern HRESULT CreateAntiMoniker(LPMONIKER *ppmk);
HRESULT CreateAntiMoniker(LPMONIKER *ppmk);
//C extern HRESULT CreatePointerMoniker(LPUNKNOWN punk,LPMONIKER *ppmk);
HRESULT CreatePointerMoniker(LPUNKNOWN punk, LPMONIKER *ppmk);
//C extern HRESULT CreateObjrefMoniker(LPUNKNOWN punk,LPMONIKER *ppmk);
HRESULT CreateObjrefMoniker(LPUNKNOWN punk, LPMONIKER *ppmk);
//C extern HRESULT GetRunningObjectTable(DWORD reserved,LPRUNNINGOBJECTTABLE *pprot);
HRESULT GetRunningObjectTable(DWORD reserved, LPRUNNINGOBJECTTABLE *pprot);
//C typedef struct IBinding IBinding;
//C typedef struct IBindStatusCallback IBindStatusCallback;
//C typedef struct IOleAdviseHolder IOleAdviseHolder;
//C typedef struct IOleCache IOleCache;
//C typedef struct IOleCache2 IOleCache2;
//C typedef struct IOleCacheControl IOleCacheControl;
//C typedef struct IParseDisplayName IParseDisplayName;
//C typedef struct IOleContainer IOleContainer;
//C typedef struct IOleClientSite IOleClientSite;
//C typedef struct IOleObject IOleObject;
//C typedef struct IOleWindow IOleWindow;
//C typedef struct IOleLink IOleLink;
//C typedef struct IOleItemContainer IOleItemContainer;
//C typedef struct IOleInPlaceUIWindow IOleInPlaceUIWindow;
//C typedef struct IOleInPlaceActiveObject IOleInPlaceActiveObject;
//C typedef struct IOleInPlaceFrame IOleInPlaceFrame;
//C typedef struct IOleInPlaceObject IOleInPlaceObject;
//C typedef struct IOleInPlaceSite IOleInPlaceSite;
//C typedef struct IContinue IContinue;
//C typedef struct IViewObject IViewObject;
//C typedef struct IViewObject2 IViewObject2;
//C typedef struct IDropSource IDropSource;
//C typedef struct IDropTarget IDropTarget;
//C typedef struct IEnumOLEVERB IEnumOLEVERB;
//C extern RPC_IF_HANDLE __MIDL_itf_oleidl_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_oleidl_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_oleidl_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_oleidl_0000_v0_0_s_ifspec;
//C typedef IOleAdviseHolder *LPOLEADVISEHOLDER;
alias IOleAdviseHolder *LPOLEADVISEHOLDER;
//C typedef struct IOleAdviseHolderVtbl {
//C HRESULT ( *QueryInterface)(IOleAdviseHolder *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleAdviseHolder *This);
//C ULONG ( *Release)(IOleAdviseHolder *This);
//C HRESULT ( *Advise)(IOleAdviseHolder *This,IAdviseSink *pAdvise,DWORD *pdwConnection);
//C HRESULT ( *Unadvise)(IOleAdviseHolder *This,DWORD dwConnection);
//C HRESULT ( *EnumAdvise)(IOleAdviseHolder *This,IEnumSTATDATA **ppenumAdvise);
//C HRESULT ( *SendOnRename)(IOleAdviseHolder *This,IMoniker *pmk);
//C HRESULT ( *SendOnSave)(IOleAdviseHolder *This);
//C HRESULT ( *SendOnClose)(IOleAdviseHolder *This);
//C } IOleAdviseHolderVtbl;
struct IOleAdviseHolderVtbl
{
HRESULT function(IOleAdviseHolder *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleAdviseHolder *This)AddRef;
ULONG function(IOleAdviseHolder *This)Release;
HRESULT function(IOleAdviseHolder *This, IAdviseSink *pAdvise, DWORD *pdwConnection)Advise;
HRESULT function(IOleAdviseHolder *This, DWORD dwConnection)Unadvise;
HRESULT function(IOleAdviseHolder *This, IEnumSTATDATA **ppenumAdvise)EnumAdvise;
HRESULT function(IOleAdviseHolder *This, IMoniker *pmk)SendOnRename;
HRESULT function(IOleAdviseHolder *This)SendOnSave;
HRESULT function(IOleAdviseHolder *This)SendOnClose;
}
//C struct IOleAdviseHolder {
//C struct IOleAdviseHolderVtbl *lpVtbl;
//C };
struct IOleAdviseHolder
{
IOleAdviseHolderVtbl *lpVtbl;
}
//C HRESULT IOleAdviseHolder_Advise_Proxy(IOleAdviseHolder *This,IAdviseSink *pAdvise,DWORD *pdwConnection);
HRESULT IOleAdviseHolder_Advise_Proxy(IOleAdviseHolder *This, IAdviseSink *pAdvise, DWORD *pdwConnection);
//C void IOleAdviseHolder_Advise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_Advise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleAdviseHolder_Unadvise_Proxy(IOleAdviseHolder *This,DWORD dwConnection);
HRESULT IOleAdviseHolder_Unadvise_Proxy(IOleAdviseHolder *This, DWORD dwConnection);
//C void IOleAdviseHolder_Unadvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_Unadvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleAdviseHolder_EnumAdvise_Proxy(IOleAdviseHolder *This,IEnumSTATDATA **ppenumAdvise);
HRESULT IOleAdviseHolder_EnumAdvise_Proxy(IOleAdviseHolder *This, IEnumSTATDATA **ppenumAdvise);
//C void IOleAdviseHolder_EnumAdvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_EnumAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleAdviseHolder_SendOnRename_Proxy(IOleAdviseHolder *This,IMoniker *pmk);
HRESULT IOleAdviseHolder_SendOnRename_Proxy(IOleAdviseHolder *This, IMoniker *pmk);
//C void IOleAdviseHolder_SendOnRename_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_SendOnRename_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleAdviseHolder_SendOnSave_Proxy(IOleAdviseHolder *This);
HRESULT IOleAdviseHolder_SendOnSave_Proxy(IOleAdviseHolder *This);
//C void IOleAdviseHolder_SendOnSave_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_SendOnSave_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleAdviseHolder_SendOnClose_Proxy(IOleAdviseHolder *This);
HRESULT IOleAdviseHolder_SendOnClose_Proxy(IOleAdviseHolder *This);
//C void IOleAdviseHolder_SendOnClose_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleAdviseHolder_SendOnClose_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleCache *LPOLECACHE;
alias IOleCache *LPOLECACHE;
//C typedef struct IOleCacheVtbl {
//C HRESULT ( *QueryInterface)(IOleCache *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleCache *This);
//C ULONG ( *Release)(IOleCache *This);
//C HRESULT ( *Cache)(IOleCache *This,FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection);
//C HRESULT ( *Uncache)(IOleCache *This,DWORD dwConnection);
//C HRESULT ( *EnumCache)(IOleCache *This,IEnumSTATDATA **ppenumSTATDATA);
//C HRESULT ( *InitCache)(IOleCache *This,IDataObject *pDataObject);
//C HRESULT ( *SetData)(IOleCache *This,FORMATETC *pformatetc,STGMEDIUM *pmedium,WINBOOL fRelease);
//C } IOleCacheVtbl;
struct IOleCacheVtbl
{
HRESULT function(IOleCache *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleCache *This)AddRef;
ULONG function(IOleCache *This)Release;
HRESULT function(IOleCache *This, FORMATETC *pformatetc, DWORD advf, DWORD *pdwConnection)Cache;
HRESULT function(IOleCache *This, DWORD dwConnection)Uncache;
HRESULT function(IOleCache *This, IEnumSTATDATA **ppenumSTATDATA)EnumCache;
HRESULT function(IOleCache *This, IDataObject *pDataObject)InitCache;
HRESULT function(IOleCache *This, FORMATETC *pformatetc, STGMEDIUM *pmedium, WINBOOL fRelease)SetData;
}
//C struct IOleCache {
//C struct IOleCacheVtbl *lpVtbl;
//C };
struct IOleCache
{
IOleCacheVtbl *lpVtbl;
}
//C HRESULT IOleCache_Cache_Proxy(IOleCache *This,FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection);
HRESULT IOleCache_Cache_Proxy(IOleCache *This, FORMATETC *pformatetc, DWORD advf, DWORD *pdwConnection);
//C void IOleCache_Cache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache_Cache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCache_Uncache_Proxy(IOleCache *This,DWORD dwConnection);
HRESULT IOleCache_Uncache_Proxy(IOleCache *This, DWORD dwConnection);
//C void IOleCache_Uncache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache_Uncache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCache_EnumCache_Proxy(IOleCache *This,IEnumSTATDATA **ppenumSTATDATA);
HRESULT IOleCache_EnumCache_Proxy(IOleCache *This, IEnumSTATDATA **ppenumSTATDATA);
//C void IOleCache_EnumCache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache_EnumCache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCache_InitCache_Proxy(IOleCache *This,IDataObject *pDataObject);
HRESULT IOleCache_InitCache_Proxy(IOleCache *This, IDataObject *pDataObject);
//C void IOleCache_InitCache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache_InitCache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCache_SetData_Proxy(IOleCache *This,FORMATETC *pformatetc,STGMEDIUM *pmedium,WINBOOL fRelease);
HRESULT IOleCache_SetData_Proxy(IOleCache *This, FORMATETC *pformatetc, STGMEDIUM *pmedium, WINBOOL fRelease);
//C void IOleCache_SetData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache_SetData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleCache2 *LPOLECACHE2;
alias IOleCache2 *LPOLECACHE2;
//C typedef enum tagDISCARDCACHE {
//C DISCARDCACHE_SAVEIFDIRTY = 0,DISCARDCACHE_NOSAVE = 1
//C } DISCARDCACHE;
enum tagDISCARDCACHE
{
DISCARDCACHE_SAVEIFDIRTY,
DISCARDCACHE_NOSAVE,
}
alias tagDISCARDCACHE DISCARDCACHE;
//C typedef struct IOleCache2Vtbl {
//C HRESULT ( *QueryInterface)(IOleCache2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleCache2 *This);
//C ULONG ( *Release)(IOleCache2 *This);
//C HRESULT ( *Cache)(IOleCache2 *This,FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection);
//C HRESULT ( *Uncache)(IOleCache2 *This,DWORD dwConnection);
//C HRESULT ( *EnumCache)(IOleCache2 *This,IEnumSTATDATA **ppenumSTATDATA);
//C HRESULT ( *InitCache)(IOleCache2 *This,IDataObject *pDataObject);
//C HRESULT ( *SetData)(IOleCache2 *This,FORMATETC *pformatetc,STGMEDIUM *pmedium,WINBOOL fRelease);
//C HRESULT ( *UpdateCache)(IOleCache2 *This,LPDATAOBJECT pDataObject,DWORD grfUpdf,LPVOID pReserved);
//C HRESULT ( *DiscardCache)(IOleCache2 *This,DWORD dwDiscardOptions);
//C } IOleCache2Vtbl;
struct IOleCache2Vtbl
{
HRESULT function(IOleCache2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleCache2 *This)AddRef;
ULONG function(IOleCache2 *This)Release;
HRESULT function(IOleCache2 *This, FORMATETC *pformatetc, DWORD advf, DWORD *pdwConnection)Cache;
HRESULT function(IOleCache2 *This, DWORD dwConnection)Uncache;
HRESULT function(IOleCache2 *This, IEnumSTATDATA **ppenumSTATDATA)EnumCache;
HRESULT function(IOleCache2 *This, IDataObject *pDataObject)InitCache;
HRESULT function(IOleCache2 *This, FORMATETC *pformatetc, STGMEDIUM *pmedium, WINBOOL fRelease)SetData;
HRESULT function(IOleCache2 *This, LPDATAOBJECT pDataObject, DWORD grfUpdf, LPVOID pReserved)UpdateCache;
HRESULT function(IOleCache2 *This, DWORD dwDiscardOptions)DiscardCache;
}
//C struct IOleCache2 {
//C struct IOleCache2Vtbl *lpVtbl;
//C };
struct IOleCache2
{
IOleCache2Vtbl *lpVtbl;
}
//C HRESULT IOleCache2_RemoteUpdateCache_Proxy(IOleCache2 *This,LPDATAOBJECT pDataObject,DWORD grfUpdf,LONG_PTR pReserved);
HRESULT IOleCache2_RemoteUpdateCache_Proxy(IOleCache2 *This, LPDATAOBJECT pDataObject, DWORD grfUpdf, LONG_PTR pReserved);
//C void IOleCache2_RemoteUpdateCache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache2_RemoteUpdateCache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCache2_DiscardCache_Proxy(IOleCache2 *This,DWORD dwDiscardOptions);
HRESULT IOleCache2_DiscardCache_Proxy(IOleCache2 *This, DWORD dwDiscardOptions);
//C void IOleCache2_DiscardCache_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCache2_DiscardCache_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleCacheControl *LPOLECACHECONTROL;
alias IOleCacheControl *LPOLECACHECONTROL;
//C typedef struct IOleCacheControlVtbl {
//C HRESULT ( *QueryInterface)(IOleCacheControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleCacheControl *This);
//C ULONG ( *Release)(IOleCacheControl *This);
//C HRESULT ( *OnRun)(IOleCacheControl *This,LPDATAOBJECT pDataObject);
//C HRESULT ( *OnStop)(IOleCacheControl *This);
//C } IOleCacheControlVtbl;
struct IOleCacheControlVtbl
{
HRESULT function(IOleCacheControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleCacheControl *This)AddRef;
ULONG function(IOleCacheControl *This)Release;
HRESULT function(IOleCacheControl *This, LPDATAOBJECT pDataObject)OnRun;
HRESULT function(IOleCacheControl *This)OnStop;
}
//C struct IOleCacheControl {
//C struct IOleCacheControlVtbl *lpVtbl;
//C };
struct IOleCacheControl
{
IOleCacheControlVtbl *lpVtbl;
}
//C HRESULT IOleCacheControl_OnRun_Proxy(IOleCacheControl *This,LPDATAOBJECT pDataObject);
HRESULT IOleCacheControl_OnRun_Proxy(IOleCacheControl *This, LPDATAOBJECT pDataObject);
//C void IOleCacheControl_OnRun_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCacheControl_OnRun_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleCacheControl_OnStop_Proxy(IOleCacheControl *This);
HRESULT IOleCacheControl_OnStop_Proxy(IOleCacheControl *This);
//C void IOleCacheControl_OnStop_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleCacheControl_OnStop_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IParseDisplayName *LPPARSEDISPLAYNAME;
alias IParseDisplayName *LPPARSEDISPLAYNAME;
//C typedef struct IParseDisplayNameVtbl {
//C HRESULT ( *QueryInterface)(IParseDisplayName *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IParseDisplayName *This);
//C ULONG ( *Release)(IParseDisplayName *This);
//C HRESULT ( *ParseDisplayName)(IParseDisplayName *This,IBindCtx *pbc,LPOLESTR pszDisplayName,ULONG *pchEaten,IMoniker **ppmkOut);
//C } IParseDisplayNameVtbl;
struct IParseDisplayNameVtbl
{
HRESULT function(IParseDisplayName *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IParseDisplayName *This)AddRef;
ULONG function(IParseDisplayName *This)Release;
HRESULT function(IParseDisplayName *This, IBindCtx *pbc, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut)ParseDisplayName;
}
//C struct IParseDisplayName {
//C struct IParseDisplayNameVtbl *lpVtbl;
//C };
struct IParseDisplayName
{
IParseDisplayNameVtbl *lpVtbl;
}
//C HRESULT IParseDisplayName_ParseDisplayName_Proxy(IParseDisplayName *This,IBindCtx *pbc,LPOLESTR pszDisplayName,ULONG *pchEaten,IMoniker **ppmkOut);
HRESULT IParseDisplayName_ParseDisplayName_Proxy(IParseDisplayName *This, IBindCtx *pbc, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut);
//C void IParseDisplayName_ParseDisplayName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IParseDisplayName_ParseDisplayName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleContainer *LPOLECONTAINER;
alias IOleContainer *LPOLECONTAINER;
//C typedef struct IOleContainerVtbl {
//C HRESULT ( *QueryInterface)(IOleContainer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleContainer *This);
//C ULONG ( *Release)(IOleContainer *This);
//C HRESULT ( *ParseDisplayName)(IOleContainer *This,IBindCtx *pbc,LPOLESTR pszDisplayName,ULONG *pchEaten,IMoniker **ppmkOut);
//C HRESULT ( *EnumObjects)(IOleContainer *This,DWORD grfFlags,IEnumUnknown **ppenum);
//C HRESULT ( *LockContainer)(IOleContainer *This,WINBOOL fLock);
//C } IOleContainerVtbl;
struct IOleContainerVtbl
{
HRESULT function(IOleContainer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleContainer *This)AddRef;
ULONG function(IOleContainer *This)Release;
HRESULT function(IOleContainer *This, IBindCtx *pbc, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut)ParseDisplayName;
HRESULT function(IOleContainer *This, DWORD grfFlags, IEnumUnknown **ppenum)EnumObjects;
HRESULT function(IOleContainer *This, WINBOOL fLock)LockContainer;
}
//C struct IOleContainer {
//C struct IOleContainerVtbl *lpVtbl;
//C };
struct IOleContainer
{
IOleContainerVtbl *lpVtbl;
}
//C HRESULT IOleContainer_EnumObjects_Proxy(IOleContainer *This,DWORD grfFlags,IEnumUnknown **ppenum);
HRESULT IOleContainer_EnumObjects_Proxy(IOleContainer *This, DWORD grfFlags, IEnumUnknown **ppenum);
//C void IOleContainer_EnumObjects_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleContainer_EnumObjects_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleContainer_LockContainer_Proxy(IOleContainer *This,WINBOOL fLock);
HRESULT IOleContainer_LockContainer_Proxy(IOleContainer *This, WINBOOL fLock);
//C void IOleContainer_LockContainer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleContainer_LockContainer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleClientSite *LPOLECLIENTSITE;
alias IOleClientSite *LPOLECLIENTSITE;
//C typedef struct IOleClientSiteVtbl {
//C HRESULT ( *QueryInterface)(IOleClientSite *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleClientSite *This);
//C ULONG ( *Release)(IOleClientSite *This);
//C HRESULT ( *SaveObject)(IOleClientSite *This);
//C HRESULT ( *GetMoniker)(IOleClientSite *This,DWORD dwAssign,DWORD dwWhichMoniker,IMoniker **ppmk);
//C HRESULT ( *GetContainer)(IOleClientSite *This,IOleContainer **ppContainer);
//C HRESULT ( *ShowObject)(IOleClientSite *This);
//C HRESULT ( *OnShowWindow)(IOleClientSite *This,WINBOOL fShow);
//C HRESULT ( *RequestNewObjectLayout)(IOleClientSite *This);
//C } IOleClientSiteVtbl;
struct IOleClientSiteVtbl
{
HRESULT function(IOleClientSite *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleClientSite *This)AddRef;
ULONG function(IOleClientSite *This)Release;
HRESULT function(IOleClientSite *This)SaveObject;
HRESULT function(IOleClientSite *This, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk)GetMoniker;
HRESULT function(IOleClientSite *This, IOleContainer **ppContainer)GetContainer;
HRESULT function(IOleClientSite *This)ShowObject;
HRESULT function(IOleClientSite *This, WINBOOL fShow)OnShowWindow;
HRESULT function(IOleClientSite *This)RequestNewObjectLayout;
}
//C struct IOleClientSite {
//C struct IOleClientSiteVtbl *lpVtbl;
//C };
struct IOleClientSite
{
IOleClientSiteVtbl *lpVtbl;
}
//C HRESULT IOleClientSite_SaveObject_Proxy(IOleClientSite *This);
HRESULT IOleClientSite_SaveObject_Proxy(IOleClientSite *This);
//C void IOleClientSite_SaveObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_SaveObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleClientSite_GetMoniker_Proxy(IOleClientSite *This,DWORD dwAssign,DWORD dwWhichMoniker,IMoniker **ppmk);
HRESULT IOleClientSite_GetMoniker_Proxy(IOleClientSite *This, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk);
//C void IOleClientSite_GetMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_GetMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleClientSite_GetContainer_Proxy(IOleClientSite *This,IOleContainer **ppContainer);
HRESULT IOleClientSite_GetContainer_Proxy(IOleClientSite *This, IOleContainer **ppContainer);
//C void IOleClientSite_GetContainer_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_GetContainer_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleClientSite_ShowObject_Proxy(IOleClientSite *This);
HRESULT IOleClientSite_ShowObject_Proxy(IOleClientSite *This);
//C void IOleClientSite_ShowObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_ShowObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleClientSite_OnShowWindow_Proxy(IOleClientSite *This,WINBOOL fShow);
HRESULT IOleClientSite_OnShowWindow_Proxy(IOleClientSite *This, WINBOOL fShow);
//C void IOleClientSite_OnShowWindow_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_OnShowWindow_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleClientSite_RequestNewObjectLayout_Proxy(IOleClientSite *This);
HRESULT IOleClientSite_RequestNewObjectLayout_Proxy(IOleClientSite *This);
//C void IOleClientSite_RequestNewObjectLayout_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleClientSite_RequestNewObjectLayout_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleObject *LPOLEOBJECT;
alias IOleObject *LPOLEOBJECT;
//C typedef enum tagOLEGETMONIKER {
//C OLEGETMONIKER_ONLYIFTHERE = 1,OLEGETMONIKER_FORCEASSIGN = 2,OLEGETMONIKER_UNASSIGN = 3,OLEGETMONIKER_TEMPFORUSER = 4
//C } OLEGETMONIKER;
enum tagOLEGETMONIKER
{
OLEGETMONIKER_ONLYIFTHERE = 1,
OLEGETMONIKER_FORCEASSIGN,
OLEGETMONIKER_UNASSIGN,
OLEGETMONIKER_TEMPFORUSER,
}
alias tagOLEGETMONIKER OLEGETMONIKER;
//C typedef enum tagOLEWHICHMK {
//C OLEWHICHMK_CONTAINER = 1,OLEWHICHMK_OBJREL = 2,OLEWHICHMK_OBJFULL = 3
//C } OLEWHICHMK;
enum tagOLEWHICHMK
{
OLEWHICHMK_CONTAINER = 1,
OLEWHICHMK_OBJREL,
OLEWHICHMK_OBJFULL,
}
alias tagOLEWHICHMK OLEWHICHMK;
//C typedef enum tagUSERCLASSTYPE {
//C USERCLASSTYPE_FULL = 1,USERCLASSTYPE_SHORT = 2,USERCLASSTYPE_APPNAME = 3
//C } USERCLASSTYPE;
enum tagUSERCLASSTYPE
{
USERCLASSTYPE_FULL = 1,
USERCLASSTYPE_SHORT,
USERCLASSTYPE_APPNAME,
}
alias tagUSERCLASSTYPE USERCLASSTYPE;
//C typedef enum tagOLEMISC {
//C OLEMISC_RECOMPOSEONRESIZE = 0x1,OLEMISC_ONLYICONIC = 0x2,OLEMISC_INSERTNOTREPLACE = 0x4,OLEMISC_STATIC = 0x8,OLEMISC_CANTLINKINSIDE = 0x10,
//C OLEMISC_CANLINKBYOLE1 = 0x20,OLEMISC_ISLINKOBJECT = 0x40,OLEMISC_INSIDEOUT = 0x80,OLEMISC_ACTIVATEWHENVISIBLE = 0x100,
//C OLEMISC_RENDERINGISDEVICEINDEPENDENT = 0x200,OLEMISC_INVISIBLEATRUNTIME = 0x400,OLEMISC_ALWAYSRUN = 0x800,OLEMISC_ACTSLIKEBUTTON = 0x1000,
//C OLEMISC_ACTSLIKELABEL = 0x2000,OLEMISC_NOUIACTIVATE = 0x4000,OLEMISC_ALIGNABLE = 0x8000,OLEMISC_SIMPLEFRAME = 0x10000,
//C OLEMISC_SETCLIENTSITEFIRST = 0x20000,OLEMISC_IMEMODE = 0x40000,OLEMISC_IGNOREACTIVATEWHENVISIBLE = 0x80000,OLEMISC_WANTSTOMENUMERGE = 0x100000,
//C OLEMISC_SUPPORTSMULTILEVELUNDO = 0x200000
//C } OLEMISC;
enum tagOLEMISC
{
OLEMISC_RECOMPOSEONRESIZE = 1,
OLEMISC_ONLYICONIC,
OLEMISC_INSERTNOTREPLACE = 4,
OLEMISC_STATIC = 8,
OLEMISC_CANTLINKINSIDE = 16,
OLEMISC_CANLINKBYOLE1 = 32,
OLEMISC_ISLINKOBJECT = 64,
OLEMISC_INSIDEOUT = 128,
OLEMISC_ACTIVATEWHENVISIBLE = 256,
OLEMISC_RENDERINGISDEVICEINDEPENDENT = 512,
OLEMISC_INVISIBLEATRUNTIME = 1024,
OLEMISC_ALWAYSRUN = 2048,
OLEMISC_ACTSLIKEBUTTON = 4096,
OLEMISC_ACTSLIKELABEL = 8192,
OLEMISC_NOUIACTIVATE = 16384,
OLEMISC_ALIGNABLE = 32768,
OLEMISC_SIMPLEFRAME = 65536,
OLEMISC_SETCLIENTSITEFIRST = 131072,
OLEMISC_IMEMODE = 262144,
OLEMISC_IGNOREACTIVATEWHENVISIBLE = 524288,
OLEMISC_WANTSTOMENUMERGE = 1048576,
OLEMISC_SUPPORTSMULTILEVELUNDO = 2097152,
}
alias tagOLEMISC OLEMISC;
//C typedef enum tagOLECLOSE {
//C OLECLOSE_SAVEIFDIRTY = 0,OLECLOSE_NOSAVE = 1,OLECLOSE_PROMPTSAVE = 2
//C } OLECLOSE;
enum tagOLECLOSE
{
OLECLOSE_SAVEIFDIRTY,
OLECLOSE_NOSAVE,
OLECLOSE_PROMPTSAVE,
}
alias tagOLECLOSE OLECLOSE;
//C typedef struct IOleObjectVtbl {
//C HRESULT ( *QueryInterface)(IOleObject *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleObject *This);
//C ULONG ( *Release)(IOleObject *This);
//C HRESULT ( *SetClientSite)(IOleObject *This,IOleClientSite *pClientSite);
//C HRESULT ( *GetClientSite)(IOleObject *This,IOleClientSite **ppClientSite);
//C HRESULT ( *SetHostNames)(IOleObject *This,LPCOLESTR szContainerApp,LPCOLESTR szContainerObj);
//C HRESULT ( *Close)(IOleObject *This,DWORD dwSaveOption);
//C HRESULT ( *SetMoniker)(IOleObject *This,DWORD dwWhichMoniker,IMoniker *pmk);
//C HRESULT ( *GetMoniker)(IOleObject *This,DWORD dwAssign,DWORD dwWhichMoniker,IMoniker **ppmk);
//C HRESULT ( *InitFromData)(IOleObject *This,IDataObject *pDataObject,WINBOOL fCreation,DWORD dwReserved);
//C HRESULT ( *GetClipboardData)(IOleObject *This,DWORD dwReserved,IDataObject **ppDataObject);
//C HRESULT ( *DoVerb)(IOleObject *This,LONG iVerb,LPMSG lpmsg,IOleClientSite *pActiveSite,LONG lindex,HWND hwndParent,LPCRECT lprcPosRect);
//C HRESULT ( *EnumVerbs)(IOleObject *This,IEnumOLEVERB **ppEnumOleVerb);
//C HRESULT ( *Update)(IOleObject *This);
//C HRESULT ( *IsUpToDate)(IOleObject *This);
//C HRESULT ( *GetUserClassID)(IOleObject *This,CLSID *pClsid);
//C HRESULT ( *GetUserType)(IOleObject *This,DWORD dwFormOfType,LPOLESTR *pszUserType);
//C HRESULT ( *SetExtent)(IOleObject *This,DWORD dwDrawAspect,SIZEL *psizel);
//C HRESULT ( *GetExtent)(IOleObject *This,DWORD dwDrawAspect,SIZEL *psizel);
//C HRESULT ( *Advise)(IOleObject *This,IAdviseSink *pAdvSink,DWORD *pdwConnection);
//C HRESULT ( *Unadvise)(IOleObject *This,DWORD dwConnection);
//C HRESULT ( *EnumAdvise)(IOleObject *This,IEnumSTATDATA **ppenumAdvise);
//C HRESULT ( *GetMiscStatus)(IOleObject *This,DWORD dwAspect,DWORD *pdwStatus);
//C HRESULT ( *SetColorScheme)(IOleObject *This,LOGPALETTE *pLogpal);
//C } IOleObjectVtbl;
struct IOleObjectVtbl
{
HRESULT function(IOleObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleObject *This)AddRef;
ULONG function(IOleObject *This)Release;
HRESULT function(IOleObject *This, IOleClientSite *pClientSite)SetClientSite;
HRESULT function(IOleObject *This, IOleClientSite **ppClientSite)GetClientSite;
HRESULT function(IOleObject *This, LPCOLESTR szContainerApp, LPCOLESTR szContainerObj)SetHostNames;
HRESULT function(IOleObject *This, DWORD dwSaveOption)Close;
HRESULT function(IOleObject *This, DWORD dwWhichMoniker, IMoniker *pmk)SetMoniker;
HRESULT function(IOleObject *This, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk)GetMoniker;
HRESULT function(IOleObject *This, IDataObject *pDataObject, WINBOOL fCreation, DWORD dwReserved)InitFromData;
HRESULT function(IOleObject *This, DWORD dwReserved, IDataObject **ppDataObject)GetClipboardData;
HRESULT function(IOleObject *This, LONG iVerb, LPMSG lpmsg, IOleClientSite *pActiveSite, LONG lindex, HWND hwndParent, LPCRECT lprcPosRect)DoVerb;
HRESULT function(IOleObject *This, IEnumOLEVERB **ppEnumOleVerb)EnumVerbs;
HRESULT function(IOleObject *This)Update;
HRESULT function(IOleObject *This)IsUpToDate;
HRESULT function(IOleObject *This, CLSID *pClsid)GetUserClassID;
HRESULT function(IOleObject *This, DWORD dwFormOfType, LPOLESTR *pszUserType)GetUserType;
HRESULT function(IOleObject *This, DWORD dwDrawAspect, SIZEL *psizel)SetExtent;
HRESULT function(IOleObject *This, DWORD dwDrawAspect, SIZEL *psizel)GetExtent;
HRESULT function(IOleObject *This, IAdviseSink *pAdvSink, DWORD *pdwConnection)Advise;
HRESULT function(IOleObject *This, DWORD dwConnection)Unadvise;
HRESULT function(IOleObject *This, IEnumSTATDATA **ppenumAdvise)EnumAdvise;
HRESULT function(IOleObject *This, DWORD dwAspect, DWORD *pdwStatus)GetMiscStatus;
HRESULT function(IOleObject *This, LOGPALETTE *pLogpal)SetColorScheme;
}
//C struct IOleObject {
//C struct IOleObjectVtbl *lpVtbl;
//C };
struct IOleObject
{
IOleObjectVtbl *lpVtbl;
}
//C HRESULT IOleObject_SetClientSite_Proxy(IOleObject *This,IOleClientSite *pClientSite);
HRESULT IOleObject_SetClientSite_Proxy(IOleObject *This, IOleClientSite *pClientSite);
//C void IOleObject_SetClientSite_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_SetClientSite_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetClientSite_Proxy(IOleObject *This,IOleClientSite **ppClientSite);
HRESULT IOleObject_GetClientSite_Proxy(IOleObject *This, IOleClientSite **ppClientSite);
//C void IOleObject_GetClientSite_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetClientSite_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_SetHostNames_Proxy(IOleObject *This,LPCOLESTR szContainerApp,LPCOLESTR szContainerObj);
HRESULT IOleObject_SetHostNames_Proxy(IOleObject *This, LPCOLESTR szContainerApp, LPCOLESTR szContainerObj);
//C void IOleObject_SetHostNames_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_SetHostNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_Close_Proxy(IOleObject *This,DWORD dwSaveOption);
HRESULT IOleObject_Close_Proxy(IOleObject *This, DWORD dwSaveOption);
//C void IOleObject_Close_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_Close_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_SetMoniker_Proxy(IOleObject *This,DWORD dwWhichMoniker,IMoniker *pmk);
HRESULT IOleObject_SetMoniker_Proxy(IOleObject *This, DWORD dwWhichMoniker, IMoniker *pmk);
//C void IOleObject_SetMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_SetMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetMoniker_Proxy(IOleObject *This,DWORD dwAssign,DWORD dwWhichMoniker,IMoniker **ppmk);
HRESULT IOleObject_GetMoniker_Proxy(IOleObject *This, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk);
//C void IOleObject_GetMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_InitFromData_Proxy(IOleObject *This,IDataObject *pDataObject,WINBOOL fCreation,DWORD dwReserved);
HRESULT IOleObject_InitFromData_Proxy(IOleObject *This, IDataObject *pDataObject, WINBOOL fCreation, DWORD dwReserved);
//C void IOleObject_InitFromData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_InitFromData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetClipboardData_Proxy(IOleObject *This,DWORD dwReserved,IDataObject **ppDataObject);
HRESULT IOleObject_GetClipboardData_Proxy(IOleObject *This, DWORD dwReserved, IDataObject **ppDataObject);
//C void IOleObject_GetClipboardData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetClipboardData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_DoVerb_Proxy(IOleObject *This,LONG iVerb,LPMSG lpmsg,IOleClientSite *pActiveSite,LONG lindex,HWND hwndParent,LPCRECT lprcPosRect);
HRESULT IOleObject_DoVerb_Proxy(IOleObject *This, LONG iVerb, LPMSG lpmsg, IOleClientSite *pActiveSite, LONG lindex, HWND hwndParent, LPCRECT lprcPosRect);
//C void IOleObject_DoVerb_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_DoVerb_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_EnumVerbs_Proxy(IOleObject *This,IEnumOLEVERB **ppEnumOleVerb);
HRESULT IOleObject_EnumVerbs_Proxy(IOleObject *This, IEnumOLEVERB **ppEnumOleVerb);
//C void IOleObject_EnumVerbs_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_EnumVerbs_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_Update_Proxy(IOleObject *This);
HRESULT IOleObject_Update_Proxy(IOleObject *This);
//C void IOleObject_Update_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_Update_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_IsUpToDate_Proxy(IOleObject *This);
HRESULT IOleObject_IsUpToDate_Proxy(IOleObject *This);
//C void IOleObject_IsUpToDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_IsUpToDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetUserClassID_Proxy(IOleObject *This,CLSID *pClsid);
HRESULT IOleObject_GetUserClassID_Proxy(IOleObject *This, CLSID *pClsid);
//C void IOleObject_GetUserClassID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetUserClassID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetUserType_Proxy(IOleObject *This,DWORD dwFormOfType,LPOLESTR *pszUserType);
HRESULT IOleObject_GetUserType_Proxy(IOleObject *This, DWORD dwFormOfType, LPOLESTR *pszUserType);
//C void IOleObject_GetUserType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetUserType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_SetExtent_Proxy(IOleObject *This,DWORD dwDrawAspect,SIZEL *psizel);
HRESULT IOleObject_SetExtent_Proxy(IOleObject *This, DWORD dwDrawAspect, SIZEL *psizel);
//C void IOleObject_SetExtent_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_SetExtent_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetExtent_Proxy(IOleObject *This,DWORD dwDrawAspect,SIZEL *psizel);
HRESULT IOleObject_GetExtent_Proxy(IOleObject *This, DWORD dwDrawAspect, SIZEL *psizel);
//C void IOleObject_GetExtent_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetExtent_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_Advise_Proxy(IOleObject *This,IAdviseSink *pAdvSink,DWORD *pdwConnection);
HRESULT IOleObject_Advise_Proxy(IOleObject *This, IAdviseSink *pAdvSink, DWORD *pdwConnection);
//C void IOleObject_Advise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_Advise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_Unadvise_Proxy(IOleObject *This,DWORD dwConnection);
HRESULT IOleObject_Unadvise_Proxy(IOleObject *This, DWORD dwConnection);
//C void IOleObject_Unadvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_Unadvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_EnumAdvise_Proxy(IOleObject *This,IEnumSTATDATA **ppenumAdvise);
HRESULT IOleObject_EnumAdvise_Proxy(IOleObject *This, IEnumSTATDATA **ppenumAdvise);
//C void IOleObject_EnumAdvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_EnumAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_GetMiscStatus_Proxy(IOleObject *This,DWORD dwAspect,DWORD *pdwStatus);
HRESULT IOleObject_GetMiscStatus_Proxy(IOleObject *This, DWORD dwAspect, DWORD *pdwStatus);
//C void IOleObject_GetMiscStatus_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_GetMiscStatus_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleObject_SetColorScheme_Proxy(IOleObject *This,LOGPALETTE *pLogpal);
HRESULT IOleObject_SetColorScheme_Proxy(IOleObject *This, LOGPALETTE *pLogpal);
//C void IOleObject_SetColorScheme_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleObject_SetColorScheme_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef enum tagOLERENDER {
//C OLERENDER_NONE = 0,OLERENDER_DRAW = 1,OLERENDER_FORMAT = 2,OLERENDER_ASIS = 3
//C } OLERENDER;
enum tagOLERENDER
{
OLERENDER_NONE,
OLERENDER_DRAW,
OLERENDER_FORMAT,
OLERENDER_ASIS,
}
alias tagOLERENDER OLERENDER;
//C typedef OLERENDER *LPOLERENDER;
alias OLERENDER *LPOLERENDER;
//C typedef struct tagOBJECTDESCRIPTOR {
//C ULONG cbSize;
//C CLSID clsid;
//C DWORD dwDrawAspect;
//C SIZEL sizel;
//C POINTL pointl;
//C DWORD dwStatus;
//C DWORD dwFullUserTypeName;
//C DWORD dwSrcOfCopy;
//C } OBJECTDESCRIPTOR;
struct tagOBJECTDESCRIPTOR
{
ULONG cbSize;
CLSID clsid;
DWORD dwDrawAspect;
SIZEL sizel;
POINTL pointl;
DWORD dwStatus;
DWORD dwFullUserTypeName;
DWORD dwSrcOfCopy;
}
alias tagOBJECTDESCRIPTOR OBJECTDESCRIPTOR;
//C typedef struct tagOBJECTDESCRIPTOR *POBJECTDESCRIPTOR;
alias tagOBJECTDESCRIPTOR *POBJECTDESCRIPTOR;
//C typedef struct tagOBJECTDESCRIPTOR *LPOBJECTDESCRIPTOR;
alias tagOBJECTDESCRIPTOR *LPOBJECTDESCRIPTOR;
//C typedef struct tagOBJECTDESCRIPTOR LINKSRCDESCRIPTOR;
alias tagOBJECTDESCRIPTOR LINKSRCDESCRIPTOR;
//C typedef struct tagOBJECTDESCRIPTOR *PLINKSRCDESCRIPTOR;
alias tagOBJECTDESCRIPTOR *PLINKSRCDESCRIPTOR;
//C typedef struct tagOBJECTDESCRIPTOR *LPLINKSRCDESCRIPTOR;
alias tagOBJECTDESCRIPTOR *LPLINKSRCDESCRIPTOR;
//C extern RPC_IF_HANDLE IOLETypes_v0_0_c_ifspec;
extern RPC_IF_HANDLE IOLETypes_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE IOLETypes_v0_0_s_ifspec;
extern RPC_IF_HANDLE IOLETypes_v0_0_s_ifspec;
//C typedef IOleWindow *LPOLEWINDOW;
alias IOleWindow *LPOLEWINDOW;
//C typedef struct IOleWindowVtbl {
//C HRESULT ( *QueryInterface)(IOleWindow *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleWindow *This);
//C ULONG ( *Release)(IOleWindow *This);
//C HRESULT ( *GetWindow)(IOleWindow *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleWindow *This,WINBOOL fEnterMode);
//C } IOleWindowVtbl;
struct IOleWindowVtbl
{
HRESULT function(IOleWindow *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleWindow *This)AddRef;
ULONG function(IOleWindow *This)Release;
HRESULT function(IOleWindow *This, HWND *phwnd)GetWindow;
HRESULT function(IOleWindow *This, WINBOOL fEnterMode)ContextSensitiveHelp;
}
//C struct IOleWindow {
//C struct IOleWindowVtbl *lpVtbl;
//C };
struct IOleWindow
{
IOleWindowVtbl *lpVtbl;
}
//C HRESULT IOleWindow_GetWindow_Proxy(IOleWindow *This,HWND *phwnd);
HRESULT IOleWindow_GetWindow_Proxy(IOleWindow *This, HWND *phwnd);
//C void IOleWindow_GetWindow_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleWindow_GetWindow_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleWindow_ContextSensitiveHelp_Proxy(IOleWindow *This,WINBOOL fEnterMode);
HRESULT IOleWindow_ContextSensitiveHelp_Proxy(IOleWindow *This, WINBOOL fEnterMode);
//C void IOleWindow_ContextSensitiveHelp_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleWindow_ContextSensitiveHelp_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleLink *LPOLELINK;
alias IOleLink *LPOLELINK;
//C typedef enum tagOLEUPDATE {
//C OLEUPDATE_ALWAYS = 1,OLEUPDATE_ONCALL = 3
//C } OLEUPDATE;
enum tagOLEUPDATE
{
OLEUPDATE_ALWAYS = 1,
OLEUPDATE_ONCALL = 3,
}
alias tagOLEUPDATE OLEUPDATE;
//C typedef OLEUPDATE *LPOLEUPDATE;
alias OLEUPDATE *LPOLEUPDATE;
//C typedef OLEUPDATE *POLEUPDATE;
alias OLEUPDATE *POLEUPDATE;
//C typedef enum tagOLELINKBIND {
//C OLELINKBIND_EVENIFCLASSDIFF = 1
//C } OLELINKBIND;
enum tagOLELINKBIND
{
OLELINKBIND_EVENIFCLASSDIFF = 1,
}
alias tagOLELINKBIND OLELINKBIND;
//C typedef struct IOleLinkVtbl {
//C HRESULT ( *QueryInterface)(IOleLink *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleLink *This);
//C ULONG ( *Release)(IOleLink *This);
//C HRESULT ( *SetUpdateOptions)(IOleLink *This,DWORD dwUpdateOpt);
//C HRESULT ( *GetUpdateOptions)(IOleLink *This,DWORD *pdwUpdateOpt);
//C HRESULT ( *SetSourceMoniker)(IOleLink *This,IMoniker *pmk,const IID *const rclsid);
//C HRESULT ( *GetSourceMoniker)(IOleLink *This,IMoniker **ppmk);
//C HRESULT ( *SetSourceDisplayName)(IOleLink *This,LPCOLESTR pszStatusText);
//C HRESULT ( *GetSourceDisplayName)(IOleLink *This,LPOLESTR *ppszDisplayName);
//C HRESULT ( *BindToSource)(IOleLink *This,DWORD bindflags,IBindCtx *pbc);
//C HRESULT ( *BindIfRunning)(IOleLink *This);
//C HRESULT ( *GetBoundSource)(IOleLink *This,IUnknown **ppunk);
//C HRESULT ( *UnbindSource)(IOleLink *This);
//C HRESULT ( *Update)(IOleLink *This,IBindCtx *pbc);
//C } IOleLinkVtbl;
struct IOleLinkVtbl
{
HRESULT function(IOleLink *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleLink *This)AddRef;
ULONG function(IOleLink *This)Release;
HRESULT function(IOleLink *This, DWORD dwUpdateOpt)SetUpdateOptions;
HRESULT function(IOleLink *This, DWORD *pdwUpdateOpt)GetUpdateOptions;
HRESULT function(IOleLink *This, IMoniker *pmk, IID *rclsid)SetSourceMoniker;
HRESULT function(IOleLink *This, IMoniker **ppmk)GetSourceMoniker;
HRESULT function(IOleLink *This, LPCOLESTR pszStatusText)SetSourceDisplayName;
HRESULT function(IOleLink *This, LPOLESTR *ppszDisplayName)GetSourceDisplayName;
HRESULT function(IOleLink *This, DWORD bindflags, IBindCtx *pbc)BindToSource;
HRESULT function(IOleLink *This)BindIfRunning;
HRESULT function(IOleLink *This, IUnknown **ppunk)GetBoundSource;
HRESULT function(IOleLink *This)UnbindSource;
HRESULT function(IOleLink *This, IBindCtx *pbc)Update;
}
//C struct IOleLink {
//C struct IOleLinkVtbl *lpVtbl;
//C };
struct IOleLink
{
IOleLinkVtbl *lpVtbl;
}
//C HRESULT IOleLink_SetUpdateOptions_Proxy(IOleLink *This,DWORD dwUpdateOpt);
HRESULT IOleLink_SetUpdateOptions_Proxy(IOleLink *This, DWORD dwUpdateOpt);
//C void IOleLink_SetUpdateOptions_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_SetUpdateOptions_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_GetUpdateOptions_Proxy(IOleLink *This,DWORD *pdwUpdateOpt);
HRESULT IOleLink_GetUpdateOptions_Proxy(IOleLink *This, DWORD *pdwUpdateOpt);
//C void IOleLink_GetUpdateOptions_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_GetUpdateOptions_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_SetSourceMoniker_Proxy(IOleLink *This,IMoniker *pmk,const IID *const rclsid);
HRESULT IOleLink_SetSourceMoniker_Proxy(IOleLink *This, IMoniker *pmk, IID *rclsid);
//C void IOleLink_SetSourceMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_SetSourceMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_GetSourceMoniker_Proxy(IOleLink *This,IMoniker **ppmk);
HRESULT IOleLink_GetSourceMoniker_Proxy(IOleLink *This, IMoniker **ppmk);
//C void IOleLink_GetSourceMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_GetSourceMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_SetSourceDisplayName_Proxy(IOleLink *This,LPCOLESTR pszStatusText);
HRESULT IOleLink_SetSourceDisplayName_Proxy(IOleLink *This, LPCOLESTR pszStatusText);
//C void IOleLink_SetSourceDisplayName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_SetSourceDisplayName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_GetSourceDisplayName_Proxy(IOleLink *This,LPOLESTR *ppszDisplayName);
HRESULT IOleLink_GetSourceDisplayName_Proxy(IOleLink *This, LPOLESTR *ppszDisplayName);
//C void IOleLink_GetSourceDisplayName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_GetSourceDisplayName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_BindToSource_Proxy(IOleLink *This,DWORD bindflags,IBindCtx *pbc);
HRESULT IOleLink_BindToSource_Proxy(IOleLink *This, DWORD bindflags, IBindCtx *pbc);
//C void IOleLink_BindToSource_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_BindToSource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_BindIfRunning_Proxy(IOleLink *This);
HRESULT IOleLink_BindIfRunning_Proxy(IOleLink *This);
//C void IOleLink_BindIfRunning_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_BindIfRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_GetBoundSource_Proxy(IOleLink *This,IUnknown **ppunk);
HRESULT IOleLink_GetBoundSource_Proxy(IOleLink *This, IUnknown **ppunk);
//C void IOleLink_GetBoundSource_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_GetBoundSource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_UnbindSource_Proxy(IOleLink *This);
HRESULT IOleLink_UnbindSource_Proxy(IOleLink *This);
//C void IOleLink_UnbindSource_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_UnbindSource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleLink_Update_Proxy(IOleLink *This,IBindCtx *pbc);
HRESULT IOleLink_Update_Proxy(IOleLink *This, IBindCtx *pbc);
//C void IOleLink_Update_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleLink_Update_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleItemContainer *LPOLEITEMCONTAINER;
alias IOleItemContainer *LPOLEITEMCONTAINER;
//C typedef enum tagBINDSPEED {
//C BINDSPEED_INDEFINITE = 1,BINDSPEED_MODERATE = 2,BINDSPEED_IMMEDIATE = 3
//C } BINDSPEED;
enum tagBINDSPEED
{
BINDSPEED_INDEFINITE = 1,
BINDSPEED_MODERATE,
BINDSPEED_IMMEDIATE,
}
alias tagBINDSPEED BINDSPEED;
//C typedef enum tagOLECONTF {
//C OLECONTF_EMBEDDINGS = 1,OLECONTF_LINKS = 2,OLECONTF_OTHERS = 4,OLECONTF_ONLYUSER = 8,OLECONTF_ONLYIFRUNNING = 16
//C } OLECONTF;
enum tagOLECONTF
{
OLECONTF_EMBEDDINGS = 1,
OLECONTF_LINKS,
OLECONTF_OTHERS = 4,
OLECONTF_ONLYUSER = 8,
OLECONTF_ONLYIFRUNNING = 16,
}
alias tagOLECONTF OLECONTF;
//C typedef struct IOleItemContainerVtbl {
//C HRESULT ( *QueryInterface)(IOleItemContainer *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleItemContainer *This);
//C ULONG ( *Release)(IOleItemContainer *This);
//C HRESULT ( *ParseDisplayName)(IOleItemContainer *This,IBindCtx *pbc,LPOLESTR pszDisplayName,ULONG *pchEaten,IMoniker **ppmkOut);
//C HRESULT ( *EnumObjects)(IOleItemContainer *This,DWORD grfFlags,IEnumUnknown **ppenum);
//C HRESULT ( *LockContainer)(IOleItemContainer *This,WINBOOL fLock);
//C HRESULT ( *GetObjectA)(IOleItemContainer *This,LPOLESTR pszItem,DWORD dwSpeedNeeded,IBindCtx *pbc,const IID *const riid,void **ppvObject);
//C HRESULT ( *GetObjectStorage)(IOleItemContainer *This,LPOLESTR pszItem,IBindCtx *pbc,const IID *const riid,void **ppvStorage);
//C HRESULT ( *IsRunning)(IOleItemContainer *This,LPOLESTR pszItem);
//C } IOleItemContainerVtbl;
struct IOleItemContainerVtbl
{
HRESULT function(IOleItemContainer *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleItemContainer *This)AddRef;
ULONG function(IOleItemContainer *This)Release;
HRESULT function(IOleItemContainer *This, IBindCtx *pbc, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut)ParseDisplayName;
HRESULT function(IOleItemContainer *This, DWORD grfFlags, IEnumUnknown **ppenum)EnumObjects;
HRESULT function(IOleItemContainer *This, WINBOOL fLock)LockContainer;
HRESULT function(IOleItemContainer *This, LPOLESTR pszItem, DWORD dwSpeedNeeded, IBindCtx *pbc, IID *riid, void **ppvObject)GetObjectA;
HRESULT function(IOleItemContainer *This, LPOLESTR pszItem, IBindCtx *pbc, IID *riid, void **ppvStorage)GetObjectStorage;
HRESULT function(IOleItemContainer *This, LPOLESTR pszItem)IsRunning;
}
//C struct IOleItemContainer {
//C struct IOleItemContainerVtbl *lpVtbl;
//C };
struct IOleItemContainer
{
IOleItemContainerVtbl *lpVtbl;
}
//C HRESULT IOleItemContainer_GetObject_Proxy(IOleItemContainer *This,LPOLESTR pszItem,DWORD dwSpeedNeeded,IBindCtx *pbc,const IID *const riid,void **ppvObject);
HRESULT IOleItemContainer_GetObject_Proxy(IOleItemContainer *This, LPOLESTR pszItem, DWORD dwSpeedNeeded, IBindCtx *pbc, IID *riid, void **ppvObject);
//C void IOleItemContainer_GetObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleItemContainer_GetObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleItemContainer_GetObjectStorage_Proxy(IOleItemContainer *This,LPOLESTR pszItem,IBindCtx *pbc,const IID *const riid,void **ppvStorage);
HRESULT IOleItemContainer_GetObjectStorage_Proxy(IOleItemContainer *This, LPOLESTR pszItem, IBindCtx *pbc, IID *riid, void **ppvStorage);
//C void IOleItemContainer_GetObjectStorage_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleItemContainer_GetObjectStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleItemContainer_IsRunning_Proxy(IOleItemContainer *This,LPOLESTR pszItem);
HRESULT IOleItemContainer_IsRunning_Proxy(IOleItemContainer *This, LPOLESTR pszItem);
//C void IOleItemContainer_IsRunning_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleItemContainer_IsRunning_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleInPlaceUIWindow *LPOLEINPLACEUIWINDOW;
alias IOleInPlaceUIWindow *LPOLEINPLACEUIWINDOW;
//C typedef RECT BORDERWIDTHS;
alias RECT BORDERWIDTHS;
//C typedef LPRECT LPBORDERWIDTHS;
alias LPRECT LPBORDERWIDTHS;
//C typedef LPCRECT LPCBORDERWIDTHS;
alias LPCRECT LPCBORDERWIDTHS;
//C typedef struct IOleInPlaceUIWindowVtbl {
//C HRESULT ( *QueryInterface)(IOleInPlaceUIWindow *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleInPlaceUIWindow *This);
//C ULONG ( *Release)(IOleInPlaceUIWindow *This);
//C HRESULT ( *GetWindow)(IOleInPlaceUIWindow *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleInPlaceUIWindow *This,WINBOOL fEnterMode);
//C HRESULT ( *GetBorder)(IOleInPlaceUIWindow *This,LPRECT lprectBorder);
//C HRESULT ( *RequestBorderSpace)(IOleInPlaceUIWindow *This,LPCBORDERWIDTHS pborderwidths);
//C HRESULT ( *SetBorderSpace)(IOleInPlaceUIWindow *This,LPCBORDERWIDTHS pborderwidths);
//C HRESULT ( *SetActiveObject)(IOleInPlaceUIWindow *This,IOleInPlaceActiveObject *pActiveObject,LPCOLESTR pszObjName);
//C } IOleInPlaceUIWindowVtbl;
struct IOleInPlaceUIWindowVtbl
{
HRESULT function(IOleInPlaceUIWindow *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleInPlaceUIWindow *This)AddRef;
ULONG function(IOleInPlaceUIWindow *This)Release;
HRESULT function(IOleInPlaceUIWindow *This, HWND *phwnd)GetWindow;
HRESULT function(IOleInPlaceUIWindow *This, WINBOOL fEnterMode)ContextSensitiveHelp;
HRESULT function(IOleInPlaceUIWindow *This, LPRECT lprectBorder)GetBorder;
HRESULT function(IOleInPlaceUIWindow *This, LPCBORDERWIDTHS pborderwidths)RequestBorderSpace;
HRESULT function(IOleInPlaceUIWindow *This, LPCBORDERWIDTHS pborderwidths)SetBorderSpace;
HRESULT function(IOleInPlaceUIWindow *This, IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName)SetActiveObject;
}
//C struct IOleInPlaceUIWindow {
//C struct IOleInPlaceUIWindowVtbl *lpVtbl;
//C };
struct IOleInPlaceUIWindow
{
IOleInPlaceUIWindowVtbl *lpVtbl;
}
//C HRESULT IOleInPlaceUIWindow_GetBorder_Proxy(IOleInPlaceUIWindow *This,LPRECT lprectBorder);
HRESULT IOleInPlaceUIWindow_GetBorder_Proxy(IOleInPlaceUIWindow *This, LPRECT lprectBorder);
//C void IOleInPlaceUIWindow_GetBorder_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceUIWindow_GetBorder_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceUIWindow_RequestBorderSpace_Proxy(IOleInPlaceUIWindow *This,LPCBORDERWIDTHS pborderwidths);
HRESULT IOleInPlaceUIWindow_RequestBorderSpace_Proxy(IOleInPlaceUIWindow *This, LPCBORDERWIDTHS pborderwidths);
//C void IOleInPlaceUIWindow_RequestBorderSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceUIWindow_RequestBorderSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceUIWindow_SetBorderSpace_Proxy(IOleInPlaceUIWindow *This,LPCBORDERWIDTHS pborderwidths);
HRESULT IOleInPlaceUIWindow_SetBorderSpace_Proxy(IOleInPlaceUIWindow *This, LPCBORDERWIDTHS pborderwidths);
//C void IOleInPlaceUIWindow_SetBorderSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceUIWindow_SetBorderSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceUIWindow_SetActiveObject_Proxy(IOleInPlaceUIWindow *This,IOleInPlaceActiveObject *pActiveObject,LPCOLESTR pszObjName);
HRESULT IOleInPlaceUIWindow_SetActiveObject_Proxy(IOleInPlaceUIWindow *This, IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName);
//C void IOleInPlaceUIWindow_SetActiveObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceUIWindow_SetActiveObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleInPlaceActiveObject *LPOLEINPLACEACTIVEOBJECT;
alias IOleInPlaceActiveObject *LPOLEINPLACEACTIVEOBJECT;
//C typedef struct IOleInPlaceActiveObjectVtbl {
//C HRESULT ( *QueryInterface)(IOleInPlaceActiveObject *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleInPlaceActiveObject *This);
//C ULONG ( *Release)(IOleInPlaceActiveObject *This);
//C HRESULT ( *GetWindow)(IOleInPlaceActiveObject *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleInPlaceActiveObject *This,WINBOOL fEnterMode);
//C HRESULT ( *TranslateAcceleratorA)(IOleInPlaceActiveObject *This,LPMSG lpmsg);
//C HRESULT ( *OnFrameWindowActivate)(IOleInPlaceActiveObject *This,WINBOOL fActivate);
//C HRESULT ( *OnDocWindowActivate)(IOleInPlaceActiveObject *This,WINBOOL fActivate);
//C HRESULT ( *ResizeBorder)(IOleInPlaceActiveObject *This,LPCRECT prcBorder,IOleInPlaceUIWindow *pUIWindow,WINBOOL fFrameWindow);
//C HRESULT ( *EnableModeless)(IOleInPlaceActiveObject *This,WINBOOL fEnable);
//C } IOleInPlaceActiveObjectVtbl;
struct IOleInPlaceActiveObjectVtbl
{
HRESULT function(IOleInPlaceActiveObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleInPlaceActiveObject *This)AddRef;
ULONG function(IOleInPlaceActiveObject *This)Release;
HRESULT function(IOleInPlaceActiveObject *This, HWND *phwnd)GetWindow;
HRESULT function(IOleInPlaceActiveObject *This, WINBOOL fEnterMode)ContextSensitiveHelp;
HRESULT function(IOleInPlaceActiveObject *This, LPMSG lpmsg)TranslateAcceleratorA;
HRESULT function(IOleInPlaceActiveObject *This, WINBOOL fActivate)OnFrameWindowActivate;
HRESULT function(IOleInPlaceActiveObject *This, WINBOOL fActivate)OnDocWindowActivate;
HRESULT function(IOleInPlaceActiveObject *This, LPCRECT prcBorder, IOleInPlaceUIWindow *pUIWindow, WINBOOL fFrameWindow)ResizeBorder;
HRESULT function(IOleInPlaceActiveObject *This, WINBOOL fEnable)EnableModeless;
}
//C struct IOleInPlaceActiveObject {
//C struct IOleInPlaceActiveObjectVtbl *lpVtbl;
//C };
struct IOleInPlaceActiveObject
{
IOleInPlaceActiveObjectVtbl *lpVtbl;
}
//C HRESULT IOleInPlaceActiveObject_RemoteTranslateAccelerator_Proxy(IOleInPlaceActiveObject *This);
HRESULT IOleInPlaceActiveObject_RemoteTranslateAccelerator_Proxy(IOleInPlaceActiveObject *This);
//C void IOleInPlaceActiveObject_RemoteTranslateAccelerator_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceActiveObject_RemoteTranslateAccelerator_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceActiveObject_OnFrameWindowActivate_Proxy(IOleInPlaceActiveObject *This,WINBOOL fActivate);
HRESULT IOleInPlaceActiveObject_OnFrameWindowActivate_Proxy(IOleInPlaceActiveObject *This, WINBOOL fActivate);
//C void IOleInPlaceActiveObject_OnFrameWindowActivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceActiveObject_OnFrameWindowActivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceActiveObject_OnDocWindowActivate_Proxy(IOleInPlaceActiveObject *This,WINBOOL fActivate);
HRESULT IOleInPlaceActiveObject_OnDocWindowActivate_Proxy(IOleInPlaceActiveObject *This, WINBOOL fActivate);
//C void IOleInPlaceActiveObject_OnDocWindowActivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceActiveObject_OnDocWindowActivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceActiveObject_RemoteResizeBorder_Proxy(IOleInPlaceActiveObject *This,LPCRECT prcBorder,const IID *const riid,IOleInPlaceUIWindow *pUIWindow,WINBOOL fFrameWindow);
HRESULT IOleInPlaceActiveObject_RemoteResizeBorder_Proxy(IOleInPlaceActiveObject *This, LPCRECT prcBorder, IID *riid, IOleInPlaceUIWindow *pUIWindow, WINBOOL fFrameWindow);
//C void IOleInPlaceActiveObject_RemoteResizeBorder_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceActiveObject_RemoteResizeBorder_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceActiveObject_EnableModeless_Proxy(IOleInPlaceActiveObject *This,WINBOOL fEnable);
HRESULT IOleInPlaceActiveObject_EnableModeless_Proxy(IOleInPlaceActiveObject *This, WINBOOL fEnable);
//C void IOleInPlaceActiveObject_EnableModeless_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceActiveObject_EnableModeless_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleInPlaceFrame *LPOLEINPLACEFRAME;
alias IOleInPlaceFrame *LPOLEINPLACEFRAME;
//C typedef struct tagOIFI {
//C UINT cb;
//C WINBOOL fMDIApp;
//C HWND hwndFrame;
//C HACCEL haccel;
//C UINT cAccelEntries;
//C } OLEINPLACEFRAMEINFO;
struct tagOIFI
{
UINT cb;
WINBOOL fMDIApp;
HWND hwndFrame;
HACCEL haccel;
UINT cAccelEntries;
}
alias tagOIFI OLEINPLACEFRAMEINFO;
//C typedef struct tagOIFI *LPOLEINPLACEFRAMEINFO;
alias tagOIFI *LPOLEINPLACEFRAMEINFO;
//C typedef struct tagOleMenuGroupWidths {
//C LONG width[6 ];
//C } OLEMENUGROUPWIDTHS;
struct tagOleMenuGroupWidths
{
LONG [6]width;
}
alias tagOleMenuGroupWidths OLEMENUGROUPWIDTHS;
//C typedef struct tagOleMenuGroupWidths *LPOLEMENUGROUPWIDTHS;
alias tagOleMenuGroupWidths *LPOLEMENUGROUPWIDTHS;
//C typedef HGLOBAL HOLEMENU;
alias HGLOBAL HOLEMENU;
//C typedef struct IOleInPlaceFrameVtbl {
//C HRESULT ( *QueryInterface)(IOleInPlaceFrame *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleInPlaceFrame *This);
//C ULONG ( *Release)(IOleInPlaceFrame *This);
//C HRESULT ( *GetWindow)(IOleInPlaceFrame *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleInPlaceFrame *This,WINBOOL fEnterMode);
//C HRESULT ( *GetBorder)(IOleInPlaceFrame *This,LPRECT lprectBorder);
//C HRESULT ( *RequestBorderSpace)(IOleInPlaceFrame *This,LPCBORDERWIDTHS pborderwidths);
//C HRESULT ( *SetBorderSpace)(IOleInPlaceFrame *This,LPCBORDERWIDTHS pborderwidths);
//C HRESULT ( *SetActiveObject)(IOleInPlaceFrame *This,IOleInPlaceActiveObject *pActiveObject,LPCOLESTR pszObjName);
//C HRESULT ( *InsertMenus)(IOleInPlaceFrame *This,HMENU hmenuShared,LPOLEMENUGROUPWIDTHS lpMenuWidths);
//C HRESULT ( *SetMenu)(IOleInPlaceFrame *This,HMENU hmenuShared,HOLEMENU holemenu,HWND hwndActiveObject);
//C HRESULT ( *RemoveMenus)(IOleInPlaceFrame *This,HMENU hmenuShared);
//C HRESULT ( *SetStatusText)(IOleInPlaceFrame *This,LPCOLESTR pszStatusText);
//C HRESULT ( *EnableModeless)(IOleInPlaceFrame *This,WINBOOL fEnable);
//C HRESULT ( *TranslateAcceleratorA)(IOleInPlaceFrame *This,LPMSG lpmsg,WORD wID);
//C } IOleInPlaceFrameVtbl;
struct IOleInPlaceFrameVtbl
{
HRESULT function(IOleInPlaceFrame *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleInPlaceFrame *This)AddRef;
ULONG function(IOleInPlaceFrame *This)Release;
HRESULT function(IOleInPlaceFrame *This, HWND *phwnd)GetWindow;
HRESULT function(IOleInPlaceFrame *This, WINBOOL fEnterMode)ContextSensitiveHelp;
HRESULT function(IOleInPlaceFrame *This, LPRECT lprectBorder)GetBorder;
HRESULT function(IOleInPlaceFrame *This, LPCBORDERWIDTHS pborderwidths)RequestBorderSpace;
HRESULT function(IOleInPlaceFrame *This, LPCBORDERWIDTHS pborderwidths)SetBorderSpace;
HRESULT function(IOleInPlaceFrame *This, IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName)SetActiveObject;
HRESULT function(IOleInPlaceFrame *This, HMENU hmenuShared, LPOLEMENUGROUPWIDTHS lpMenuWidths)InsertMenus;
HRESULT function(IOleInPlaceFrame *This, HMENU hmenuShared, HOLEMENU holemenu, HWND hwndActiveObject)SetMenu;
HRESULT function(IOleInPlaceFrame *This, HMENU hmenuShared)RemoveMenus;
HRESULT function(IOleInPlaceFrame *This, LPCOLESTR pszStatusText)SetStatusText;
HRESULT function(IOleInPlaceFrame *This, WINBOOL fEnable)EnableModeless;
HRESULT function(IOleInPlaceFrame *This, LPMSG lpmsg, WORD wID)TranslateAcceleratorA;
}
//C struct IOleInPlaceFrame {
//C struct IOleInPlaceFrameVtbl *lpVtbl;
//C };
struct IOleInPlaceFrame
{
IOleInPlaceFrameVtbl *lpVtbl;
}
//C HRESULT IOleInPlaceFrame_InsertMenus_Proxy(IOleInPlaceFrame *This,HMENU hmenuShared,LPOLEMENUGROUPWIDTHS lpMenuWidths);
HRESULT IOleInPlaceFrame_InsertMenus_Proxy(IOleInPlaceFrame *This, HMENU hmenuShared, LPOLEMENUGROUPWIDTHS lpMenuWidths);
//C void IOleInPlaceFrame_InsertMenus_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_InsertMenus_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceFrame_SetMenu_Proxy(IOleInPlaceFrame *This,HMENU hmenuShared,HOLEMENU holemenu,HWND hwndActiveObject);
HRESULT IOleInPlaceFrame_SetMenu_Proxy(IOleInPlaceFrame *This, HMENU hmenuShared, HOLEMENU holemenu, HWND hwndActiveObject);
//C void IOleInPlaceFrame_SetMenu_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_SetMenu_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceFrame_RemoveMenus_Proxy(IOleInPlaceFrame *This,HMENU hmenuShared);
HRESULT IOleInPlaceFrame_RemoveMenus_Proxy(IOleInPlaceFrame *This, HMENU hmenuShared);
//C void IOleInPlaceFrame_RemoveMenus_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_RemoveMenus_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceFrame_SetStatusText_Proxy(IOleInPlaceFrame *This,LPCOLESTR pszStatusText);
HRESULT IOleInPlaceFrame_SetStatusText_Proxy(IOleInPlaceFrame *This, LPCOLESTR pszStatusText);
//C void IOleInPlaceFrame_SetStatusText_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_SetStatusText_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceFrame_EnableModeless_Proxy(IOleInPlaceFrame *This,WINBOOL fEnable);
HRESULT IOleInPlaceFrame_EnableModeless_Proxy(IOleInPlaceFrame *This, WINBOOL fEnable);
//C void IOleInPlaceFrame_EnableModeless_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_EnableModeless_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceFrame_TranslateAccelerator_Proxy(IOleInPlaceFrame *This,LPMSG lpmsg,WORD wID);
HRESULT IOleInPlaceFrame_TranslateAccelerator_Proxy(IOleInPlaceFrame *This, LPMSG lpmsg, WORD wID);
//C void IOleInPlaceFrame_TranslateAccelerator_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceFrame_TranslateAccelerator_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleInPlaceObject *LPOLEINPLACEOBJECT;
alias IOleInPlaceObject *LPOLEINPLACEOBJECT;
//C typedef struct IOleInPlaceObjectVtbl {
//C HRESULT ( *QueryInterface)(IOleInPlaceObject *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleInPlaceObject *This);
//C ULONG ( *Release)(IOleInPlaceObject *This);
//C HRESULT ( *GetWindow)(IOleInPlaceObject *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleInPlaceObject *This,WINBOOL fEnterMode);
//C HRESULT ( *InPlaceDeactivate)(IOleInPlaceObject *This);
//C HRESULT ( *UIDeactivate)(IOleInPlaceObject *This);
//C HRESULT ( *SetObjectRects)(IOleInPlaceObject *This,LPCRECT lprcPosRect,LPCRECT lprcClipRect);
//C HRESULT ( *ReactivateAndUndo)(IOleInPlaceObject *This);
//C } IOleInPlaceObjectVtbl;
struct IOleInPlaceObjectVtbl
{
HRESULT function(IOleInPlaceObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleInPlaceObject *This)AddRef;
ULONG function(IOleInPlaceObject *This)Release;
HRESULT function(IOleInPlaceObject *This, HWND *phwnd)GetWindow;
HRESULT function(IOleInPlaceObject *This, WINBOOL fEnterMode)ContextSensitiveHelp;
HRESULT function(IOleInPlaceObject *This)InPlaceDeactivate;
HRESULT function(IOleInPlaceObject *This)UIDeactivate;
HRESULT function(IOleInPlaceObject *This, LPCRECT lprcPosRect, LPCRECT lprcClipRect)SetObjectRects;
HRESULT function(IOleInPlaceObject *This)ReactivateAndUndo;
}
//C struct IOleInPlaceObject {
//C struct IOleInPlaceObjectVtbl *lpVtbl;
//C };
struct IOleInPlaceObject
{
IOleInPlaceObjectVtbl *lpVtbl;
}
//C HRESULT IOleInPlaceObject_InPlaceDeactivate_Proxy(IOleInPlaceObject *This);
HRESULT IOleInPlaceObject_InPlaceDeactivate_Proxy(IOleInPlaceObject *This);
//C void IOleInPlaceObject_InPlaceDeactivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceObject_InPlaceDeactivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceObject_UIDeactivate_Proxy(IOleInPlaceObject *This);
HRESULT IOleInPlaceObject_UIDeactivate_Proxy(IOleInPlaceObject *This);
//C void IOleInPlaceObject_UIDeactivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceObject_UIDeactivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceObject_SetObjectRects_Proxy(IOleInPlaceObject *This,LPCRECT lprcPosRect,LPCRECT lprcClipRect);
HRESULT IOleInPlaceObject_SetObjectRects_Proxy(IOleInPlaceObject *This, LPCRECT lprcPosRect, LPCRECT lprcClipRect);
//C void IOleInPlaceObject_SetObjectRects_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceObject_SetObjectRects_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceObject_ReactivateAndUndo_Proxy(IOleInPlaceObject *This);
HRESULT IOleInPlaceObject_ReactivateAndUndo_Proxy(IOleInPlaceObject *This);
//C void IOleInPlaceObject_ReactivateAndUndo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceObject_ReactivateAndUndo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IOleInPlaceSite *LPOLEINPLACESITE;
alias IOleInPlaceSite *LPOLEINPLACESITE;
//C typedef struct IOleInPlaceSiteVtbl {
//C HRESULT ( *QueryInterface)(IOleInPlaceSite *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IOleInPlaceSite *This);
//C ULONG ( *Release)(IOleInPlaceSite *This);
//C HRESULT ( *GetWindow)(IOleInPlaceSite *This,HWND *phwnd);
//C HRESULT ( *ContextSensitiveHelp)(IOleInPlaceSite *This,WINBOOL fEnterMode);
//C HRESULT ( *CanInPlaceActivate)(IOleInPlaceSite *This);
//C HRESULT ( *OnInPlaceActivate)(IOleInPlaceSite *This);
//C HRESULT ( *OnUIActivate)(IOleInPlaceSite *This);
//C HRESULT ( *GetWindowContext)(IOleInPlaceSite *This,IOleInPlaceFrame **ppFrame,IOleInPlaceUIWindow **ppDoc,LPRECT lprcPosRect,LPRECT lprcClipRect,LPOLEINPLACEFRAMEINFO lpFrameInfo);
//C HRESULT ( *Scroll)(IOleInPlaceSite *This,SIZE scrollExtant);
//C HRESULT ( *OnUIDeactivate)(IOleInPlaceSite *This,WINBOOL fUndoable);
//C HRESULT ( *OnInPlaceDeactivate)(IOleInPlaceSite *This);
//C HRESULT ( *DiscardUndoState)(IOleInPlaceSite *This);
//C HRESULT ( *DeactivateAndUndo)(IOleInPlaceSite *This);
//C HRESULT ( *OnPosRectChange)(IOleInPlaceSite *This,LPCRECT lprcPosRect);
//C } IOleInPlaceSiteVtbl;
struct IOleInPlaceSiteVtbl
{
HRESULT function(IOleInPlaceSite *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IOleInPlaceSite *This)AddRef;
ULONG function(IOleInPlaceSite *This)Release;
HRESULT function(IOleInPlaceSite *This, HWND *phwnd)GetWindow;
HRESULT function(IOleInPlaceSite *This, WINBOOL fEnterMode)ContextSensitiveHelp;
HRESULT function(IOleInPlaceSite *This)CanInPlaceActivate;
HRESULT function(IOleInPlaceSite *This)OnInPlaceActivate;
HRESULT function(IOleInPlaceSite *This)OnUIActivate;
HRESULT function(IOleInPlaceSite *This, IOleInPlaceFrame **ppFrame, IOleInPlaceUIWindow **ppDoc, LPRECT lprcPosRect, LPRECT lprcClipRect, LPOLEINPLACEFRAMEINFO lpFrameInfo)GetWindowContext;
HRESULT function(IOleInPlaceSite *This, SIZE scrollExtant)Scroll;
HRESULT function(IOleInPlaceSite *This, WINBOOL fUndoable)OnUIDeactivate;
HRESULT function(IOleInPlaceSite *This)OnInPlaceDeactivate;
HRESULT function(IOleInPlaceSite *This)DiscardUndoState;
HRESULT function(IOleInPlaceSite *This)DeactivateAndUndo;
HRESULT function(IOleInPlaceSite *This, LPCRECT lprcPosRect)OnPosRectChange;
}
//C struct IOleInPlaceSite {
//C struct IOleInPlaceSiteVtbl *lpVtbl;
//C };
struct IOleInPlaceSite
{
IOleInPlaceSiteVtbl *lpVtbl;
}
//C HRESULT IOleInPlaceSite_CanInPlaceActivate_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_CanInPlaceActivate_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_CanInPlaceActivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_CanInPlaceActivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_OnInPlaceActivate_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_OnInPlaceActivate_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_OnInPlaceActivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_OnInPlaceActivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_OnUIActivate_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_OnUIActivate_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_OnUIActivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_OnUIActivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_GetWindowContext_Proxy(IOleInPlaceSite *This,IOleInPlaceFrame **ppFrame,IOleInPlaceUIWindow **ppDoc,LPRECT lprcPosRect,LPRECT lprcClipRect,LPOLEINPLACEFRAMEINFO lpFrameInfo);
HRESULT IOleInPlaceSite_GetWindowContext_Proxy(IOleInPlaceSite *This, IOleInPlaceFrame **ppFrame, IOleInPlaceUIWindow **ppDoc, LPRECT lprcPosRect, LPRECT lprcClipRect, LPOLEINPLACEFRAMEINFO lpFrameInfo);
//C void IOleInPlaceSite_GetWindowContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_GetWindowContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_Scroll_Proxy(IOleInPlaceSite *This,SIZE scrollExtant);
HRESULT IOleInPlaceSite_Scroll_Proxy(IOleInPlaceSite *This, SIZE scrollExtant);
//C void IOleInPlaceSite_Scroll_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_Scroll_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_OnUIDeactivate_Proxy(IOleInPlaceSite *This,WINBOOL fUndoable);
HRESULT IOleInPlaceSite_OnUIDeactivate_Proxy(IOleInPlaceSite *This, WINBOOL fUndoable);
//C void IOleInPlaceSite_OnUIDeactivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_OnUIDeactivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_OnInPlaceDeactivate_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_OnInPlaceDeactivate_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_OnInPlaceDeactivate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_OnInPlaceDeactivate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_DiscardUndoState_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_DiscardUndoState_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_DiscardUndoState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_DiscardUndoState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_DeactivateAndUndo_Proxy(IOleInPlaceSite *This);
HRESULT IOleInPlaceSite_DeactivateAndUndo_Proxy(IOleInPlaceSite *This);
//C void IOleInPlaceSite_DeactivateAndUndo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_DeactivateAndUndo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IOleInPlaceSite_OnPosRectChange_Proxy(IOleInPlaceSite *This,LPCRECT lprcPosRect);
HRESULT IOleInPlaceSite_OnPosRectChange_Proxy(IOleInPlaceSite *This, LPCRECT lprcPosRect);
//C void IOleInPlaceSite_OnPosRectChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IOleInPlaceSite_OnPosRectChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IContinueVtbl {
//C HRESULT ( *QueryInterface)(IContinue *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IContinue *This);
//C ULONG ( *Release)(IContinue *This);
//C HRESULT ( *FContinue)(IContinue *This);
//C } IContinueVtbl;
struct IContinueVtbl
{
HRESULT function(IContinue *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IContinue *This)AddRef;
ULONG function(IContinue *This)Release;
HRESULT function(IContinue *This)FContinue;
}
//C struct IContinue {
//C struct IContinueVtbl *lpVtbl;
//C };
struct IContinue
{
IContinueVtbl *lpVtbl;
}
//C HRESULT IContinue_FContinue_Proxy(IContinue *This);
HRESULT IContinue_FContinue_Proxy(IContinue *This);
//C void IContinue_FContinue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IContinue_FContinue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IViewObject *LPVIEWOBJECT;
alias IViewObject *LPVIEWOBJECT;
//C typedef struct IViewObjectVtbl {
//C HRESULT ( *QueryInterface)(IViewObject *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IViewObject *This);
//C ULONG ( *Release)(IViewObject *This);
//C HRESULT ( *Draw)(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hdcTargetDev,HDC hdcDraw,LPCRECTL lprcBounds,LPCRECTL lprcWBounds,WINBOOL ( *pfnContinue)(ULONG_PTR dwContinue),ULONG_PTR dwContinue);
//C HRESULT ( *GetColorSet)(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hicTargetDev,LOGPALETTE **ppColorSet);
//C HRESULT ( *Freeze)(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DWORD *pdwFreeze);
//C HRESULT ( *Unfreeze)(IViewObject *This,DWORD dwFreeze);
//C HRESULT ( *SetAdvise)(IViewObject *This,DWORD aspects,DWORD advf,IAdviseSink *pAdvSink);
//C HRESULT ( *GetAdvise)(IViewObject *This,DWORD *pAspects,DWORD *pAdvf,IAdviseSink **ppAdvSink);
//C } IViewObjectVtbl;
struct IViewObjectVtbl
{
HRESULT function(IViewObject *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IViewObject *This)AddRef;
ULONG function(IViewObject *This)Release;
HRESULT function(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hdcTargetDev, HDC hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds, WINBOOL function(ULONG_PTR dwContinue)pfnContinue, ULONG_PTR dwContinue)Draw;
HRESULT function(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hicTargetDev, LOGPALETTE **ppColorSet)GetColorSet;
HRESULT function(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DWORD *pdwFreeze)Freeze;
HRESULT function(IViewObject *This, DWORD dwFreeze)Unfreeze;
HRESULT function(IViewObject *This, DWORD aspects, DWORD advf, IAdviseSink *pAdvSink)SetAdvise;
HRESULT function(IViewObject *This, DWORD *pAspects, DWORD *pAdvf, IAdviseSink **ppAdvSink)GetAdvise;
}
//C struct IViewObject {
//C struct IViewObjectVtbl *lpVtbl;
//C };
struct IViewObject
{
IViewObjectVtbl *lpVtbl;
}
//C HRESULT IViewObject_RemoteDraw_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DVTARGETDEVICE *ptd,ULONG_PTR hdcTargetDev,ULONG_PTR hdcDraw,LPCRECTL lprcBounds,LPCRECTL lprcWBounds,IContinue *pContinue);
HRESULT IViewObject_RemoteDraw_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DVTARGETDEVICE *ptd, ULONG_PTR hdcTargetDev, ULONG_PTR hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds, IContinue *pContinue);
//C void IViewObject_RemoteDraw_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_RemoteDraw_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IViewObject_RemoteGetColorSet_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DVTARGETDEVICE *ptd,ULONG_PTR hicTargetDev,LOGPALETTE **ppColorSet);
HRESULT IViewObject_RemoteGetColorSet_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DVTARGETDEVICE *ptd, ULONG_PTR hicTargetDev, LOGPALETTE **ppColorSet);
//C void IViewObject_RemoteGetColorSet_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_RemoteGetColorSet_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IViewObject_RemoteFreeze_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DWORD *pdwFreeze);
HRESULT IViewObject_RemoteFreeze_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DWORD *pdwFreeze);
//C void IViewObject_RemoteFreeze_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_RemoteFreeze_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IViewObject_Unfreeze_Proxy(IViewObject *This,DWORD dwFreeze);
HRESULT IViewObject_Unfreeze_Proxy(IViewObject *This, DWORD dwFreeze);
//C void IViewObject_Unfreeze_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_Unfreeze_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IViewObject_SetAdvise_Proxy(IViewObject *This,DWORD aspects,DWORD advf,IAdviseSink *pAdvSink);
HRESULT IViewObject_SetAdvise_Proxy(IViewObject *This, DWORD aspects, DWORD advf, IAdviseSink *pAdvSink);
//C void IViewObject_SetAdvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_SetAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IViewObject_RemoteGetAdvise_Proxy(IViewObject *This,DWORD *pAspects,DWORD *pAdvf,IAdviseSink **ppAdvSink);
HRESULT IViewObject_RemoteGetAdvise_Proxy(IViewObject *This, DWORD *pAspects, DWORD *pAdvf, IAdviseSink **ppAdvSink);
//C void IViewObject_RemoteGetAdvise_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject_RemoteGetAdvise_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IViewObject2 *LPVIEWOBJECT2;
alias IViewObject2 *LPVIEWOBJECT2;
//C typedef struct IViewObject2Vtbl {
//C HRESULT ( *QueryInterface)(IViewObject2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IViewObject2 *This);
//C ULONG ( *Release)(IViewObject2 *This);
//C HRESULT ( *Draw)(IViewObject2 *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hdcTargetDev,HDC hdcDraw,LPCRECTL lprcBounds,LPCRECTL lprcWBounds,WINBOOL ( *pfnContinue)(ULONG_PTR dwContinue),ULONG_PTR dwContinue);
//C HRESULT ( *GetColorSet)(IViewObject2 *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hicTargetDev,LOGPALETTE **ppColorSet);
//C HRESULT ( *Freeze)(IViewObject2 *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DWORD *pdwFreeze);
//C HRESULT ( *Unfreeze)(IViewObject2 *This,DWORD dwFreeze);
//C HRESULT ( *SetAdvise)(IViewObject2 *This,DWORD aspects,DWORD advf,IAdviseSink *pAdvSink);
//C HRESULT ( *GetAdvise)(IViewObject2 *This,DWORD *pAspects,DWORD *pAdvf,IAdviseSink **ppAdvSink);
//C HRESULT ( *GetExtent)(IViewObject2 *This,DWORD dwDrawAspect,LONG lindex,DVTARGETDEVICE *ptd,LPSIZEL lpsizel);
//C } IViewObject2Vtbl;
struct IViewObject2Vtbl
{
HRESULT function(IViewObject2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IViewObject2 *This)AddRef;
ULONG function(IViewObject2 *This)Release;
HRESULT function(IViewObject2 *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hdcTargetDev, HDC hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds, WINBOOL function(ULONG_PTR dwContinue)pfnContinue, ULONG_PTR dwContinue)Draw;
HRESULT function(IViewObject2 *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hicTargetDev, LOGPALETTE **ppColorSet)GetColorSet;
HRESULT function(IViewObject2 *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DWORD *pdwFreeze)Freeze;
HRESULT function(IViewObject2 *This, DWORD dwFreeze)Unfreeze;
HRESULT function(IViewObject2 *This, DWORD aspects, DWORD advf, IAdviseSink *pAdvSink)SetAdvise;
HRESULT function(IViewObject2 *This, DWORD *pAspects, DWORD *pAdvf, IAdviseSink **ppAdvSink)GetAdvise;
HRESULT function(IViewObject2 *This, DWORD dwDrawAspect, LONG lindex, DVTARGETDEVICE *ptd, LPSIZEL lpsizel)GetExtent;
}
//C struct IViewObject2 {
//C struct IViewObject2Vtbl *lpVtbl;
//C };
struct IViewObject2
{
IViewObject2Vtbl *lpVtbl;
}
//C HRESULT IViewObject2_GetExtent_Proxy(IViewObject2 *This,DWORD dwDrawAspect,LONG lindex,DVTARGETDEVICE *ptd,LPSIZEL lpsizel);
HRESULT IViewObject2_GetExtent_Proxy(IViewObject2 *This, DWORD dwDrawAspect, LONG lindex, DVTARGETDEVICE *ptd, LPSIZEL lpsizel);
//C void IViewObject2_GetExtent_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IViewObject2_GetExtent_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IDropSource *LPDROPSOURCE;
alias IDropSource *LPDROPSOURCE;
//C typedef struct IDropSourceVtbl {
//C HRESULT ( *QueryInterface)(IDropSource *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDropSource *This);
//C ULONG ( *Release)(IDropSource *This);
//C HRESULT ( *QueryContinueDrag)(IDropSource *This,WINBOOL fEscapePressed,DWORD grfKeyState);
//C HRESULT ( *GiveFeedback)(IDropSource *This,DWORD dwEffect);
//C } IDropSourceVtbl;
struct IDropSourceVtbl
{
HRESULT function(IDropSource *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDropSource *This)AddRef;
ULONG function(IDropSource *This)Release;
HRESULT function(IDropSource *This, WINBOOL fEscapePressed, DWORD grfKeyState)QueryContinueDrag;
HRESULT function(IDropSource *This, DWORD dwEffect)GiveFeedback;
}
//C struct IDropSource {
//C struct IDropSourceVtbl *lpVtbl;
//C };
struct IDropSource
{
IDropSourceVtbl *lpVtbl;
}
//C HRESULT IDropSource_QueryContinueDrag_Proxy(IDropSource *This,WINBOOL fEscapePressed,DWORD grfKeyState);
HRESULT IDropSource_QueryContinueDrag_Proxy(IDropSource *This, WINBOOL fEscapePressed, DWORD grfKeyState);
//C void IDropSource_QueryContinueDrag_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropSource_QueryContinueDrag_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDropSource_GiveFeedback_Proxy(IDropSource *This,DWORD dwEffect);
HRESULT IDropSource_GiveFeedback_Proxy(IDropSource *This, DWORD dwEffect);
//C void IDropSource_GiveFeedback_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropSource_GiveFeedback_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IDropTarget *LPDROPTARGET;
alias IDropTarget *LPDROPTARGET;
//C typedef struct IDropTargetVtbl {
//C HRESULT ( *QueryInterface)(IDropTarget *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDropTarget *This);
//C ULONG ( *Release)(IDropTarget *This);
//C HRESULT ( *DragEnter)(IDropTarget *This,IDataObject *pDataObj,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
//C HRESULT ( *DragOver)(IDropTarget *This,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
//C HRESULT ( *DragLeave)(IDropTarget *This);
//C HRESULT ( *Drop)(IDropTarget *This,IDataObject *pDataObj,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
//C } IDropTargetVtbl;
struct IDropTargetVtbl
{
HRESULT function(IDropTarget *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDropTarget *This)AddRef;
ULONG function(IDropTarget *This)Release;
HRESULT function(IDropTarget *This, IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)DragEnter;
HRESULT function(IDropTarget *This, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)DragOver;
HRESULT function(IDropTarget *This)DragLeave;
HRESULT function(IDropTarget *This, IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)Drop;
}
//C struct IDropTarget {
//C struct IDropTargetVtbl *lpVtbl;
//C };
struct IDropTarget
{
IDropTargetVtbl *lpVtbl;
}
//C HRESULT IDropTarget_DragEnter_Proxy(IDropTarget *This,IDataObject *pDataObj,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
HRESULT IDropTarget_DragEnter_Proxy(IDropTarget *This, IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect);
//C void IDropTarget_DragEnter_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropTarget_DragEnter_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDropTarget_DragOver_Proxy(IDropTarget *This,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
HRESULT IDropTarget_DragOver_Proxy(IDropTarget *This, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect);
//C void IDropTarget_DragOver_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropTarget_DragOver_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDropTarget_DragLeave_Proxy(IDropTarget *This);
HRESULT IDropTarget_DragLeave_Proxy(IDropTarget *This);
//C void IDropTarget_DragLeave_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropTarget_DragLeave_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDropTarget_Drop_Proxy(IDropTarget *This,IDataObject *pDataObj,DWORD grfKeyState,POINTL pt,DWORD *pdwEffect);
HRESULT IDropTarget_Drop_Proxy(IDropTarget *This, IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect);
//C void IDropTarget_Drop_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDropTarget_Drop_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumOLEVERB *LPENUMOLEVERB;
alias IEnumOLEVERB *LPENUMOLEVERB;
//C typedef struct tagOLEVERB {
//C LONG lVerb;
//C LPOLESTR lpszVerbName;
//C DWORD fuFlags;
//C DWORD grfAttribs;
//C } OLEVERB;
struct tagOLEVERB
{
LONG lVerb;
LPOLESTR lpszVerbName;
DWORD fuFlags;
DWORD grfAttribs;
}
alias tagOLEVERB OLEVERB;
//C typedef struct tagOLEVERB *LPOLEVERB;
alias tagOLEVERB *LPOLEVERB;
//C typedef enum tagOLEVERBATTRIB {
//C OLEVERBATTRIB_NEVERDIRTIES = 1,OLEVERBATTRIB_ONCONTAINERMENU = 2
//C } OLEVERBATTRIB;
enum tagOLEVERBATTRIB
{
OLEVERBATTRIB_NEVERDIRTIES = 1,
OLEVERBATTRIB_ONCONTAINERMENU,
}
alias tagOLEVERBATTRIB OLEVERBATTRIB;
//C typedef struct IEnumOLEVERBVtbl {
//C HRESULT ( *QueryInterface)(IEnumOLEVERB *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IEnumOLEVERB *This);
//C ULONG ( *Release)(IEnumOLEVERB *This);
//C HRESULT ( *Next)(IEnumOLEVERB *This,ULONG celt,LPOLEVERB rgelt,ULONG *pceltFetched);
//C HRESULT ( *Skip)(IEnumOLEVERB *This,ULONG celt);
//C HRESULT ( *Reset)(IEnumOLEVERB *This);
//C HRESULT ( *Clone)(IEnumOLEVERB *This,IEnumOLEVERB **ppenum);
//C } IEnumOLEVERBVtbl;
struct IEnumOLEVERBVtbl
{
HRESULT function(IEnumOLEVERB *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumOLEVERB *This)AddRef;
ULONG function(IEnumOLEVERB *This)Release;
HRESULT function(IEnumOLEVERB *This, ULONG celt, LPOLEVERB rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumOLEVERB *This, ULONG celt)Skip;
HRESULT function(IEnumOLEVERB *This)Reset;
HRESULT function(IEnumOLEVERB *This, IEnumOLEVERB **ppenum)Clone;
}
//C struct IEnumOLEVERB {
//C struct IEnumOLEVERBVtbl *lpVtbl;
//C };
struct IEnumOLEVERB
{
IEnumOLEVERBVtbl *lpVtbl;
}
//C HRESULT IEnumOLEVERB_RemoteNext_Proxy(IEnumOLEVERB *This,ULONG celt,LPOLEVERB rgelt,ULONG *pceltFetched);
HRESULT IEnumOLEVERB_RemoteNext_Proxy(IEnumOLEVERB *This, ULONG celt, LPOLEVERB rgelt, ULONG *pceltFetched);
//C void IEnumOLEVERB_RemoteNext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumOLEVERB_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumOLEVERB_Skip_Proxy(IEnumOLEVERB *This,ULONG celt);
HRESULT IEnumOLEVERB_Skip_Proxy(IEnumOLEVERB *This, ULONG celt);
//C void IEnumOLEVERB_Skip_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumOLEVERB_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumOLEVERB_Reset_Proxy(IEnumOLEVERB *This);
HRESULT IEnumOLEVERB_Reset_Proxy(IEnumOLEVERB *This);
//C void IEnumOLEVERB_Reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumOLEVERB_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumOLEVERB_Clone_Proxy(IEnumOLEVERB *This,IEnumOLEVERB **ppenum);
HRESULT IEnumOLEVERB_Clone_Proxy(IEnumOLEVERB *This, IEnumOLEVERB **ppenum);
//C void IEnumOLEVERB_Clone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumOLEVERB_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C ULONG CLIPFORMAT_UserSize(ULONG *,ULONG,CLIPFORMAT *);
ULONG CLIPFORMAT_UserSize(ULONG *, ULONG , CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserMarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserMarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserUnmarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserUnmarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C void CLIPFORMAT_UserFree(ULONG *,CLIPFORMAT *);
void CLIPFORMAT_UserFree(ULONG *, CLIPFORMAT *);
//C ULONG HACCEL_UserSize(ULONG *,ULONG,HACCEL *);
ULONG HACCEL_UserSize(ULONG *, ULONG , HACCEL *);
//C unsigned char * HACCEL_UserMarshal(ULONG *,unsigned char *,HACCEL *);
ubyte * HACCEL_UserMarshal(ULONG *, ubyte *, HACCEL *);
//C unsigned char * HACCEL_UserUnmarshal(ULONG *,unsigned char *,HACCEL *);
ubyte * HACCEL_UserUnmarshal(ULONG *, ubyte *, HACCEL *);
//C void HACCEL_UserFree(ULONG *,HACCEL *);
void HACCEL_UserFree(ULONG *, HACCEL *);
//C ULONG HGLOBAL_UserSize(ULONG *,ULONG,HGLOBAL *);
ULONG HGLOBAL_UserSize(ULONG *, ULONG , HGLOBAL *);
//C unsigned char * HGLOBAL_UserMarshal(ULONG *,unsigned char *,HGLOBAL *);
ubyte * HGLOBAL_UserMarshal(ULONG *, ubyte *, HGLOBAL *);
//C unsigned char * HGLOBAL_UserUnmarshal(ULONG *,unsigned char *,HGLOBAL *);
ubyte * HGLOBAL_UserUnmarshal(ULONG *, ubyte *, HGLOBAL *);
//C void HGLOBAL_UserFree(ULONG *,HGLOBAL *);
void HGLOBAL_UserFree(ULONG *, HGLOBAL *);
//C ULONG HMENU_UserSize(ULONG *,ULONG,HMENU *);
ULONG HMENU_UserSize(ULONG *, ULONG , HMENU *);
//C unsigned char * HMENU_UserMarshal(ULONG *,unsigned char *,HMENU *);
ubyte * HMENU_UserMarshal(ULONG *, ubyte *, HMENU *);
//C unsigned char * HMENU_UserUnmarshal(ULONG *,unsigned char *,HMENU *);
ubyte * HMENU_UserUnmarshal(ULONG *, ubyte *, HMENU *);
//C void HMENU_UserFree(ULONG *,HMENU *);
void HMENU_UserFree(ULONG *, HMENU *);
//C ULONG HWND_UserSize(ULONG *,ULONG,HWND *);
ULONG HWND_UserSize(ULONG *, ULONG , HWND *);
//C unsigned char * HWND_UserMarshal(ULONG *,unsigned char *,HWND *);
ubyte * HWND_UserMarshal(ULONG *, ubyte *, HWND *);
//C unsigned char * HWND_UserUnmarshal(ULONG *,unsigned char *,HWND *);
ubyte * HWND_UserUnmarshal(ULONG *, ubyte *, HWND *);
//C void HWND_UserFree(ULONG *,HWND *);
void HWND_UserFree(ULONG *, HWND *);
//C ULONG STGMEDIUM_UserSize(ULONG *,ULONG,STGMEDIUM *);
ULONG STGMEDIUM_UserSize(ULONG *, ULONG , STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserMarshal(ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserMarshal(ULONG *, ubyte *, STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserUnmarshal(ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserUnmarshal(ULONG *, ubyte *, STGMEDIUM *);
//C void STGMEDIUM_UserFree(ULONG *,STGMEDIUM *);
void STGMEDIUM_UserFree(ULONG *, STGMEDIUM *);
//C HRESULT IOleCache2_UpdateCache_Proxy(IOleCache2 *This,LPDATAOBJECT pDataObject,DWORD grfUpdf,LPVOID pReserved);
HRESULT IOleCache2_UpdateCache_Proxy(IOleCache2 *This, LPDATAOBJECT pDataObject, DWORD grfUpdf, LPVOID pReserved);
//C HRESULT IOleCache2_UpdateCache_Stub(IOleCache2 *This,LPDATAOBJECT pDataObject,DWORD grfUpdf,LONG_PTR pReserved);
HRESULT IOleCache2_UpdateCache_Stub(IOleCache2 *This, LPDATAOBJECT pDataObject, DWORD grfUpdf, LONG_PTR pReserved);
//C HRESULT IOleInPlaceActiveObject_TranslateAccelerator_Proxy(IOleInPlaceActiveObject *This,LPMSG lpmsg);
HRESULT IOleInPlaceActiveObject_TranslateAccelerator_Proxy(IOleInPlaceActiveObject *This, LPMSG lpmsg);
//C HRESULT IOleInPlaceActiveObject_TranslateAccelerator_Stub(IOleInPlaceActiveObject *This);
HRESULT IOleInPlaceActiveObject_TranslateAccelerator_Stub(IOleInPlaceActiveObject *This);
//C HRESULT IOleInPlaceActiveObject_ResizeBorder_Proxy(IOleInPlaceActiveObject *This,LPCRECT prcBorder,IOleInPlaceUIWindow *pUIWindow,WINBOOL fFrameWindow);
HRESULT IOleInPlaceActiveObject_ResizeBorder_Proxy(IOleInPlaceActiveObject *This, LPCRECT prcBorder, IOleInPlaceUIWindow *pUIWindow, WINBOOL fFrameWindow);
//C HRESULT IOleInPlaceActiveObject_ResizeBorder_Stub(IOleInPlaceActiveObject *This,LPCRECT prcBorder,const IID *const riid,IOleInPlaceUIWindow *pUIWindow,WINBOOL fFrameWindow);
HRESULT IOleInPlaceActiveObject_ResizeBorder_Stub(IOleInPlaceActiveObject *This, LPCRECT prcBorder, IID *riid, IOleInPlaceUIWindow *pUIWindow, WINBOOL fFrameWindow);
//C HRESULT IViewObject_Draw_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hdcTargetDev,HDC hdcDraw,LPCRECTL lprcBounds,LPCRECTL lprcWBounds,WINBOOL ( *pfnContinue)(ULONG_PTR dwContinue),ULONG_PTR dwContinue);
HRESULT IViewObject_Draw_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hdcTargetDev, HDC hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds, WINBOOL function(ULONG_PTR dwContinue)pfnContinue, ULONG_PTR dwContinue);
//C HRESULT IViewObject_Draw_Stub(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DVTARGETDEVICE *ptd,ULONG_PTR hdcTargetDev,ULONG_PTR hdcDraw,LPCRECTL lprcBounds,LPCRECTL lprcWBounds,IContinue *pContinue);
HRESULT IViewObject_Draw_Stub(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DVTARGETDEVICE *ptd, ULONG_PTR hdcTargetDev, ULONG_PTR hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds, IContinue *pContinue);
//C HRESULT IViewObject_GetColorSet_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DVTARGETDEVICE *ptd,HDC hicTargetDev,LOGPALETTE **ppColorSet);
HRESULT IViewObject_GetColorSet_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DVTARGETDEVICE *ptd, HDC hicTargetDev, LOGPALETTE **ppColorSet);
//C HRESULT IViewObject_GetColorSet_Stub(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DVTARGETDEVICE *ptd,ULONG_PTR hicTargetDev,LOGPALETTE **ppColorSet);
HRESULT IViewObject_GetColorSet_Stub(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DVTARGETDEVICE *ptd, ULONG_PTR hicTargetDev, LOGPALETTE **ppColorSet);
//C HRESULT IViewObject_Freeze_Proxy(IViewObject *This,DWORD dwDrawAspect,LONG lindex,void *pvAspect,DWORD *pdwFreeze);
HRESULT IViewObject_Freeze_Proxy(IViewObject *This, DWORD dwDrawAspect, LONG lindex, void *pvAspect, DWORD *pdwFreeze);
//C HRESULT IViewObject_Freeze_Stub(IViewObject *This,DWORD dwDrawAspect,LONG lindex,ULONG_PTR pvAspect,DWORD *pdwFreeze);
HRESULT IViewObject_Freeze_Stub(IViewObject *This, DWORD dwDrawAspect, LONG lindex, ULONG_PTR pvAspect, DWORD *pdwFreeze);
//C HRESULT IViewObject_GetAdvise_Proxy(IViewObject *This,DWORD *pAspects,DWORD *pAdvf,IAdviseSink **ppAdvSink);
HRESULT IViewObject_GetAdvise_Proxy(IViewObject *This, DWORD *pAspects, DWORD *pAdvf, IAdviseSink **ppAdvSink);
//C HRESULT IViewObject_GetAdvise_Stub(IViewObject *This,DWORD *pAspects,DWORD *pAdvf,IAdviseSink **ppAdvSink);
HRESULT IViewObject_GetAdvise_Stub(IViewObject *This, DWORD *pAspects, DWORD *pAdvf, IAdviseSink **ppAdvSink);
//C HRESULT IEnumOLEVERB_Next_Proxy(IEnumOLEVERB *This,ULONG celt,LPOLEVERB rgelt,ULONG *pceltFetched);
HRESULT IEnumOLEVERB_Next_Proxy(IEnumOLEVERB *This, ULONG celt, LPOLEVERB rgelt, ULONG *pceltFetched);
//C HRESULT IEnumOLEVERB_Next_Stub(IEnumOLEVERB *This,ULONG celt,LPOLEVERB rgelt,ULONG *pceltFetched);
HRESULT IEnumOLEVERB_Next_Stub(IEnumOLEVERB *This, ULONG celt, LPOLEVERB rgelt, ULONG *pceltFetched);
//C typedef struct IPersistMoniker IPersistMoniker;
//C typedef struct IMonikerProp IMonikerProp;
//C typedef struct IBindProtocol IBindProtocol;
//C typedef struct IAuthenticate IAuthenticate;
//C typedef struct IHttpNegotiate IHttpNegotiate;
//C typedef struct IHttpNegotiate2 IHttpNegotiate2;
//C typedef struct IWinInetFileStream IWinInetFileStream;
//C typedef struct IWindowForBindingUI IWindowForBindingUI;
//C typedef struct ICodeInstall ICodeInstall;
//C typedef struct IWinInetInfo IWinInetInfo;
//C typedef struct IHttpSecurity IHttpSecurity;
//C typedef struct IWinInetHttpInfo IWinInetHttpInfo;
//C typedef struct IWinInetCacheHints IWinInetCacheHints;
//C typedef struct IBindHost IBindHost;
//C typedef struct IInternet IInternet;
//C typedef struct IInternetBindInfo IInternetBindInfo;
//C typedef struct IInternetProtocolRoot IInternetProtocolRoot;
//C typedef struct IInternetProtocol IInternetProtocol;
//C typedef struct IInternetProtocolSink IInternetProtocolSink;
//C typedef struct IInternetProtocolSinkStackable IInternetProtocolSinkStackable;
//C typedef struct IInternetSession IInternetSession;
//C typedef struct IInternetThreadSwitch IInternetThreadSwitch;
//C typedef struct IInternetPriority IInternetPriority;
//C typedef struct IInternetProtocolInfo IInternetProtocolInfo;
//C typedef struct IInternetSecurityMgrSite IInternetSecurityMgrSite;
//C typedef struct IInternetSecurityManager IInternetSecurityManager;
//C typedef struct IInternetSecurityManagerEx IInternetSecurityManagerEx;
//C typedef struct IZoneIdentifier IZoneIdentifier;
//C typedef struct IInternetHostSecurityManager IInternetHostSecurityManager;
//C typedef struct IInternetZoneManager IInternetZoneManager;
//C typedef struct IInternetZoneManagerEx IInternetZoneManagerEx;
//C typedef struct ISoftDistExt ISoftDistExt;
//C typedef struct ICatalogFileInfo ICatalogFileInfo;
//C typedef struct IDataFilter IDataFilter;
//C typedef struct IEncodingFilterFactory IEncodingFilterFactory;
//C typedef struct IWrappedProtocol IWrappedProtocol;
//C typedef struct IServiceProvider IServiceProvider;
//C extern RPC_IF_HANDLE __MIDL_itf_servprov_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_servprov_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_servprov_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_servprov_0000_v0_0_s_ifspec;
//C typedef IServiceProvider *LPSERVICEPROVIDER;
alias IServiceProvider *LPSERVICEPROVIDER;
//C typedef struct IServiceProviderVtbl {
//C HRESULT ( *QueryInterface)(IServiceProvider *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IServiceProvider *This);
//C ULONG ( *Release)(IServiceProvider *This);
//C HRESULT ( *QueryService)(IServiceProvider *This,const GUID *const guidService,const IID *const riid,void **ppvObject);
//C } IServiceProviderVtbl;
struct IServiceProviderVtbl
{
HRESULT function(IServiceProvider *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IServiceProvider *This)AddRef;
ULONG function(IServiceProvider *This)Release;
HRESULT function(IServiceProvider *This, GUID *guidService, IID *riid, void **ppvObject)QueryService;
}
//C struct IServiceProvider {
//C struct IServiceProviderVtbl *lpVtbl;
//C };
struct IServiceProvider
{
IServiceProviderVtbl *lpVtbl;
}
//C HRESULT IServiceProvider_RemoteQueryService_Proxy(IServiceProvider *This,const GUID *const guidService,const IID *const riid,IUnknown **ppvObject);
HRESULT IServiceProvider_RemoteQueryService_Proxy(IServiceProvider *This, GUID *guidService, IID *riid, IUnknown **ppvObject);
//C void IServiceProvider_RemoteQueryService_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IServiceProvider_RemoteQueryService_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_servprov_0093_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_servprov_0093_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_servprov_0093_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_servprov_0093_v0_0_s_ifspec;
//C HRESULT IServiceProvider_QueryService_Proxy(IServiceProvider *This,const GUID *const guidService,const IID *const riid,void **ppvObject);
HRESULT IServiceProvider_QueryService_Proxy(IServiceProvider *This, GUID *guidService, IID *riid, void **ppvObject);
//C HRESULT IServiceProvider_QueryService_Stub(IServiceProvider *This,const GUID *const guidService,const IID *const riid,IUnknown **ppvObject);
HRESULT IServiceProvider_QueryService_Stub(IServiceProvider *This, GUID *guidService, IID *riid, IUnknown **ppvObject);
//C typedef struct IDispatch IDispatch;
//C typedef struct ITypeComp ITypeComp;
//C typedef struct ITypeInfo ITypeInfo;
//C typedef struct ITypeLib ITypeLib;
//C typedef struct IRecordInfo IRecordInfo;
//C typedef struct IErrorLog IErrorLog;
//C typedef struct ICreateTypeInfo ICreateTypeInfo;
//C typedef struct ICreateTypeInfo2 ICreateTypeInfo2;
//C typedef struct ICreateTypeLib ICreateTypeLib;
//C typedef struct ICreateTypeLib2 ICreateTypeLib2;
//C typedef struct IEnumVARIANT IEnumVARIANT;
//C typedef struct ITypeInfo2 ITypeInfo2;
//C typedef struct ITypeLib2 ITypeLib2;
//C typedef struct ITypeChangeEvents ITypeChangeEvents;
//C typedef struct IErrorInfo IErrorInfo;
//C typedef struct ICreateErrorInfo ICreateErrorInfo;
//C typedef struct ISupportErrorInfo ISupportErrorInfo;
//C typedef struct ITypeFactory ITypeFactory;
//C typedef struct ITypeMarshal ITypeMarshal;
//C typedef struct IPropertyBag IPropertyBag;
//C extern RPC_IF_HANDLE __MIDL_itf_oaidl_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_oaidl_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_oaidl_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_oaidl_0000_v0_0_s_ifspec;
//C extern RPC_IF_HANDLE IOleAutomationTypes_v1_0_c_ifspec;
extern RPC_IF_HANDLE IOleAutomationTypes_v1_0_c_ifspec;
//C extern RPC_IF_HANDLE IOleAutomationTypes_v1_0_s_ifspec;
extern RPC_IF_HANDLE IOleAutomationTypes_v1_0_s_ifspec;
//C typedef CY CURRENCY;
alias CY CURRENCY;
//C typedef struct tagSAFEARRAYBOUND {
//C ULONG cElements;
//C LONG lLbound;
//C } SAFEARRAYBOUND;
struct tagSAFEARRAYBOUND
{
ULONG cElements;
LONG lLbound;
}
alias tagSAFEARRAYBOUND SAFEARRAYBOUND;
//C typedef struct tagSAFEARRAYBOUND *LPSAFEARRAYBOUND;
alias tagSAFEARRAYBOUND *LPSAFEARRAYBOUND;
//C typedef struct _wireVARIANT *wireVARIANT;
alias _wireVARIANT *wireVARIANT;
//C typedef struct _wireBRECORD *wireBRECORD;
alias _wireBRECORD *wireBRECORD;
//C typedef struct _wireSAFEARR_BSTR {
//C ULONG Size;
//C wireBSTR *aBstr;
//C } SAFEARR_BSTR;
struct _wireSAFEARR_BSTR
{
ULONG Size;
wireBSTR *aBstr;
}
alias _wireSAFEARR_BSTR SAFEARR_BSTR;
//C typedef struct _wireSAFEARR_UNKNOWN {
//C ULONG Size;
//C IUnknown **apUnknown;
//C } SAFEARR_UNKNOWN;
struct _wireSAFEARR_UNKNOWN
{
ULONG Size;
IUnknown **apUnknown;
}
alias _wireSAFEARR_UNKNOWN SAFEARR_UNKNOWN;
//C typedef struct _wireSAFEARR_DISPATCH {
//C ULONG Size;
//C IDispatch **apDispatch;
//C } SAFEARR_DISPATCH;
struct _wireSAFEARR_DISPATCH
{
ULONG Size;
IDispatch **apDispatch;
}
alias _wireSAFEARR_DISPATCH SAFEARR_DISPATCH;
//C typedef struct _wireSAFEARR_VARIANT {
//C ULONG Size;
//C wireVARIANT *aVariant;
//C } SAFEARR_VARIANT;
struct _wireSAFEARR_VARIANT
{
ULONG Size;
wireVARIANT *aVariant;
}
alias _wireSAFEARR_VARIANT SAFEARR_VARIANT;
//C typedef struct _wireSAFEARR_BRECORD {
//C ULONG Size;
//C wireBRECORD *aRecord;
//C } SAFEARR_BRECORD;
struct _wireSAFEARR_BRECORD
{
ULONG Size;
wireBRECORD *aRecord;
}
alias _wireSAFEARR_BRECORD SAFEARR_BRECORD;
//C typedef struct _wireSAFEARR_HAVEIID {
//C ULONG Size;
//C IUnknown **apUnknown;
//C IID iid;
//C } SAFEARR_HAVEIID;
struct _wireSAFEARR_HAVEIID
{
ULONG Size;
IUnknown **apUnknown;
IID iid;
}
alias _wireSAFEARR_HAVEIID SAFEARR_HAVEIID;
//C typedef enum tagSF_TYPE {
//C SF_ERROR = VT_ERROR,
//C SF_I1 = VT_I1,
//C SF_I2 = VT_I2,
//C SF_I4 = VT_I4,
//C SF_I8 = VT_I8,
//C SF_BSTR = VT_BSTR,
//C SF_UNKNOWN = VT_UNKNOWN,
//C SF_DISPATCH = VT_DISPATCH,
//C SF_VARIANT = VT_VARIANT,
//C SF_RECORD = VT_RECORD,
//C SF_HAVEIID = VT_UNKNOWN | VT_RESERVED
//C } SF_TYPE;
enum tagSF_TYPE
{
SF_ERROR = 10,
SF_I1 = 16,
SF_I2 = 2,
SF_I4,
SF_I8 = 20,
SF_BSTR = 8,
SF_UNKNOWN = 13,
SF_DISPATCH = 9,
SF_VARIANT = 12,
SF_RECORD = 36,
SF_HAVEIID = 32781,
}
alias tagSF_TYPE SF_TYPE;
//C typedef struct _wireSAFEARRAY_UNION {
//C ULONG sfType;
//C union {
//C SAFEARR_BSTR BstrStr;
//C SAFEARR_UNKNOWN UnknownStr;
//C SAFEARR_DISPATCH DispatchStr;
//C SAFEARR_VARIANT VariantStr;
//C SAFEARR_BRECORD RecordStr;
//C SAFEARR_HAVEIID HaveIidStr;
//C BYTE_SIZEDARR ByteStr;
//C WORD_SIZEDARR WordStr;
//C DWORD_SIZEDARR LongStr;
//C HYPER_SIZEDARR HyperStr;
//C } u;
union _N186
{
SAFEARR_BSTR BstrStr;
SAFEARR_UNKNOWN UnknownStr;
SAFEARR_DISPATCH DispatchStr;
SAFEARR_VARIANT VariantStr;
SAFEARR_BRECORD RecordStr;
SAFEARR_HAVEIID HaveIidStr;
BYTE_SIZEDARR ByteStr;
WORD_SIZEDARR WordStr;
DWORD_SIZEDARR LongStr;
HYPER_SIZEDARR HyperStr;
}
//C } SAFEARRAYUNION;
struct _wireSAFEARRAY_UNION
{
ULONG sfType;
_N186 u;
}
alias _wireSAFEARRAY_UNION SAFEARRAYUNION;
//C typedef struct _wireSAFEARRAY {
//C USHORT cDims;
//C USHORT fFeatures;
//C ULONG cbElements;
//C ULONG cLocks;
//C SAFEARRAYUNION uArrayStructs;
//C SAFEARRAYBOUND rgsabound[1];
//C } *wireSAFEARRAY;
struct _wireSAFEARRAY
{
USHORT cDims;
USHORT fFeatures;
ULONG cbElements;
ULONG cLocks;
SAFEARRAYUNION uArrayStructs;
SAFEARRAYBOUND [1]rgsabound;
}
alias _wireSAFEARRAY *wireSAFEARRAY;
//C typedef wireSAFEARRAY *wirePSAFEARRAY;
alias wireSAFEARRAY *wirePSAFEARRAY;
//C typedef struct tagSAFEARRAY {
//C USHORT cDims;
//C USHORT fFeatures;
//C ULONG cbElements;
//C ULONG cLocks;
//C PVOID pvData;
//C SAFEARRAYBOUND rgsabound[1];
//C } SAFEARRAY;
struct tagSAFEARRAY
{
USHORT cDims;
USHORT fFeatures;
ULONG cbElements;
ULONG cLocks;
PVOID pvData;
SAFEARRAYBOUND [1]rgsabound;
}
alias tagSAFEARRAY SAFEARRAY;
//C typedef SAFEARRAY *LPSAFEARRAY;
alias SAFEARRAY *LPSAFEARRAY;
//C typedef struct tagVARIANT VARIANT;
alias tagVARIANT VARIANT;
//C struct tagVARIANT {
//C union {
//C struct {
//C VARTYPE vt;
//C WORD wReserved1;
//C WORD wReserved2;
//C WORD wReserved3;
//C union {
//C LONGLONG llVal;
//C LONG lVal;
//C BYTE bVal;
//C SHORT iVal;
//C FLOAT fltVal;
//C DOUBLE dblVal;
//C VARIANT_BOOL boolVal;
//C SCODE scode;
//C CY cyVal;
//C DATE date;
//C BSTR bstrVal;
//C IUnknown *punkVal;
//C IDispatch *pdispVal;
//C SAFEARRAY *parray;
//C BYTE *pbVal;
//C SHORT *piVal;
//C LONG *plVal;
//C LONGLONG *pllVal;
//C FLOAT *pfltVal;
//C DOUBLE *pdblVal;
//C VARIANT_BOOL *pboolVal;
//C SCODE *pscode;
//C CY *pcyVal;
//C DATE *pdate;
//C BSTR *pbstrVal;
//C IUnknown **ppunkVal;
//C IDispatch **ppdispVal;
//C SAFEARRAY **pparray;
//C VARIANT *pvarVal;
//C PVOID byref;
//C CHAR cVal;
//C USHORT uiVal;
//C ULONG ulVal;
//C ULONGLONG ullVal;
//C INT intVal;
//C UINT uintVal;
//C DECIMAL *pdecVal;
//C CHAR *pcVal;
//C USHORT *puiVal;
//C ULONG *pulVal;
//C ULONGLONG *pullVal;
//C INT *pintVal;
//C UINT *puintVal;
//C struct {
//C PVOID pvRecord;
//C IRecordInfo *pRecInfo;
//C } ;
struct _N190
{
PVOID pvRecord;
IRecordInfo *pRecInfo;
}
//C } ;
union _N189
{
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
BSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
SAFEARRAY *parray;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
SAFEARRAY **pparray;
VARIANT *pvarVal;
PVOID byref;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
PVOID pvRecord;
IRecordInfo *pRecInfo;
}
//C } ;
struct _N188
{
VARTYPE vt;
WORD wReserved1;
WORD wReserved2;
WORD wReserved3;
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
BSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
SAFEARRAY *parray;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
SAFEARRAY **pparray;
VARIANT *pvarVal;
PVOID byref;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
PVOID pvRecord;
IRecordInfo *pRecInfo;
}
//C DECIMAL decVal;
//C } ;
union _N187
{
VARTYPE vt;
WORD wReserved1;
WORD wReserved2;
WORD wReserved3;
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
BSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
SAFEARRAY *parray;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
SAFEARRAY **pparray;
VARIANT *pvarVal;
PVOID byref;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
PVOID pvRecord;
IRecordInfo *pRecInfo;
DECIMAL decVal;
}
//C };
struct tagVARIANT
{
VARTYPE vt;
WORD wReserved1;
WORD wReserved2;
WORD wReserved3;
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
BSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
SAFEARRAY *parray;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
SAFEARRAY **pparray;
VARIANT *pvarVal;
PVOID byref;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
PVOID pvRecord;
IRecordInfo *pRecInfo;
DECIMAL decVal;
}
//C typedef VARIANT *LPVARIANT;
alias VARIANT *LPVARIANT;
//C typedef VARIANT VARIANTARG;
alias VARIANT VARIANTARG;
//C typedef VARIANT *LPVARIANTARG;
alias VARIANT *LPVARIANTARG;
//C struct _wireBRECORD {
//C ULONG fFlags;
//C ULONG clSize;
//C IRecordInfo *pRecInfo;
//C byte *pRecord;
//C };
struct _wireBRECORD
{
ULONG fFlags;
ULONG clSize;
IRecordInfo *pRecInfo;
byte *pRecord;
}
//C struct _wireVARIANT {
//C DWORD clSize;
//C DWORD rpcReserved;
//C USHORT vt;
//C USHORT wReserved1;
//C USHORT wReserved2;
//C USHORT wReserved3;
//C union {
//C LONGLONG llVal;
//C LONG lVal;
//C BYTE bVal;
//C SHORT iVal;
//C FLOAT fltVal;
//C DOUBLE dblVal;
//C VARIANT_BOOL boolVal;
//C SCODE scode;
//C CY cyVal;
//C DATE date;
//C wireBSTR bstrVal;
//C IUnknown *punkVal;
//C IDispatch *pdispVal;
//C wirePSAFEARRAY parray;
//C wireBRECORD brecVal;
//C BYTE *pbVal;
//C SHORT *piVal;
//C LONG *plVal;
//C LONGLONG *pllVal;
//C FLOAT *pfltVal;
//C DOUBLE *pdblVal;
//C VARIANT_BOOL *pboolVal;
//C SCODE *pscode;
//C CY *pcyVal;
//C DATE *pdate;
//C wireBSTR *pbstrVal;
//C IUnknown **ppunkVal;
//C IDispatch **ppdispVal;
//C wirePSAFEARRAY *pparray;
//C wireVARIANT *pvarVal;
//C CHAR cVal;
//C USHORT uiVal;
//C ULONG ulVal;
//C ULONGLONG ullVal;
//C INT intVal;
//C UINT uintVal;
//C DECIMAL decVal;
//C DECIMAL *pdecVal;
//C CHAR *pcVal;
//C USHORT *puiVal;
//C ULONG *pulVal;
//C ULONGLONG *pullVal;
//C INT *pintVal;
//C UINT *puintVal;
//C } ;
union _N191
{
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
wireBSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
wirePSAFEARRAY parray;
wireBRECORD brecVal;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
wireBSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
wirePSAFEARRAY *pparray;
wireVARIANT *pvarVal;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL decVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
}
//C };
struct _wireVARIANT
{
DWORD clSize;
DWORD rpcReserved;
USHORT vt;
USHORT wReserved1;
USHORT wReserved2;
USHORT wReserved3;
LONGLONG llVal;
LONG lVal;
BYTE bVal;
SHORT iVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
wireBSTR bstrVal;
IUnknown *punkVal;
IDispatch *pdispVal;
wirePSAFEARRAY parray;
wireBRECORD brecVal;
BYTE *pbVal;
SHORT *piVal;
LONG *plVal;
LONGLONG *pllVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
wireBSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
wirePSAFEARRAY *pparray;
wireVARIANT *pvarVal;
CHAR cVal;
USHORT uiVal;
ULONG ulVal;
ULONGLONG ullVal;
INT intVal;
UINT uintVal;
DECIMAL decVal;
DECIMAL *pdecVal;
CHAR *pcVal;
USHORT *puiVal;
ULONG *pulVal;
ULONGLONG *pullVal;
INT *pintVal;
UINT *puintVal;
}
//C typedef LONG DISPID;
alias LONG DISPID;
//C typedef DISPID MEMBERID;
alias DISPID MEMBERID;
//C typedef DWORD HREFTYPE;
alias DWORD HREFTYPE;
//C typedef enum tagTYPEKIND {
//C TKIND_ENUM = 0,
//C TKIND_RECORD = 1,
//C TKIND_MODULE = 2,
//C TKIND_INTERFACE = 3,
//C TKIND_DISPATCH = 4,
//C TKIND_COCLASS = 5,
//C TKIND_ALIAS = 6,
//C TKIND_UNION = 7,
//C TKIND_MAX = 8
//C } TYPEKIND;
enum tagTYPEKIND
{
TKIND_ENUM,
TKIND_RECORD,
TKIND_MODULE,
TKIND_INTERFACE,
TKIND_DISPATCH,
TKIND_COCLASS,
TKIND_ALIAS,
TKIND_UNION,
TKIND_MAX,
}
alias tagTYPEKIND TYPEKIND;
//C typedef struct tagTYPEDESC {
//C union {
//C struct tagTYPEDESC *lptdesc;
//C struct tagARRAYDESC *lpadesc;
//C HREFTYPE hreftype;
//C } ;
union _N192
{
tagTYPEDESC *lptdesc;
tagARRAYDESC *lpadesc;
HREFTYPE hreftype;
}
//C VARTYPE vt;
//C } TYPEDESC;
struct tagTYPEDESC
{
tagTYPEDESC *lptdesc;
tagARRAYDESC *lpadesc;
HREFTYPE hreftype;
VARTYPE vt;
}
alias tagTYPEDESC TYPEDESC;
//C typedef struct tagARRAYDESC {
//C TYPEDESC tdescElem;
//C USHORT cDims;
//C SAFEARRAYBOUND rgbounds[1];
//C } ARRAYDESC;
struct tagARRAYDESC
{
TYPEDESC tdescElem;
USHORT cDims;
SAFEARRAYBOUND [1]rgbounds;
}
alias tagARRAYDESC ARRAYDESC;
//C typedef struct tagPARAMDESCEX {
//C ULONG cBytes;
//C VARIANTARG varDefaultValue;
//C } PARAMDESCEX;
struct tagPARAMDESCEX
{
ULONG cBytes;
VARIANTARG varDefaultValue;
}
alias tagPARAMDESCEX PARAMDESCEX;
//C typedef struct tagPARAMDESCEX *LPPARAMDESCEX;
alias tagPARAMDESCEX *LPPARAMDESCEX;
//C typedef struct tagPARAMDESC {
//C LPPARAMDESCEX pparamdescex;
//C USHORT wParamFlags;
//C } PARAMDESC;
struct tagPARAMDESC
{
LPPARAMDESCEX pparamdescex;
USHORT wParamFlags;
}
alias tagPARAMDESC PARAMDESC;
//C typedef struct tagPARAMDESC *LPPARAMDESC;
alias tagPARAMDESC *LPPARAMDESC;
//C typedef struct tagIDLDESC {
//C ULONG_PTR dwReserved;
//C USHORT wIDLFlags;
//C } IDLDESC;
struct tagIDLDESC
{
ULONG_PTR dwReserved;
USHORT wIDLFlags;
}
alias tagIDLDESC IDLDESC;
//C typedef struct tagIDLDESC *LPIDLDESC;
alias tagIDLDESC *LPIDLDESC;
//C typedef struct tagELEMDESC {
//C TYPEDESC tdesc;
//C union {
//C IDLDESC idldesc;
//C PARAMDESC paramdesc;
//C } ;
union _N193
{
IDLDESC idldesc;
PARAMDESC paramdesc;
}
//C } ELEMDESC,*LPELEMDESC;
struct tagELEMDESC
{
TYPEDESC tdesc;
IDLDESC idldesc;
PARAMDESC paramdesc;
}
alias tagELEMDESC ELEMDESC;
alias tagELEMDESC *LPELEMDESC;
//C typedef struct tagTYPEATTR {
//C GUID guid;
//C LCID lcid;
//C DWORD dwReserved;
//C MEMBERID memidConstructor;
//C MEMBERID memidDestructor;
//C LPOLESTR lpstrSchema;
//C ULONG cbSizeInstance;
//C TYPEKIND typekind;
//C WORD cFuncs;
//C WORD cVars;
//C WORD cImplTypes;
//C WORD cbSizeVft;
//C WORD cbAlignment;
//C WORD wTypeFlags;
//C WORD wMajorVerNum;
//C WORD wMinorVerNum;
//C TYPEDESC tdescAlias;
//C IDLDESC idldescType;
//C } TYPEATTR;
struct tagTYPEATTR
{
GUID guid;
LCID lcid;
DWORD dwReserved;
MEMBERID memidConstructor;
MEMBERID memidDestructor;
LPOLESTR lpstrSchema;
ULONG cbSizeInstance;
TYPEKIND typekind;
WORD cFuncs;
WORD cVars;
WORD cImplTypes;
WORD cbSizeVft;
WORD cbAlignment;
WORD wTypeFlags;
WORD wMajorVerNum;
WORD wMinorVerNum;
TYPEDESC tdescAlias;
IDLDESC idldescType;
}
alias tagTYPEATTR TYPEATTR;
//C typedef struct tagTYPEATTR *LPTYPEATTR;
alias tagTYPEATTR *LPTYPEATTR;
//C typedef struct tagDISPPARAMS {
//C VARIANTARG *rgvarg;
//C DISPID *rgdispidNamedArgs;
//C UINT cArgs;
//C UINT cNamedArgs;
//C } DISPPARAMS;
struct tagDISPPARAMS
{
VARIANTARG *rgvarg;
DISPID *rgdispidNamedArgs;
UINT cArgs;
UINT cNamedArgs;
}
alias tagDISPPARAMS DISPPARAMS;
//C typedef struct tagEXCEPINFO {
//C WORD wCode;
//C WORD wReserved;
//C BSTR bstrSource;
//C BSTR bstrDescription;
//C BSTR bstrHelpFile;
//C DWORD dwHelpContext;
//C PVOID pvReserved;
//C HRESULT ( *pfnDeferredFillIn)(struct tagEXCEPINFO *);
//C SCODE scode;
//C } EXCEPINFO,*LPEXCEPINFO;
struct tagEXCEPINFO
{
WORD wCode;
WORD wReserved;
BSTR bstrSource;
BSTR bstrDescription;
BSTR bstrHelpFile;
DWORD dwHelpContext;
PVOID pvReserved;
HRESULT function(tagEXCEPINFO *)pfnDeferredFillIn;
SCODE scode;
}
alias tagEXCEPINFO EXCEPINFO;
alias tagEXCEPINFO *LPEXCEPINFO;
//C typedef enum tagCALLCONV {
//C CC_FASTCALL = 0,
//C CC_CDECL = 1,
//C CC_MSCPASCAL = 2,
//C CC_PASCAL = CC_MSCPASCAL,
//C CC_MACPASCAL = 3,
//C CC_STDCALL = 4,
//C CC_FPFASTCALL = 5,
//C CC_SYSCALL = 6,
//C CC_MPWCDECL = 7,
//C CC_MPWPASCAL = 8,
//C CC_MAX = 9
//C } CALLCONV;
enum tagCALLCONV
{
CC_FASTCALL,
CC_CDECL,
CC_MSCPASCAL,
CC_PASCAL = 2,
CC_MACPASCAL,
CC_STDCALL,
CC_FPFASTCALL,
CC_SYSCALL,
CC_MPWCDECL,
CC_MPWPASCAL,
CC_MAX,
}
alias tagCALLCONV CALLCONV;
//C typedef enum tagFUNCKIND {
//C FUNC_VIRTUAL = 0,
//C FUNC_PUREVIRTUAL = 1,
//C FUNC_NONVIRTUAL = 2,
//C FUNC_STATIC = 3,
//C FUNC_DISPATCH = 4
//C } FUNCKIND;
enum tagFUNCKIND
{
FUNC_VIRTUAL,
FUNC_PUREVIRTUAL,
FUNC_NONVIRTUAL,
FUNC_STATIC,
FUNC_DISPATCH,
}
alias tagFUNCKIND FUNCKIND;
//C typedef enum tagINVOKEKIND {
//C INVOKE_FUNC = 1,
//C INVOKE_PROPERTYGET = 2,
//C INVOKE_PROPERTYPUT = 4,
//C INVOKE_PROPERTYPUTREF = 8
//C } INVOKEKIND;
enum tagINVOKEKIND
{
INVOKE_FUNC = 1,
INVOKE_PROPERTYGET,
INVOKE_PROPERTYPUT = 4,
INVOKE_PROPERTYPUTREF = 8,
}
alias tagINVOKEKIND INVOKEKIND;
//C typedef struct tagFUNCDESC {
//C MEMBERID memid;
//C SCODE *lprgscode;
//C ELEMDESC *lprgelemdescParam;
//C FUNCKIND funckind;
//C INVOKEKIND invkind;
//C CALLCONV callconv;
//C SHORT cParams;
//C SHORT cParamsOpt;
//C SHORT oVft;
//C SHORT cScodes;
//C ELEMDESC elemdescFunc;
//C WORD wFuncFlags;
//C } FUNCDESC;
struct tagFUNCDESC
{
MEMBERID memid;
SCODE *lprgscode;
ELEMDESC *lprgelemdescParam;
FUNCKIND funckind;
INVOKEKIND invkind;
CALLCONV callconv;
SHORT cParams;
SHORT cParamsOpt;
SHORT oVft;
SHORT cScodes;
ELEMDESC elemdescFunc;
WORD wFuncFlags;
}
alias tagFUNCDESC FUNCDESC;
//C typedef struct tagFUNCDESC *LPFUNCDESC;
alias tagFUNCDESC *LPFUNCDESC;
//C typedef enum tagVARKIND {
//C VAR_PERINSTANCE = 0,
//C VAR_STATIC = 1,
//C VAR_CONST = 2,
//C VAR_DISPATCH = 3
//C } VARKIND;
enum tagVARKIND
{
VAR_PERINSTANCE,
VAR_STATIC,
VAR_CONST,
VAR_DISPATCH,
}
alias tagVARKIND VARKIND;
//C typedef struct tagVARDESC {
//C MEMBERID memid;
//C LPOLESTR lpstrSchema;
//C union {
//C ULONG oInst;
//C VARIANT *lpvarValue;
//C } ;
union _N194
{
ULONG oInst;
VARIANT *lpvarValue;
}
//C ELEMDESC elemdescVar;
//C WORD wVarFlags;
//C VARKIND varkind;
//C } VARDESC;
struct tagVARDESC
{
MEMBERID memid;
LPOLESTR lpstrSchema;
ULONG oInst;
VARIANT *lpvarValue;
ELEMDESC elemdescVar;
WORD wVarFlags;
VARKIND varkind;
}
alias tagVARDESC VARDESC;
//C typedef struct tagVARDESC *LPVARDESC;
alias tagVARDESC *LPVARDESC;
//C typedef enum tagTYPEFLAGS {
//C TYPEFLAG_FAPPOBJECT = 0x1,TYPEFLAG_FCANCREATE = 0x2,TYPEFLAG_FLICENSED = 0x4,
//C TYPEFLAG_FPREDECLID = 0x8,TYPEFLAG_FHIDDEN = 0x10,
//C TYPEFLAG_FCONTROL = 0x20,TYPEFLAG_FDUAL = 0x40,TYPEFLAG_FNONEXTENSIBLE = 0x80,
//C TYPEFLAG_FOLEAUTOMATION = 0x100,TYPEFLAG_FRESTRICTED = 0x200,
//C TYPEFLAG_FAGGREGATABLE = 0x400,TYPEFLAG_FREPLACEABLE = 0x800,
//C TYPEFLAG_FDISPATCHABLE = 0x1000,TYPEFLAG_FREVERSEBIND = 0x2000,
//C TYPEFLAG_FPROXY = 0x4000
//C } TYPEFLAGS;
enum tagTYPEFLAGS
{
TYPEFLAG_FAPPOBJECT = 1,
TYPEFLAG_FCANCREATE,
TYPEFLAG_FLICENSED = 4,
TYPEFLAG_FPREDECLID = 8,
TYPEFLAG_FHIDDEN = 16,
TYPEFLAG_FCONTROL = 32,
TYPEFLAG_FDUAL = 64,
TYPEFLAG_FNONEXTENSIBLE = 128,
TYPEFLAG_FOLEAUTOMATION = 256,
TYPEFLAG_FRESTRICTED = 512,
TYPEFLAG_FAGGREGATABLE = 1024,
TYPEFLAG_FREPLACEABLE = 2048,
TYPEFLAG_FDISPATCHABLE = 4096,
TYPEFLAG_FREVERSEBIND = 8192,
TYPEFLAG_FPROXY = 16384,
}
alias tagTYPEFLAGS TYPEFLAGS;
//C typedef enum tagFUNCFLAGS {
//C FUNCFLAG_FRESTRICTED = 0x1,FUNCFLAG_FSOURCE = 0x2,FUNCFLAG_FBINDABLE = 0x4,
//C FUNCFLAG_FREQUESTEDIT = 0x8,FUNCFLAG_FDISPLAYBIND = 0x10,
//C FUNCFLAG_FDEFAULTBIND = 0x20,FUNCFLAG_FHIDDEN = 0x40,
//C FUNCFLAG_FUSESGETLASTERROR = 0x80,FUNCFLAG_FDEFAULTCOLLELEM = 0x100,
//C FUNCFLAG_FUIDEFAULT = 0x200,
//C FUNCFLAG_FNONBROWSABLE = 0x400,FUNCFLAG_FREPLACEABLE = 0x800,
//C FUNCFLAG_FIMMEDIATEBIND = 0x1000
//C } FUNCFLAGS;
enum tagFUNCFLAGS
{
FUNCFLAG_FRESTRICTED = 1,
FUNCFLAG_FSOURCE,
FUNCFLAG_FBINDABLE = 4,
FUNCFLAG_FREQUESTEDIT = 8,
FUNCFLAG_FDISPLAYBIND = 16,
FUNCFLAG_FDEFAULTBIND = 32,
FUNCFLAG_FHIDDEN = 64,
FUNCFLAG_FUSESGETLASTERROR = 128,
FUNCFLAG_FDEFAULTCOLLELEM = 256,
FUNCFLAG_FUIDEFAULT = 512,
FUNCFLAG_FNONBROWSABLE = 1024,
FUNCFLAG_FREPLACEABLE = 2048,
FUNCFLAG_FIMMEDIATEBIND = 4096,
}
alias tagFUNCFLAGS FUNCFLAGS;
//C typedef enum tagVARFLAGS {
//C VARFLAG_FREADONLY = 0x1,VARFLAG_FSOURCE = 0x2,VARFLAG_FBINDABLE = 0x4,
//C VARFLAG_FREQUESTEDIT = 0x8,VARFLAG_FDISPLAYBIND = 0x10,
//C VARFLAG_FDEFAULTBIND = 0x20,VARFLAG_FHIDDEN = 0x40,VARFLAG_FRESTRICTED = 0x80,
//C VARFLAG_FDEFAULTCOLLELEM = 0x100,VARFLAG_FUIDEFAULT = 0x200,
//C VARFLAG_FNONBROWSABLE = 0x400,VARFLAG_FREPLACEABLE = 0x800,VARFLAG_FIMMEDIATEBIND = 0x1000
//C } VARFLAGS;
enum tagVARFLAGS
{
VARFLAG_FREADONLY = 1,
VARFLAG_FSOURCE,
VARFLAG_FBINDABLE = 4,
VARFLAG_FREQUESTEDIT = 8,
VARFLAG_FDISPLAYBIND = 16,
VARFLAG_FDEFAULTBIND = 32,
VARFLAG_FHIDDEN = 64,
VARFLAG_FRESTRICTED = 128,
VARFLAG_FDEFAULTCOLLELEM = 256,
VARFLAG_FUIDEFAULT = 512,
VARFLAG_FNONBROWSABLE = 1024,
VARFLAG_FREPLACEABLE = 2048,
VARFLAG_FIMMEDIATEBIND = 4096,
}
alias tagVARFLAGS VARFLAGS;
//C typedef struct tagCLEANLOCALSTORAGE {
//C IUnknown *pInterface;
//C PVOID pStorage;
//C DWORD flags;
//C } CLEANLOCALSTORAGE;
struct tagCLEANLOCALSTORAGE
{
IUnknown *pInterface;
PVOID pStorage;
DWORD flags;
}
alias tagCLEANLOCALSTORAGE CLEANLOCALSTORAGE;
//C typedef struct tagCUSTDATAITEM {
//C GUID guid;
//C VARIANTARG varValue;
//C } CUSTDATAITEM;
struct tagCUSTDATAITEM
{
GUID guid;
VARIANTARG varValue;
}
alias tagCUSTDATAITEM CUSTDATAITEM;
//C typedef struct tagCUSTDATAITEM *LPCUSTDATAITEM;
alias tagCUSTDATAITEM *LPCUSTDATAITEM;
//C typedef struct tagCUSTDATA {
//C DWORD cCustData;
//C LPCUSTDATAITEM prgCustData;
//C } CUSTDATA;
struct tagCUSTDATA
{
DWORD cCustData;
LPCUSTDATAITEM prgCustData;
}
alias tagCUSTDATA CUSTDATA;
//C typedef struct tagCUSTDATA *LPCUSTDATA;
alias tagCUSTDATA *LPCUSTDATA;
//C typedef ICreateTypeInfo *LPCREATETYPEINFO;
alias ICreateTypeInfo *LPCREATETYPEINFO;
//C typedef struct ICreateTypeInfoVtbl {
//C HRESULT ( *QueryInterface)(ICreateTypeInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICreateTypeInfo *This);
//C ULONG ( *Release)(ICreateTypeInfo *This);
//C HRESULT ( *SetGuid)(ICreateTypeInfo *This,const GUID *const guid);
//C HRESULT ( *SetTypeFlags)(ICreateTypeInfo *This,UINT uTypeFlags);
//C HRESULT ( *SetDocString)(ICreateTypeInfo *This,LPOLESTR pStrDoc);
//C HRESULT ( *SetHelpContext)(ICreateTypeInfo *This,DWORD dwHelpContext);
//C HRESULT ( *SetVersion)(ICreateTypeInfo *This,WORD wMajorVerNum,WORD wMinorVerNum);
//C HRESULT ( *AddRefTypeInfo)(ICreateTypeInfo *This,ITypeInfo *pTInfo,HREFTYPE *phRefType);
//C HRESULT ( *AddFuncDesc)(ICreateTypeInfo *This,UINT index,FUNCDESC *pFuncDesc);
//C HRESULT ( *AddImplType)(ICreateTypeInfo *This,UINT index,HREFTYPE hRefType);
//C HRESULT ( *SetImplTypeFlags)(ICreateTypeInfo *This,UINT index,INT implTypeFlags);
//C HRESULT ( *SetAlignment)(ICreateTypeInfo *This,WORD cbAlignment);
//C HRESULT ( *SetSchema)(ICreateTypeInfo *This,LPOLESTR pStrSchema);
//C HRESULT ( *AddVarDesc)(ICreateTypeInfo *This,UINT index,VARDESC *pVarDesc);
//C HRESULT ( *SetFuncAndParamNames)(ICreateTypeInfo *This,UINT index,LPOLESTR *rgszNames,UINT cNames);
//C HRESULT ( *SetVarName)(ICreateTypeInfo *This,UINT index,LPOLESTR szName);
//C HRESULT ( *SetTypeDescAlias)(ICreateTypeInfo *This,TYPEDESC *pTDescAlias);
//C HRESULT ( *DefineFuncAsDllEntry)(ICreateTypeInfo *This,UINT index,LPOLESTR szDllName,LPOLESTR szProcName);
//C HRESULT ( *SetFuncDocString)(ICreateTypeInfo *This,UINT index,LPOLESTR szDocString);
//C HRESULT ( *SetVarDocString)(ICreateTypeInfo *This,UINT index,LPOLESTR szDocString);
//C HRESULT ( *SetFuncHelpContext)(ICreateTypeInfo *This,UINT index,DWORD dwHelpContext);
//C HRESULT ( *SetVarHelpContext)(ICreateTypeInfo *This,UINT index,DWORD dwHelpContext);
//C HRESULT ( *SetMops)(ICreateTypeInfo *This,UINT index,BSTR bstrMops);
//C HRESULT ( *SetTypeIdldesc)(ICreateTypeInfo *This,IDLDESC *pIdlDesc);
//C HRESULT ( *LayOut)(ICreateTypeInfo *This);
//C } ICreateTypeInfoVtbl;
struct ICreateTypeInfoVtbl
{
HRESULT function(ICreateTypeInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICreateTypeInfo *This)AddRef;
ULONG function(ICreateTypeInfo *This)Release;
HRESULT function(ICreateTypeInfo *This, GUID *guid)SetGuid;
HRESULT function(ICreateTypeInfo *This, UINT uTypeFlags)SetTypeFlags;
HRESULT function(ICreateTypeInfo *This, LPOLESTR pStrDoc)SetDocString;
HRESULT function(ICreateTypeInfo *This, DWORD dwHelpContext)SetHelpContext;
HRESULT function(ICreateTypeInfo *This, WORD wMajorVerNum, WORD wMinorVerNum)SetVersion;
HRESULT function(ICreateTypeInfo *This, ITypeInfo *pTInfo, HREFTYPE *phRefType)AddRefTypeInfo;
HRESULT function(ICreateTypeInfo *This, UINT index, FUNCDESC *pFuncDesc)AddFuncDesc;
HRESULT function(ICreateTypeInfo *This, UINT index, HREFTYPE hRefType)AddImplType;
HRESULT function(ICreateTypeInfo *This, UINT index, INT implTypeFlags)SetImplTypeFlags;
HRESULT function(ICreateTypeInfo *This, WORD cbAlignment)SetAlignment;
HRESULT function(ICreateTypeInfo *This, LPOLESTR pStrSchema)SetSchema;
HRESULT function(ICreateTypeInfo *This, UINT index, VARDESC *pVarDesc)AddVarDesc;
HRESULT function(ICreateTypeInfo *This, UINT index, LPOLESTR *rgszNames, UINT cNames)SetFuncAndParamNames;
HRESULT function(ICreateTypeInfo *This, UINT index, LPOLESTR szName)SetVarName;
HRESULT function(ICreateTypeInfo *This, TYPEDESC *pTDescAlias)SetTypeDescAlias;
HRESULT function(ICreateTypeInfo *This, UINT index, LPOLESTR szDllName, LPOLESTR szProcName)DefineFuncAsDllEntry;
HRESULT function(ICreateTypeInfo *This, UINT index, LPOLESTR szDocString)SetFuncDocString;
HRESULT function(ICreateTypeInfo *This, UINT index, LPOLESTR szDocString)SetVarDocString;
HRESULT function(ICreateTypeInfo *This, UINT index, DWORD dwHelpContext)SetFuncHelpContext;
HRESULT function(ICreateTypeInfo *This, UINT index, DWORD dwHelpContext)SetVarHelpContext;
HRESULT function(ICreateTypeInfo *This, UINT index, BSTR bstrMops)SetMops;
HRESULT function(ICreateTypeInfo *This, IDLDESC *pIdlDesc)SetTypeIdldesc;
HRESULT function(ICreateTypeInfo *This)LayOut;
}
//C struct ICreateTypeInfo {
//C struct ICreateTypeInfoVtbl *lpVtbl;
//C };
struct ICreateTypeInfo
{
ICreateTypeInfoVtbl *lpVtbl;
}
//C HRESULT ICreateTypeInfo_SetGuid_Proxy(ICreateTypeInfo *This,const GUID *const guid);
HRESULT ICreateTypeInfo_SetGuid_Proxy(ICreateTypeInfo *This, GUID *guid);
//C void ICreateTypeInfo_SetGuid_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetGuid_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetTypeFlags_Proxy(ICreateTypeInfo *This,UINT uTypeFlags);
HRESULT ICreateTypeInfo_SetTypeFlags_Proxy(ICreateTypeInfo *This, UINT uTypeFlags);
//C void ICreateTypeInfo_SetTypeFlags_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetTypeFlags_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetDocString_Proxy(ICreateTypeInfo *This,LPOLESTR pStrDoc);
HRESULT ICreateTypeInfo_SetDocString_Proxy(ICreateTypeInfo *This, LPOLESTR pStrDoc);
//C void ICreateTypeInfo_SetDocString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetDocString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetHelpContext_Proxy(ICreateTypeInfo *This,DWORD dwHelpContext);
HRESULT ICreateTypeInfo_SetHelpContext_Proxy(ICreateTypeInfo *This, DWORD dwHelpContext);
//C void ICreateTypeInfo_SetHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetVersion_Proxy(ICreateTypeInfo *This,WORD wMajorVerNum,WORD wMinorVerNum);
HRESULT ICreateTypeInfo_SetVersion_Proxy(ICreateTypeInfo *This, WORD wMajorVerNum, WORD wMinorVerNum);
//C void ICreateTypeInfo_SetVersion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetVersion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_AddRefTypeInfo_Proxy(ICreateTypeInfo *This,ITypeInfo *pTInfo,HREFTYPE *phRefType);
HRESULT ICreateTypeInfo_AddRefTypeInfo_Proxy(ICreateTypeInfo *This, ITypeInfo *pTInfo, HREFTYPE *phRefType);
//C void ICreateTypeInfo_AddRefTypeInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_AddRefTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_AddFuncDesc_Proxy(ICreateTypeInfo *This,UINT index,FUNCDESC *pFuncDesc);
HRESULT ICreateTypeInfo_AddFuncDesc_Proxy(ICreateTypeInfo *This, UINT index, FUNCDESC *pFuncDesc);
//C void ICreateTypeInfo_AddFuncDesc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_AddFuncDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_AddImplType_Proxy(ICreateTypeInfo *This,UINT index,HREFTYPE hRefType);
HRESULT ICreateTypeInfo_AddImplType_Proxy(ICreateTypeInfo *This, UINT index, HREFTYPE hRefType);
//C void ICreateTypeInfo_AddImplType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_AddImplType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetImplTypeFlags_Proxy(ICreateTypeInfo *This,UINT index,INT implTypeFlags);
HRESULT ICreateTypeInfo_SetImplTypeFlags_Proxy(ICreateTypeInfo *This, UINT index, INT implTypeFlags);
//C void ICreateTypeInfo_SetImplTypeFlags_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetImplTypeFlags_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetAlignment_Proxy(ICreateTypeInfo *This,WORD cbAlignment);
HRESULT ICreateTypeInfo_SetAlignment_Proxy(ICreateTypeInfo *This, WORD cbAlignment);
//C void ICreateTypeInfo_SetAlignment_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetAlignment_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetSchema_Proxy(ICreateTypeInfo *This,LPOLESTR pStrSchema);
HRESULT ICreateTypeInfo_SetSchema_Proxy(ICreateTypeInfo *This, LPOLESTR pStrSchema);
//C void ICreateTypeInfo_SetSchema_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetSchema_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_AddVarDesc_Proxy(ICreateTypeInfo *This,UINT index,VARDESC *pVarDesc);
HRESULT ICreateTypeInfo_AddVarDesc_Proxy(ICreateTypeInfo *This, UINT index, VARDESC *pVarDesc);
//C void ICreateTypeInfo_AddVarDesc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_AddVarDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetFuncAndParamNames_Proxy(ICreateTypeInfo *This,UINT index,LPOLESTR *rgszNames,UINT cNames);
HRESULT ICreateTypeInfo_SetFuncAndParamNames_Proxy(ICreateTypeInfo *This, UINT index, LPOLESTR *rgszNames, UINT cNames);
//C void ICreateTypeInfo_SetFuncAndParamNames_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetFuncAndParamNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetVarName_Proxy(ICreateTypeInfo *This,UINT index,LPOLESTR szName);
HRESULT ICreateTypeInfo_SetVarName_Proxy(ICreateTypeInfo *This, UINT index, LPOLESTR szName);
//C void ICreateTypeInfo_SetVarName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetVarName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetTypeDescAlias_Proxy(ICreateTypeInfo *This,TYPEDESC *pTDescAlias);
HRESULT ICreateTypeInfo_SetTypeDescAlias_Proxy(ICreateTypeInfo *This, TYPEDESC *pTDescAlias);
//C void ICreateTypeInfo_SetTypeDescAlias_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetTypeDescAlias_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_DefineFuncAsDllEntry_Proxy(ICreateTypeInfo *This,UINT index,LPOLESTR szDllName,LPOLESTR szProcName);
HRESULT ICreateTypeInfo_DefineFuncAsDllEntry_Proxy(ICreateTypeInfo *This, UINT index, LPOLESTR szDllName, LPOLESTR szProcName);
//C void ICreateTypeInfo_DefineFuncAsDllEntry_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_DefineFuncAsDllEntry_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetFuncDocString_Proxy(ICreateTypeInfo *This,UINT index,LPOLESTR szDocString);
HRESULT ICreateTypeInfo_SetFuncDocString_Proxy(ICreateTypeInfo *This, UINT index, LPOLESTR szDocString);
//C void ICreateTypeInfo_SetFuncDocString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetFuncDocString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetVarDocString_Proxy(ICreateTypeInfo *This,UINT index,LPOLESTR szDocString);
HRESULT ICreateTypeInfo_SetVarDocString_Proxy(ICreateTypeInfo *This, UINT index, LPOLESTR szDocString);
//C void ICreateTypeInfo_SetVarDocString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetVarDocString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetFuncHelpContext_Proxy(ICreateTypeInfo *This,UINT index,DWORD dwHelpContext);
HRESULT ICreateTypeInfo_SetFuncHelpContext_Proxy(ICreateTypeInfo *This, UINT index, DWORD dwHelpContext);
//C void ICreateTypeInfo_SetFuncHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetFuncHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetVarHelpContext_Proxy(ICreateTypeInfo *This,UINT index,DWORD dwHelpContext);
HRESULT ICreateTypeInfo_SetVarHelpContext_Proxy(ICreateTypeInfo *This, UINT index, DWORD dwHelpContext);
//C void ICreateTypeInfo_SetVarHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetVarHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetMops_Proxy(ICreateTypeInfo *This,UINT index,BSTR bstrMops);
HRESULT ICreateTypeInfo_SetMops_Proxy(ICreateTypeInfo *This, UINT index, BSTR bstrMops);
//C void ICreateTypeInfo_SetMops_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetMops_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_SetTypeIdldesc_Proxy(ICreateTypeInfo *This,IDLDESC *pIdlDesc);
HRESULT ICreateTypeInfo_SetTypeIdldesc_Proxy(ICreateTypeInfo *This, IDLDESC *pIdlDesc);
//C void ICreateTypeInfo_SetTypeIdldesc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_SetTypeIdldesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo_LayOut_Proxy(ICreateTypeInfo *This);
HRESULT ICreateTypeInfo_LayOut_Proxy(ICreateTypeInfo *This);
//C void ICreateTypeInfo_LayOut_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo_LayOut_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ICreateTypeInfo2 *LPCREATETYPEINFO2;
alias ICreateTypeInfo2 *LPCREATETYPEINFO2;
//C typedef struct ICreateTypeInfo2Vtbl {
//C HRESULT ( *QueryInterface)(ICreateTypeInfo2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICreateTypeInfo2 *This);
//C ULONG ( *Release)(ICreateTypeInfo2 *This);
//C HRESULT ( *SetGuid)(ICreateTypeInfo2 *This,const GUID *const guid);
//C HRESULT ( *SetTypeFlags)(ICreateTypeInfo2 *This,UINT uTypeFlags);
//C HRESULT ( *SetDocString)(ICreateTypeInfo2 *This,LPOLESTR pStrDoc);
//C HRESULT ( *SetHelpContext)(ICreateTypeInfo2 *This,DWORD dwHelpContext);
//C HRESULT ( *SetVersion)(ICreateTypeInfo2 *This,WORD wMajorVerNum,WORD wMinorVerNum);
//C HRESULT ( *AddRefTypeInfo)(ICreateTypeInfo2 *This,ITypeInfo *pTInfo,HREFTYPE *phRefType);
//C HRESULT ( *AddFuncDesc)(ICreateTypeInfo2 *This,UINT index,FUNCDESC *pFuncDesc);
//C HRESULT ( *AddImplType)(ICreateTypeInfo2 *This,UINT index,HREFTYPE hRefType);
//C HRESULT ( *SetImplTypeFlags)(ICreateTypeInfo2 *This,UINT index,INT implTypeFlags);
//C HRESULT ( *SetAlignment)(ICreateTypeInfo2 *This,WORD cbAlignment);
//C HRESULT ( *SetSchema)(ICreateTypeInfo2 *This,LPOLESTR pStrSchema);
//C HRESULT ( *AddVarDesc)(ICreateTypeInfo2 *This,UINT index,VARDESC *pVarDesc);
//C HRESULT ( *SetFuncAndParamNames)(ICreateTypeInfo2 *This,UINT index,LPOLESTR *rgszNames,UINT cNames);
//C HRESULT ( *SetVarName)(ICreateTypeInfo2 *This,UINT index,LPOLESTR szName);
//C HRESULT ( *SetTypeDescAlias)(ICreateTypeInfo2 *This,TYPEDESC *pTDescAlias);
//C HRESULT ( *DefineFuncAsDllEntry)(ICreateTypeInfo2 *This,UINT index,LPOLESTR szDllName,LPOLESTR szProcName);
//C HRESULT ( *SetFuncDocString)(ICreateTypeInfo2 *This,UINT index,LPOLESTR szDocString);
//C HRESULT ( *SetVarDocString)(ICreateTypeInfo2 *This,UINT index,LPOLESTR szDocString);
//C HRESULT ( *SetFuncHelpContext)(ICreateTypeInfo2 *This,UINT index,DWORD dwHelpContext);
//C HRESULT ( *SetVarHelpContext)(ICreateTypeInfo2 *This,UINT index,DWORD dwHelpContext);
//C HRESULT ( *SetMops)(ICreateTypeInfo2 *This,UINT index,BSTR bstrMops);
//C HRESULT ( *SetTypeIdldesc)(ICreateTypeInfo2 *This,IDLDESC *pIdlDesc);
//C HRESULT ( *LayOut)(ICreateTypeInfo2 *This);
//C HRESULT ( *DeleteFuncDesc)(ICreateTypeInfo2 *This,UINT index);
//C HRESULT ( *DeleteFuncDescByMemId)(ICreateTypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind);
//C HRESULT ( *DeleteVarDesc)(ICreateTypeInfo2 *This,UINT index);
//C HRESULT ( *DeleteVarDescByMemId)(ICreateTypeInfo2 *This,MEMBERID memid);
//C HRESULT ( *DeleteImplType)(ICreateTypeInfo2 *This,UINT index);
//C HRESULT ( *SetCustData)(ICreateTypeInfo2 *This,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetFuncCustData)(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetParamCustData)(ICreateTypeInfo2 *This,UINT indexFunc,UINT indexParam,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetVarCustData)(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetImplTypeCustData)(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetHelpStringContext)(ICreateTypeInfo2 *This,ULONG dwHelpStringContext);
//C HRESULT ( *SetFuncHelpStringContext)(ICreateTypeInfo2 *This,UINT index,ULONG dwHelpStringContext);
//C HRESULT ( *SetVarHelpStringContext)(ICreateTypeInfo2 *This,UINT index,ULONG dwHelpStringContext);
//C HRESULT ( *Invalidate)(ICreateTypeInfo2 *This);
//C HRESULT ( *SetName)(ICreateTypeInfo2 *This,LPOLESTR szName);
//C } ICreateTypeInfo2Vtbl;
struct ICreateTypeInfo2Vtbl
{
HRESULT function(ICreateTypeInfo2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICreateTypeInfo2 *This)AddRef;
ULONG function(ICreateTypeInfo2 *This)Release;
HRESULT function(ICreateTypeInfo2 *This, GUID *guid)SetGuid;
HRESULT function(ICreateTypeInfo2 *This, UINT uTypeFlags)SetTypeFlags;
HRESULT function(ICreateTypeInfo2 *This, LPOLESTR pStrDoc)SetDocString;
HRESULT function(ICreateTypeInfo2 *This, DWORD dwHelpContext)SetHelpContext;
HRESULT function(ICreateTypeInfo2 *This, WORD wMajorVerNum, WORD wMinorVerNum)SetVersion;
HRESULT function(ICreateTypeInfo2 *This, ITypeInfo *pTInfo, HREFTYPE *phRefType)AddRefTypeInfo;
HRESULT function(ICreateTypeInfo2 *This, UINT index, FUNCDESC *pFuncDesc)AddFuncDesc;
HRESULT function(ICreateTypeInfo2 *This, UINT index, HREFTYPE hRefType)AddImplType;
HRESULT function(ICreateTypeInfo2 *This, UINT index, INT implTypeFlags)SetImplTypeFlags;
HRESULT function(ICreateTypeInfo2 *This, WORD cbAlignment)SetAlignment;
HRESULT function(ICreateTypeInfo2 *This, LPOLESTR pStrSchema)SetSchema;
HRESULT function(ICreateTypeInfo2 *This, UINT index, VARDESC *pVarDesc)AddVarDesc;
HRESULT function(ICreateTypeInfo2 *This, UINT index, LPOLESTR *rgszNames, UINT cNames)SetFuncAndParamNames;
HRESULT function(ICreateTypeInfo2 *This, UINT index, LPOLESTR szName)SetVarName;
HRESULT function(ICreateTypeInfo2 *This, TYPEDESC *pTDescAlias)SetTypeDescAlias;
HRESULT function(ICreateTypeInfo2 *This, UINT index, LPOLESTR szDllName, LPOLESTR szProcName)DefineFuncAsDllEntry;
HRESULT function(ICreateTypeInfo2 *This, UINT index, LPOLESTR szDocString)SetFuncDocString;
HRESULT function(ICreateTypeInfo2 *This, UINT index, LPOLESTR szDocString)SetVarDocString;
HRESULT function(ICreateTypeInfo2 *This, UINT index, DWORD dwHelpContext)SetFuncHelpContext;
HRESULT function(ICreateTypeInfo2 *This, UINT index, DWORD dwHelpContext)SetVarHelpContext;
HRESULT function(ICreateTypeInfo2 *This, UINT index, BSTR bstrMops)SetMops;
HRESULT function(ICreateTypeInfo2 *This, IDLDESC *pIdlDesc)SetTypeIdldesc;
HRESULT function(ICreateTypeInfo2 *This)LayOut;
HRESULT function(ICreateTypeInfo2 *This, UINT index)DeleteFuncDesc;
HRESULT function(ICreateTypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind)DeleteFuncDescByMemId;
HRESULT function(ICreateTypeInfo2 *This, UINT index)DeleteVarDesc;
HRESULT function(ICreateTypeInfo2 *This, MEMBERID memid)DeleteVarDescByMemId;
HRESULT function(ICreateTypeInfo2 *This, UINT index)DeleteImplType;
HRESULT function(ICreateTypeInfo2 *This, GUID *guid, VARIANT *pVarVal)SetCustData;
HRESULT function(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)SetFuncCustData;
HRESULT function(ICreateTypeInfo2 *This, UINT indexFunc, UINT indexParam, GUID *guid, VARIANT *pVarVal)SetParamCustData;
HRESULT function(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)SetVarCustData;
HRESULT function(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)SetImplTypeCustData;
HRESULT function(ICreateTypeInfo2 *This, ULONG dwHelpStringContext)SetHelpStringContext;
HRESULT function(ICreateTypeInfo2 *This, UINT index, ULONG dwHelpStringContext)SetFuncHelpStringContext;
HRESULT function(ICreateTypeInfo2 *This, UINT index, ULONG dwHelpStringContext)SetVarHelpStringContext;
HRESULT function(ICreateTypeInfo2 *This)Invalidate;
HRESULT function(ICreateTypeInfo2 *This, LPOLESTR szName)SetName;
}
//C struct ICreateTypeInfo2 {
//C struct ICreateTypeInfo2Vtbl *lpVtbl;
//C };
struct ICreateTypeInfo2
{
ICreateTypeInfo2Vtbl *lpVtbl;
}
//C HRESULT ICreateTypeInfo2_DeleteFuncDesc_Proxy(ICreateTypeInfo2 *This,UINT index);
HRESULT ICreateTypeInfo2_DeleteFuncDesc_Proxy(ICreateTypeInfo2 *This, UINT index);
//C void ICreateTypeInfo2_DeleteFuncDesc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_DeleteFuncDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_DeleteFuncDescByMemId_Proxy(ICreateTypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind);
HRESULT ICreateTypeInfo2_DeleteFuncDescByMemId_Proxy(ICreateTypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind);
//C void ICreateTypeInfo2_DeleteFuncDescByMemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_DeleteFuncDescByMemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_DeleteVarDesc_Proxy(ICreateTypeInfo2 *This,UINT index);
HRESULT ICreateTypeInfo2_DeleteVarDesc_Proxy(ICreateTypeInfo2 *This, UINT index);
//C void ICreateTypeInfo2_DeleteVarDesc_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_DeleteVarDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_DeleteVarDescByMemId_Proxy(ICreateTypeInfo2 *This,MEMBERID memid);
HRESULT ICreateTypeInfo2_DeleteVarDescByMemId_Proxy(ICreateTypeInfo2 *This, MEMBERID memid);
//C void ICreateTypeInfo2_DeleteVarDescByMemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_DeleteVarDescByMemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_DeleteImplType_Proxy(ICreateTypeInfo2 *This,UINT index);
HRESULT ICreateTypeInfo2_DeleteImplType_Proxy(ICreateTypeInfo2 *This, UINT index);
//C void ICreateTypeInfo2_DeleteImplType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_DeleteImplType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetCustData_Proxy(ICreateTypeInfo2 *This,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeInfo2_SetCustData_Proxy(ICreateTypeInfo2 *This, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeInfo2_SetCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetFuncCustData_Proxy(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeInfo2_SetFuncCustData_Proxy(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeInfo2_SetFuncCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetFuncCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetParamCustData_Proxy(ICreateTypeInfo2 *This,UINT indexFunc,UINT indexParam,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeInfo2_SetParamCustData_Proxy(ICreateTypeInfo2 *This, UINT indexFunc, UINT indexParam, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeInfo2_SetParamCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetParamCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetVarCustData_Proxy(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeInfo2_SetVarCustData_Proxy(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeInfo2_SetVarCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetVarCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetImplTypeCustData_Proxy(ICreateTypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeInfo2_SetImplTypeCustData_Proxy(ICreateTypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeInfo2_SetImplTypeCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetImplTypeCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetHelpStringContext_Proxy(ICreateTypeInfo2 *This,ULONG dwHelpStringContext);
HRESULT ICreateTypeInfo2_SetHelpStringContext_Proxy(ICreateTypeInfo2 *This, ULONG dwHelpStringContext);
//C void ICreateTypeInfo2_SetHelpStringContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetHelpStringContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetFuncHelpStringContext_Proxy(ICreateTypeInfo2 *This,UINT index,ULONG dwHelpStringContext);
HRESULT ICreateTypeInfo2_SetFuncHelpStringContext_Proxy(ICreateTypeInfo2 *This, UINT index, ULONG dwHelpStringContext);
//C void ICreateTypeInfo2_SetFuncHelpStringContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetFuncHelpStringContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetVarHelpStringContext_Proxy(ICreateTypeInfo2 *This,UINT index,ULONG dwHelpStringContext);
HRESULT ICreateTypeInfo2_SetVarHelpStringContext_Proxy(ICreateTypeInfo2 *This, UINT index, ULONG dwHelpStringContext);
//C void ICreateTypeInfo2_SetVarHelpStringContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetVarHelpStringContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_Invalidate_Proxy(ICreateTypeInfo2 *This);
HRESULT ICreateTypeInfo2_Invalidate_Proxy(ICreateTypeInfo2 *This);
//C void ICreateTypeInfo2_Invalidate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_Invalidate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeInfo2_SetName_Proxy(ICreateTypeInfo2 *This,LPOLESTR szName);
HRESULT ICreateTypeInfo2_SetName_Proxy(ICreateTypeInfo2 *This, LPOLESTR szName);
//C void ICreateTypeInfo2_SetName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeInfo2_SetName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ICreateTypeLib *LPCREATETYPELIB;
alias ICreateTypeLib *LPCREATETYPELIB;
//C typedef struct ICreateTypeLibVtbl {
//C HRESULT ( *QueryInterface)(ICreateTypeLib *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICreateTypeLib *This);
//C ULONG ( *Release)(ICreateTypeLib *This);
//C HRESULT ( *CreateTypeInfo)(ICreateTypeLib *This,LPOLESTR szName,TYPEKIND tkind,ICreateTypeInfo **ppCTInfo);
//C HRESULT ( *SetName)(ICreateTypeLib *This,LPOLESTR szName);
//C HRESULT ( *SetVersion)(ICreateTypeLib *This,WORD wMajorVerNum,WORD wMinorVerNum);
//C HRESULT ( *SetGuid)(ICreateTypeLib *This,const GUID *const guid);
//C HRESULT ( *SetDocString)(ICreateTypeLib *This,LPOLESTR szDoc);
//C HRESULT ( *SetHelpFileName)(ICreateTypeLib *This,LPOLESTR szHelpFileName);
//C HRESULT ( *SetHelpContext)(ICreateTypeLib *This,DWORD dwHelpContext);
//C HRESULT ( *SetLcid)(ICreateTypeLib *This,LCID lcid);
//C HRESULT ( *SetLibFlags)(ICreateTypeLib *This,UINT uLibFlags);
//C HRESULT ( *SaveAllChanges)(ICreateTypeLib *This);
//C } ICreateTypeLibVtbl;
struct ICreateTypeLibVtbl
{
HRESULT function(ICreateTypeLib *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICreateTypeLib *This)AddRef;
ULONG function(ICreateTypeLib *This)Release;
HRESULT function(ICreateTypeLib *This, LPOLESTR szName, TYPEKIND tkind, ICreateTypeInfo **ppCTInfo)CreateTypeInfo;
HRESULT function(ICreateTypeLib *This, LPOLESTR szName)SetName;
HRESULT function(ICreateTypeLib *This, WORD wMajorVerNum, WORD wMinorVerNum)SetVersion;
HRESULT function(ICreateTypeLib *This, GUID *guid)SetGuid;
HRESULT function(ICreateTypeLib *This, LPOLESTR szDoc)SetDocString;
HRESULT function(ICreateTypeLib *This, LPOLESTR szHelpFileName)SetHelpFileName;
HRESULT function(ICreateTypeLib *This, DWORD dwHelpContext)SetHelpContext;
HRESULT function(ICreateTypeLib *This, LCID lcid)SetLcid;
HRESULT function(ICreateTypeLib *This, UINT uLibFlags)SetLibFlags;
HRESULT function(ICreateTypeLib *This)SaveAllChanges;
}
//C struct ICreateTypeLib {
//C struct ICreateTypeLibVtbl *lpVtbl;
//C };
struct ICreateTypeLib
{
ICreateTypeLibVtbl *lpVtbl;
}
//C HRESULT ICreateTypeLib_CreateTypeInfo_Proxy(ICreateTypeLib *This,LPOLESTR szName,TYPEKIND tkind,ICreateTypeInfo **ppCTInfo);
HRESULT ICreateTypeLib_CreateTypeInfo_Proxy(ICreateTypeLib *This, LPOLESTR szName, TYPEKIND tkind, ICreateTypeInfo **ppCTInfo);
//C void ICreateTypeLib_CreateTypeInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_CreateTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetName_Proxy(ICreateTypeLib *This,LPOLESTR szName);
HRESULT ICreateTypeLib_SetName_Proxy(ICreateTypeLib *This, LPOLESTR szName);
//C void ICreateTypeLib_SetName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetVersion_Proxy(ICreateTypeLib *This,WORD wMajorVerNum,WORD wMinorVerNum);
HRESULT ICreateTypeLib_SetVersion_Proxy(ICreateTypeLib *This, WORD wMajorVerNum, WORD wMinorVerNum);
//C void ICreateTypeLib_SetVersion_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetVersion_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetGuid_Proxy(ICreateTypeLib *This,const GUID *const guid);
HRESULT ICreateTypeLib_SetGuid_Proxy(ICreateTypeLib *This, GUID *guid);
//C void ICreateTypeLib_SetGuid_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetGuid_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetDocString_Proxy(ICreateTypeLib *This,LPOLESTR szDoc);
HRESULT ICreateTypeLib_SetDocString_Proxy(ICreateTypeLib *This, LPOLESTR szDoc);
//C void ICreateTypeLib_SetDocString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetDocString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetHelpFileName_Proxy(ICreateTypeLib *This,LPOLESTR szHelpFileName);
HRESULT ICreateTypeLib_SetHelpFileName_Proxy(ICreateTypeLib *This, LPOLESTR szHelpFileName);
//C void ICreateTypeLib_SetHelpFileName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetHelpFileName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetHelpContext_Proxy(ICreateTypeLib *This,DWORD dwHelpContext);
HRESULT ICreateTypeLib_SetHelpContext_Proxy(ICreateTypeLib *This, DWORD dwHelpContext);
//C void ICreateTypeLib_SetHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetLcid_Proxy(ICreateTypeLib *This,LCID lcid);
HRESULT ICreateTypeLib_SetLcid_Proxy(ICreateTypeLib *This, LCID lcid);
//C void ICreateTypeLib_SetLcid_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetLcid_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SetLibFlags_Proxy(ICreateTypeLib *This,UINT uLibFlags);
HRESULT ICreateTypeLib_SetLibFlags_Proxy(ICreateTypeLib *This, UINT uLibFlags);
//C void ICreateTypeLib_SetLibFlags_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SetLibFlags_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib_SaveAllChanges_Proxy(ICreateTypeLib *This);
HRESULT ICreateTypeLib_SaveAllChanges_Proxy(ICreateTypeLib *This);
//C void ICreateTypeLib_SaveAllChanges_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib_SaveAllChanges_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ICreateTypeLib2 *LPCREATETYPELIB2;
alias ICreateTypeLib2 *LPCREATETYPELIB2;
//C typedef struct ICreateTypeLib2Vtbl {
//C HRESULT ( *QueryInterface)(ICreateTypeLib2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICreateTypeLib2 *This);
//C ULONG ( *Release)(ICreateTypeLib2 *This);
//C HRESULT ( *CreateTypeInfo)(ICreateTypeLib2 *This,LPOLESTR szName,TYPEKIND tkind,ICreateTypeInfo **ppCTInfo);
//C HRESULT ( *SetName)(ICreateTypeLib2 *This,LPOLESTR szName);
//C HRESULT ( *SetVersion)(ICreateTypeLib2 *This,WORD wMajorVerNum,WORD wMinorVerNum);
//C HRESULT ( *SetGuid)(ICreateTypeLib2 *This,const GUID *const guid);
//C HRESULT ( *SetDocString)(ICreateTypeLib2 *This,LPOLESTR szDoc);
//C HRESULT ( *SetHelpFileName)(ICreateTypeLib2 *This,LPOLESTR szHelpFileName);
//C HRESULT ( *SetHelpContext)(ICreateTypeLib2 *This,DWORD dwHelpContext);
//C HRESULT ( *SetLcid)(ICreateTypeLib2 *This,LCID lcid);
//C HRESULT ( *SetLibFlags)(ICreateTypeLib2 *This,UINT uLibFlags);
//C HRESULT ( *SaveAllChanges)(ICreateTypeLib2 *This);
//C HRESULT ( *DeleteTypeInfo)(ICreateTypeLib2 *This,LPOLESTR szName);
//C HRESULT ( *SetCustData)(ICreateTypeLib2 *This,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *SetHelpStringContext)(ICreateTypeLib2 *This,ULONG dwHelpStringContext);
//C HRESULT ( *SetHelpStringDll)(ICreateTypeLib2 *This,LPOLESTR szFileName);
//C } ICreateTypeLib2Vtbl;
struct ICreateTypeLib2Vtbl
{
HRESULT function(ICreateTypeLib2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICreateTypeLib2 *This)AddRef;
ULONG function(ICreateTypeLib2 *This)Release;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szName, TYPEKIND tkind, ICreateTypeInfo **ppCTInfo)CreateTypeInfo;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szName)SetName;
HRESULT function(ICreateTypeLib2 *This, WORD wMajorVerNum, WORD wMinorVerNum)SetVersion;
HRESULT function(ICreateTypeLib2 *This, GUID *guid)SetGuid;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szDoc)SetDocString;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szHelpFileName)SetHelpFileName;
HRESULT function(ICreateTypeLib2 *This, DWORD dwHelpContext)SetHelpContext;
HRESULT function(ICreateTypeLib2 *This, LCID lcid)SetLcid;
HRESULT function(ICreateTypeLib2 *This, UINT uLibFlags)SetLibFlags;
HRESULT function(ICreateTypeLib2 *This)SaveAllChanges;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szName)DeleteTypeInfo;
HRESULT function(ICreateTypeLib2 *This, GUID *guid, VARIANT *pVarVal)SetCustData;
HRESULT function(ICreateTypeLib2 *This, ULONG dwHelpStringContext)SetHelpStringContext;
HRESULT function(ICreateTypeLib2 *This, LPOLESTR szFileName)SetHelpStringDll;
}
//C struct ICreateTypeLib2 {
//C struct ICreateTypeLib2Vtbl *lpVtbl;
//C };
struct ICreateTypeLib2
{
ICreateTypeLib2Vtbl *lpVtbl;
}
//C HRESULT ICreateTypeLib2_DeleteTypeInfo_Proxy(ICreateTypeLib2 *This,LPOLESTR szName);
HRESULT ICreateTypeLib2_DeleteTypeInfo_Proxy(ICreateTypeLib2 *This, LPOLESTR szName);
//C void ICreateTypeLib2_DeleteTypeInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib2_DeleteTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib2_SetCustData_Proxy(ICreateTypeLib2 *This,const GUID *const guid,VARIANT *pVarVal);
HRESULT ICreateTypeLib2_SetCustData_Proxy(ICreateTypeLib2 *This, GUID *guid, VARIANT *pVarVal);
//C void ICreateTypeLib2_SetCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib2_SetCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib2_SetHelpStringContext_Proxy(ICreateTypeLib2 *This,ULONG dwHelpStringContext);
HRESULT ICreateTypeLib2_SetHelpStringContext_Proxy(ICreateTypeLib2 *This, ULONG dwHelpStringContext);
//C void ICreateTypeLib2_SetHelpStringContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib2_SetHelpStringContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateTypeLib2_SetHelpStringDll_Proxy(ICreateTypeLib2 *This,LPOLESTR szFileName);
HRESULT ICreateTypeLib2_SetHelpStringDll_Proxy(ICreateTypeLib2 *This, LPOLESTR szFileName);
//C void ICreateTypeLib2_SetHelpStringDll_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateTypeLib2_SetHelpStringDll_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IDispatch *LPDISPATCH;
//C typedef struct IDispatchVtbl {
//C HRESULT ( *QueryInterface)(
//C IDispatch* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IDispatch* This);
//C ULONG ( *Release)(
//C IDispatch* This);
//C HRESULT ( *GetTypeInfoCount)(
//C IDispatch* This,
//C UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(
//C IDispatch* This,
//C UINT iTInfo,
//C LCID lcid,
//C ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(
//C IDispatch* This,
//C const IID *const riid,
//C LPOLESTR *rgszNames,
//C UINT cNames,
//C LCID lcid,
//C DISPID *rgDispId);
//C HRESULT ( *Invoke)(
//C IDispatch* This,
//C DISPID dispIdMember,
//C const IID *const riid,
//C LCID lcid,
//C WORD wFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *puArgErr);
//C } IDispatchVtbl;
struct IDispatchVtbl
{
HRESULT function(IDispatch *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDispatch *This)AddRef;
ULONG function(IDispatch *This)Release;
HRESULT function(IDispatch *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IDispatch *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IDispatch *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IDispatch *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
}
//C struct IDispatch {
//C IDispatchVtbl* lpVtbl;
//C };
struct IDispatch
{
IDispatchVtbl *lpVtbl;
}
//C HRESULT IDispatch_GetTypeInfoCount_Proxy(
//C IDispatch* This,
//C UINT *pctinfo);
HRESULT IDispatch_GetTypeInfoCount_Proxy(IDispatch *This, UINT *pctinfo);
//C void IDispatch_GetTypeInfoCount_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDispatch_GetTypeInfoCount_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDispatch_GetTypeInfo_Proxy(
//C IDispatch* This,
//C UINT iTInfo,
//C LCID lcid,
//C ITypeInfo **ppTInfo);
HRESULT IDispatch_GetTypeInfo_Proxy(IDispatch *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo);
//C void IDispatch_GetTypeInfo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDispatch_GetTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDispatch_GetIDsOfNames_Proxy(
//C IDispatch* This,
//C const IID *const riid,
//C LPOLESTR *rgszNames,
//C UINT cNames,
//C LCID lcid,
//C DISPID *rgDispId);
HRESULT IDispatch_GetIDsOfNames_Proxy(IDispatch *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId);
//C void IDispatch_GetIDsOfNames_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDispatch_GetIDsOfNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDispatch_RemoteInvoke_Proxy(
//C IDispatch* This,
//C DISPID dispIdMember,
//C const IID *const riid,
//C LCID lcid,
//C DWORD dwFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *pArgErr,
//C UINT cVarRef,
//C UINT *rgVarRefIdx,
//C VARIANTARG *rgVarRef);
HRESULT IDispatch_RemoteInvoke_Proxy(IDispatch *This, DISPID dispIdMember, IID *riid, LCID lcid, DWORD dwFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *pArgErr, UINT cVarRef, UINT *rgVarRefIdx, VARIANTARG *rgVarRef);
//C void IDispatch_RemoteInvoke_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IDispatch_RemoteInvoke_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IDispatch_Invoke_Proxy(
//C IDispatch* This,
//C DISPID dispIdMember,
//C const IID *const riid,
//C LCID lcid,
//C WORD wFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *puArgErr);
HRESULT IDispatch_Invoke_Proxy(IDispatch *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr);
//C HRESULT IDispatch_Invoke_Stub(
//C IDispatch* This,
//C DISPID dispIdMember,
//C const IID *const riid,
//C LCID lcid,
//C DWORD dwFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *pArgErr,
//C UINT cVarRef,
//C UINT *rgVarRefIdx,
//C VARIANTARG *rgVarRef);
HRESULT IDispatch_Invoke_Stub(IDispatch *This, DISPID dispIdMember, IID *riid, LCID lcid, DWORD dwFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *pArgErr, UINT cVarRef, UINT *rgVarRefIdx, VARIANTARG *rgVarRef);
//C typedef IEnumVARIANT *LPENUMVARIANT;
alias IEnumVARIANT *LPENUMVARIANT;
//C typedef struct IEnumVARIANTVtbl {
//C HRESULT ( *QueryInterface)(IEnumVARIANT *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IEnumVARIANT *This);
//C ULONG ( *Release)(IEnumVARIANT *This);
//C HRESULT ( *Next)(IEnumVARIANT *This,ULONG celt,VARIANT *rgVar,ULONG *pCeltFetched);
//C HRESULT ( *Skip)(IEnumVARIANT *This,ULONG celt);
//C HRESULT ( *Reset)(IEnumVARIANT *This);
//C HRESULT ( *Clone)(IEnumVARIANT *This,IEnumVARIANT **ppEnum);
//C } IEnumVARIANTVtbl;
struct IEnumVARIANTVtbl
{
HRESULT function(IEnumVARIANT *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumVARIANT *This)AddRef;
ULONG function(IEnumVARIANT *This)Release;
HRESULT function(IEnumVARIANT *This, ULONG celt, VARIANT *rgVar, ULONG *pCeltFetched)Next;
HRESULT function(IEnumVARIANT *This, ULONG celt)Skip;
HRESULT function(IEnumVARIANT *This)Reset;
HRESULT function(IEnumVARIANT *This, IEnumVARIANT **ppEnum)Clone;
}
//C struct IEnumVARIANT {
//C struct IEnumVARIANTVtbl *lpVtbl;
//C };
struct IEnumVARIANT
{
IEnumVARIANTVtbl *lpVtbl;
}
//C HRESULT IEnumVARIANT_RemoteNext_Proxy(IEnumVARIANT *This,ULONG celt,VARIANT *rgVar,ULONG *pCeltFetched);
HRESULT IEnumVARIANT_RemoteNext_Proxy(IEnumVARIANT *This, ULONG celt, VARIANT *rgVar, ULONG *pCeltFetched);
//C void IEnumVARIANT_RemoteNext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumVARIANT_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumVARIANT_Skip_Proxy(IEnumVARIANT *This,ULONG celt);
HRESULT IEnumVARIANT_Skip_Proxy(IEnumVARIANT *This, ULONG celt);
//C void IEnumVARIANT_Skip_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumVARIANT_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumVARIANT_Reset_Proxy(IEnumVARIANT *This);
HRESULT IEnumVARIANT_Reset_Proxy(IEnumVARIANT *This);
//C void IEnumVARIANT_Reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumVARIANT_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumVARIANT_Clone_Proxy(IEnumVARIANT *This,IEnumVARIANT **ppEnum);
HRESULT IEnumVARIANT_Clone_Proxy(IEnumVARIANT *This, IEnumVARIANT **ppEnum);
//C void IEnumVARIANT_Clone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumVARIANT_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ITypeComp *LPTYPECOMP;
//C typedef enum tagDESCKIND {
//C DESCKIND_NONE = 0,
//C DESCKIND_FUNCDESC = 1,
//C DESCKIND_VARDESC = 2,
//C DESCKIND_TYPECOMP = 3,
//C DESCKIND_IMPLICITAPPOBJ = 4,
//C DESCKIND_MAX = 5
//C } DESCKIND;
enum tagDESCKIND
{
DESCKIND_NONE,
DESCKIND_FUNCDESC,
DESCKIND_VARDESC,
DESCKIND_TYPECOMP,
DESCKIND_IMPLICITAPPOBJ,
DESCKIND_MAX,
}
alias tagDESCKIND DESCKIND;
//C typedef union tagBINDPTR {
//C FUNCDESC *lpfuncdesc;
//C VARDESC *lpvardesc;
//C ITypeComp *lptcomp;
//C } BINDPTR;
union tagBINDPTR
{
FUNCDESC *lpfuncdesc;
VARDESC *lpvardesc;
ITypeComp *lptcomp;
}
alias tagBINDPTR BINDPTR;
//C typedef union tagBINDPTR *LPBINDPTR;
alias tagBINDPTR *LPBINDPTR;
//C typedef struct ITypeCompVtbl {
//C HRESULT ( *QueryInterface)(
//C ITypeComp* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C ITypeComp* This);
//C ULONG ( *Release)(
//C ITypeComp* This);
//C HRESULT ( *Bind)(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C WORD wFlags,
//C ITypeInfo **ppTInfo,
//C DESCKIND *pDescKind,
//C BINDPTR *pBindPtr);
//C HRESULT ( *BindType)(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C ITypeComp **ppTComp);
//C } ITypeCompVtbl;
struct ITypeCompVtbl
{
HRESULT function(ITypeComp *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeComp *This)AddRef;
ULONG function(ITypeComp *This)Release;
HRESULT function(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, WORD wFlags, ITypeInfo **ppTInfo, DESCKIND *pDescKind, BINDPTR *pBindPtr)Bind;
HRESULT function(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, ITypeInfo **ppTInfo, ITypeComp **ppTComp)BindType;
}
//C struct ITypeComp {
//C ITypeCompVtbl* lpVtbl;
//C };
struct ITypeComp
{
ITypeCompVtbl *lpVtbl;
}
//C HRESULT ITypeComp_RemoteBind_Proxy(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C WORD wFlags,
//C ITypeInfo **ppTInfo,
//C DESCKIND *pDescKind,
//C LPFUNCDESC *ppFuncDesc,
//C LPVARDESC *ppVarDesc,
//C ITypeComp **ppTypeComp,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeComp_RemoteBind_Proxy(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, WORD wFlags, ITypeInfo **ppTInfo, DESCKIND *pDescKind, LPFUNCDESC *ppFuncDesc, LPVARDESC *ppVarDesc, ITypeComp **ppTypeComp, CLEANLOCALSTORAGE *pDummy);
//C void ITypeComp_RemoteBind_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeComp_RemoteBind_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeComp_RemoteBindType_Proxy(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo);
HRESULT ITypeComp_RemoteBindType_Proxy(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, ITypeInfo **ppTInfo);
//C void ITypeComp_RemoteBindType_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeComp_RemoteBindType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeComp_Bind_Proxy(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C WORD wFlags,
//C ITypeInfo **ppTInfo,
//C DESCKIND *pDescKind,
//C BINDPTR *pBindPtr);
HRESULT ITypeComp_Bind_Proxy(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, WORD wFlags, ITypeInfo **ppTInfo, DESCKIND *pDescKind, BINDPTR *pBindPtr);
//C HRESULT ITypeComp_Bind_Stub(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C WORD wFlags,
//C ITypeInfo **ppTInfo,
//C DESCKIND *pDescKind,
//C LPFUNCDESC *ppFuncDesc,
//C LPVARDESC *ppVarDesc,
//C ITypeComp **ppTypeComp,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeComp_Bind_Stub(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, WORD wFlags, ITypeInfo **ppTInfo, DESCKIND *pDescKind, LPFUNCDESC *ppFuncDesc, LPVARDESC *ppVarDesc, ITypeComp **ppTypeComp, CLEANLOCALSTORAGE *pDummy);
//C HRESULT ITypeComp_BindType_Proxy(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C ITypeComp **ppTComp);
HRESULT ITypeComp_BindType_Proxy(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, ITypeInfo **ppTInfo, ITypeComp **ppTComp);
//C HRESULT ITypeComp_BindType_Stub(
//C ITypeComp* This,
//C LPOLESTR szName,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo);
HRESULT ITypeComp_BindType_Stub(ITypeComp *This, LPOLESTR szName, ULONG lHashVal, ITypeInfo **ppTInfo);
//C typedef ITypeInfo *LPTYPEINFO;
//C typedef struct ITypeInfoVtbl {
//C HRESULT ( *QueryInterface)(
//C ITypeInfo* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C ITypeInfo* This);
//C ULONG ( *Release)(
//C ITypeInfo* This);
//C HRESULT ( *GetTypeAttr)(
//C ITypeInfo* This,
//C TYPEATTR **ppTypeAttr);
//C HRESULT ( *GetTypeComp)(
//C ITypeInfo* This,
//C ITypeComp **ppTComp);
//C HRESULT ( *GetFuncDesc)(
//C ITypeInfo* This,
//C UINT index,
//C FUNCDESC **ppFuncDesc);
//C HRESULT ( *GetVarDesc)(
//C ITypeInfo* This,
//C UINT index,
//C VARDESC **ppVarDesc);
//C HRESULT ( *GetNames)(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *rgBstrNames,
//C UINT cMaxNames,
//C UINT *pcNames);
//C HRESULT ( *GetRefTypeOfImplType)(
//C ITypeInfo* This,
//C UINT index,
//C HREFTYPE *pRefType);
//C HRESULT ( *GetImplTypeFlags)(
//C ITypeInfo* This,
//C UINT index,
//C INT *pImplTypeFlags);
//C HRESULT ( *GetIDsOfNames)(
//C ITypeInfo* This,
//C LPOLESTR *rgszNames,
//C UINT cNames,
//C MEMBERID *pMemId);
//C HRESULT ( *Invoke)(
//C ITypeInfo* This,
//C PVOID pvInstance,
//C MEMBERID memid,
//C WORD wFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *puArgErr);
//C HRESULT ( *GetDocumentation)(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
//C HRESULT ( *GetDllEntry)(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C BSTR *pBstrDllName,
//C BSTR *pBstrName,
//C WORD *pwOrdinal);
//C HRESULT ( *GetRefTypeInfo)(
//C ITypeInfo* This,
//C HREFTYPE hRefType,
//C ITypeInfo **ppTInfo);
//C HRESULT ( *AddressOfMember)(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C PVOID *ppv);
//C HRESULT ( *CreateInstance)(
//C ITypeInfo* This,
//C IUnknown *pUnkOuter,
//C const IID *const riid,
//C PVOID *ppvObj);
//C HRESULT ( *GetMops)(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *pBstrMops);
//C HRESULT ( *GetContainingTypeLib)(
//C ITypeInfo* This,
//C ITypeLib **ppTLib,
//C UINT *pIndex);
//C void ( *ReleaseTypeAttr)(
//C ITypeInfo* This,
//C TYPEATTR *pTypeAttr);
//C void ( *ReleaseFuncDesc)(
//C ITypeInfo* This,
//C FUNCDESC *pFuncDesc);
//C void ( *ReleaseVarDesc)(
//C ITypeInfo* This,
//C VARDESC *pVarDesc);
//C } ITypeInfoVtbl;
struct ITypeInfoVtbl
{
HRESULT function(ITypeInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeInfo *This)AddRef;
ULONG function(ITypeInfo *This)Release;
HRESULT function(ITypeInfo *This, TYPEATTR **ppTypeAttr)GetTypeAttr;
HRESULT function(ITypeInfo *This, ITypeComp **ppTComp)GetTypeComp;
HRESULT function(ITypeInfo *This, UINT index, FUNCDESC **ppFuncDesc)GetFuncDesc;
HRESULT function(ITypeInfo *This, UINT index, VARDESC **ppVarDesc)GetVarDesc;
HRESULT function(ITypeInfo *This, MEMBERID memid, BSTR *rgBstrNames, UINT cMaxNames, UINT *pcNames)GetNames;
HRESULT function(ITypeInfo *This, UINT index, HREFTYPE *pRefType)GetRefTypeOfImplType;
HRESULT function(ITypeInfo *This, UINT index, INT *pImplTypeFlags)GetImplTypeFlags;
HRESULT function(ITypeInfo *This, LPOLESTR *rgszNames, UINT cNames, MEMBERID *pMemId)GetIDsOfNames;
HRESULT function(ITypeInfo *This, PVOID pvInstance, MEMBERID memid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(ITypeInfo *This, MEMBERID memid, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile)GetDocumentation;
HRESULT function(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, BSTR *pBstrDllName, BSTR *pBstrName, WORD *pwOrdinal)GetDllEntry;
HRESULT function(ITypeInfo *This, HREFTYPE hRefType, ITypeInfo **ppTInfo)GetRefTypeInfo;
HRESULT function(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, PVOID *ppv)AddressOfMember;
HRESULT function(ITypeInfo *This, IUnknown *pUnkOuter, IID *riid, PVOID *ppvObj)CreateInstance;
HRESULT function(ITypeInfo *This, MEMBERID memid, BSTR *pBstrMops)GetMops;
HRESULT function(ITypeInfo *This, ITypeLib **ppTLib, UINT *pIndex)GetContainingTypeLib;
void function(ITypeInfo *This, TYPEATTR *pTypeAttr)ReleaseTypeAttr;
void function(ITypeInfo *This, FUNCDESC *pFuncDesc)ReleaseFuncDesc;
void function(ITypeInfo *This, VARDESC *pVarDesc)ReleaseVarDesc;
}
//C struct ITypeInfo {
//C ITypeInfoVtbl* lpVtbl;
//C };
struct ITypeInfo
{
ITypeInfoVtbl *lpVtbl;
}
//C HRESULT ITypeInfo_RemoteGetTypeAttr_Proxy(
//C ITypeInfo* This,
//C LPTYPEATTR *ppTypeAttr,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_RemoteGetTypeAttr_Proxy(ITypeInfo *This, LPTYPEATTR *ppTypeAttr, CLEANLOCALSTORAGE *pDummy);
//C void ITypeInfo_RemoteGetTypeAttr_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetTypeAttr_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetTypeComp_Proxy(
//C ITypeInfo* This,
//C ITypeComp **ppTComp);
HRESULT ITypeInfo_GetTypeComp_Proxy(ITypeInfo *This, ITypeComp **ppTComp);
//C void ITypeInfo_GetTypeComp_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_GetTypeComp_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetFuncDesc_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C LPFUNCDESC *ppFuncDesc,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_RemoteGetFuncDesc_Proxy(ITypeInfo *This, UINT index, LPFUNCDESC *ppFuncDesc, CLEANLOCALSTORAGE *pDummy);
//C void ITypeInfo_RemoteGetFuncDesc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetFuncDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetVarDesc_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C LPVARDESC *ppVarDesc,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_RemoteGetVarDesc_Proxy(ITypeInfo *This, UINT index, LPVARDESC *ppVarDesc, CLEANLOCALSTORAGE *pDummy);
//C void ITypeInfo_RemoteGetVarDesc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetVarDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetNames_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *rgBstrNames,
//C UINT cMaxNames,
//C UINT *pcNames);
HRESULT ITypeInfo_RemoteGetNames_Proxy(ITypeInfo *This, MEMBERID memid, BSTR *rgBstrNames, UINT cMaxNames, UINT *pcNames);
//C void ITypeInfo_RemoteGetNames_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetRefTypeOfImplType_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C HREFTYPE *pRefType);
HRESULT ITypeInfo_GetRefTypeOfImplType_Proxy(ITypeInfo *This, UINT index, HREFTYPE *pRefType);
//C void ITypeInfo_GetRefTypeOfImplType_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_GetRefTypeOfImplType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetImplTypeFlags_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C INT *pImplTypeFlags);
HRESULT ITypeInfo_GetImplTypeFlags_Proxy(ITypeInfo *This, UINT index, INT *pImplTypeFlags);
//C void ITypeInfo_GetImplTypeFlags_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_GetImplTypeFlags_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalGetIDsOfNames_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalGetIDsOfNames_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalGetIDsOfNames_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalGetIDsOfNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalInvoke_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalInvoke_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalInvoke_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalInvoke_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetDocumentation_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C DWORD refPtrFlags,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeInfo_RemoteGetDocumentation_Proxy(ITypeInfo *This, MEMBERID memid, DWORD refPtrFlags, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C void ITypeInfo_RemoteGetDocumentation_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetDocumentation_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetDllEntry_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C DWORD refPtrFlags,
//C BSTR *pBstrDllName,
//C BSTR *pBstrName,
//C WORD *pwOrdinal);
HRESULT ITypeInfo_RemoteGetDllEntry_Proxy(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, DWORD refPtrFlags, BSTR *pBstrDllName, BSTR *pBstrName, WORD *pwOrdinal);
//C void ITypeInfo_RemoteGetDllEntry_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetDllEntry_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetRefTypeInfo_Proxy(
//C ITypeInfo* This,
//C HREFTYPE hRefType,
//C ITypeInfo **ppTInfo);
HRESULT ITypeInfo_GetRefTypeInfo_Proxy(ITypeInfo *This, HREFTYPE hRefType, ITypeInfo **ppTInfo);
//C void ITypeInfo_GetRefTypeInfo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_GetRefTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalAddressOfMember_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalAddressOfMember_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalAddressOfMember_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalAddressOfMember_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteCreateInstance_Proxy(
//C ITypeInfo* This,
//C const IID *const riid,
//C IUnknown **ppvObj);
HRESULT ITypeInfo_RemoteCreateInstance_Proxy(ITypeInfo *This, IID *riid, IUnknown **ppvObj);
//C void ITypeInfo_RemoteCreateInstance_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteCreateInstance_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetMops_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *pBstrMops);
HRESULT ITypeInfo_GetMops_Proxy(ITypeInfo *This, MEMBERID memid, BSTR *pBstrMops);
//C void ITypeInfo_GetMops_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_GetMops_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_RemoteGetContainingTypeLib_Proxy(
//C ITypeInfo* This,
//C ITypeLib **ppTLib,
//C UINT *pIndex);
HRESULT ITypeInfo_RemoteGetContainingTypeLib_Proxy(ITypeInfo *This, ITypeLib **ppTLib, UINT *pIndex);
//C void ITypeInfo_RemoteGetContainingTypeLib_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_RemoteGetContainingTypeLib_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalReleaseTypeAttr_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalReleaseTypeAttr_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalReleaseTypeAttr_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalReleaseTypeAttr_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalReleaseFuncDesc_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalReleaseFuncDesc_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalReleaseFuncDesc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalReleaseFuncDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_LocalReleaseVarDesc_Proxy(
//C ITypeInfo* This);
HRESULT ITypeInfo_LocalReleaseVarDesc_Proxy(ITypeInfo *This);
//C void ITypeInfo_LocalReleaseVarDesc_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeInfo_LocalReleaseVarDesc_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeInfo_GetTypeAttr_Proxy(
//C ITypeInfo* This,
//C TYPEATTR **ppTypeAttr);
HRESULT ITypeInfo_GetTypeAttr_Proxy(ITypeInfo *This, TYPEATTR **ppTypeAttr);
//C HRESULT ITypeInfo_GetTypeAttr_Stub(
//C ITypeInfo* This,
//C LPTYPEATTR *ppTypeAttr,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_GetTypeAttr_Stub(ITypeInfo *This, LPTYPEATTR *ppTypeAttr, CLEANLOCALSTORAGE *pDummy);
//C HRESULT ITypeInfo_GetFuncDesc_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C FUNCDESC **ppFuncDesc);
HRESULT ITypeInfo_GetFuncDesc_Proxy(ITypeInfo *This, UINT index, FUNCDESC **ppFuncDesc);
//C HRESULT ITypeInfo_GetFuncDesc_Stub(
//C ITypeInfo* This,
//C UINT index,
//C LPFUNCDESC *ppFuncDesc,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_GetFuncDesc_Stub(ITypeInfo *This, UINT index, LPFUNCDESC *ppFuncDesc, CLEANLOCALSTORAGE *pDummy);
//C HRESULT ITypeInfo_GetVarDesc_Proxy(
//C ITypeInfo* This,
//C UINT index,
//C VARDESC **ppVarDesc);
HRESULT ITypeInfo_GetVarDesc_Proxy(ITypeInfo *This, UINT index, VARDESC **ppVarDesc);
//C HRESULT ITypeInfo_GetVarDesc_Stub(
//C ITypeInfo* This,
//C UINT index,
//C LPVARDESC *ppVarDesc,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeInfo_GetVarDesc_Stub(ITypeInfo *This, UINT index, LPVARDESC *ppVarDesc, CLEANLOCALSTORAGE *pDummy);
//C HRESULT ITypeInfo_GetNames_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *rgBstrNames,
//C UINT cMaxNames,
//C UINT *pcNames);
HRESULT ITypeInfo_GetNames_Proxy(ITypeInfo *This, MEMBERID memid, BSTR *rgBstrNames, UINT cMaxNames, UINT *pcNames);
//C HRESULT ITypeInfo_GetNames_Stub(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *rgBstrNames,
//C UINT cMaxNames,
//C UINT *pcNames);
HRESULT ITypeInfo_GetNames_Stub(ITypeInfo *This, MEMBERID memid, BSTR *rgBstrNames, UINT cMaxNames, UINT *pcNames);
//C HRESULT ITypeInfo_GetIDsOfNames_Proxy(
//C ITypeInfo* This,
//C LPOLESTR *rgszNames,
//C UINT cNames,
//C MEMBERID *pMemId);
HRESULT ITypeInfo_GetIDsOfNames_Proxy(ITypeInfo *This, LPOLESTR *rgszNames, UINT cNames, MEMBERID *pMemId);
//C HRESULT ITypeInfo_GetIDsOfNames_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_GetIDsOfNames_Stub(ITypeInfo *This);
//C HRESULT ITypeInfo_Invoke_Proxy(
//C ITypeInfo* This,
//C PVOID pvInstance,
//C MEMBERID memid,
//C WORD wFlags,
//C DISPPARAMS *pDispParams,
//C VARIANT *pVarResult,
//C EXCEPINFO *pExcepInfo,
//C UINT *puArgErr);
HRESULT ITypeInfo_Invoke_Proxy(ITypeInfo *This, PVOID pvInstance, MEMBERID memid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr);
//C HRESULT ITypeInfo_Invoke_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_Invoke_Stub(ITypeInfo *This);
//C HRESULT ITypeInfo_GetDocumentation_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeInfo_GetDocumentation_Proxy(ITypeInfo *This, MEMBERID memid, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C HRESULT ITypeInfo_GetDocumentation_Stub(
//C ITypeInfo* This,
//C MEMBERID memid,
//C DWORD refPtrFlags,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeInfo_GetDocumentation_Stub(ITypeInfo *This, MEMBERID memid, DWORD refPtrFlags, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C HRESULT ITypeInfo_GetDllEntry_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C BSTR *pBstrDllName,
//C BSTR *pBstrName,
//C WORD *pwOrdinal);
HRESULT ITypeInfo_GetDllEntry_Proxy(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, BSTR *pBstrDllName, BSTR *pBstrName, WORD *pwOrdinal);
//C HRESULT ITypeInfo_GetDllEntry_Stub(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C DWORD refPtrFlags,
//C BSTR *pBstrDllName,
//C BSTR *pBstrName,
//C WORD *pwOrdinal);
HRESULT ITypeInfo_GetDllEntry_Stub(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, DWORD refPtrFlags, BSTR *pBstrDllName, BSTR *pBstrName, WORD *pwOrdinal);
//C HRESULT ITypeInfo_AddressOfMember_Proxy(
//C ITypeInfo* This,
//C MEMBERID memid,
//C INVOKEKIND invKind,
//C PVOID *ppv);
HRESULT ITypeInfo_AddressOfMember_Proxy(ITypeInfo *This, MEMBERID memid, INVOKEKIND invKind, PVOID *ppv);
//C HRESULT ITypeInfo_AddressOfMember_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_AddressOfMember_Stub(ITypeInfo *This);
//C HRESULT ITypeInfo_CreateInstance_Proxy(
//C ITypeInfo* This,
//C IUnknown *pUnkOuter,
//C const IID *const riid,
//C PVOID *ppvObj);
HRESULT ITypeInfo_CreateInstance_Proxy(ITypeInfo *This, IUnknown *pUnkOuter, IID *riid, PVOID *ppvObj);
//C HRESULT ITypeInfo_CreateInstance_Stub(
//C ITypeInfo* This,
//C const IID *const riid,
//C IUnknown **ppvObj);
HRESULT ITypeInfo_CreateInstance_Stub(ITypeInfo *This, IID *riid, IUnknown **ppvObj);
//C HRESULT ITypeInfo_GetContainingTypeLib_Proxy(
//C ITypeInfo* This,
//C ITypeLib **ppTLib,
//C UINT *pIndex);
HRESULT ITypeInfo_GetContainingTypeLib_Proxy(ITypeInfo *This, ITypeLib **ppTLib, UINT *pIndex);
//C HRESULT ITypeInfo_GetContainingTypeLib_Stub(
//C ITypeInfo* This,
//C ITypeLib **ppTLib,
//C UINT *pIndex);
HRESULT ITypeInfo_GetContainingTypeLib_Stub(ITypeInfo *This, ITypeLib **ppTLib, UINT *pIndex);
//C void ITypeInfo_ReleaseTypeAttr_Proxy(
//C ITypeInfo* This,
//C TYPEATTR *pTypeAttr);
void ITypeInfo_ReleaseTypeAttr_Proxy(ITypeInfo *This, TYPEATTR *pTypeAttr);
//C HRESULT ITypeInfo_ReleaseTypeAttr_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_ReleaseTypeAttr_Stub(ITypeInfo *This);
//C void ITypeInfo_ReleaseFuncDesc_Proxy(
//C ITypeInfo* This,
//C FUNCDESC *pFuncDesc);
void ITypeInfo_ReleaseFuncDesc_Proxy(ITypeInfo *This, FUNCDESC *pFuncDesc);
//C HRESULT ITypeInfo_ReleaseFuncDesc_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_ReleaseFuncDesc_Stub(ITypeInfo *This);
//C void ITypeInfo_ReleaseVarDesc_Proxy(
//C ITypeInfo* This,
//C VARDESC *pVarDesc);
void ITypeInfo_ReleaseVarDesc_Proxy(ITypeInfo *This, VARDESC *pVarDesc);
//C HRESULT ITypeInfo_ReleaseVarDesc_Stub(
//C ITypeInfo* This);
HRESULT ITypeInfo_ReleaseVarDesc_Stub(ITypeInfo *This);
//C typedef ITypeInfo2 *LPTYPEINFO2;
alias ITypeInfo2 *LPTYPEINFO2;
//C typedef struct ITypeInfo2Vtbl {
//C HRESULT ( *QueryInterface)(ITypeInfo2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITypeInfo2 *This);
//C ULONG ( *Release)(ITypeInfo2 *This);
//C HRESULT ( *GetTypeAttr)(ITypeInfo2 *This,TYPEATTR **ppTypeAttr);
//C HRESULT ( *GetTypeComp)(ITypeInfo2 *This,ITypeComp **ppTComp);
//C HRESULT ( *GetFuncDesc)(ITypeInfo2 *This,UINT index,FUNCDESC **ppFuncDesc);
//C HRESULT ( *GetVarDesc)(ITypeInfo2 *This,UINT index,VARDESC **ppVarDesc);
//C HRESULT ( *GetNames)(ITypeInfo2 *This,MEMBERID memid,BSTR *rgBstrNames,UINT cMaxNames,UINT *pcNames);
//C HRESULT ( *GetRefTypeOfImplType)(ITypeInfo2 *This,UINT index,HREFTYPE *pRefType);
//C HRESULT ( *GetImplTypeFlags)(ITypeInfo2 *This,UINT index,INT *pImplTypeFlags);
//C HRESULT ( *GetIDsOfNames)(ITypeInfo2 *This,LPOLESTR *rgszNames,UINT cNames,MEMBERID *pMemId);
//C HRESULT ( *Invoke)(ITypeInfo2 *This,PVOID pvInstance,MEMBERID memid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *GetDocumentation)(ITypeInfo2 *This,MEMBERID memid,BSTR *pBstrName,BSTR *pBstrDocString,DWORD *pdwHelpContext,BSTR *pBstrHelpFile);
//C HRESULT ( *GetDllEntry)(ITypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind,BSTR *pBstrDllName,BSTR *pBstrName,WORD *pwOrdinal);
//C HRESULT ( *GetRefTypeInfo)(ITypeInfo2 *This,HREFTYPE hRefType,ITypeInfo **ppTInfo);
//C HRESULT ( *AddressOfMember)(ITypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind,PVOID *ppv);
//C HRESULT ( *CreateInstance)(ITypeInfo2 *This,IUnknown *pUnkOuter,const IID *const riid,PVOID *ppvObj);
//C HRESULT ( *GetMops)(ITypeInfo2 *This,MEMBERID memid,BSTR *pBstrMops);
//C HRESULT ( *GetContainingTypeLib)(ITypeInfo2 *This,ITypeLib **ppTLib,UINT *pIndex);
//C void ( *ReleaseTypeAttr)(ITypeInfo2 *This,TYPEATTR *pTypeAttr);
//C void ( *ReleaseFuncDesc)(ITypeInfo2 *This,FUNCDESC *pFuncDesc);
//C void ( *ReleaseVarDesc)(ITypeInfo2 *This,VARDESC *pVarDesc);
//C HRESULT ( *GetTypeKind)(ITypeInfo2 *This,TYPEKIND *pTypeKind);
//C HRESULT ( *GetTypeFlags)(ITypeInfo2 *This,ULONG *pTypeFlags);
//C HRESULT ( *GetFuncIndexOfMemId)(ITypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind,UINT *pFuncIndex);
//C HRESULT ( *GetVarIndexOfMemId)(ITypeInfo2 *This,MEMBERID memid,UINT *pVarIndex);
//C HRESULT ( *GetCustData)(ITypeInfo2 *This,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetFuncCustData)(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetParamCustData)(ITypeInfo2 *This,UINT indexFunc,UINT indexParam,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetVarCustData)(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetImplTypeCustData)(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetDocumentation2)(ITypeInfo2 *This,MEMBERID memid,LCID lcid,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
//C HRESULT ( *GetAllCustData)(ITypeInfo2 *This,CUSTDATA *pCustData);
//C HRESULT ( *GetAllFuncCustData)(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
//C HRESULT ( *GetAllParamCustData)(ITypeInfo2 *This,UINT indexFunc,UINT indexParam,CUSTDATA *pCustData);
//C HRESULT ( *GetAllVarCustData)(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
//C HRESULT ( *GetAllImplTypeCustData)(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
//C } ITypeInfo2Vtbl;
struct ITypeInfo2Vtbl
{
HRESULT function(ITypeInfo2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeInfo2 *This)AddRef;
ULONG function(ITypeInfo2 *This)Release;
HRESULT function(ITypeInfo2 *This, TYPEATTR **ppTypeAttr)GetTypeAttr;
HRESULT function(ITypeInfo2 *This, ITypeComp **ppTComp)GetTypeComp;
HRESULT function(ITypeInfo2 *This, UINT index, FUNCDESC **ppFuncDesc)GetFuncDesc;
HRESULT function(ITypeInfo2 *This, UINT index, VARDESC **ppVarDesc)GetVarDesc;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, BSTR *rgBstrNames, UINT cMaxNames, UINT *pcNames)GetNames;
HRESULT function(ITypeInfo2 *This, UINT index, HREFTYPE *pRefType)GetRefTypeOfImplType;
HRESULT function(ITypeInfo2 *This, UINT index, INT *pImplTypeFlags)GetImplTypeFlags;
HRESULT function(ITypeInfo2 *This, LPOLESTR *rgszNames, UINT cNames, MEMBERID *pMemId)GetIDsOfNames;
HRESULT function(ITypeInfo2 *This, PVOID pvInstance, MEMBERID memid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile)GetDocumentation;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind, BSTR *pBstrDllName, BSTR *pBstrName, WORD *pwOrdinal)GetDllEntry;
HRESULT function(ITypeInfo2 *This, HREFTYPE hRefType, ITypeInfo **ppTInfo)GetRefTypeInfo;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind, PVOID *ppv)AddressOfMember;
HRESULT function(ITypeInfo2 *This, IUnknown *pUnkOuter, IID *riid, PVOID *ppvObj)CreateInstance;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, BSTR *pBstrMops)GetMops;
HRESULT function(ITypeInfo2 *This, ITypeLib **ppTLib, UINT *pIndex)GetContainingTypeLib;
void function(ITypeInfo2 *This, TYPEATTR *pTypeAttr)ReleaseTypeAttr;
void function(ITypeInfo2 *This, FUNCDESC *pFuncDesc)ReleaseFuncDesc;
void function(ITypeInfo2 *This, VARDESC *pVarDesc)ReleaseVarDesc;
HRESULT function(ITypeInfo2 *This, TYPEKIND *pTypeKind)GetTypeKind;
HRESULT function(ITypeInfo2 *This, ULONG *pTypeFlags)GetTypeFlags;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind, UINT *pFuncIndex)GetFuncIndexOfMemId;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, UINT *pVarIndex)GetVarIndexOfMemId;
HRESULT function(ITypeInfo2 *This, GUID *guid, VARIANT *pVarVal)GetCustData;
HRESULT function(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)GetFuncCustData;
HRESULT function(ITypeInfo2 *This, UINT indexFunc, UINT indexParam, GUID *guid, VARIANT *pVarVal)GetParamCustData;
HRESULT function(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)GetVarCustData;
HRESULT function(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal)GetImplTypeCustData;
HRESULT function(ITypeInfo2 *This, MEMBERID memid, LCID lcid, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll)GetDocumentation2;
HRESULT function(ITypeInfo2 *This, CUSTDATA *pCustData)GetAllCustData;
HRESULT function(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData)GetAllFuncCustData;
HRESULT function(ITypeInfo2 *This, UINT indexFunc, UINT indexParam, CUSTDATA *pCustData)GetAllParamCustData;
HRESULT function(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData)GetAllVarCustData;
HRESULT function(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData)GetAllImplTypeCustData;
}
//C struct ITypeInfo2 {
//C struct ITypeInfo2Vtbl *lpVtbl;
//C };
struct ITypeInfo2
{
ITypeInfo2Vtbl *lpVtbl;
}
//C HRESULT ITypeInfo2_GetTypeKind_Proxy(ITypeInfo2 *This,TYPEKIND *pTypeKind);
HRESULT ITypeInfo2_GetTypeKind_Proxy(ITypeInfo2 *This, TYPEKIND *pTypeKind);
//C void ITypeInfo2_GetTypeKind_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetTypeKind_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetTypeFlags_Proxy(ITypeInfo2 *This,ULONG *pTypeFlags);
HRESULT ITypeInfo2_GetTypeFlags_Proxy(ITypeInfo2 *This, ULONG *pTypeFlags);
//C void ITypeInfo2_GetTypeFlags_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetTypeFlags_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetFuncIndexOfMemId_Proxy(ITypeInfo2 *This,MEMBERID memid,INVOKEKIND invKind,UINT *pFuncIndex);
HRESULT ITypeInfo2_GetFuncIndexOfMemId_Proxy(ITypeInfo2 *This, MEMBERID memid, INVOKEKIND invKind, UINT *pFuncIndex);
//C void ITypeInfo2_GetFuncIndexOfMemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetFuncIndexOfMemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetVarIndexOfMemId_Proxy(ITypeInfo2 *This,MEMBERID memid,UINT *pVarIndex);
HRESULT ITypeInfo2_GetVarIndexOfMemId_Proxy(ITypeInfo2 *This, MEMBERID memid, UINT *pVarIndex);
//C void ITypeInfo2_GetVarIndexOfMemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetVarIndexOfMemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetCustData_Proxy(ITypeInfo2 *This,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeInfo2_GetCustData_Proxy(ITypeInfo2 *This, GUID *guid, VARIANT *pVarVal);
//C void ITypeInfo2_GetCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetFuncCustData_Proxy(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeInfo2_GetFuncCustData_Proxy(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ITypeInfo2_GetFuncCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetFuncCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetParamCustData_Proxy(ITypeInfo2 *This,UINT indexFunc,UINT indexParam,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeInfo2_GetParamCustData_Proxy(ITypeInfo2 *This, UINT indexFunc, UINT indexParam, GUID *guid, VARIANT *pVarVal);
//C void ITypeInfo2_GetParamCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetParamCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetVarCustData_Proxy(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeInfo2_GetVarCustData_Proxy(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ITypeInfo2_GetVarCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetVarCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetImplTypeCustData_Proxy(ITypeInfo2 *This,UINT index,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeInfo2_GetImplTypeCustData_Proxy(ITypeInfo2 *This, UINT index, GUID *guid, VARIANT *pVarVal);
//C void ITypeInfo2_GetImplTypeCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetImplTypeCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_RemoteGetDocumentation2_Proxy(ITypeInfo2 *This,MEMBERID memid,LCID lcid,DWORD refPtrFlags,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeInfo2_RemoteGetDocumentation2_Proxy(ITypeInfo2 *This, MEMBERID memid, LCID lcid, DWORD refPtrFlags, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C void ITypeInfo2_RemoteGetDocumentation2_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_RemoteGetDocumentation2_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetAllCustData_Proxy(ITypeInfo2 *This,CUSTDATA *pCustData);
HRESULT ITypeInfo2_GetAllCustData_Proxy(ITypeInfo2 *This, CUSTDATA *pCustData);
//C void ITypeInfo2_GetAllCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetAllCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetAllFuncCustData_Proxy(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
HRESULT ITypeInfo2_GetAllFuncCustData_Proxy(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData);
//C void ITypeInfo2_GetAllFuncCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetAllFuncCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetAllParamCustData_Proxy(ITypeInfo2 *This,UINT indexFunc,UINT indexParam,CUSTDATA *pCustData);
HRESULT ITypeInfo2_GetAllParamCustData_Proxy(ITypeInfo2 *This, UINT indexFunc, UINT indexParam, CUSTDATA *pCustData);
//C void ITypeInfo2_GetAllParamCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetAllParamCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetAllVarCustData_Proxy(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
HRESULT ITypeInfo2_GetAllVarCustData_Proxy(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData);
//C void ITypeInfo2_GetAllVarCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetAllVarCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeInfo2_GetAllImplTypeCustData_Proxy(ITypeInfo2 *This,UINT index,CUSTDATA *pCustData);
HRESULT ITypeInfo2_GetAllImplTypeCustData_Proxy(ITypeInfo2 *This, UINT index, CUSTDATA *pCustData);
//C void ITypeInfo2_GetAllImplTypeCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeInfo2_GetAllImplTypeCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ITypeLib *LPTYPELIB;
//C typedef enum tagSYSKIND {
//C SYS_WIN16 = 0,
//C SYS_WIN32 = 1,
//C SYS_MAC = 2,
//C SYS_WIN64 = 3
//C } SYSKIND;
enum tagSYSKIND
{
SYS_WIN16,
SYS_WIN32,
SYS_MAC,
SYS_WIN64,
}
alias tagSYSKIND SYSKIND;
//C typedef enum tagLIBFLAGS {
//C LIBFLAG_FRESTRICTED = 0x1,
//C LIBFLAG_FCONTROL = 0x2,
//C LIBFLAG_FHIDDEN = 0x4,
//C LIBFLAG_FHASDISKIMAGE = 0x8
//C } LIBFLAGS;
enum tagLIBFLAGS
{
LIBFLAG_FRESTRICTED = 1,
LIBFLAG_FCONTROL,
LIBFLAG_FHIDDEN = 4,
LIBFLAG_FHASDISKIMAGE = 8,
}
alias tagLIBFLAGS LIBFLAGS;
//C typedef struct tagTLIBATTR {
//C GUID guid;
//C LCID lcid;
//C SYSKIND syskind;
//C WORD wMajorVerNum;
//C WORD wMinorVerNum;
//C WORD wLibFlags;
//C } TLIBATTR;
struct tagTLIBATTR
{
GUID guid;
LCID lcid;
SYSKIND syskind;
WORD wMajorVerNum;
WORD wMinorVerNum;
WORD wLibFlags;
}
alias tagTLIBATTR TLIBATTR;
//C typedef struct tagTLIBATTR *LPTLIBATTR;
alias tagTLIBATTR *LPTLIBATTR;
//C typedef struct ITypeLibVtbl {
//C HRESULT ( *QueryInterface)(
//C ITypeLib* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C ITypeLib* This);
//C ULONG ( *Release)(
//C ITypeLib* This);
//C UINT ( *GetTypeInfoCount)(
//C ITypeLib* This);
//C HRESULT ( *GetTypeInfo)(
//C ITypeLib* This,
//C UINT index,
//C ITypeInfo **ppTInfo);
//C HRESULT ( *GetTypeInfoType)(
//C ITypeLib* This,
//C UINT index,
//C TYPEKIND *pTKind);
//C HRESULT ( *GetTypeInfoOfGuid)(
//C ITypeLib* This,
//C const GUID *const guid,
//C ITypeInfo **ppTinfo);
//C HRESULT ( *GetLibAttr)(
//C ITypeLib* This,
//C TLIBATTR **ppTLibAttr);
//C HRESULT ( *GetTypeComp)(
//C ITypeLib* This,
//C ITypeComp **ppTComp);
//C HRESULT ( *GetDocumentation)(
//C ITypeLib* This,
//C INT index,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
//C HRESULT ( *IsName)(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C WINBOOL *pfName);
//C HRESULT ( *FindName)(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C MEMBERID *rgMemId,
//C USHORT *pcFound);
//C void ( *ReleaseTLibAttr)(
//C ITypeLib* This,
//C TLIBATTR *pTLibAttr);
//C } ITypeLibVtbl;
struct ITypeLibVtbl
{
HRESULT function(ITypeLib *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeLib *This)AddRef;
ULONG function(ITypeLib *This)Release;
UINT function(ITypeLib *This)GetTypeInfoCount;
HRESULT function(ITypeLib *This, UINT index, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(ITypeLib *This, UINT index, TYPEKIND *pTKind)GetTypeInfoType;
HRESULT function(ITypeLib *This, GUID *guid, ITypeInfo **ppTinfo)GetTypeInfoOfGuid;
HRESULT function(ITypeLib *This, TLIBATTR **ppTLibAttr)GetLibAttr;
HRESULT function(ITypeLib *This, ITypeComp **ppTComp)GetTypeComp;
HRESULT function(ITypeLib *This, INT index, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile)GetDocumentation;
HRESULT function(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, WINBOOL *pfName)IsName;
HRESULT function(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, ITypeInfo **ppTInfo, MEMBERID *rgMemId, USHORT *pcFound)FindName;
void function(ITypeLib *This, TLIBATTR *pTLibAttr)ReleaseTLibAttr;
}
//C struct ITypeLib {
//C ITypeLibVtbl* lpVtbl;
//C };
struct ITypeLib
{
ITypeLibVtbl *lpVtbl;
}
//C HRESULT ITypeLib_RemoteGetTypeInfoCount_Proxy(
//C ITypeLib* This,
//C UINT *pcTInfo);
HRESULT ITypeLib_RemoteGetTypeInfoCount_Proxy(ITypeLib *This, UINT *pcTInfo);
//C void ITypeLib_RemoteGetTypeInfoCount_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_RemoteGetTypeInfoCount_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_GetTypeInfo_Proxy(
//C ITypeLib* This,
//C UINT index,
//C ITypeInfo **ppTInfo);
HRESULT ITypeLib_GetTypeInfo_Proxy(ITypeLib *This, UINT index, ITypeInfo **ppTInfo);
//C void ITypeLib_GetTypeInfo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_GetTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_GetTypeInfoType_Proxy(
//C ITypeLib* This,
//C UINT index,
//C TYPEKIND *pTKind);
HRESULT ITypeLib_GetTypeInfoType_Proxy(ITypeLib *This, UINT index, TYPEKIND *pTKind);
//C void ITypeLib_GetTypeInfoType_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_GetTypeInfoType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_GetTypeInfoOfGuid_Proxy(
//C ITypeLib* This,
//C const GUID *const guid,
//C ITypeInfo **ppTinfo);
HRESULT ITypeLib_GetTypeInfoOfGuid_Proxy(ITypeLib *This, GUID *guid, ITypeInfo **ppTinfo);
//C void ITypeLib_GetTypeInfoOfGuid_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_GetTypeInfoOfGuid_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_RemoteGetLibAttr_Proxy(
//C ITypeLib* This,
//C LPTLIBATTR *ppTLibAttr,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeLib_RemoteGetLibAttr_Proxy(ITypeLib *This, LPTLIBATTR *ppTLibAttr, CLEANLOCALSTORAGE *pDummy);
//C void ITypeLib_RemoteGetLibAttr_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_RemoteGetLibAttr_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_GetTypeComp_Proxy(
//C ITypeLib* This,
//C ITypeComp **ppTComp);
HRESULT ITypeLib_GetTypeComp_Proxy(ITypeLib *This, ITypeComp **ppTComp);
//C void ITypeLib_GetTypeComp_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_GetTypeComp_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_RemoteGetDocumentation_Proxy(
//C ITypeLib* This,
//C INT index,
//C DWORD refPtrFlags,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeLib_RemoteGetDocumentation_Proxy(ITypeLib *This, INT index, DWORD refPtrFlags, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C void ITypeLib_RemoteGetDocumentation_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_RemoteGetDocumentation_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_RemoteIsName_Proxy(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C WINBOOL *pfName,
//C BSTR *pBstrLibName);
HRESULT ITypeLib_RemoteIsName_Proxy(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, WINBOOL *pfName, BSTR *pBstrLibName);
//C void ITypeLib_RemoteIsName_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_RemoteIsName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_RemoteFindName_Proxy(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C MEMBERID *rgMemId,
//C USHORT *pcFound,
//C BSTR *pBstrLibName);
HRESULT ITypeLib_RemoteFindName_Proxy(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, ITypeInfo **ppTInfo, MEMBERID *rgMemId, USHORT *pcFound, BSTR *pBstrLibName);
//C void ITypeLib_RemoteFindName_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_RemoteFindName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT ITypeLib_LocalReleaseTLibAttr_Proxy(
//C ITypeLib* This);
HRESULT ITypeLib_LocalReleaseTLibAttr_Proxy(ITypeLib *This);
//C void ITypeLib_LocalReleaseTLibAttr_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void ITypeLib_LocalReleaseTLibAttr_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C UINT ITypeLib_GetTypeInfoCount_Proxy(
//C ITypeLib* This);
UINT ITypeLib_GetTypeInfoCount_Proxy(ITypeLib *This);
//C HRESULT ITypeLib_GetTypeInfoCount_Stub(
//C ITypeLib* This,
//C UINT *pcTInfo);
HRESULT ITypeLib_GetTypeInfoCount_Stub(ITypeLib *This, UINT *pcTInfo);
//C HRESULT ITypeLib_GetLibAttr_Proxy(
//C ITypeLib* This,
//C TLIBATTR **ppTLibAttr);
HRESULT ITypeLib_GetLibAttr_Proxy(ITypeLib *This, TLIBATTR **ppTLibAttr);
//C HRESULT ITypeLib_GetLibAttr_Stub(
//C ITypeLib* This,
//C LPTLIBATTR *ppTLibAttr,
//C CLEANLOCALSTORAGE *pDummy);
HRESULT ITypeLib_GetLibAttr_Stub(ITypeLib *This, LPTLIBATTR *ppTLibAttr, CLEANLOCALSTORAGE *pDummy);
//C HRESULT ITypeLib_GetDocumentation_Proxy(
//C ITypeLib* This,
//C INT index,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeLib_GetDocumentation_Proxy(ITypeLib *This, INT index, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C HRESULT ITypeLib_GetDocumentation_Stub(
//C ITypeLib* This,
//C INT index,
//C DWORD refPtrFlags,
//C BSTR *pBstrName,
//C BSTR *pBstrDocString,
//C DWORD *pdwHelpContext,
//C BSTR *pBstrHelpFile);
HRESULT ITypeLib_GetDocumentation_Stub(ITypeLib *This, INT index, DWORD refPtrFlags, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile);
//C HRESULT ITypeLib_IsName_Proxy(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C WINBOOL *pfName);
HRESULT ITypeLib_IsName_Proxy(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, WINBOOL *pfName);
//C HRESULT ITypeLib_IsName_Stub(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C WINBOOL *pfName,
//C BSTR *pBstrLibName);
HRESULT ITypeLib_IsName_Stub(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, WINBOOL *pfName, BSTR *pBstrLibName);
//C HRESULT ITypeLib_FindName_Proxy(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C MEMBERID *rgMemId,
//C USHORT *pcFound);
HRESULT ITypeLib_FindName_Proxy(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, ITypeInfo **ppTInfo, MEMBERID *rgMemId, USHORT *pcFound);
//C HRESULT ITypeLib_FindName_Stub(
//C ITypeLib* This,
//C LPOLESTR szNameBuf,
//C ULONG lHashVal,
//C ITypeInfo **ppTInfo,
//C MEMBERID *rgMemId,
//C USHORT *pcFound,
//C BSTR *pBstrLibName);
HRESULT ITypeLib_FindName_Stub(ITypeLib *This, LPOLESTR szNameBuf, ULONG lHashVal, ITypeInfo **ppTInfo, MEMBERID *rgMemId, USHORT *pcFound, BSTR *pBstrLibName);
//C void ITypeLib_ReleaseTLibAttr_Proxy(
//C ITypeLib* This,
//C TLIBATTR *pTLibAttr);
void ITypeLib_ReleaseTLibAttr_Proxy(ITypeLib *This, TLIBATTR *pTLibAttr);
//C HRESULT ITypeLib_ReleaseTLibAttr_Stub(
//C ITypeLib* This);
HRESULT ITypeLib_ReleaseTLibAttr_Stub(ITypeLib *This);
//C typedef ITypeLib2 *LPTYPELIB2;
alias ITypeLib2 *LPTYPELIB2;
//C typedef struct ITypeLib2Vtbl {
//C HRESULT ( *QueryInterface)(ITypeLib2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITypeLib2 *This);
//C ULONG ( *Release)(ITypeLib2 *This);
//C UINT ( *GetTypeInfoCount)(ITypeLib2 *This);
//C HRESULT ( *GetTypeInfo)(ITypeLib2 *This,UINT index,ITypeInfo **ppTInfo);
//C HRESULT ( *GetTypeInfoType)(ITypeLib2 *This,UINT index,TYPEKIND *pTKind);
//C HRESULT ( *GetTypeInfoOfGuid)(ITypeLib2 *This,const GUID *const guid,ITypeInfo **ppTinfo);
//C HRESULT ( *GetLibAttr)(ITypeLib2 *This,TLIBATTR **ppTLibAttr);
//C HRESULT ( *GetTypeComp)(ITypeLib2 *This,ITypeComp **ppTComp);
//C HRESULT ( *GetDocumentation)(ITypeLib2 *This,INT index,BSTR *pBstrName,BSTR *pBstrDocString,DWORD *pdwHelpContext,BSTR *pBstrHelpFile);
//C HRESULT ( *IsName)(ITypeLib2 *This,LPOLESTR szNameBuf,ULONG lHashVal,WINBOOL *pfName);
//C HRESULT ( *FindName)(ITypeLib2 *This,LPOLESTR szNameBuf,ULONG lHashVal,ITypeInfo **ppTInfo,MEMBERID *rgMemId,USHORT *pcFound);
//C void ( *ReleaseTLibAttr)(ITypeLib2 *This,TLIBATTR *pTLibAttr);
//C HRESULT ( *GetCustData)(ITypeLib2 *This,const GUID *const guid,VARIANT *pVarVal);
//C HRESULT ( *GetLibStatistics)(ITypeLib2 *This,ULONG *pcUniqueNames,ULONG *pcchUniqueNames);
//C HRESULT ( *GetDocumentation2)(ITypeLib2 *This,INT index,LCID lcid,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
//C HRESULT ( *GetAllCustData)(ITypeLib2 *This,CUSTDATA *pCustData);
//C } ITypeLib2Vtbl;
struct ITypeLib2Vtbl
{
HRESULT function(ITypeLib2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeLib2 *This)AddRef;
ULONG function(ITypeLib2 *This)Release;
UINT function(ITypeLib2 *This)GetTypeInfoCount;
HRESULT function(ITypeLib2 *This, UINT index, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(ITypeLib2 *This, UINT index, TYPEKIND *pTKind)GetTypeInfoType;
HRESULT function(ITypeLib2 *This, GUID *guid, ITypeInfo **ppTinfo)GetTypeInfoOfGuid;
HRESULT function(ITypeLib2 *This, TLIBATTR **ppTLibAttr)GetLibAttr;
HRESULT function(ITypeLib2 *This, ITypeComp **ppTComp)GetTypeComp;
HRESULT function(ITypeLib2 *This, INT index, BSTR *pBstrName, BSTR *pBstrDocString, DWORD *pdwHelpContext, BSTR *pBstrHelpFile)GetDocumentation;
HRESULT function(ITypeLib2 *This, LPOLESTR szNameBuf, ULONG lHashVal, WINBOOL *pfName)IsName;
HRESULT function(ITypeLib2 *This, LPOLESTR szNameBuf, ULONG lHashVal, ITypeInfo **ppTInfo, MEMBERID *rgMemId, USHORT *pcFound)FindName;
void function(ITypeLib2 *This, TLIBATTR *pTLibAttr)ReleaseTLibAttr;
HRESULT function(ITypeLib2 *This, GUID *guid, VARIANT *pVarVal)GetCustData;
HRESULT function(ITypeLib2 *This, ULONG *pcUniqueNames, ULONG *pcchUniqueNames)GetLibStatistics;
HRESULT function(ITypeLib2 *This, INT index, LCID lcid, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll)GetDocumentation2;
HRESULT function(ITypeLib2 *This, CUSTDATA *pCustData)GetAllCustData;
}
//C struct ITypeLib2 {
//C struct ITypeLib2Vtbl *lpVtbl;
//C };
struct ITypeLib2
{
ITypeLib2Vtbl *lpVtbl;
}
//C HRESULT ITypeLib2_GetCustData_Proxy(ITypeLib2 *This,const GUID *const guid,VARIANT *pVarVal);
HRESULT ITypeLib2_GetCustData_Proxy(ITypeLib2 *This, GUID *guid, VARIANT *pVarVal);
//C void ITypeLib2_GetCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeLib2_GetCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeLib2_RemoteGetLibStatistics_Proxy(ITypeLib2 *This,ULONG *pcUniqueNames,ULONG *pcchUniqueNames);
HRESULT ITypeLib2_RemoteGetLibStatistics_Proxy(ITypeLib2 *This, ULONG *pcUniqueNames, ULONG *pcchUniqueNames);
//C void ITypeLib2_RemoteGetLibStatistics_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeLib2_RemoteGetLibStatistics_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeLib2_RemoteGetDocumentation2_Proxy(ITypeLib2 *This,INT index,LCID lcid,DWORD refPtrFlags,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeLib2_RemoteGetDocumentation2_Proxy(ITypeLib2 *This, INT index, LCID lcid, DWORD refPtrFlags, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C void ITypeLib2_RemoteGetDocumentation2_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeLib2_RemoteGetDocumentation2_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeLib2_GetAllCustData_Proxy(ITypeLib2 *This,CUSTDATA *pCustData);
HRESULT ITypeLib2_GetAllCustData_Proxy(ITypeLib2 *This, CUSTDATA *pCustData);
//C void ITypeLib2_GetAllCustData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeLib2_GetAllCustData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ITypeChangeEvents *LPTYPECHANGEEVENTS;
alias ITypeChangeEvents *LPTYPECHANGEEVENTS;
//C typedef enum tagCHANGEKIND {
//C CHANGEKIND_ADDMEMBER = 0,
//C CHANGEKIND_DELETEMEMBER,CHANGEKIND_SETNAMES,CHANGEKIND_SETDOCUMENTATION,
//C CHANGEKIND_GENERAL,CHANGEKIND_INVALIDATE,CHANGEKIND_CHANGEFAILED,
//C CHANGEKIND_MAX
//C } CHANGEKIND;
enum tagCHANGEKIND
{
CHANGEKIND_ADDMEMBER,
CHANGEKIND_DELETEMEMBER,
CHANGEKIND_SETNAMES,
CHANGEKIND_SETDOCUMENTATION,
CHANGEKIND_GENERAL,
CHANGEKIND_INVALIDATE,
CHANGEKIND_CHANGEFAILED,
CHANGEKIND_MAX,
}
alias tagCHANGEKIND CHANGEKIND;
//C typedef struct ITypeChangeEventsVtbl {
//C HRESULT ( *QueryInterface)(ITypeChangeEvents *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITypeChangeEvents *This);
//C ULONG ( *Release)(ITypeChangeEvents *This);
//C HRESULT ( *RequestTypeChange)(ITypeChangeEvents *This,CHANGEKIND changeKind,ITypeInfo *pTInfoBefore,LPOLESTR pStrName,INT *pfCancel);
//C HRESULT ( *AfterTypeChange)(ITypeChangeEvents *This,CHANGEKIND changeKind,ITypeInfo *pTInfoAfter,LPOLESTR pStrName);
//C } ITypeChangeEventsVtbl;
struct ITypeChangeEventsVtbl
{
HRESULT function(ITypeChangeEvents *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeChangeEvents *This)AddRef;
ULONG function(ITypeChangeEvents *This)Release;
HRESULT function(ITypeChangeEvents *This, CHANGEKIND changeKind, ITypeInfo *pTInfoBefore, LPOLESTR pStrName, INT *pfCancel)RequestTypeChange;
HRESULT function(ITypeChangeEvents *This, CHANGEKIND changeKind, ITypeInfo *pTInfoAfter, LPOLESTR pStrName)AfterTypeChange;
}
//C struct ITypeChangeEvents {
//C struct ITypeChangeEventsVtbl *lpVtbl;
//C };
struct ITypeChangeEvents
{
ITypeChangeEventsVtbl *lpVtbl;
}
//C HRESULT ITypeChangeEvents_RequestTypeChange_Proxy(ITypeChangeEvents *This,CHANGEKIND changeKind,ITypeInfo *pTInfoBefore,LPOLESTR pStrName,INT *pfCancel);
HRESULT ITypeChangeEvents_RequestTypeChange_Proxy(ITypeChangeEvents *This, CHANGEKIND changeKind, ITypeInfo *pTInfoBefore, LPOLESTR pStrName, INT *pfCancel);
//C void ITypeChangeEvents_RequestTypeChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeChangeEvents_RequestTypeChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeChangeEvents_AfterTypeChange_Proxy(ITypeChangeEvents *This,CHANGEKIND changeKind,ITypeInfo *pTInfoAfter,LPOLESTR pStrName);
HRESULT ITypeChangeEvents_AfterTypeChange_Proxy(ITypeChangeEvents *This, CHANGEKIND changeKind, ITypeInfo *pTInfoAfter, LPOLESTR pStrName);
//C void ITypeChangeEvents_AfterTypeChange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeChangeEvents_AfterTypeChange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IErrorInfo *LPERRORINFO;
alias IErrorInfo *LPERRORINFO;
//C typedef struct IErrorInfoVtbl {
//C HRESULT ( *QueryInterface)(IErrorInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IErrorInfo *This);
//C ULONG ( *Release)(IErrorInfo *This);
//C HRESULT ( *GetGUID)(IErrorInfo *This,GUID *pGUID);
//C HRESULT ( *GetSource)(IErrorInfo *This,BSTR *pBstrSource);
//C HRESULT ( *GetDescription)(IErrorInfo *This,BSTR *pBstrDescription);
//C HRESULT ( *GetHelpFile)(IErrorInfo *This,BSTR *pBstrHelpFile);
//C HRESULT ( *GetHelpContext)(IErrorInfo *This,DWORD *pdwHelpContext);
//C } IErrorInfoVtbl;
struct IErrorInfoVtbl
{
HRESULT function(IErrorInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IErrorInfo *This)AddRef;
ULONG function(IErrorInfo *This)Release;
HRESULT function(IErrorInfo *This, GUID *pGUID)GetGUID;
HRESULT function(IErrorInfo *This, BSTR *pBstrSource)GetSource;
HRESULT function(IErrorInfo *This, BSTR *pBstrDescription)GetDescription;
HRESULT function(IErrorInfo *This, BSTR *pBstrHelpFile)GetHelpFile;
HRESULT function(IErrorInfo *This, DWORD *pdwHelpContext)GetHelpContext;
}
//C struct IErrorInfo {
//C struct IErrorInfoVtbl *lpVtbl;
//C };
struct IErrorInfo
{
IErrorInfoVtbl *lpVtbl;
}
//C HRESULT IErrorInfo_GetGUID_Proxy(IErrorInfo *This,GUID *pGUID);
HRESULT IErrorInfo_GetGUID_Proxy(IErrorInfo *This, GUID *pGUID);
//C void IErrorInfo_GetGUID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IErrorInfo_GetGUID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IErrorInfo_GetSource_Proxy(IErrorInfo *This,BSTR *pBstrSource);
HRESULT IErrorInfo_GetSource_Proxy(IErrorInfo *This, BSTR *pBstrSource);
//C void IErrorInfo_GetSource_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IErrorInfo_GetSource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IErrorInfo_GetDescription_Proxy(IErrorInfo *This,BSTR *pBstrDescription);
HRESULT IErrorInfo_GetDescription_Proxy(IErrorInfo *This, BSTR *pBstrDescription);
//C void IErrorInfo_GetDescription_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IErrorInfo_GetDescription_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IErrorInfo_GetHelpFile_Proxy(IErrorInfo *This,BSTR *pBstrHelpFile);
HRESULT IErrorInfo_GetHelpFile_Proxy(IErrorInfo *This, BSTR *pBstrHelpFile);
//C void IErrorInfo_GetHelpFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IErrorInfo_GetHelpFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IErrorInfo_GetHelpContext_Proxy(IErrorInfo *This,DWORD *pdwHelpContext);
HRESULT IErrorInfo_GetHelpContext_Proxy(IErrorInfo *This, DWORD *pdwHelpContext);
//C void IErrorInfo_GetHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IErrorInfo_GetHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ICreateErrorInfo *LPCREATEERRORINFO;
alias ICreateErrorInfo *LPCREATEERRORINFO;
//C typedef struct ICreateErrorInfoVtbl {
//C HRESULT ( *QueryInterface)(ICreateErrorInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICreateErrorInfo *This);
//C ULONG ( *Release)(ICreateErrorInfo *This);
//C HRESULT ( *SetGUID)(ICreateErrorInfo *This,const GUID *const rguid);
//C HRESULT ( *SetSource)(ICreateErrorInfo *This,LPOLESTR szSource);
//C HRESULT ( *SetDescription)(ICreateErrorInfo *This,LPOLESTR szDescription);
//C HRESULT ( *SetHelpFile)(ICreateErrorInfo *This,LPOLESTR szHelpFile);
//C HRESULT ( *SetHelpContext)(ICreateErrorInfo *This,DWORD dwHelpContext);
//C } ICreateErrorInfoVtbl;
struct ICreateErrorInfoVtbl
{
HRESULT function(ICreateErrorInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICreateErrorInfo *This)AddRef;
ULONG function(ICreateErrorInfo *This)Release;
HRESULT function(ICreateErrorInfo *This, GUID *rguid)SetGUID;
HRESULT function(ICreateErrorInfo *This, LPOLESTR szSource)SetSource;
HRESULT function(ICreateErrorInfo *This, LPOLESTR szDescription)SetDescription;
HRESULT function(ICreateErrorInfo *This, LPOLESTR szHelpFile)SetHelpFile;
HRESULT function(ICreateErrorInfo *This, DWORD dwHelpContext)SetHelpContext;
}
//C struct ICreateErrorInfo {
//C struct ICreateErrorInfoVtbl *lpVtbl;
//C };
struct ICreateErrorInfo
{
ICreateErrorInfoVtbl *lpVtbl;
}
//C HRESULT ICreateErrorInfo_SetGUID_Proxy(ICreateErrorInfo *This,const GUID *const rguid);
HRESULT ICreateErrorInfo_SetGUID_Proxy(ICreateErrorInfo *This, GUID *rguid);
//C void ICreateErrorInfo_SetGUID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateErrorInfo_SetGUID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateErrorInfo_SetSource_Proxy(ICreateErrorInfo *This,LPOLESTR szSource);
HRESULT ICreateErrorInfo_SetSource_Proxy(ICreateErrorInfo *This, LPOLESTR szSource);
//C void ICreateErrorInfo_SetSource_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateErrorInfo_SetSource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateErrorInfo_SetDescription_Proxy(ICreateErrorInfo *This,LPOLESTR szDescription);
HRESULT ICreateErrorInfo_SetDescription_Proxy(ICreateErrorInfo *This, LPOLESTR szDescription);
//C void ICreateErrorInfo_SetDescription_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateErrorInfo_SetDescription_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateErrorInfo_SetHelpFile_Proxy(ICreateErrorInfo *This,LPOLESTR szHelpFile);
HRESULT ICreateErrorInfo_SetHelpFile_Proxy(ICreateErrorInfo *This, LPOLESTR szHelpFile);
//C void ICreateErrorInfo_SetHelpFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateErrorInfo_SetHelpFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICreateErrorInfo_SetHelpContext_Proxy(ICreateErrorInfo *This,DWORD dwHelpContext);
HRESULT ICreateErrorInfo_SetHelpContext_Proxy(ICreateErrorInfo *This, DWORD dwHelpContext);
//C void ICreateErrorInfo_SetHelpContext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICreateErrorInfo_SetHelpContext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef ISupportErrorInfo *LPSUPPORTERRORINFO;
alias ISupportErrorInfo *LPSUPPORTERRORINFO;
//C typedef struct ISupportErrorInfoVtbl {
//C HRESULT ( *QueryInterface)(ISupportErrorInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISupportErrorInfo *This);
//C ULONG ( *Release)(ISupportErrorInfo *This);
//C HRESULT ( *InterfaceSupportsErrorInfo)(ISupportErrorInfo *This,const IID *const riid);
//C } ISupportErrorInfoVtbl;
struct ISupportErrorInfoVtbl
{
HRESULT function(ISupportErrorInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISupportErrorInfo *This)AddRef;
ULONG function(ISupportErrorInfo *This)Release;
HRESULT function(ISupportErrorInfo *This, IID *riid)InterfaceSupportsErrorInfo;
}
//C struct ISupportErrorInfo {
//C struct ISupportErrorInfoVtbl *lpVtbl;
//C };
struct ISupportErrorInfo
{
ISupportErrorInfoVtbl *lpVtbl;
}
//C HRESULT ISupportErrorInfo_InterfaceSupportsErrorInfo_Proxy(ISupportErrorInfo *This,const IID *const riid);
HRESULT ISupportErrorInfo_InterfaceSupportsErrorInfo_Proxy(ISupportErrorInfo *This, IID *riid);
//C void ISupportErrorInfo_InterfaceSupportsErrorInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISupportErrorInfo_InterfaceSupportsErrorInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ITypeFactoryVtbl {
//C HRESULT ( *QueryInterface)(ITypeFactory *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITypeFactory *This);
//C ULONG ( *Release)(ITypeFactory *This);
//C HRESULT ( *CreateFromTypeInfo)(ITypeFactory *This,ITypeInfo *pTypeInfo,const IID *const riid,IUnknown **ppv);
//C } ITypeFactoryVtbl;
struct ITypeFactoryVtbl
{
HRESULT function(ITypeFactory *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeFactory *This)AddRef;
ULONG function(ITypeFactory *This)Release;
HRESULT function(ITypeFactory *This, ITypeInfo *pTypeInfo, IID *riid, IUnknown **ppv)CreateFromTypeInfo;
}
//C struct ITypeFactory {
//C struct ITypeFactoryVtbl *lpVtbl;
//C };
struct ITypeFactory
{
ITypeFactoryVtbl *lpVtbl;
}
//C HRESULT ITypeFactory_CreateFromTypeInfo_Proxy(ITypeFactory *This,ITypeInfo *pTypeInfo,const IID *const riid,IUnknown **ppv);
HRESULT ITypeFactory_CreateFromTypeInfo_Proxy(ITypeFactory *This, ITypeInfo *pTypeInfo, IID *riid, IUnknown **ppv);
//C void ITypeFactory_CreateFromTypeInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeFactory_CreateFromTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct ITypeMarshalVtbl {
//C HRESULT ( *QueryInterface)(ITypeMarshal *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ITypeMarshal *This);
//C ULONG ( *Release)(ITypeMarshal *This);
//C HRESULT ( *Size)(ITypeMarshal *This,PVOID pvType,DWORD dwDestContext,PVOID pvDestContext,ULONG *pSize);
//C HRESULT ( *Marshal)(ITypeMarshal *This,PVOID pvType,DWORD dwDestContext,PVOID pvDestContext,ULONG cbBufferLength,BYTE *pBuffer,ULONG *pcbWritten);
//C HRESULT ( *Unmarshal)(ITypeMarshal *This,PVOID pvType,DWORD dwFlags,ULONG cbBufferLength,BYTE *pBuffer,ULONG *pcbRead);
//C HRESULT ( *Free)(ITypeMarshal *This,PVOID pvType);
//C } ITypeMarshalVtbl;
struct ITypeMarshalVtbl
{
HRESULT function(ITypeMarshal *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ITypeMarshal *This)AddRef;
ULONG function(ITypeMarshal *This)Release;
HRESULT function(ITypeMarshal *This, PVOID pvType, DWORD dwDestContext, PVOID pvDestContext, ULONG *pSize)Size;
HRESULT function(ITypeMarshal *This, PVOID pvType, DWORD dwDestContext, PVOID pvDestContext, ULONG cbBufferLength, BYTE *pBuffer, ULONG *pcbWritten)Marshal;
HRESULT function(ITypeMarshal *This, PVOID pvType, DWORD dwFlags, ULONG cbBufferLength, BYTE *pBuffer, ULONG *pcbRead)Unmarshal;
HRESULT function(ITypeMarshal *This, PVOID pvType)Free;
}
//C struct ITypeMarshal {
//C struct ITypeMarshalVtbl *lpVtbl;
//C };
struct ITypeMarshal
{
ITypeMarshalVtbl *lpVtbl;
}
//C HRESULT ITypeMarshal_Size_Proxy(ITypeMarshal *This,PVOID pvType,DWORD dwDestContext,PVOID pvDestContext,ULONG *pSize);
HRESULT ITypeMarshal_Size_Proxy(ITypeMarshal *This, PVOID pvType, DWORD dwDestContext, PVOID pvDestContext, ULONG *pSize);
//C void ITypeMarshal_Size_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeMarshal_Size_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeMarshal_Marshal_Proxy(ITypeMarshal *This,PVOID pvType,DWORD dwDestContext,PVOID pvDestContext,ULONG cbBufferLength,BYTE *pBuffer,ULONG *pcbWritten);
HRESULT ITypeMarshal_Marshal_Proxy(ITypeMarshal *This, PVOID pvType, DWORD dwDestContext, PVOID pvDestContext, ULONG cbBufferLength, BYTE *pBuffer, ULONG *pcbWritten);
//C void ITypeMarshal_Marshal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeMarshal_Marshal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeMarshal_Unmarshal_Proxy(ITypeMarshal *This,PVOID pvType,DWORD dwFlags,ULONG cbBufferLength,BYTE *pBuffer,ULONG *pcbRead);
HRESULT ITypeMarshal_Unmarshal_Proxy(ITypeMarshal *This, PVOID pvType, DWORD dwFlags, ULONG cbBufferLength, BYTE *pBuffer, ULONG *pcbRead);
//C void ITypeMarshal_Unmarshal_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeMarshal_Unmarshal_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ITypeMarshal_Free_Proxy(ITypeMarshal *This,PVOID pvType);
HRESULT ITypeMarshal_Free_Proxy(ITypeMarshal *This, PVOID pvType);
//C void ITypeMarshal_Free_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ITypeMarshal_Free_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IRecordInfo *LPRECORDINFO;
alias IRecordInfo *LPRECORDINFO;
//C typedef struct IRecordInfoVtbl {
//C HRESULT ( *QueryInterface)(
//C IRecordInfo* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IRecordInfo* This);
//C ULONG ( *Release)(
//C IRecordInfo* This);
//C HRESULT ( *RecordInit)(
//C IRecordInfo* This,
//C PVOID pvNew);
//C HRESULT ( *RecordClear)(
//C IRecordInfo* This,
//C PVOID pvExisting);
//C HRESULT ( *RecordCopy)(
//C IRecordInfo* This,
//C PVOID pvExisting,
//C PVOID pvNew);
//C HRESULT ( *GetGuid)(
//C IRecordInfo* This,
//C GUID *pguid);
//C HRESULT ( *GetName)(
//C IRecordInfo* This,
//C BSTR *pbstrName);
//C HRESULT ( *GetSize)(
//C IRecordInfo* This,
//C ULONG *pcbSize);
//C HRESULT ( *GetTypeInfo)(
//C IRecordInfo* This,
//C ITypeInfo **ppTypeInfo);
//C HRESULT ( *GetField)(
//C IRecordInfo* This,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
//C HRESULT ( *GetFieldNoCopy)(
//C IRecordInfo* This,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField,
//C PVOID *ppvDataCArray);
//C HRESULT ( *PutField)(
//C IRecordInfo* This,
//C ULONG wFlags,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
//C HRESULT ( *PutFieldNoCopy)(
//C IRecordInfo* This,
//C ULONG wFlags,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
//C HRESULT ( *GetFieldNames)(
//C IRecordInfo* This,
//C ULONG *pcNames,
//C BSTR *rgBstrNames);
//C WINBOOL ( *IsMatchingType)(
//C IRecordInfo* This,
//C IRecordInfo *pRecordInfo);
//C PVOID ( *RecordCreate)(
//C IRecordInfo* This);
//C HRESULT ( *RecordCreateCopy)(
//C IRecordInfo* This,
//C PVOID pvSource,
//C PVOID *ppvDest);
//C HRESULT ( *RecordDestroy)(
//C IRecordInfo* This,
//C PVOID pvRecord);
//C } IRecordInfoVtbl;
struct IRecordInfoVtbl
{
HRESULT function(IRecordInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IRecordInfo *This)AddRef;
ULONG function(IRecordInfo *This)Release;
HRESULT function(IRecordInfo *This, PVOID pvNew)RecordInit;
HRESULT function(IRecordInfo *This, PVOID pvExisting)RecordClear;
HRESULT function(IRecordInfo *This, PVOID pvExisting, PVOID pvNew)RecordCopy;
HRESULT function(IRecordInfo *This, GUID *pguid)GetGuid;
HRESULT function(IRecordInfo *This, BSTR *pbstrName)GetName;
HRESULT function(IRecordInfo *This, ULONG *pcbSize)GetSize;
HRESULT function(IRecordInfo *This, ITypeInfo **ppTypeInfo)GetTypeInfo;
HRESULT function(IRecordInfo *This, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField)GetField;
HRESULT function(IRecordInfo *This, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField, PVOID *ppvDataCArray)GetFieldNoCopy;
HRESULT function(IRecordInfo *This, ULONG wFlags, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField)PutField;
HRESULT function(IRecordInfo *This, ULONG wFlags, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField)PutFieldNoCopy;
HRESULT function(IRecordInfo *This, ULONG *pcNames, BSTR *rgBstrNames)GetFieldNames;
WINBOOL function(IRecordInfo *This, IRecordInfo *pRecordInfo)IsMatchingType;
PVOID function(IRecordInfo *This)RecordCreate;
HRESULT function(IRecordInfo *This, PVOID pvSource, PVOID *ppvDest)RecordCreateCopy;
HRESULT function(IRecordInfo *This, PVOID pvRecord)RecordDestroy;
}
//C struct IRecordInfo {
//C IRecordInfoVtbl* lpVtbl;
//C };
struct IRecordInfo
{
IRecordInfoVtbl *lpVtbl;
}
//C HRESULT IRecordInfo_RecordInit_Proxy(
//C IRecordInfo* This,
//C PVOID pvNew);
HRESULT IRecordInfo_RecordInit_Proxy(IRecordInfo *This, PVOID pvNew);
//C void IRecordInfo_RecordInit_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordInit_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_RecordClear_Proxy(
//C IRecordInfo* This,
//C PVOID pvExisting);
HRESULT IRecordInfo_RecordClear_Proxy(IRecordInfo *This, PVOID pvExisting);
//C void IRecordInfo_RecordClear_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordClear_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_RecordCopy_Proxy(
//C IRecordInfo* This,
//C PVOID pvExisting,
//C PVOID pvNew);
HRESULT IRecordInfo_RecordCopy_Proxy(IRecordInfo *This, PVOID pvExisting, PVOID pvNew);
//C void IRecordInfo_RecordCopy_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordCopy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetGuid_Proxy(
//C IRecordInfo* This,
//C GUID *pguid);
HRESULT IRecordInfo_GetGuid_Proxy(IRecordInfo *This, GUID *pguid);
//C void IRecordInfo_GetGuid_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetGuid_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetName_Proxy(
//C IRecordInfo* This,
//C BSTR *pbstrName);
HRESULT IRecordInfo_GetName_Proxy(IRecordInfo *This, BSTR *pbstrName);
//C void IRecordInfo_GetName_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetSize_Proxy(
//C IRecordInfo* This,
//C ULONG *pcbSize);
HRESULT IRecordInfo_GetSize_Proxy(IRecordInfo *This, ULONG *pcbSize);
//C void IRecordInfo_GetSize_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetTypeInfo_Proxy(
//C IRecordInfo* This,
//C ITypeInfo **ppTypeInfo);
HRESULT IRecordInfo_GetTypeInfo_Proxy(IRecordInfo *This, ITypeInfo **ppTypeInfo);
//C void IRecordInfo_GetTypeInfo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetTypeInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetField_Proxy(
//C IRecordInfo* This,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
HRESULT IRecordInfo_GetField_Proxy(IRecordInfo *This, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField);
//C void IRecordInfo_GetField_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetField_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetFieldNoCopy_Proxy(
//C IRecordInfo* This,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField,
//C PVOID *ppvDataCArray);
HRESULT IRecordInfo_GetFieldNoCopy_Proxy(IRecordInfo *This, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField, PVOID *ppvDataCArray);
//C void IRecordInfo_GetFieldNoCopy_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetFieldNoCopy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_PutField_Proxy(
//C IRecordInfo* This,
//C ULONG wFlags,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
HRESULT IRecordInfo_PutField_Proxy(IRecordInfo *This, ULONG wFlags, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField);
//C void IRecordInfo_PutField_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_PutField_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_PutFieldNoCopy_Proxy(
//C IRecordInfo* This,
//C ULONG wFlags,
//C PVOID pvData,
//C LPCOLESTR szFieldName,
//C VARIANT *pvarField);
HRESULT IRecordInfo_PutFieldNoCopy_Proxy(IRecordInfo *This, ULONG wFlags, PVOID pvData, LPCOLESTR szFieldName, VARIANT *pvarField);
//C void IRecordInfo_PutFieldNoCopy_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_PutFieldNoCopy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_GetFieldNames_Proxy(
//C IRecordInfo* This,
//C ULONG *pcNames,
//C BSTR *rgBstrNames);
HRESULT IRecordInfo_GetFieldNames_Proxy(IRecordInfo *This, ULONG *pcNames, BSTR *rgBstrNames);
//C void IRecordInfo_GetFieldNames_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_GetFieldNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C WINBOOL IRecordInfo_IsMatchingType_Proxy(
//C IRecordInfo* This,
//C IRecordInfo *pRecordInfo);
WINBOOL IRecordInfo_IsMatchingType_Proxy(IRecordInfo *This, IRecordInfo *pRecordInfo);
//C void IRecordInfo_IsMatchingType_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_IsMatchingType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C PVOID IRecordInfo_RecordCreate_Proxy(
//C IRecordInfo* This);
PVOID IRecordInfo_RecordCreate_Proxy(IRecordInfo *This);
//C void IRecordInfo_RecordCreate_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordCreate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_RecordCreateCopy_Proxy(
//C IRecordInfo* This,
//C PVOID pvSource,
//C PVOID *ppvDest);
HRESULT IRecordInfo_RecordCreateCopy_Proxy(IRecordInfo *This, PVOID pvSource, PVOID *ppvDest);
//C void IRecordInfo_RecordCreateCopy_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordCreateCopy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IRecordInfo_RecordDestroy_Proxy(
//C IRecordInfo* This,
//C PVOID pvRecord);
HRESULT IRecordInfo_RecordDestroy_Proxy(IRecordInfo *This, PVOID pvRecord);
//C void IRecordInfo_RecordDestroy_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IRecordInfo_RecordDestroy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IErrorLog *LPERRORLOG;
alias IErrorLog *LPERRORLOG;
//C typedef struct IErrorLogVtbl {
//C HRESULT ( *QueryInterface)(
//C IErrorLog* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IErrorLog* This);
//C ULONG ( *Release)(
//C IErrorLog* This);
//C HRESULT ( *AddError)(
//C IErrorLog* This,
//C LPCOLESTR pszPropName,
//C EXCEPINFO *pExcepInfo);
//C } IErrorLogVtbl;
struct IErrorLogVtbl
{
HRESULT function(IErrorLog *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IErrorLog *This)AddRef;
ULONG function(IErrorLog *This)Release;
HRESULT function(IErrorLog *This, LPCOLESTR pszPropName, EXCEPINFO *pExcepInfo)AddError;
}
//C struct IErrorLog {
//C IErrorLogVtbl* lpVtbl;
//C };
struct IErrorLog
{
IErrorLogVtbl *lpVtbl;
}
//C HRESULT IErrorLog_AddError_Proxy(
//C IErrorLog* This,
//C LPCOLESTR pszPropName,
//C EXCEPINFO *pExcepInfo);
HRESULT IErrorLog_AddError_Proxy(IErrorLog *This, LPCOLESTR pszPropName, EXCEPINFO *pExcepInfo);
//C void IErrorLog_AddError_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IErrorLog_AddError_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C typedef IPropertyBag *LPPROPERTYBAG;
alias IPropertyBag *LPPROPERTYBAG;
//C typedef struct IPropertyBagVtbl {
//C HRESULT ( *QueryInterface)(IPropertyBag *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPropertyBag *This);
//C ULONG ( *Release)(IPropertyBag *This);
//C HRESULT ( *Read)(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar,IErrorLog *pErrorLog);
//C HRESULT ( *Write)(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar);
//C } IPropertyBagVtbl;
struct IPropertyBagVtbl
{
HRESULT function(IPropertyBag *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPropertyBag *This)AddRef;
ULONG function(IPropertyBag *This)Release;
HRESULT function(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog *pErrorLog)Read;
HRESULT function(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar)Write;
}
//C struct IPropertyBag {
//C struct IPropertyBagVtbl *lpVtbl;
//C };
struct IPropertyBag
{
IPropertyBagVtbl *lpVtbl;
}
//C HRESULT IPropertyBag_RemoteRead_Proxy(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar,IErrorLog *pErrorLog,DWORD varType,IUnknown *pUnkObj);
HRESULT IPropertyBag_RemoteRead_Proxy(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog *pErrorLog, DWORD varType, IUnknown *pUnkObj);
//C void IPropertyBag_RemoteRead_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyBag_RemoteRead_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyBag_Write_Proxy(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar);
HRESULT IPropertyBag_Write_Proxy(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar);
//C void IPropertyBag_Write_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyBag_Write_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumVARIANT_Next_Proxy(IEnumVARIANT *This,ULONG celt,VARIANT *rgVar,ULONG *pCeltFetched);
HRESULT IEnumVARIANT_Next_Proxy(IEnumVARIANT *This, ULONG celt, VARIANT *rgVar, ULONG *pCeltFetched);
//C HRESULT IEnumVARIANT_Next_Stub(IEnumVARIANT *This,ULONG celt,VARIANT *rgVar,ULONG *pCeltFetched);
HRESULT IEnumVARIANT_Next_Stub(IEnumVARIANT *This, ULONG celt, VARIANT *rgVar, ULONG *pCeltFetched);
//C HRESULT ITypeInfo2_GetDocumentation2_Proxy(ITypeInfo2 *This,MEMBERID memid,LCID lcid,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeInfo2_GetDocumentation2_Proxy(ITypeInfo2 *This, MEMBERID memid, LCID lcid, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C HRESULT ITypeInfo2_GetDocumentation2_Stub(ITypeInfo2 *This,MEMBERID memid,LCID lcid,DWORD refPtrFlags,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeInfo2_GetDocumentation2_Stub(ITypeInfo2 *This, MEMBERID memid, LCID lcid, DWORD refPtrFlags, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C HRESULT ITypeLib2_GetLibStatistics_Proxy(ITypeLib2 *This,ULONG *pcUniqueNames,ULONG *pcchUniqueNames);
HRESULT ITypeLib2_GetLibStatistics_Proxy(ITypeLib2 *This, ULONG *pcUniqueNames, ULONG *pcchUniqueNames);
//C HRESULT ITypeLib2_GetLibStatistics_Stub(ITypeLib2 *This,ULONG *pcUniqueNames,ULONG *pcchUniqueNames);
HRESULT ITypeLib2_GetLibStatistics_Stub(ITypeLib2 *This, ULONG *pcUniqueNames, ULONG *pcchUniqueNames);
//C HRESULT ITypeLib2_GetDocumentation2_Proxy(ITypeLib2 *This,INT index,LCID lcid,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeLib2_GetDocumentation2_Proxy(ITypeLib2 *This, INT index, LCID lcid, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C HRESULT ITypeLib2_GetDocumentation2_Stub(ITypeLib2 *This,INT index,LCID lcid,DWORD refPtrFlags,BSTR *pbstrHelpString,DWORD *pdwHelpStringContext,BSTR *pbstrHelpStringDll);
HRESULT ITypeLib2_GetDocumentation2_Stub(ITypeLib2 *This, INT index, LCID lcid, DWORD refPtrFlags, BSTR *pbstrHelpString, DWORD *pdwHelpStringContext, BSTR *pbstrHelpStringDll);
//C HRESULT IPropertyBag_Read_Proxy(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar,IErrorLog *pErrorLog);
HRESULT IPropertyBag_Read_Proxy(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog *pErrorLog);
//C HRESULT IPropertyBag_Read_Stub(IPropertyBag *This,LPCOLESTR pszPropName,VARIANT *pVar,IErrorLog *pErrorLog,DWORD varType,IUnknown *pUnkObj);
HRESULT IPropertyBag_Read_Stub(IPropertyBag *This, LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog *pErrorLog, DWORD varType, IUnknown *pUnkObj);
//C ULONG VARIANT_UserSize (ULONG *,ULONG,VARIANT *);
ULONG VARIANT_UserSize(ULONG *, ULONG , VARIANT *);
//C unsigned char * VARIANT_UserMarshal (ULONG *,unsigned char *,VARIANT *);
ubyte * VARIANT_UserMarshal(ULONG *, ubyte *, VARIANT *);
//C unsigned char * VARIANT_UserUnmarshal(ULONG *,unsigned char *,VARIANT *);
ubyte * VARIANT_UserUnmarshal(ULONG *, ubyte *, VARIANT *);
//C void VARIANT_UserFree (ULONG *,VARIANT *);
void VARIANT_UserFree(ULONG *, VARIANT *);
//C ULONG BSTR_UserSize (ULONG *,ULONG,BSTR *);
ULONG BSTR_UserSize(ULONG *, ULONG , BSTR *);
//C unsigned char * BSTR_UserMarshal (ULONG *,unsigned char *,BSTR *);
ubyte * BSTR_UserMarshal(ULONG *, ubyte *, BSTR *);
//C unsigned char * BSTR_UserUnmarshal(ULONG *,unsigned char *,BSTR *);
ubyte * BSTR_UserUnmarshal(ULONG *, ubyte *, BSTR *);
//C void BSTR_UserFree (ULONG *,BSTR *);
void BSTR_UserFree(ULONG *, BSTR *);
//C ULONG CLEANLOCALSTORAGE_UserSize (ULONG *,ULONG,CLEANLOCALSTORAGE *);
ULONG CLEANLOCALSTORAGE_UserSize(ULONG *, ULONG , CLEANLOCALSTORAGE *);
//C unsigned char * CLEANLOCALSTORAGE_UserMarshal (ULONG *,unsigned char *,CLEANLOCALSTORAGE *);
ubyte * CLEANLOCALSTORAGE_UserMarshal(ULONG *, ubyte *, CLEANLOCALSTORAGE *);
//C unsigned char * CLEANLOCALSTORAGE_UserUnmarshal(ULONG *,unsigned char *,CLEANLOCALSTORAGE *);
ubyte * CLEANLOCALSTORAGE_UserUnmarshal(ULONG *, ubyte *, CLEANLOCALSTORAGE *);
//C void CLEANLOCALSTORAGE_UserFree (ULONG *,CLEANLOCALSTORAGE *);
void CLEANLOCALSTORAGE_UserFree(ULONG *, CLEANLOCALSTORAGE *);
//C typedef struct IXMLDOMImplementation IXMLDOMImplementation;
//C typedef struct IXMLDOMNode IXMLDOMNode;
//C typedef struct IXMLDOMDocumentFragment IXMLDOMDocumentFragment;
//C typedef struct IXMLDOMDocument IXMLDOMDocument;
//C typedef struct IXMLDOMNodeList IXMLDOMNodeList;
//C typedef struct IXMLDOMNamedNodeMap IXMLDOMNamedNodeMap;
//C typedef struct IXMLDOMCharacterData IXMLDOMCharacterData;
//C typedef struct IXMLDOMAttribute IXMLDOMAttribute;
//C typedef struct IXMLDOMElement IXMLDOMElement;
//C typedef struct IXMLDOMText IXMLDOMText;
//C typedef struct IXMLDOMComment IXMLDOMComment;
//C typedef struct IXMLDOMProcessingInstruction IXMLDOMProcessingInstruction;
//C typedef struct IXMLDOMCDATASection IXMLDOMCDATASection;
//C typedef struct IXMLDOMDocumentType IXMLDOMDocumentType;
//C typedef struct IXMLDOMNotation IXMLDOMNotation;
//C typedef struct IXMLDOMEntity IXMLDOMEntity;
//C typedef struct IXMLDOMEntityReference IXMLDOMEntityReference;
//C typedef struct IXMLDOMParseError IXMLDOMParseError;
//C typedef struct IXTLRuntime IXTLRuntime;
//C typedef struct XMLDOMDocumentEvents XMLDOMDocumentEvents;
//C typedef struct DOMDocument DOMDocument;
//C typedef struct DOMFreeThreadedDocument DOMFreeThreadedDocument;
//C typedef struct IXMLHttpRequest IXMLHttpRequest;
//C typedef struct XMLHTTPRequest XMLHTTPRequest;
//C typedef struct IXMLDSOControl IXMLDSOControl;
//C typedef struct XMLDSOControl XMLDSOControl;
//C typedef struct IXMLElementCollection IXMLElementCollection;
//C typedef struct IXMLDocument IXMLDocument;
//C typedef struct IXMLDocument2 IXMLDocument2;
//C typedef struct IXMLElement IXMLElement;
//C typedef struct IXMLElement2 IXMLElement2;
//C typedef struct IXMLAttribute IXMLAttribute;
//C typedef struct IXMLError IXMLError;
//C typedef struct XMLDocument XMLDocument;
//C typedef struct _xml_error {
//C unsigned int _nLine;
//C BSTR _pchBuf;
//C unsigned int _cchBuf;
//C unsigned int _ich;
//C BSTR _pszFound;
//C BSTR _pszExpected;
//C DWORD _reserved1;
//C DWORD _reserved2;
//C } XML_ERROR;
struct _xml_error
{
uint _nLine;
BSTR _pchBuf;
uint _cchBuf;
uint _ich;
BSTR _pszFound;
BSTR _pszExpected;
DWORD _reserved1;
DWORD _reserved2;
}
alias _xml_error XML_ERROR;
//C extern RPC_IF_HANDLE __MIDL_itf_msxml_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_msxml_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_msxml_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_msxml_0000_v0_0_s_ifspec;
//C typedef enum tagDOMNodeType {
//C NODE_INVALID = 0,NODE_ELEMENT,NODE_ATTRIBUTE,NODE_TEXT,NODE_CDATA_SECTION,
//C NODE_ENTITY_REFERENCE,NODE_ENTITY,NODE_PROCESSING_INSTRUCTION,NODE_COMMENT,
//C NODE_DOCUMENT,NODE_DOCUMENT_TYPE,NODE_DOCUMENT_FRAGMENT,NODE_NOTATION
//C } DOMNodeType;
enum tagDOMNodeType
{
NODE_INVALID,
NODE_ELEMENT,
NODE_ATTRIBUTE,
NODE_TEXT,
NODE_CDATA_SECTION,
NODE_ENTITY_REFERENCE,
NODE_ENTITY,
NODE_PROCESSING_INSTRUCTION,
NODE_COMMENT,
NODE_DOCUMENT,
NODE_DOCUMENT_TYPE,
NODE_DOCUMENT_FRAGMENT,
NODE_NOTATION,
}
alias tagDOMNodeType DOMNodeType;
//C typedef enum tagXMLEMEM_TYPE {
//C XMLELEMTYPE_ELEMENT = 0,XMLELEMTYPE_TEXT,XMLELEMTYPE_COMMENT,XMLELEMTYPE_DOCUMENT,
//C XMLELEMTYPE_DTD,XMLELEMTYPE_PI,XMLELEMTYPE_OTHER
//C } XMLELEM_TYPE;
enum tagXMLEMEM_TYPE
{
XMLELEMTYPE_ELEMENT,
XMLELEMTYPE_TEXT,
XMLELEMTYPE_COMMENT,
XMLELEMTYPE_DOCUMENT,
XMLELEMTYPE_DTD,
XMLELEMTYPE_PI,
XMLELEMTYPE_OTHER,
}
alias tagXMLEMEM_TYPE XMLELEM_TYPE;
//C typedef struct IXMLDOMImplementationVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMImplementation *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMImplementation *This);
//C ULONG ( *Release)(IXMLDOMImplementation *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMImplementation *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMImplementation *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMImplementation *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMImplementation *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *hasFeature)(IXMLDOMImplementation *This,BSTR feature,BSTR version_,VARIANT_BOOL *hasFeature);
//C } IXMLDOMImplementationVtbl;
struct IXMLDOMImplementationVtbl
{
HRESULT function(IXMLDOMImplementation *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMImplementation *This)AddRef;
ULONG function(IXMLDOMImplementation *This)Release;
HRESULT function(IXMLDOMImplementation *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMImplementation *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMImplementation *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMImplementation *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMImplementation *This, BSTR feature, BSTR version_, VARIANT_BOOL *hasFeature)hasFeature;
}
//C struct IXMLDOMImplementation {
//C struct IXMLDOMImplementationVtbl *lpVtbl;
//C };
struct IXMLDOMImplementation
{
IXMLDOMImplementationVtbl *lpVtbl;
}
//C HRESULT IXMLDOMImplementation_hasFeature_Proxy(IXMLDOMImplementation *This,BSTR feature,BSTR version_,VARIANT_BOOL *hasFeature);
HRESULT IXMLDOMImplementation_hasFeature_Proxy(IXMLDOMImplementation *This, BSTR feature, BSTR version_, VARIANT_BOOL *hasFeature);
//C void IXMLDOMImplementation_hasFeature_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMImplementation_hasFeature_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMNodeVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMNode *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMNode *This);
//C ULONG ( *Release)(IXMLDOMNode *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMNode *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMNode *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMNode *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMNode *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMNode *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMNode *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMNode *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMNode *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMNode *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMNode *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMNode *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMNode *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMNode *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMNode *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMNode *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMNode *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMNode *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMNode *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMNode *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMNode *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMNode *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMNode *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMNode *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMNode *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMNode *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMNode *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMNode *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMNode *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMNode *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMNode *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMNode *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMNode *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMNode *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMNode *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMNode *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMNode *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMNode *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMNode *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMNode *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMNode *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C } IXMLDOMNodeVtbl;
struct IXMLDOMNodeVtbl
{
HRESULT function(IXMLDOMNode *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMNode *This)AddRef;
ULONG function(IXMLDOMNode *This)Release;
HRESULT function(IXMLDOMNode *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMNode *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMNode *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMNode *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMNode *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMNode *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMNode *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMNode *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMNode *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMNode *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMNode *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMNode *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMNode *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMNode *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMNode *This, BSTR *text)get_text;
HRESULT function(IXMLDOMNode *This, BSTR text)put_text;
HRESULT function(IXMLDOMNode *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMNode *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMNode *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMNode *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMNode *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMNode *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMNode *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMNode *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMNode *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMNode *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMNode *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMNode *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMNode *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
}
//C struct IXMLDOMNode {
//C struct IXMLDOMNodeVtbl *lpVtbl;
//C };
struct IXMLDOMNode
{
IXMLDOMNodeVtbl *lpVtbl;
}
//C HRESULT IXMLDOMNode_get_nodeName_Proxy(IXMLDOMNode *This,BSTR *name);
HRESULT IXMLDOMNode_get_nodeName_Proxy(IXMLDOMNode *This, BSTR *name);
//C void IXMLDOMNode_get_nodeName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nodeName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_nodeValue_Proxy(IXMLDOMNode *This,VARIANT *value);
HRESULT IXMLDOMNode_get_nodeValue_Proxy(IXMLDOMNode *This, VARIANT *value);
//C void IXMLDOMNode_get_nodeValue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nodeValue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_put_nodeValue_Proxy(IXMLDOMNode *This,VARIANT value);
HRESULT IXMLDOMNode_put_nodeValue_Proxy(IXMLDOMNode *This, VARIANT value);
//C void IXMLDOMNode_put_nodeValue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_put_nodeValue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_nodeType_Proxy(IXMLDOMNode *This,DOMNodeType *type);
HRESULT IXMLDOMNode_get_nodeType_Proxy(IXMLDOMNode *This, DOMNodeType *type);
//C void IXMLDOMNode_get_nodeType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nodeType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_parentNode_Proxy(IXMLDOMNode *This,IXMLDOMNode **parent);
HRESULT IXMLDOMNode_get_parentNode_Proxy(IXMLDOMNode *This, IXMLDOMNode **parent);
//C void IXMLDOMNode_get_parentNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_parentNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_childNodes_Proxy(IXMLDOMNode *This,IXMLDOMNodeList **childList);
HRESULT IXMLDOMNode_get_childNodes_Proxy(IXMLDOMNode *This, IXMLDOMNodeList **childList);
//C void IXMLDOMNode_get_childNodes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_childNodes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_firstChild_Proxy(IXMLDOMNode *This,IXMLDOMNode **firstChild);
HRESULT IXMLDOMNode_get_firstChild_Proxy(IXMLDOMNode *This, IXMLDOMNode **firstChild);
//C void IXMLDOMNode_get_firstChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_firstChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_lastChild_Proxy(IXMLDOMNode *This,IXMLDOMNode **lastChild);
HRESULT IXMLDOMNode_get_lastChild_Proxy(IXMLDOMNode *This, IXMLDOMNode **lastChild);
//C void IXMLDOMNode_get_lastChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_lastChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_previousSibling_Proxy(IXMLDOMNode *This,IXMLDOMNode **previousSibling);
HRESULT IXMLDOMNode_get_previousSibling_Proxy(IXMLDOMNode *This, IXMLDOMNode **previousSibling);
//C void IXMLDOMNode_get_previousSibling_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_previousSibling_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_nextSibling_Proxy(IXMLDOMNode *This,IXMLDOMNode **nextSibling);
HRESULT IXMLDOMNode_get_nextSibling_Proxy(IXMLDOMNode *This, IXMLDOMNode **nextSibling);
//C void IXMLDOMNode_get_nextSibling_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nextSibling_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_attributes_Proxy(IXMLDOMNode *This,IXMLDOMNamedNodeMap **attributeMap);
HRESULT IXMLDOMNode_get_attributes_Proxy(IXMLDOMNode *This, IXMLDOMNamedNodeMap **attributeMap);
//C void IXMLDOMNode_get_attributes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_attributes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_insertBefore_Proxy(IXMLDOMNode *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
HRESULT IXMLDOMNode_insertBefore_Proxy(IXMLDOMNode *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild);
//C void IXMLDOMNode_insertBefore_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_insertBefore_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_replaceChild_Proxy(IXMLDOMNode *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
HRESULT IXMLDOMNode_replaceChild_Proxy(IXMLDOMNode *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild);
//C void IXMLDOMNode_replaceChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_replaceChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_removeChild_Proxy(IXMLDOMNode *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
HRESULT IXMLDOMNode_removeChild_Proxy(IXMLDOMNode *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild);
//C void IXMLDOMNode_removeChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_removeChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_appendChild_Proxy(IXMLDOMNode *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
HRESULT IXMLDOMNode_appendChild_Proxy(IXMLDOMNode *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild);
//C void IXMLDOMNode_appendChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_appendChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_hasChildNodes_Proxy(IXMLDOMNode *This,VARIANT_BOOL *hasChild);
HRESULT IXMLDOMNode_hasChildNodes_Proxy(IXMLDOMNode *This, VARIANT_BOOL *hasChild);
//C void IXMLDOMNode_hasChildNodes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_hasChildNodes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_ownerDocument_Proxy(IXMLDOMNode *This,IXMLDOMDocument **DOMDocument);
HRESULT IXMLDOMNode_get_ownerDocument_Proxy(IXMLDOMNode *This, IXMLDOMDocument **DOMDocument);
//C void IXMLDOMNode_get_ownerDocument_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_ownerDocument_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_cloneNode_Proxy(IXMLDOMNode *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
HRESULT IXMLDOMNode_cloneNode_Proxy(IXMLDOMNode *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot);
//C void IXMLDOMNode_cloneNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_cloneNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_nodeTypeString_Proxy(IXMLDOMNode *This,BSTR *nodeType);
HRESULT IXMLDOMNode_get_nodeTypeString_Proxy(IXMLDOMNode *This, BSTR *nodeType);
//C void IXMLDOMNode_get_nodeTypeString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nodeTypeString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_text_Proxy(IXMLDOMNode *This,BSTR *text);
HRESULT IXMLDOMNode_get_text_Proxy(IXMLDOMNode *This, BSTR *text);
//C void IXMLDOMNode_get_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_put_text_Proxy(IXMLDOMNode *This,BSTR text);
HRESULT IXMLDOMNode_put_text_Proxy(IXMLDOMNode *This, BSTR text);
//C void IXMLDOMNode_put_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_put_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_specified_Proxy(IXMLDOMNode *This,VARIANT_BOOL *isSpecified);
HRESULT IXMLDOMNode_get_specified_Proxy(IXMLDOMNode *This, VARIANT_BOOL *isSpecified);
//C void IXMLDOMNode_get_specified_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_specified_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_definition_Proxy(IXMLDOMNode *This,IXMLDOMNode **definitionNode);
HRESULT IXMLDOMNode_get_definition_Proxy(IXMLDOMNode *This, IXMLDOMNode **definitionNode);
//C void IXMLDOMNode_get_definition_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_definition_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_nodeTypedValue_Proxy(IXMLDOMNode *This,VARIANT *typedValue);
HRESULT IXMLDOMNode_get_nodeTypedValue_Proxy(IXMLDOMNode *This, VARIANT *typedValue);
//C void IXMLDOMNode_get_nodeTypedValue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_nodeTypedValue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_put_nodeTypedValue_Proxy(IXMLDOMNode *This,VARIANT typedValue);
HRESULT IXMLDOMNode_put_nodeTypedValue_Proxy(IXMLDOMNode *This, VARIANT typedValue);
//C void IXMLDOMNode_put_nodeTypedValue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_put_nodeTypedValue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_dataType_Proxy(IXMLDOMNode *This,VARIANT *dataTypeName);
HRESULT IXMLDOMNode_get_dataType_Proxy(IXMLDOMNode *This, VARIANT *dataTypeName);
//C void IXMLDOMNode_get_dataType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_dataType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_put_dataType_Proxy(IXMLDOMNode *This,BSTR dataTypeName);
HRESULT IXMLDOMNode_put_dataType_Proxy(IXMLDOMNode *This, BSTR dataTypeName);
//C void IXMLDOMNode_put_dataType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_put_dataType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_xml_Proxy(IXMLDOMNode *This,BSTR *xmlString);
HRESULT IXMLDOMNode_get_xml_Proxy(IXMLDOMNode *This, BSTR *xmlString);
//C void IXMLDOMNode_get_xml_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_xml_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_transformNode_Proxy(IXMLDOMNode *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
HRESULT IXMLDOMNode_transformNode_Proxy(IXMLDOMNode *This, IXMLDOMNode *stylesheet, BSTR *xmlString);
//C void IXMLDOMNode_transformNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_transformNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_selectNodes_Proxy(IXMLDOMNode *This,BSTR queryString,IXMLDOMNodeList **resultList);
HRESULT IXMLDOMNode_selectNodes_Proxy(IXMLDOMNode *This, BSTR queryString, IXMLDOMNodeList **resultList);
//C void IXMLDOMNode_selectNodes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_selectNodes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_selectSingleNode_Proxy(IXMLDOMNode *This,BSTR queryString,IXMLDOMNode **resultNode);
HRESULT IXMLDOMNode_selectSingleNode_Proxy(IXMLDOMNode *This, BSTR queryString, IXMLDOMNode **resultNode);
//C void IXMLDOMNode_selectSingleNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_selectSingleNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_parsed_Proxy(IXMLDOMNode *This,VARIANT_BOOL *isParsed);
HRESULT IXMLDOMNode_get_parsed_Proxy(IXMLDOMNode *This, VARIANT_BOOL *isParsed);
//C void IXMLDOMNode_get_parsed_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_parsed_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_namespaceURI_Proxy(IXMLDOMNode *This,BSTR *namespaceURI);
HRESULT IXMLDOMNode_get_namespaceURI_Proxy(IXMLDOMNode *This, BSTR *namespaceURI);
//C void IXMLDOMNode_get_namespaceURI_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_namespaceURI_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_prefix_Proxy(IXMLDOMNode *This,BSTR *prefixString);
HRESULT IXMLDOMNode_get_prefix_Proxy(IXMLDOMNode *This, BSTR *prefixString);
//C void IXMLDOMNode_get_prefix_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_prefix_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_get_baseName_Proxy(IXMLDOMNode *This,BSTR *nameString);
HRESULT IXMLDOMNode_get_baseName_Proxy(IXMLDOMNode *This, BSTR *nameString);
//C void IXMLDOMNode_get_baseName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_get_baseName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNode_transformNodeToObject_Proxy(IXMLDOMNode *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
HRESULT IXMLDOMNode_transformNodeToObject_Proxy(IXMLDOMNode *This, IXMLDOMNode *stylesheet, VARIANT outputObject);
//C void IXMLDOMNode_transformNodeToObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNode_transformNodeToObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMDocumentFragmentVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMDocumentFragment *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMDocumentFragment *This);
//C ULONG ( *Release)(IXMLDOMDocumentFragment *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMDocumentFragment *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMDocumentFragment *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMDocumentFragment *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMDocumentFragment *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMDocumentFragment *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMDocumentFragment *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMDocumentFragment *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMDocumentFragment *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMDocumentFragment *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMDocumentFragment *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMDocumentFragment *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMDocumentFragment *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMDocumentFragment *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMDocumentFragment *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMDocumentFragment *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMDocumentFragment *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMDocumentFragment *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMDocumentFragment *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMDocumentFragment *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMDocumentFragment *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMDocumentFragment *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMDocumentFragment *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMDocumentFragment *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMDocumentFragment *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMDocumentFragment *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMDocumentFragment *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMDocumentFragment *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMDocumentFragment *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMDocumentFragment *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMDocumentFragment *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMDocumentFragment *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMDocumentFragment *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMDocumentFragment *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMDocumentFragment *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMDocumentFragment *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMDocumentFragment *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMDocumentFragment *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMDocumentFragment *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMDocumentFragment *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMDocumentFragment *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C } IXMLDOMDocumentFragmentVtbl;
struct IXMLDOMDocumentFragmentVtbl
{
HRESULT function(IXMLDOMDocumentFragment *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMDocumentFragment *This)AddRef;
ULONG function(IXMLDOMDocumentFragment *This)Release;
HRESULT function(IXMLDOMDocumentFragment *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMDocumentFragment *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMDocumentFragment *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMDocumentFragment *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMDocumentFragment *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *text)get_text;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR text)put_text;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMDocumentFragment *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMDocumentFragment *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMDocumentFragment *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
}
//C struct IXMLDOMDocumentFragment {
//C struct IXMLDOMDocumentFragmentVtbl *lpVtbl;
//C };
struct IXMLDOMDocumentFragment
{
IXMLDOMDocumentFragmentVtbl *lpVtbl;
}
//C typedef struct IXMLDOMDocumentVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMDocument *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMDocument *This);
//C ULONG ( *Release)(IXMLDOMDocument *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMDocument *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMDocument *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMDocument *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMDocument *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMDocument *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMDocument *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMDocument *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMDocument *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMDocument *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMDocument *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMDocument *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMDocument *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMDocument *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMDocument *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMDocument *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMDocument *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMDocument *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMDocument *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMDocument *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMDocument *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMDocument *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMDocument *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMDocument *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMDocument *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMDocument *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMDocument *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMDocument *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMDocument *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMDocument *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMDocument *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMDocument *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMDocument *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMDocument *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMDocument *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMDocument *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMDocument *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMDocument *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMDocument *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMDocument *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMDocument *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_doctype)(IXMLDOMDocument *This,IXMLDOMDocumentType **documentType);
//C HRESULT ( *get_implementation)(IXMLDOMDocument *This,IXMLDOMImplementation **impl);
//C HRESULT ( *get_documentElement)(IXMLDOMDocument *This,IXMLDOMElement **DOMElement);
//C HRESULT ( *putref_documentElement)(IXMLDOMDocument *This,IXMLDOMElement *DOMElement);
//C HRESULT ( *createElement)(IXMLDOMDocument *This,BSTR tagName,IXMLDOMElement **element);
//C HRESULT ( *createDocumentFragment)(IXMLDOMDocument *This,IXMLDOMDocumentFragment **docFrag);
//C HRESULT ( *createTextNode)(IXMLDOMDocument *This,BSTR data,IXMLDOMText **text);
//C HRESULT ( *createComment)(IXMLDOMDocument *This,BSTR data,IXMLDOMComment **comment);
//C HRESULT ( *createCDATASection)(IXMLDOMDocument *This,BSTR data,IXMLDOMCDATASection **cdata);
//C HRESULT ( *createProcessingInstruction)(IXMLDOMDocument *This,BSTR target,BSTR data,IXMLDOMProcessingInstruction **pi);
//C HRESULT ( *createAttribute)(IXMLDOMDocument *This,BSTR name,IXMLDOMAttribute **attribute);
//C HRESULT ( *createEntityReference)(IXMLDOMDocument *This,BSTR name,IXMLDOMEntityReference **entityRef);
//C HRESULT ( *getElementsByTagName)(IXMLDOMDocument *This,BSTR tagName,IXMLDOMNodeList **resultList);
//C HRESULT ( *createNode)(IXMLDOMDocument *This,VARIANT Type,BSTR name,BSTR namespaceURI,IXMLDOMNode **node);
//C HRESULT ( *nodeFromID)(IXMLDOMDocument *This,BSTR idString,IXMLDOMNode **node);
//C HRESULT ( *load)(IXMLDOMDocument *This,VARIANT xmlSource,VARIANT_BOOL *isSuccessful);
//C HRESULT ( *get_readyState)(IXMLDOMDocument *This,LONG *value);
//C HRESULT ( *get_parseError)(IXMLDOMDocument *This,IXMLDOMParseError **errorObj);
//C HRESULT ( *get_url)(IXMLDOMDocument *This,BSTR *urlString);
//C HRESULT ( *get_async)(IXMLDOMDocument *This,VARIANT_BOOL *isAsync);
//C HRESULT ( *put_async)(IXMLDOMDocument *This,VARIANT_BOOL isAsync);
//C HRESULT ( *abort)(IXMLDOMDocument *This);
//C HRESULT ( *loadXML)(IXMLDOMDocument *This,BSTR bstrXML,VARIANT_BOOL *isSuccessful);
//C HRESULT ( *save)(IXMLDOMDocument *This,VARIANT destination);
//C HRESULT ( *get_validateOnParse)(IXMLDOMDocument *This,VARIANT_BOOL *isValidating);
//C HRESULT ( *put_validateOnParse)(IXMLDOMDocument *This,VARIANT_BOOL isValidating);
//C HRESULT ( *get_resolveExternals)(IXMLDOMDocument *This,VARIANT_BOOL *isResolving);
//C HRESULT ( *put_resolveExternals)(IXMLDOMDocument *This,VARIANT_BOOL isResolving);
//C HRESULT ( *get_preserveWhiteSpace)(IXMLDOMDocument *This,VARIANT_BOOL *isPreserving);
//C HRESULT ( *put_preserveWhiteSpace)(IXMLDOMDocument *This,VARIANT_BOOL isPreserving);
//C HRESULT ( *put_onreadystatechange)(IXMLDOMDocument *This,VARIANT readystatechangeSink);
//C HRESULT ( *put_ondataavailable)(IXMLDOMDocument *This,VARIANT ondataavailableSink);
//C HRESULT ( *put_ontransformnode)(IXMLDOMDocument *This,VARIANT ontransformnodeSink);
//C } IXMLDOMDocumentVtbl;
struct IXMLDOMDocumentVtbl
{
HRESULT function(IXMLDOMDocument *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMDocument *This)AddRef;
ULONG function(IXMLDOMDocument *This)Release;
HRESULT function(IXMLDOMDocument *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMDocument *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMDocument *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMDocument *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMDocument *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMDocument *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMDocument *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMDocument *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMDocument *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMDocument *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMDocument *This, BSTR *text)get_text;
HRESULT function(IXMLDOMDocument *This, BSTR text)put_text;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMDocument *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMDocument *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMDocument *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMDocument *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMDocument *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMDocument *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMDocument *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMDocument *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMDocument *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMDocument *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMDocument *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMDocument *This, IXMLDOMDocumentType **documentType)get_doctype;
HRESULT function(IXMLDOMDocument *This, IXMLDOMImplementation **impl)get_implementation;
HRESULT function(IXMLDOMDocument *This, IXMLDOMElement **DOMElement)get_documentElement;
HRESULT function(IXMLDOMDocument *This, IXMLDOMElement *DOMElement)putref_documentElement;
HRESULT function(IXMLDOMDocument *This, BSTR tagName, IXMLDOMElement **element)createElement;
HRESULT function(IXMLDOMDocument *This, IXMLDOMDocumentFragment **docFrag)createDocumentFragment;
HRESULT function(IXMLDOMDocument *This, BSTR data, IXMLDOMText **text)createTextNode;
HRESULT function(IXMLDOMDocument *This, BSTR data, IXMLDOMComment **comment)createComment;
HRESULT function(IXMLDOMDocument *This, BSTR data, IXMLDOMCDATASection **cdata)createCDATASection;
HRESULT function(IXMLDOMDocument *This, BSTR target, BSTR data, IXMLDOMProcessingInstruction **pi)createProcessingInstruction;
HRESULT function(IXMLDOMDocument *This, BSTR name, IXMLDOMAttribute **attribute)createAttribute;
HRESULT function(IXMLDOMDocument *This, BSTR name, IXMLDOMEntityReference **entityRef)createEntityReference;
HRESULT function(IXMLDOMDocument *This, BSTR tagName, IXMLDOMNodeList **resultList)getElementsByTagName;
HRESULT function(IXMLDOMDocument *This, VARIANT Type, BSTR name, BSTR namespaceURI, IXMLDOMNode **node)createNode;
HRESULT function(IXMLDOMDocument *This, BSTR idString, IXMLDOMNode **node)nodeFromID;
HRESULT function(IXMLDOMDocument *This, VARIANT xmlSource, VARIANT_BOOL *isSuccessful)load;
HRESULT function(IXMLDOMDocument *This, LONG *value)get_readyState;
HRESULT function(IXMLDOMDocument *This, IXMLDOMParseError **errorObj)get_parseError;
HRESULT function(IXMLDOMDocument *This, BSTR *urlString)get_url;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isAsync)get_async;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL isAsync)put_async;
HRESULT function(IXMLDOMDocument *This)abort;
HRESULT function(IXMLDOMDocument *This, BSTR bstrXML, VARIANT_BOOL *isSuccessful)loadXML;
HRESULT function(IXMLDOMDocument *This, VARIANT destination)save;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isValidating)get_validateOnParse;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL isValidating)put_validateOnParse;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isResolving)get_resolveExternals;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL isResolving)put_resolveExternals;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL *isPreserving)get_preserveWhiteSpace;
HRESULT function(IXMLDOMDocument *This, VARIANT_BOOL isPreserving)put_preserveWhiteSpace;
HRESULT function(IXMLDOMDocument *This, VARIANT readystatechangeSink)put_onreadystatechange;
HRESULT function(IXMLDOMDocument *This, VARIANT ondataavailableSink)put_ondataavailable;
HRESULT function(IXMLDOMDocument *This, VARIANT ontransformnodeSink)put_ontransformnode;
}
//C struct IXMLDOMDocument {
//C struct IXMLDOMDocumentVtbl *lpVtbl;
//C };
struct IXMLDOMDocument
{
IXMLDOMDocumentVtbl *lpVtbl;
}
//C HRESULT IXMLDOMDocument_get_doctype_Proxy(IXMLDOMDocument *This,IXMLDOMDocumentType **documentType);
HRESULT IXMLDOMDocument_get_doctype_Proxy(IXMLDOMDocument *This, IXMLDOMDocumentType **documentType);
//C void IXMLDOMDocument_get_doctype_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_doctype_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_implementation_Proxy(IXMLDOMDocument *This,IXMLDOMImplementation **impl);
HRESULT IXMLDOMDocument_get_implementation_Proxy(IXMLDOMDocument *This, IXMLDOMImplementation **impl);
//C void IXMLDOMDocument_get_implementation_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_implementation_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_documentElement_Proxy(IXMLDOMDocument *This,IXMLDOMElement **DOMElement);
HRESULT IXMLDOMDocument_get_documentElement_Proxy(IXMLDOMDocument *This, IXMLDOMElement **DOMElement);
//C void IXMLDOMDocument_get_documentElement_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_documentElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_putref_documentElement_Proxy(IXMLDOMDocument *This,IXMLDOMElement *DOMElement);
HRESULT IXMLDOMDocument_putref_documentElement_Proxy(IXMLDOMDocument *This, IXMLDOMElement *DOMElement);
//C void IXMLDOMDocument_putref_documentElement_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_putref_documentElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createElement_Proxy(IXMLDOMDocument *This,BSTR tagName,IXMLDOMElement **element);
HRESULT IXMLDOMDocument_createElement_Proxy(IXMLDOMDocument *This, BSTR tagName, IXMLDOMElement **element);
//C void IXMLDOMDocument_createElement_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createDocumentFragment_Proxy(IXMLDOMDocument *This,IXMLDOMDocumentFragment **docFrag);
HRESULT IXMLDOMDocument_createDocumentFragment_Proxy(IXMLDOMDocument *This, IXMLDOMDocumentFragment **docFrag);
//C void IXMLDOMDocument_createDocumentFragment_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createDocumentFragment_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createTextNode_Proxy(IXMLDOMDocument *This,BSTR data,IXMLDOMText **text);
HRESULT IXMLDOMDocument_createTextNode_Proxy(IXMLDOMDocument *This, BSTR data, IXMLDOMText **text);
//C void IXMLDOMDocument_createTextNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createTextNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createComment_Proxy(IXMLDOMDocument *This,BSTR data,IXMLDOMComment **comment);
HRESULT IXMLDOMDocument_createComment_Proxy(IXMLDOMDocument *This, BSTR data, IXMLDOMComment **comment);
//C void IXMLDOMDocument_createComment_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createComment_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createCDATASection_Proxy(IXMLDOMDocument *This,BSTR data,IXMLDOMCDATASection **cdata);
HRESULT IXMLDOMDocument_createCDATASection_Proxy(IXMLDOMDocument *This, BSTR data, IXMLDOMCDATASection **cdata);
//C void IXMLDOMDocument_createCDATASection_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createCDATASection_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createProcessingInstruction_Proxy(IXMLDOMDocument *This,BSTR target,BSTR data,IXMLDOMProcessingInstruction **pi);
HRESULT IXMLDOMDocument_createProcessingInstruction_Proxy(IXMLDOMDocument *This, BSTR target, BSTR data, IXMLDOMProcessingInstruction **pi);
//C void IXMLDOMDocument_createProcessingInstruction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createProcessingInstruction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createAttribute_Proxy(IXMLDOMDocument *This,BSTR name,IXMLDOMAttribute **attribute);
HRESULT IXMLDOMDocument_createAttribute_Proxy(IXMLDOMDocument *This, BSTR name, IXMLDOMAttribute **attribute);
//C void IXMLDOMDocument_createAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createEntityReference_Proxy(IXMLDOMDocument *This,BSTR name,IXMLDOMEntityReference **entityRef);
HRESULT IXMLDOMDocument_createEntityReference_Proxy(IXMLDOMDocument *This, BSTR name, IXMLDOMEntityReference **entityRef);
//C void IXMLDOMDocument_createEntityReference_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createEntityReference_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_getElementsByTagName_Proxy(IXMLDOMDocument *This,BSTR tagName,IXMLDOMNodeList **resultList);
HRESULT IXMLDOMDocument_getElementsByTagName_Proxy(IXMLDOMDocument *This, BSTR tagName, IXMLDOMNodeList **resultList);
//C void IXMLDOMDocument_getElementsByTagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_getElementsByTagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_createNode_Proxy(IXMLDOMDocument *This,VARIANT Type,BSTR name,BSTR namespaceURI,IXMLDOMNode **node);
HRESULT IXMLDOMDocument_createNode_Proxy(IXMLDOMDocument *This, VARIANT Type, BSTR name, BSTR namespaceURI, IXMLDOMNode **node);
//C void IXMLDOMDocument_createNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_createNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_nodeFromID_Proxy(IXMLDOMDocument *This,BSTR idString,IXMLDOMNode **node);
HRESULT IXMLDOMDocument_nodeFromID_Proxy(IXMLDOMDocument *This, BSTR idString, IXMLDOMNode **node);
//C void IXMLDOMDocument_nodeFromID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_nodeFromID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_load_Proxy(IXMLDOMDocument *This,VARIANT xmlSource,VARIANT_BOOL *isSuccessful);
HRESULT IXMLDOMDocument_load_Proxy(IXMLDOMDocument *This, VARIANT xmlSource, VARIANT_BOOL *isSuccessful);
//C void IXMLDOMDocument_load_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_load_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_readyState_Proxy(IXMLDOMDocument *This,LONG *value);
HRESULT IXMLDOMDocument_get_readyState_Proxy(IXMLDOMDocument *This, LONG *value);
//C void IXMLDOMDocument_get_readyState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_readyState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_parseError_Proxy(IXMLDOMDocument *This,IXMLDOMParseError **errorObj);
HRESULT IXMLDOMDocument_get_parseError_Proxy(IXMLDOMDocument *This, IXMLDOMParseError **errorObj);
//C void IXMLDOMDocument_get_parseError_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_parseError_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_url_Proxy(IXMLDOMDocument *This,BSTR *urlString);
HRESULT IXMLDOMDocument_get_url_Proxy(IXMLDOMDocument *This, BSTR *urlString);
//C void IXMLDOMDocument_get_url_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_url_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_async_Proxy(IXMLDOMDocument *This,VARIANT_BOOL *isAsync);
HRESULT IXMLDOMDocument_get_async_Proxy(IXMLDOMDocument *This, VARIANT_BOOL *isAsync);
//C void IXMLDOMDocument_get_async_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_async_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_async_Proxy(IXMLDOMDocument *This,VARIANT_BOOL isAsync);
HRESULT IXMLDOMDocument_put_async_Proxy(IXMLDOMDocument *This, VARIANT_BOOL isAsync);
//C void IXMLDOMDocument_put_async_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_async_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_abort_Proxy(IXMLDOMDocument *This);
HRESULT IXMLDOMDocument_abort_Proxy(IXMLDOMDocument *This);
//C void IXMLDOMDocument_abort_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_abort_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_loadXML_Proxy(IXMLDOMDocument *This,BSTR bstrXML,VARIANT_BOOL *isSuccessful);
HRESULT IXMLDOMDocument_loadXML_Proxy(IXMLDOMDocument *This, BSTR bstrXML, VARIANT_BOOL *isSuccessful);
//C void IXMLDOMDocument_loadXML_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_loadXML_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_save_Proxy(IXMLDOMDocument *This,VARIANT destination);
HRESULT IXMLDOMDocument_save_Proxy(IXMLDOMDocument *This, VARIANT destination);
//C void IXMLDOMDocument_save_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_save_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_validateOnParse_Proxy(IXMLDOMDocument *This,VARIANT_BOOL *isValidating);
HRESULT IXMLDOMDocument_get_validateOnParse_Proxy(IXMLDOMDocument *This, VARIANT_BOOL *isValidating);
//C void IXMLDOMDocument_get_validateOnParse_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_validateOnParse_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_validateOnParse_Proxy(IXMLDOMDocument *This,VARIANT_BOOL isValidating);
HRESULT IXMLDOMDocument_put_validateOnParse_Proxy(IXMLDOMDocument *This, VARIANT_BOOL isValidating);
//C void IXMLDOMDocument_put_validateOnParse_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_validateOnParse_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_resolveExternals_Proxy(IXMLDOMDocument *This,VARIANT_BOOL *isResolving);
HRESULT IXMLDOMDocument_get_resolveExternals_Proxy(IXMLDOMDocument *This, VARIANT_BOOL *isResolving);
//C void IXMLDOMDocument_get_resolveExternals_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_resolveExternals_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_resolveExternals_Proxy(IXMLDOMDocument *This,VARIANT_BOOL isResolving);
HRESULT IXMLDOMDocument_put_resolveExternals_Proxy(IXMLDOMDocument *This, VARIANT_BOOL isResolving);
//C void IXMLDOMDocument_put_resolveExternals_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_resolveExternals_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_get_preserveWhiteSpace_Proxy(IXMLDOMDocument *This,VARIANT_BOOL *isPreserving);
HRESULT IXMLDOMDocument_get_preserveWhiteSpace_Proxy(IXMLDOMDocument *This, VARIANT_BOOL *isPreserving);
//C void IXMLDOMDocument_get_preserveWhiteSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_get_preserveWhiteSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_preserveWhiteSpace_Proxy(IXMLDOMDocument *This,VARIANT_BOOL isPreserving);
HRESULT IXMLDOMDocument_put_preserveWhiteSpace_Proxy(IXMLDOMDocument *This, VARIANT_BOOL isPreserving);
//C void IXMLDOMDocument_put_preserveWhiteSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_preserveWhiteSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_onreadystatechange_Proxy(IXMLDOMDocument *This,VARIANT readystatechangeSink);
HRESULT IXMLDOMDocument_put_onreadystatechange_Proxy(IXMLDOMDocument *This, VARIANT readystatechangeSink);
//C void IXMLDOMDocument_put_onreadystatechange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_onreadystatechange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_ondataavailable_Proxy(IXMLDOMDocument *This,VARIANT ondataavailableSink);
HRESULT IXMLDOMDocument_put_ondataavailable_Proxy(IXMLDOMDocument *This, VARIANT ondataavailableSink);
//C void IXMLDOMDocument_put_ondataavailable_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_ondataavailable_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocument_put_ontransformnode_Proxy(IXMLDOMDocument *This,VARIANT ontransformnodeSink);
HRESULT IXMLDOMDocument_put_ontransformnode_Proxy(IXMLDOMDocument *This, VARIANT ontransformnodeSink);
//C void IXMLDOMDocument_put_ontransformnode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocument_put_ontransformnode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMNodeListVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMNodeList *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMNodeList *This);
//C ULONG ( *Release)(IXMLDOMNodeList *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMNodeList *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMNodeList *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMNodeList *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMNodeList *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_item)(IXMLDOMNodeList *This,LONG index,IXMLDOMNode **listItem);
//C HRESULT ( *get_length)(IXMLDOMNodeList *This,LONG *listLength);
//C HRESULT ( *nextNode)(IXMLDOMNodeList *This,IXMLDOMNode **nextItem);
//C HRESULT ( *reset)(IXMLDOMNodeList *This);
//C HRESULT ( *get__newEnum)(IXMLDOMNodeList *This,IUnknown **ppUnk);
//C } IXMLDOMNodeListVtbl;
struct IXMLDOMNodeListVtbl
{
HRESULT function(IXMLDOMNodeList *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMNodeList *This)AddRef;
ULONG function(IXMLDOMNodeList *This)Release;
HRESULT function(IXMLDOMNodeList *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMNodeList *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMNodeList *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMNodeList *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMNodeList *This, LONG index, IXMLDOMNode **listItem)get_item;
HRESULT function(IXMLDOMNodeList *This, LONG *listLength)get_length;
HRESULT function(IXMLDOMNodeList *This, IXMLDOMNode **nextItem)nextNode;
HRESULT function(IXMLDOMNodeList *This)reset;
HRESULT function(IXMLDOMNodeList *This, IUnknown **ppUnk)get__newEnum;
}
//C struct IXMLDOMNodeList {
//C struct IXMLDOMNodeListVtbl *lpVtbl;
//C };
struct IXMLDOMNodeList
{
IXMLDOMNodeListVtbl *lpVtbl;
}
//C HRESULT IXMLDOMNodeList_get_item_Proxy(IXMLDOMNodeList *This,LONG index,IXMLDOMNode **listItem);
HRESULT IXMLDOMNodeList_get_item_Proxy(IXMLDOMNodeList *This, LONG index, IXMLDOMNode **listItem);
//C void IXMLDOMNodeList_get_item_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNodeList_get_item_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNodeList_get_length_Proxy(IXMLDOMNodeList *This,LONG *listLength);
HRESULT IXMLDOMNodeList_get_length_Proxy(IXMLDOMNodeList *This, LONG *listLength);
//C void IXMLDOMNodeList_get_length_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNodeList_get_length_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNodeList_nextNode_Proxy(IXMLDOMNodeList *This,IXMLDOMNode **nextItem);
HRESULT IXMLDOMNodeList_nextNode_Proxy(IXMLDOMNodeList *This, IXMLDOMNode **nextItem);
//C void IXMLDOMNodeList_nextNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNodeList_nextNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNodeList_reset_Proxy(IXMLDOMNodeList *This);
HRESULT IXMLDOMNodeList_reset_Proxy(IXMLDOMNodeList *This);
//C void IXMLDOMNodeList_reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNodeList_reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNodeList_get__newEnum_Proxy(IXMLDOMNodeList *This,IUnknown **ppUnk);
HRESULT IXMLDOMNodeList_get__newEnum_Proxy(IXMLDOMNodeList *This, IUnknown **ppUnk);
//C void IXMLDOMNodeList_get__newEnum_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNodeList_get__newEnum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMNamedNodeMapVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMNamedNodeMap *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMNamedNodeMap *This);
//C ULONG ( *Release)(IXMLDOMNamedNodeMap *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMNamedNodeMap *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMNamedNodeMap *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMNamedNodeMap *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMNamedNodeMap *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *getNamedItem)(IXMLDOMNamedNodeMap *This,BSTR name,IXMLDOMNode **namedItem);
//C HRESULT ( *setNamedItem)(IXMLDOMNamedNodeMap *This,IXMLDOMNode *newItem,IXMLDOMNode **nameItem);
//C HRESULT ( *removeNamedItem)(IXMLDOMNamedNodeMap *This,BSTR name,IXMLDOMNode **namedItem);
//C HRESULT ( *get_item)(IXMLDOMNamedNodeMap *This,LONG index,IXMLDOMNode **listItem);
//C HRESULT ( *get_length)(IXMLDOMNamedNodeMap *This,LONG *listLength);
//C HRESULT ( *getQualifiedItem)(IXMLDOMNamedNodeMap *This,BSTR baseName,BSTR namespaceURI,IXMLDOMNode **qualifiedItem);
//C HRESULT ( *removeQualifiedItem)(IXMLDOMNamedNodeMap *This,BSTR baseName,BSTR namespaceURI,IXMLDOMNode **qualifiedItem);
//C HRESULT ( *nextNode)(IXMLDOMNamedNodeMap *This,IXMLDOMNode **nextItem);
//C HRESULT ( *reset)(IXMLDOMNamedNodeMap *This);
//C HRESULT ( *get__newEnum)(IXMLDOMNamedNodeMap *This,IUnknown **ppUnk);
//C } IXMLDOMNamedNodeMapVtbl;
struct IXMLDOMNamedNodeMapVtbl
{
HRESULT function(IXMLDOMNamedNodeMap *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMNamedNodeMap *This)AddRef;
ULONG function(IXMLDOMNamedNodeMap *This)Release;
HRESULT function(IXMLDOMNamedNodeMap *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMNamedNodeMap *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMNamedNodeMap *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMNamedNodeMap *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMNamedNodeMap *This, BSTR name, IXMLDOMNode **namedItem)getNamedItem;
HRESULT function(IXMLDOMNamedNodeMap *This, IXMLDOMNode *newItem, IXMLDOMNode **nameItem)setNamedItem;
HRESULT function(IXMLDOMNamedNodeMap *This, BSTR name, IXMLDOMNode **namedItem)removeNamedItem;
HRESULT function(IXMLDOMNamedNodeMap *This, LONG index, IXMLDOMNode **listItem)get_item;
HRESULT function(IXMLDOMNamedNodeMap *This, LONG *listLength)get_length;
HRESULT function(IXMLDOMNamedNodeMap *This, BSTR baseName, BSTR namespaceURI, IXMLDOMNode **qualifiedItem)getQualifiedItem;
HRESULT function(IXMLDOMNamedNodeMap *This, BSTR baseName, BSTR namespaceURI, IXMLDOMNode **qualifiedItem)removeQualifiedItem;
HRESULT function(IXMLDOMNamedNodeMap *This, IXMLDOMNode **nextItem)nextNode;
HRESULT function(IXMLDOMNamedNodeMap *This)reset;
HRESULT function(IXMLDOMNamedNodeMap *This, IUnknown **ppUnk)get__newEnum;
}
//C struct IXMLDOMNamedNodeMap {
//C struct IXMLDOMNamedNodeMapVtbl *lpVtbl;
//C };
struct IXMLDOMNamedNodeMap
{
IXMLDOMNamedNodeMapVtbl *lpVtbl;
}
//C HRESULT IXMLDOMNamedNodeMap_getNamedItem_Proxy(IXMLDOMNamedNodeMap *This,BSTR name,IXMLDOMNode **namedItem);
HRESULT IXMLDOMNamedNodeMap_getNamedItem_Proxy(IXMLDOMNamedNodeMap *This, BSTR name, IXMLDOMNode **namedItem);
//C void IXMLDOMNamedNodeMap_getNamedItem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_getNamedItem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_setNamedItem_Proxy(IXMLDOMNamedNodeMap *This,IXMLDOMNode *newItem,IXMLDOMNode **nameItem);
HRESULT IXMLDOMNamedNodeMap_setNamedItem_Proxy(IXMLDOMNamedNodeMap *This, IXMLDOMNode *newItem, IXMLDOMNode **nameItem);
//C void IXMLDOMNamedNodeMap_setNamedItem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_setNamedItem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_removeNamedItem_Proxy(IXMLDOMNamedNodeMap *This,BSTR name,IXMLDOMNode **namedItem);
HRESULT IXMLDOMNamedNodeMap_removeNamedItem_Proxy(IXMLDOMNamedNodeMap *This, BSTR name, IXMLDOMNode **namedItem);
//C void IXMLDOMNamedNodeMap_removeNamedItem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_removeNamedItem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_get_item_Proxy(IXMLDOMNamedNodeMap *This,LONG index,IXMLDOMNode **listItem);
HRESULT IXMLDOMNamedNodeMap_get_item_Proxy(IXMLDOMNamedNodeMap *This, LONG index, IXMLDOMNode **listItem);
//C void IXMLDOMNamedNodeMap_get_item_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_get_item_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_get_length_Proxy(IXMLDOMNamedNodeMap *This,LONG *listLength);
HRESULT IXMLDOMNamedNodeMap_get_length_Proxy(IXMLDOMNamedNodeMap *This, LONG *listLength);
//C void IXMLDOMNamedNodeMap_get_length_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_get_length_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_getQualifiedItem_Proxy(IXMLDOMNamedNodeMap *This,BSTR baseName,BSTR namespaceURI,IXMLDOMNode **qualifiedItem);
HRESULT IXMLDOMNamedNodeMap_getQualifiedItem_Proxy(IXMLDOMNamedNodeMap *This, BSTR baseName, BSTR namespaceURI, IXMLDOMNode **qualifiedItem);
//C void IXMLDOMNamedNodeMap_getQualifiedItem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_getQualifiedItem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_removeQualifiedItem_Proxy(IXMLDOMNamedNodeMap *This,BSTR baseName,BSTR namespaceURI,IXMLDOMNode **qualifiedItem);
HRESULT IXMLDOMNamedNodeMap_removeQualifiedItem_Proxy(IXMLDOMNamedNodeMap *This, BSTR baseName, BSTR namespaceURI, IXMLDOMNode **qualifiedItem);
//C void IXMLDOMNamedNodeMap_removeQualifiedItem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_removeQualifiedItem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_nextNode_Proxy(IXMLDOMNamedNodeMap *This,IXMLDOMNode **nextItem);
HRESULT IXMLDOMNamedNodeMap_nextNode_Proxy(IXMLDOMNamedNodeMap *This, IXMLDOMNode **nextItem);
//C void IXMLDOMNamedNodeMap_nextNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_nextNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_reset_Proxy(IXMLDOMNamedNodeMap *This);
HRESULT IXMLDOMNamedNodeMap_reset_Proxy(IXMLDOMNamedNodeMap *This);
//C void IXMLDOMNamedNodeMap_reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNamedNodeMap_get__newEnum_Proxy(IXMLDOMNamedNodeMap *This,IUnknown **ppUnk);
HRESULT IXMLDOMNamedNodeMap_get__newEnum_Proxy(IXMLDOMNamedNodeMap *This, IUnknown **ppUnk);
//C void IXMLDOMNamedNodeMap_get__newEnum_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNamedNodeMap_get__newEnum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMCharacterDataVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMCharacterData *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMCharacterData *This);
//C ULONG ( *Release)(IXMLDOMCharacterData *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMCharacterData *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMCharacterData *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMCharacterData *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMCharacterData *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMCharacterData *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMCharacterData *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMCharacterData *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMCharacterData *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMCharacterData *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMCharacterData *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMCharacterData *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMCharacterData *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMCharacterData *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMCharacterData *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMCharacterData *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMCharacterData *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMCharacterData *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMCharacterData *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMCharacterData *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMCharacterData *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMCharacterData *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMCharacterData *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMCharacterData *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMCharacterData *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMCharacterData *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMCharacterData *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMCharacterData *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMCharacterData *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMCharacterData *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMCharacterData *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMCharacterData *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMCharacterData *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMCharacterData *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMCharacterData *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMCharacterData *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMCharacterData *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMCharacterData *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMCharacterData *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMCharacterData *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMCharacterData *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_data)(IXMLDOMCharacterData *This,BSTR *data);
//C HRESULT ( *put_data)(IXMLDOMCharacterData *This,BSTR data);
//C HRESULT ( *get_length)(IXMLDOMCharacterData *This,LONG *dataLength);
//C HRESULT ( *substringData)(IXMLDOMCharacterData *This,LONG offset,LONG count,BSTR *data);
//C HRESULT ( *appendData)(IXMLDOMCharacterData *This,BSTR data);
//C HRESULT ( *insertData)(IXMLDOMCharacterData *This,LONG offset,BSTR data);
//C HRESULT ( *deleteData)(IXMLDOMCharacterData *This,LONG offset,LONG count);
//C HRESULT ( *replaceData)(IXMLDOMCharacterData *This,LONG offset,LONG count,BSTR data);
//C } IXMLDOMCharacterDataVtbl;
struct IXMLDOMCharacterDataVtbl
{
HRESULT function(IXMLDOMCharacterData *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMCharacterData *This)AddRef;
ULONG function(IXMLDOMCharacterData *This)Release;
HRESULT function(IXMLDOMCharacterData *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMCharacterData *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMCharacterData *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMCharacterData *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMCharacterData *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMCharacterData *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMCharacterData *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMCharacterData *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMCharacterData *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMCharacterData *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMCharacterData *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMCharacterData *This, BSTR *text)get_text;
HRESULT function(IXMLDOMCharacterData *This, BSTR text)put_text;
HRESULT function(IXMLDOMCharacterData *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMCharacterData *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMCharacterData *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMCharacterData *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMCharacterData *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMCharacterData *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMCharacterData *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMCharacterData *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMCharacterData *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMCharacterData *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMCharacterData *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMCharacterData *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMCharacterData *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMCharacterData *This, BSTR *data)get_data;
HRESULT function(IXMLDOMCharacterData *This, BSTR data)put_data;
HRESULT function(IXMLDOMCharacterData *This, LONG *dataLength)get_length;
HRESULT function(IXMLDOMCharacterData *This, LONG offset, LONG count, BSTR *data)substringData;
HRESULT function(IXMLDOMCharacterData *This, BSTR data)appendData;
HRESULT function(IXMLDOMCharacterData *This, LONG offset, BSTR data)insertData;
HRESULT function(IXMLDOMCharacterData *This, LONG offset, LONG count)deleteData;
HRESULT function(IXMLDOMCharacterData *This, LONG offset, LONG count, BSTR data)replaceData;
}
//C struct IXMLDOMCharacterData {
//C struct IXMLDOMCharacterDataVtbl *lpVtbl;
//C };
struct IXMLDOMCharacterData
{
IXMLDOMCharacterDataVtbl *lpVtbl;
}
//C HRESULT IXMLDOMCharacterData_get_data_Proxy(IXMLDOMCharacterData *This,BSTR *data);
HRESULT IXMLDOMCharacterData_get_data_Proxy(IXMLDOMCharacterData *This, BSTR *data);
//C void IXMLDOMCharacterData_get_data_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_get_data_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_put_data_Proxy(IXMLDOMCharacterData *This,BSTR data);
HRESULT IXMLDOMCharacterData_put_data_Proxy(IXMLDOMCharacterData *This, BSTR data);
//C void IXMLDOMCharacterData_put_data_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_put_data_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_get_length_Proxy(IXMLDOMCharacterData *This,LONG *dataLength);
HRESULT IXMLDOMCharacterData_get_length_Proxy(IXMLDOMCharacterData *This, LONG *dataLength);
//C void IXMLDOMCharacterData_get_length_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_get_length_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_substringData_Proxy(IXMLDOMCharacterData *This,LONG offset,LONG count,BSTR *data);
HRESULT IXMLDOMCharacterData_substringData_Proxy(IXMLDOMCharacterData *This, LONG offset, LONG count, BSTR *data);
//C void IXMLDOMCharacterData_substringData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_substringData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_appendData_Proxy(IXMLDOMCharacterData *This,BSTR data);
HRESULT IXMLDOMCharacterData_appendData_Proxy(IXMLDOMCharacterData *This, BSTR data);
//C void IXMLDOMCharacterData_appendData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_appendData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_insertData_Proxy(IXMLDOMCharacterData *This,LONG offset,BSTR data);
HRESULT IXMLDOMCharacterData_insertData_Proxy(IXMLDOMCharacterData *This, LONG offset, BSTR data);
//C void IXMLDOMCharacterData_insertData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_insertData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_deleteData_Proxy(IXMLDOMCharacterData *This,LONG offset,LONG count);
HRESULT IXMLDOMCharacterData_deleteData_Proxy(IXMLDOMCharacterData *This, LONG offset, LONG count);
//C void IXMLDOMCharacterData_deleteData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_deleteData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMCharacterData_replaceData_Proxy(IXMLDOMCharacterData *This,LONG offset,LONG count,BSTR data);
HRESULT IXMLDOMCharacterData_replaceData_Proxy(IXMLDOMCharacterData *This, LONG offset, LONG count, BSTR data);
//C void IXMLDOMCharacterData_replaceData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMCharacterData_replaceData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMAttributeVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMAttribute *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMAttribute *This);
//C ULONG ( *Release)(IXMLDOMAttribute *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMAttribute *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMAttribute *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMAttribute *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMAttribute *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMAttribute *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMAttribute *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMAttribute *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMAttribute *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMAttribute *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMAttribute *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMAttribute *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMAttribute *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMAttribute *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMAttribute *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMAttribute *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMAttribute *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMAttribute *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMAttribute *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMAttribute *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMAttribute *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMAttribute *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMAttribute *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMAttribute *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMAttribute *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMAttribute *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMAttribute *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMAttribute *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMAttribute *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMAttribute *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMAttribute *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMAttribute *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMAttribute *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMAttribute *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMAttribute *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMAttribute *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMAttribute *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMAttribute *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMAttribute *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMAttribute *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMAttribute *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_name)(IXMLDOMAttribute *This,BSTR *attributeName);
//C HRESULT ( *get_value)(IXMLDOMAttribute *This,VARIANT *attributeValue);
//C HRESULT ( *put_value)(IXMLDOMAttribute *This,VARIANT attributeValue);
//C } IXMLDOMAttributeVtbl;
struct IXMLDOMAttributeVtbl
{
HRESULT function(IXMLDOMAttribute *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMAttribute *This)AddRef;
ULONG function(IXMLDOMAttribute *This)Release;
HRESULT function(IXMLDOMAttribute *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMAttribute *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMAttribute *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMAttribute *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMAttribute *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMAttribute *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMAttribute *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMAttribute *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMAttribute *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMAttribute *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMAttribute *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMAttribute *This, BSTR *text)get_text;
HRESULT function(IXMLDOMAttribute *This, BSTR text)put_text;
HRESULT function(IXMLDOMAttribute *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMAttribute *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMAttribute *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMAttribute *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMAttribute *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMAttribute *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMAttribute *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMAttribute *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMAttribute *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMAttribute *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMAttribute *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMAttribute *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMAttribute *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMAttribute *This, BSTR *attributeName)get_name;
HRESULT function(IXMLDOMAttribute *This, VARIANT *attributeValue)get_value;
HRESULT function(IXMLDOMAttribute *This, VARIANT attributeValue)put_value;
}
//C struct IXMLDOMAttribute {
//C struct IXMLDOMAttributeVtbl *lpVtbl;
//C };
struct IXMLDOMAttribute
{
IXMLDOMAttributeVtbl *lpVtbl;
}
//C HRESULT IXMLDOMAttribute_get_name_Proxy(IXMLDOMAttribute *This,BSTR *attributeName);
HRESULT IXMLDOMAttribute_get_name_Proxy(IXMLDOMAttribute *This, BSTR *attributeName);
//C void IXMLDOMAttribute_get_name_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMAttribute_get_name_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMAttribute_get_value_Proxy(IXMLDOMAttribute *This,VARIANT *attributeValue);
HRESULT IXMLDOMAttribute_get_value_Proxy(IXMLDOMAttribute *This, VARIANT *attributeValue);
//C void IXMLDOMAttribute_get_value_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMAttribute_get_value_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMAttribute_put_value_Proxy(IXMLDOMAttribute *This,VARIANT attributeValue);
HRESULT IXMLDOMAttribute_put_value_Proxy(IXMLDOMAttribute *This, VARIANT attributeValue);
//C void IXMLDOMAttribute_put_value_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMAttribute_put_value_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMElementVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMElement *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMElement *This);
//C ULONG ( *Release)(IXMLDOMElement *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMElement *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMElement *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMElement *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMElement *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMElement *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMElement *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMElement *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMElement *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMElement *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMElement *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMElement *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMElement *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMElement *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMElement *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMElement *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMElement *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMElement *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMElement *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMElement *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMElement *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMElement *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMElement *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMElement *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMElement *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMElement *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMElement *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMElement *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMElement *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMElement *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMElement *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMElement *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMElement *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMElement *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMElement *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMElement *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMElement *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMElement *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMElement *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMElement *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMElement *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_tagName)(IXMLDOMElement *This,BSTR *tagName);
//C HRESULT ( *getAttribute)(IXMLDOMElement *This,BSTR name,VARIANT *value);
//C HRESULT ( *setAttribute)(IXMLDOMElement *This,BSTR name,VARIANT value);
//C HRESULT ( *removeAttribute)(IXMLDOMElement *This,BSTR name);
//C HRESULT ( *getAttributeNode)(IXMLDOMElement *This,BSTR name,IXMLDOMAttribute **attributeNode);
//C HRESULT ( *setAttributeNode)(IXMLDOMElement *This,IXMLDOMAttribute *DOMAttribute,IXMLDOMAttribute **attributeNode);
//C HRESULT ( *removeAttributeNode)(IXMLDOMElement *This,IXMLDOMAttribute *DOMAttribute,IXMLDOMAttribute **attributeNode);
//C HRESULT ( *getElementsByTagName)(IXMLDOMElement *This,BSTR tagName,IXMLDOMNodeList **resultList);
//C HRESULT ( *normalize)(IXMLDOMElement *This);
//C } IXMLDOMElementVtbl;
struct IXMLDOMElementVtbl
{
HRESULT function(IXMLDOMElement *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMElement *This)AddRef;
ULONG function(IXMLDOMElement *This)Release;
HRESULT function(IXMLDOMElement *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMElement *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMElement *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMElement *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMElement *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMElement *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMElement *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMElement *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMElement *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMElement *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMElement *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMElement *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMElement *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMElement *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMElement *This, BSTR *text)get_text;
HRESULT function(IXMLDOMElement *This, BSTR text)put_text;
HRESULT function(IXMLDOMElement *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMElement *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMElement *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMElement *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMElement *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMElement *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMElement *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMElement *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMElement *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMElement *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMElement *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMElement *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMElement *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMElement *This, BSTR *tagName)get_tagName;
HRESULT function(IXMLDOMElement *This, BSTR name, VARIANT *value)getAttribute;
HRESULT function(IXMLDOMElement *This, BSTR name, VARIANT value)setAttribute;
HRESULT function(IXMLDOMElement *This, BSTR name)removeAttribute;
HRESULT function(IXMLDOMElement *This, BSTR name, IXMLDOMAttribute **attributeNode)getAttributeNode;
HRESULT function(IXMLDOMElement *This, IXMLDOMAttribute *DOMAttribute, IXMLDOMAttribute **attributeNode)setAttributeNode;
HRESULT function(IXMLDOMElement *This, IXMLDOMAttribute *DOMAttribute, IXMLDOMAttribute **attributeNode)removeAttributeNode;
HRESULT function(IXMLDOMElement *This, BSTR tagName, IXMLDOMNodeList **resultList)getElementsByTagName;
HRESULT function(IXMLDOMElement *This)normalize;
}
//C struct IXMLDOMElement {
//C struct IXMLDOMElementVtbl *lpVtbl;
//C };
struct IXMLDOMElement
{
IXMLDOMElementVtbl *lpVtbl;
}
//C HRESULT IXMLDOMElement_get_tagName_Proxy(IXMLDOMElement *This,BSTR *tagName);
HRESULT IXMLDOMElement_get_tagName_Proxy(IXMLDOMElement *This, BSTR *tagName);
//C void IXMLDOMElement_get_tagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_get_tagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_getAttribute_Proxy(IXMLDOMElement *This,BSTR name,VARIANT *value);
HRESULT IXMLDOMElement_getAttribute_Proxy(IXMLDOMElement *This, BSTR name, VARIANT *value);
//C void IXMLDOMElement_getAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_getAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_setAttribute_Proxy(IXMLDOMElement *This,BSTR name,VARIANT value);
HRESULT IXMLDOMElement_setAttribute_Proxy(IXMLDOMElement *This, BSTR name, VARIANT value);
//C void IXMLDOMElement_setAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_setAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_removeAttribute_Proxy(IXMLDOMElement *This,BSTR name);
HRESULT IXMLDOMElement_removeAttribute_Proxy(IXMLDOMElement *This, BSTR name);
//C void IXMLDOMElement_removeAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_removeAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_getAttributeNode_Proxy(IXMLDOMElement *This,BSTR name,IXMLDOMAttribute **attributeNode);
HRESULT IXMLDOMElement_getAttributeNode_Proxy(IXMLDOMElement *This, BSTR name, IXMLDOMAttribute **attributeNode);
//C void IXMLDOMElement_getAttributeNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_getAttributeNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_setAttributeNode_Proxy(IXMLDOMElement *This,IXMLDOMAttribute *DOMAttribute,IXMLDOMAttribute **attributeNode);
HRESULT IXMLDOMElement_setAttributeNode_Proxy(IXMLDOMElement *This, IXMLDOMAttribute *DOMAttribute, IXMLDOMAttribute **attributeNode);
//C void IXMLDOMElement_setAttributeNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_setAttributeNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_removeAttributeNode_Proxy(IXMLDOMElement *This,IXMLDOMAttribute *DOMAttribute,IXMLDOMAttribute **attributeNode);
HRESULT IXMLDOMElement_removeAttributeNode_Proxy(IXMLDOMElement *This, IXMLDOMAttribute *DOMAttribute, IXMLDOMAttribute **attributeNode);
//C void IXMLDOMElement_removeAttributeNode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_removeAttributeNode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_getElementsByTagName_Proxy(IXMLDOMElement *This,BSTR tagName,IXMLDOMNodeList **resultList);
HRESULT IXMLDOMElement_getElementsByTagName_Proxy(IXMLDOMElement *This, BSTR tagName, IXMLDOMNodeList **resultList);
//C void IXMLDOMElement_getElementsByTagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_getElementsByTagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMElement_normalize_Proxy(IXMLDOMElement *This);
HRESULT IXMLDOMElement_normalize_Proxy(IXMLDOMElement *This);
//C void IXMLDOMElement_normalize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMElement_normalize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMTextVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMText *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMText *This);
//C ULONG ( *Release)(IXMLDOMText *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMText *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMText *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMText *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMText *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMText *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMText *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMText *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMText *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMText *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMText *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMText *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMText *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMText *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMText *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMText *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMText *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMText *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMText *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMText *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMText *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMText *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMText *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMText *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMText *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMText *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMText *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMText *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMText *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMText *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMText *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMText *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMText *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMText *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMText *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMText *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMText *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMText *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMText *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMText *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMText *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_data)(IXMLDOMText *This,BSTR *data);
//C HRESULT ( *put_data)(IXMLDOMText *This,BSTR data);
//C HRESULT ( *get_length)(IXMLDOMText *This,LONG *dataLength);
//C HRESULT ( *substringData)(IXMLDOMText *This,LONG offset,LONG count,BSTR *data);
//C HRESULT ( *appendData)(IXMLDOMText *This,BSTR data);
//C HRESULT ( *insertData)(IXMLDOMText *This,LONG offset,BSTR data);
//C HRESULT ( *deleteData)(IXMLDOMText *This,LONG offset,LONG count);
//C HRESULT ( *replaceData)(IXMLDOMText *This,LONG offset,LONG count,BSTR data);
//C HRESULT ( *splitText)(IXMLDOMText *This,LONG offset,IXMLDOMText **rightHandTextNode);
//C } IXMLDOMTextVtbl;
struct IXMLDOMTextVtbl
{
HRESULT function(IXMLDOMText *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMText *This)AddRef;
ULONG function(IXMLDOMText *This)Release;
HRESULT function(IXMLDOMText *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMText *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMText *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMText *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMText *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMText *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMText *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMText *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMText *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMText *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMText *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMText *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMText *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMText *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMText *This, BSTR *text)get_text;
HRESULT function(IXMLDOMText *This, BSTR text)put_text;
HRESULT function(IXMLDOMText *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMText *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMText *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMText *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMText *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMText *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMText *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMText *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMText *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMText *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMText *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMText *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMText *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMText *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMText *This, BSTR *data)get_data;
HRESULT function(IXMLDOMText *This, BSTR data)put_data;
HRESULT function(IXMLDOMText *This, LONG *dataLength)get_length;
HRESULT function(IXMLDOMText *This, LONG offset, LONG count, BSTR *data)substringData;
HRESULT function(IXMLDOMText *This, BSTR data)appendData;
HRESULT function(IXMLDOMText *This, LONG offset, BSTR data)insertData;
HRESULT function(IXMLDOMText *This, LONG offset, LONG count)deleteData;
HRESULT function(IXMLDOMText *This, LONG offset, LONG count, BSTR data)replaceData;
HRESULT function(IXMLDOMText *This, LONG offset, IXMLDOMText **rightHandTextNode)splitText;
}
//C struct IXMLDOMText {
//C struct IXMLDOMTextVtbl *lpVtbl;
//C };
struct IXMLDOMText
{
IXMLDOMTextVtbl *lpVtbl;
}
//C HRESULT IXMLDOMText_splitText_Proxy(IXMLDOMText *This,LONG offset,IXMLDOMText **rightHandTextNode);
HRESULT IXMLDOMText_splitText_Proxy(IXMLDOMText *This, LONG offset, IXMLDOMText **rightHandTextNode);
//C void IXMLDOMText_splitText_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMText_splitText_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMCommentVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMComment *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMComment *This);
//C ULONG ( *Release)(IXMLDOMComment *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMComment *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMComment *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMComment *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMComment *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMComment *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMComment *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMComment *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMComment *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMComment *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMComment *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMComment *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMComment *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMComment *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMComment *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMComment *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMComment *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMComment *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMComment *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMComment *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMComment *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMComment *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMComment *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMComment *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMComment *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMComment *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMComment *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMComment *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMComment *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMComment *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMComment *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMComment *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMComment *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMComment *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMComment *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMComment *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMComment *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMComment *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMComment *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMComment *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMComment *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_data)(IXMLDOMComment *This,BSTR *data);
//C HRESULT ( *put_data)(IXMLDOMComment *This,BSTR data);
//C HRESULT ( *get_length)(IXMLDOMComment *This,LONG *dataLength);
//C HRESULT ( *substringData)(IXMLDOMComment *This,LONG offset,LONG count,BSTR *data);
//C HRESULT ( *appendData)(IXMLDOMComment *This,BSTR data);
//C HRESULT ( *insertData)(IXMLDOMComment *This,LONG offset,BSTR data);
//C HRESULT ( *deleteData)(IXMLDOMComment *This,LONG offset,LONG count);
//C HRESULT ( *replaceData)(IXMLDOMComment *This,LONG offset,LONG count,BSTR data);
//C } IXMLDOMCommentVtbl;
struct IXMLDOMCommentVtbl
{
HRESULT function(IXMLDOMComment *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMComment *This)AddRef;
ULONG function(IXMLDOMComment *This)Release;
HRESULT function(IXMLDOMComment *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMComment *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMComment *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMComment *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMComment *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMComment *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMComment *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMComment *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMComment *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMComment *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMComment *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMComment *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMComment *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMComment *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMComment *This, BSTR *text)get_text;
HRESULT function(IXMLDOMComment *This, BSTR text)put_text;
HRESULT function(IXMLDOMComment *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMComment *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMComment *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMComment *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMComment *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMComment *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMComment *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMComment *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMComment *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMComment *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMComment *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMComment *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMComment *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMComment *This, BSTR *data)get_data;
HRESULT function(IXMLDOMComment *This, BSTR data)put_data;
HRESULT function(IXMLDOMComment *This, LONG *dataLength)get_length;
HRESULT function(IXMLDOMComment *This, LONG offset, LONG count, BSTR *data)substringData;
HRESULT function(IXMLDOMComment *This, BSTR data)appendData;
HRESULT function(IXMLDOMComment *This, LONG offset, BSTR data)insertData;
HRESULT function(IXMLDOMComment *This, LONG offset, LONG count)deleteData;
HRESULT function(IXMLDOMComment *This, LONG offset, LONG count, BSTR data)replaceData;
}
//C struct IXMLDOMComment {
//C struct IXMLDOMCommentVtbl *lpVtbl;
//C };
struct IXMLDOMComment
{
IXMLDOMCommentVtbl *lpVtbl;
}
//C typedef struct IXMLDOMProcessingInstructionVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMProcessingInstruction *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMProcessingInstruction *This);
//C ULONG ( *Release)(IXMLDOMProcessingInstruction *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMProcessingInstruction *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMProcessingInstruction *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMProcessingInstruction *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMProcessingInstruction *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMProcessingInstruction *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMProcessingInstruction *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMProcessingInstruction *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMProcessingInstruction *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMProcessingInstruction *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMProcessingInstruction *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMProcessingInstruction *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMProcessingInstruction *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMProcessingInstruction *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMProcessingInstruction *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMProcessingInstruction *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMProcessingInstruction *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMProcessingInstruction *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMProcessingInstruction *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMProcessingInstruction *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMProcessingInstruction *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMProcessingInstruction *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMProcessingInstruction *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMProcessingInstruction *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMProcessingInstruction *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMProcessingInstruction *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMProcessingInstruction *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMProcessingInstruction *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMProcessingInstruction *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMProcessingInstruction *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMProcessingInstruction *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_target)(IXMLDOMProcessingInstruction *This,BSTR *name);
//C HRESULT ( *get_data)(IXMLDOMProcessingInstruction *This,BSTR *value);
//C HRESULT ( *put_data)(IXMLDOMProcessingInstruction *This,BSTR value);
//C } IXMLDOMProcessingInstructionVtbl;
struct IXMLDOMProcessingInstructionVtbl
{
HRESULT function(IXMLDOMProcessingInstruction *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMProcessingInstruction *This)AddRef;
ULONG function(IXMLDOMProcessingInstruction *This)Release;
HRESULT function(IXMLDOMProcessingInstruction *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMProcessingInstruction *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMProcessingInstruction *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMProcessingInstruction *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMProcessingInstruction *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *text)get_text;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR text)put_text;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMProcessingInstruction *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMProcessingInstruction *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *name)get_target;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR *value)get_data;
HRESULT function(IXMLDOMProcessingInstruction *This, BSTR value)put_data;
}
//C struct IXMLDOMProcessingInstruction {
//C struct IXMLDOMProcessingInstructionVtbl *lpVtbl;
//C };
struct IXMLDOMProcessingInstruction
{
IXMLDOMProcessingInstructionVtbl *lpVtbl;
}
//C HRESULT IXMLDOMProcessingInstruction_get_target_Proxy(IXMLDOMProcessingInstruction *This,BSTR *name);
HRESULT IXMLDOMProcessingInstruction_get_target_Proxy(IXMLDOMProcessingInstruction *This, BSTR *name);
//C void IXMLDOMProcessingInstruction_get_target_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMProcessingInstruction_get_target_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMProcessingInstruction_get_data_Proxy(IXMLDOMProcessingInstruction *This,BSTR *value);
HRESULT IXMLDOMProcessingInstruction_get_data_Proxy(IXMLDOMProcessingInstruction *This, BSTR *value);
//C void IXMLDOMProcessingInstruction_get_data_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMProcessingInstruction_get_data_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMProcessingInstruction_put_data_Proxy(IXMLDOMProcessingInstruction *This,BSTR value);
HRESULT IXMLDOMProcessingInstruction_put_data_Proxy(IXMLDOMProcessingInstruction *This, BSTR value);
//C void IXMLDOMProcessingInstruction_put_data_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMProcessingInstruction_put_data_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMCDATASectionVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMCDATASection *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMCDATASection *This);
//C ULONG ( *Release)(IXMLDOMCDATASection *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMCDATASection *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMCDATASection *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMCDATASection *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMCDATASection *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMCDATASection *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMCDATASection *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMCDATASection *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMCDATASection *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMCDATASection *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMCDATASection *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMCDATASection *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMCDATASection *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMCDATASection *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMCDATASection *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMCDATASection *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMCDATASection *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMCDATASection *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMCDATASection *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMCDATASection *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMCDATASection *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMCDATASection *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMCDATASection *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMCDATASection *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMCDATASection *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMCDATASection *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMCDATASection *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMCDATASection *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMCDATASection *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMCDATASection *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMCDATASection *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMCDATASection *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMCDATASection *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMCDATASection *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMCDATASection *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMCDATASection *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMCDATASection *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMCDATASection *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMCDATASection *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMCDATASection *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMCDATASection *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_data)(IXMLDOMCDATASection *This,BSTR *data);
//C HRESULT ( *put_data)(IXMLDOMCDATASection *This,BSTR data);
//C HRESULT ( *get_length)(IXMLDOMCDATASection *This,LONG *dataLength);
//C HRESULT ( *substringData)(IXMLDOMCDATASection *This,LONG offset,LONG count,BSTR *data);
//C HRESULT ( *appendData)(IXMLDOMCDATASection *This,BSTR data);
//C HRESULT ( *insertData)(IXMLDOMCDATASection *This,LONG offset,BSTR data);
//C HRESULT ( *deleteData)(IXMLDOMCDATASection *This,LONG offset,LONG count);
//C HRESULT ( *replaceData)(IXMLDOMCDATASection *This,LONG offset,LONG count,BSTR data);
//C HRESULT ( *splitText)(IXMLDOMCDATASection *This,LONG offset,IXMLDOMText **rightHandTextNode);
//C } IXMLDOMCDATASectionVtbl;
struct IXMLDOMCDATASectionVtbl
{
HRESULT function(IXMLDOMCDATASection *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMCDATASection *This)AddRef;
ULONG function(IXMLDOMCDATASection *This)Release;
HRESULT function(IXMLDOMCDATASection *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMCDATASection *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMCDATASection *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMCDATASection *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMCDATASection *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMCDATASection *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMCDATASection *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMCDATASection *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMCDATASection *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMCDATASection *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMCDATASection *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMCDATASection *This, BSTR *text)get_text;
HRESULT function(IXMLDOMCDATASection *This, BSTR text)put_text;
HRESULT function(IXMLDOMCDATASection *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMCDATASection *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMCDATASection *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMCDATASection *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMCDATASection *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMCDATASection *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMCDATASection *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMCDATASection *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMCDATASection *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMCDATASection *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMCDATASection *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMCDATASection *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMCDATASection *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMCDATASection *This, BSTR *data)get_data;
HRESULT function(IXMLDOMCDATASection *This, BSTR data)put_data;
HRESULT function(IXMLDOMCDATASection *This, LONG *dataLength)get_length;
HRESULT function(IXMLDOMCDATASection *This, LONG offset, LONG count, BSTR *data)substringData;
HRESULT function(IXMLDOMCDATASection *This, BSTR data)appendData;
HRESULT function(IXMLDOMCDATASection *This, LONG offset, BSTR data)insertData;
HRESULT function(IXMLDOMCDATASection *This, LONG offset, LONG count)deleteData;
HRESULT function(IXMLDOMCDATASection *This, LONG offset, LONG count, BSTR data)replaceData;
HRESULT function(IXMLDOMCDATASection *This, LONG offset, IXMLDOMText **rightHandTextNode)splitText;
}
//C struct IXMLDOMCDATASection {
//C struct IXMLDOMCDATASectionVtbl *lpVtbl;
//C };
struct IXMLDOMCDATASection
{
IXMLDOMCDATASectionVtbl *lpVtbl;
}
//C typedef struct IXMLDOMDocumentTypeVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMDocumentType *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMDocumentType *This);
//C ULONG ( *Release)(IXMLDOMDocumentType *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMDocumentType *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMDocumentType *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMDocumentType *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMDocumentType *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMDocumentType *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMDocumentType *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMDocumentType *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMDocumentType *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMDocumentType *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMDocumentType *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMDocumentType *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMDocumentType *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMDocumentType *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMDocumentType *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMDocumentType *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMDocumentType *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMDocumentType *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMDocumentType *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMDocumentType *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMDocumentType *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMDocumentType *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMDocumentType *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMDocumentType *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMDocumentType *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMDocumentType *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMDocumentType *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMDocumentType *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMDocumentType *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMDocumentType *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMDocumentType *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMDocumentType *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMDocumentType *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMDocumentType *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMDocumentType *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMDocumentType *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMDocumentType *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMDocumentType *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMDocumentType *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMDocumentType *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMDocumentType *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_name)(IXMLDOMDocumentType *This,BSTR *rootName);
//C HRESULT ( *get_entities)(IXMLDOMDocumentType *This,IXMLDOMNamedNodeMap **entityMap);
//C HRESULT ( *get_notations)(IXMLDOMDocumentType *This,IXMLDOMNamedNodeMap **notationMap);
//C } IXMLDOMDocumentTypeVtbl;
struct IXMLDOMDocumentTypeVtbl
{
HRESULT function(IXMLDOMDocumentType *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMDocumentType *This)AddRef;
ULONG function(IXMLDOMDocumentType *This)Release;
HRESULT function(IXMLDOMDocumentType *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMDocumentType *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMDocumentType *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMDocumentType *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMDocumentType *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMDocumentType *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMDocumentType *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMDocumentType *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMDocumentType *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMDocumentType *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMDocumentType *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMDocumentType *This, BSTR *text)get_text;
HRESULT function(IXMLDOMDocumentType *This, BSTR text)put_text;
HRESULT function(IXMLDOMDocumentType *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMDocumentType *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMDocumentType *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMDocumentType *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMDocumentType *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMDocumentType *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMDocumentType *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMDocumentType *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMDocumentType *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMDocumentType *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMDocumentType *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMDocumentType *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMDocumentType *This, BSTR *rootName)get_name;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNamedNodeMap **entityMap)get_entities;
HRESULT function(IXMLDOMDocumentType *This, IXMLDOMNamedNodeMap **notationMap)get_notations;
}
//C struct IXMLDOMDocumentType {
//C struct IXMLDOMDocumentTypeVtbl *lpVtbl;
//C };
struct IXMLDOMDocumentType
{
IXMLDOMDocumentTypeVtbl *lpVtbl;
}
//C HRESULT IXMLDOMDocumentType_get_name_Proxy(IXMLDOMDocumentType *This,BSTR *rootName);
HRESULT IXMLDOMDocumentType_get_name_Proxy(IXMLDOMDocumentType *This, BSTR *rootName);
//C void IXMLDOMDocumentType_get_name_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocumentType_get_name_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocumentType_get_entities_Proxy(IXMLDOMDocumentType *This,IXMLDOMNamedNodeMap **entityMap);
HRESULT IXMLDOMDocumentType_get_entities_Proxy(IXMLDOMDocumentType *This, IXMLDOMNamedNodeMap **entityMap);
//C void IXMLDOMDocumentType_get_entities_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocumentType_get_entities_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMDocumentType_get_notations_Proxy(IXMLDOMDocumentType *This,IXMLDOMNamedNodeMap **notationMap);
HRESULT IXMLDOMDocumentType_get_notations_Proxy(IXMLDOMDocumentType *This, IXMLDOMNamedNodeMap **notationMap);
//C void IXMLDOMDocumentType_get_notations_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMDocumentType_get_notations_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMNotationVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMNotation *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMNotation *This);
//C ULONG ( *Release)(IXMLDOMNotation *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMNotation *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMNotation *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMNotation *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMNotation *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMNotation *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMNotation *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMNotation *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMNotation *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMNotation *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMNotation *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMNotation *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMNotation *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMNotation *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMNotation *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMNotation *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMNotation *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMNotation *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMNotation *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMNotation *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMNotation *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMNotation *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMNotation *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMNotation *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMNotation *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMNotation *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMNotation *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMNotation *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMNotation *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMNotation *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMNotation *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMNotation *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMNotation *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMNotation *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMNotation *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMNotation *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMNotation *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMNotation *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMNotation *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMNotation *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMNotation *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_publicId)(IXMLDOMNotation *This,VARIANT *publicID);
//C HRESULT ( *get_systemId)(IXMLDOMNotation *This,VARIANT *systemID);
//C } IXMLDOMNotationVtbl;
struct IXMLDOMNotationVtbl
{
HRESULT function(IXMLDOMNotation *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMNotation *This)AddRef;
ULONG function(IXMLDOMNotation *This)Release;
HRESULT function(IXMLDOMNotation *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMNotation *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMNotation *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMNotation *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMNotation *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMNotation *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMNotation *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMNotation *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMNotation *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMNotation *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMNotation *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMNotation *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMNotation *This, BSTR *text)get_text;
HRESULT function(IXMLDOMNotation *This, BSTR text)put_text;
HRESULT function(IXMLDOMNotation *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMNotation *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMNotation *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMNotation *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMNotation *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMNotation *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMNotation *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMNotation *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMNotation *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMNotation *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMNotation *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMNotation *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMNotation *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMNotation *This, VARIANT *publicID)get_publicId;
HRESULT function(IXMLDOMNotation *This, VARIANT *systemID)get_systemId;
}
//C struct IXMLDOMNotation {
//C struct IXMLDOMNotationVtbl *lpVtbl;
//C };
struct IXMLDOMNotation
{
IXMLDOMNotationVtbl *lpVtbl;
}
//C HRESULT IXMLDOMNotation_get_publicId_Proxy(IXMLDOMNotation *This,VARIANT *publicID);
HRESULT IXMLDOMNotation_get_publicId_Proxy(IXMLDOMNotation *This, VARIANT *publicID);
//C void IXMLDOMNotation_get_publicId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNotation_get_publicId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMNotation_get_systemId_Proxy(IXMLDOMNotation *This,VARIANT *systemID);
HRESULT IXMLDOMNotation_get_systemId_Proxy(IXMLDOMNotation *This, VARIANT *systemID);
//C void IXMLDOMNotation_get_systemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMNotation_get_systemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMEntityVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMEntity *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMEntity *This);
//C ULONG ( *Release)(IXMLDOMEntity *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMEntity *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMEntity *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMEntity *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMEntity *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMEntity *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMEntity *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMEntity *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMEntity *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMEntity *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMEntity *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMEntity *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMEntity *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMEntity *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMEntity *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMEntity *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMEntity *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMEntity *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMEntity *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMEntity *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMEntity *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMEntity *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMEntity *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMEntity *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMEntity *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMEntity *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMEntity *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMEntity *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMEntity *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMEntity *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMEntity *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMEntity *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMEntity *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMEntity *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMEntity *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMEntity *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMEntity *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMEntity *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMEntity *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMEntity *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMEntity *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *get_publicId)(IXMLDOMEntity *This,VARIANT *publicID);
//C HRESULT ( *get_systemId)(IXMLDOMEntity *This,VARIANT *systemID);
//C HRESULT ( *get_notationName)(IXMLDOMEntity *This,BSTR *name);
//C } IXMLDOMEntityVtbl;
struct IXMLDOMEntityVtbl
{
HRESULT function(IXMLDOMEntity *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMEntity *This)AddRef;
ULONG function(IXMLDOMEntity *This)Release;
HRESULT function(IXMLDOMEntity *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMEntity *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMEntity *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMEntity *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMEntity *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMEntity *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMEntity *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMEntity *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMEntity *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMEntity *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMEntity *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMEntity *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMEntity *This, BSTR *text)get_text;
HRESULT function(IXMLDOMEntity *This, BSTR text)put_text;
HRESULT function(IXMLDOMEntity *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMEntity *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMEntity *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMEntity *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMEntity *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMEntity *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMEntity *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMEntity *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMEntity *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMEntity *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMEntity *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMEntity *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMEntity *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXMLDOMEntity *This, VARIANT *publicID)get_publicId;
HRESULT function(IXMLDOMEntity *This, VARIANT *systemID)get_systemId;
HRESULT function(IXMLDOMEntity *This, BSTR *name)get_notationName;
}
//C struct IXMLDOMEntity {
//C struct IXMLDOMEntityVtbl *lpVtbl;
//C };
struct IXMLDOMEntity
{
IXMLDOMEntityVtbl *lpVtbl;
}
//C HRESULT IXMLDOMEntity_get_publicId_Proxy(IXMLDOMEntity *This,VARIANT *publicID);
HRESULT IXMLDOMEntity_get_publicId_Proxy(IXMLDOMEntity *This, VARIANT *publicID);
//C void IXMLDOMEntity_get_publicId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMEntity_get_publicId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMEntity_get_systemId_Proxy(IXMLDOMEntity *This,VARIANT *systemID);
HRESULT IXMLDOMEntity_get_systemId_Proxy(IXMLDOMEntity *This, VARIANT *systemID);
//C void IXMLDOMEntity_get_systemId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMEntity_get_systemId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMEntity_get_notationName_Proxy(IXMLDOMEntity *This,BSTR *name);
HRESULT IXMLDOMEntity_get_notationName_Proxy(IXMLDOMEntity *This, BSTR *name);
//C void IXMLDOMEntity_get_notationName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMEntity_get_notationName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDOMEntityReferenceVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMEntityReference *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMEntityReference *This);
//C ULONG ( *Release)(IXMLDOMEntityReference *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMEntityReference *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMEntityReference *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMEntityReference *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMEntityReference *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXMLDOMEntityReference *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXMLDOMEntityReference *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXMLDOMEntityReference *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXMLDOMEntityReference *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXMLDOMEntityReference *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXMLDOMEntityReference *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXMLDOMEntityReference *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXMLDOMEntityReference *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXMLDOMEntityReference *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXMLDOMEntityReference *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXMLDOMEntityReference *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXMLDOMEntityReference *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXMLDOMEntityReference *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXMLDOMEntityReference *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXMLDOMEntityReference *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXMLDOMEntityReference *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXMLDOMEntityReference *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXMLDOMEntityReference *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXMLDOMEntityReference *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXMLDOMEntityReference *This,BSTR *text);
//C HRESULT ( *put_text)(IXMLDOMEntityReference *This,BSTR text);
//C HRESULT ( *get_specified)(IXMLDOMEntityReference *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXMLDOMEntityReference *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXMLDOMEntityReference *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXMLDOMEntityReference *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXMLDOMEntityReference *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXMLDOMEntityReference *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXMLDOMEntityReference *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXMLDOMEntityReference *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXMLDOMEntityReference *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXMLDOMEntityReference *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXMLDOMEntityReference *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXMLDOMEntityReference *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXMLDOMEntityReference *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXMLDOMEntityReference *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXMLDOMEntityReference *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C } IXMLDOMEntityReferenceVtbl;
struct IXMLDOMEntityReferenceVtbl
{
HRESULT function(IXMLDOMEntityReference *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMEntityReference *This)AddRef;
ULONG function(IXMLDOMEntityReference *This)Release;
HRESULT function(IXMLDOMEntityReference *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMEntityReference *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMEntityReference *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMEntityReference *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMEntityReference *This, BSTR *name)get_nodeName;
HRESULT function(IXMLDOMEntityReference *This, VARIANT *value)get_nodeValue;
HRESULT function(IXMLDOMEntityReference *This, VARIANT value)put_nodeValue;
HRESULT function(IXMLDOMEntityReference *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXMLDOMEntityReference *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXMLDOMEntityReference *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXMLDOMEntityReference *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXMLDOMEntityReference *This, BSTR *text)get_text;
HRESULT function(IXMLDOMEntityReference *This, BSTR text)put_text;
HRESULT function(IXMLDOMEntityReference *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXMLDOMEntityReference *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXMLDOMEntityReference *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXMLDOMEntityReference *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXMLDOMEntityReference *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXMLDOMEntityReference *This, BSTR *xmlString)get_xml;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXMLDOMEntityReference *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXMLDOMEntityReference *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXMLDOMEntityReference *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXMLDOMEntityReference *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXMLDOMEntityReference *This, BSTR *prefixString)get_prefix;
HRESULT function(IXMLDOMEntityReference *This, BSTR *nameString)get_baseName;
HRESULT function(IXMLDOMEntityReference *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
}
//C struct IXMLDOMEntityReference {
//C struct IXMLDOMEntityReferenceVtbl *lpVtbl;
//C };
struct IXMLDOMEntityReference
{
IXMLDOMEntityReferenceVtbl *lpVtbl;
}
//C typedef struct IXMLDOMParseErrorVtbl {
//C HRESULT ( *QueryInterface)(IXMLDOMParseError *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDOMParseError *This);
//C ULONG ( *Release)(IXMLDOMParseError *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDOMParseError *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDOMParseError *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDOMParseError *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDOMParseError *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_errorCode)(IXMLDOMParseError *This,LONG *errorCode);
//C HRESULT ( *get_url)(IXMLDOMParseError *This,BSTR *urlString);
//C HRESULT ( *get_reason)(IXMLDOMParseError *This,BSTR *reasonString);
//C HRESULT ( *get_srcText)(IXMLDOMParseError *This,BSTR *sourceString);
//C HRESULT ( *get_line)(IXMLDOMParseError *This,LONG *lineNumber);
//C HRESULT ( *get_linepos)(IXMLDOMParseError *This,LONG *linePosition);
//C HRESULT ( *get_filepos)(IXMLDOMParseError *This,LONG *filePosition);
//C } IXMLDOMParseErrorVtbl;
struct IXMLDOMParseErrorVtbl
{
HRESULT function(IXMLDOMParseError *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDOMParseError *This)AddRef;
ULONG function(IXMLDOMParseError *This)Release;
HRESULT function(IXMLDOMParseError *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDOMParseError *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDOMParseError *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDOMParseError *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDOMParseError *This, LONG *errorCode)get_errorCode;
HRESULT function(IXMLDOMParseError *This, BSTR *urlString)get_url;
HRESULT function(IXMLDOMParseError *This, BSTR *reasonString)get_reason;
HRESULT function(IXMLDOMParseError *This, BSTR *sourceString)get_srcText;
HRESULT function(IXMLDOMParseError *This, LONG *lineNumber)get_line;
HRESULT function(IXMLDOMParseError *This, LONG *linePosition)get_linepos;
HRESULT function(IXMLDOMParseError *This, LONG *filePosition)get_filepos;
}
//C struct IXMLDOMParseError {
//C struct IXMLDOMParseErrorVtbl *lpVtbl;
//C };
struct IXMLDOMParseError
{
IXMLDOMParseErrorVtbl *lpVtbl;
}
//C HRESULT IXMLDOMParseError_get_errorCode_Proxy(IXMLDOMParseError *This,LONG *errorCode);
HRESULT IXMLDOMParseError_get_errorCode_Proxy(IXMLDOMParseError *This, LONG *errorCode);
//C void IXMLDOMParseError_get_errorCode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_errorCode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_url_Proxy(IXMLDOMParseError *This,BSTR *urlString);
HRESULT IXMLDOMParseError_get_url_Proxy(IXMLDOMParseError *This, BSTR *urlString);
//C void IXMLDOMParseError_get_url_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_url_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_reason_Proxy(IXMLDOMParseError *This,BSTR *reasonString);
HRESULT IXMLDOMParseError_get_reason_Proxy(IXMLDOMParseError *This, BSTR *reasonString);
//C void IXMLDOMParseError_get_reason_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_reason_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_srcText_Proxy(IXMLDOMParseError *This,BSTR *sourceString);
HRESULT IXMLDOMParseError_get_srcText_Proxy(IXMLDOMParseError *This, BSTR *sourceString);
//C void IXMLDOMParseError_get_srcText_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_srcText_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_line_Proxy(IXMLDOMParseError *This,LONG *lineNumber);
HRESULT IXMLDOMParseError_get_line_Proxy(IXMLDOMParseError *This, LONG *lineNumber);
//C void IXMLDOMParseError_get_line_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_line_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_linepos_Proxy(IXMLDOMParseError *This,LONG *linePosition);
HRESULT IXMLDOMParseError_get_linepos_Proxy(IXMLDOMParseError *This, LONG *linePosition);
//C void IXMLDOMParseError_get_linepos_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_linepos_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDOMParseError_get_filepos_Proxy(IXMLDOMParseError *This,LONG *filePosition);
HRESULT IXMLDOMParseError_get_filepos_Proxy(IXMLDOMParseError *This, LONG *filePosition);
//C void IXMLDOMParseError_get_filepos_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDOMParseError_get_filepos_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXTLRuntimeVtbl {
//C HRESULT ( *QueryInterface)(IXTLRuntime *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXTLRuntime *This);
//C ULONG ( *Release)(IXTLRuntime *This);
//C HRESULT ( *GetTypeInfoCount)(IXTLRuntime *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXTLRuntime *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXTLRuntime *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXTLRuntime *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_nodeName)(IXTLRuntime *This,BSTR *name);
//C HRESULT ( *get_nodeValue)(IXTLRuntime *This,VARIANT *value);
//C HRESULT ( *put_nodeValue)(IXTLRuntime *This,VARIANT value);
//C HRESULT ( *get_nodeType)(IXTLRuntime *This,DOMNodeType *type);
//C HRESULT ( *get_parentNode)(IXTLRuntime *This,IXMLDOMNode **parent);
//C HRESULT ( *get_childNodes)(IXTLRuntime *This,IXMLDOMNodeList **childList);
//C HRESULT ( *get_firstChild)(IXTLRuntime *This,IXMLDOMNode **firstChild);
//C HRESULT ( *get_lastChild)(IXTLRuntime *This,IXMLDOMNode **lastChild);
//C HRESULT ( *get_previousSibling)(IXTLRuntime *This,IXMLDOMNode **previousSibling);
//C HRESULT ( *get_nextSibling)(IXTLRuntime *This,IXMLDOMNode **nextSibling);
//C HRESULT ( *get_attributes)(IXTLRuntime *This,IXMLDOMNamedNodeMap **attributeMap);
//C HRESULT ( *insertBefore)(IXTLRuntime *This,IXMLDOMNode *newChild,VARIANT refChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *replaceChild)(IXTLRuntime *This,IXMLDOMNode *newChild,IXMLDOMNode *oldChild,IXMLDOMNode **outOldChild);
//C HRESULT ( *removeChild)(IXTLRuntime *This,IXMLDOMNode *childNode,IXMLDOMNode **oldChild);
//C HRESULT ( *appendChild)(IXTLRuntime *This,IXMLDOMNode *newChild,IXMLDOMNode **outNewChild);
//C HRESULT ( *hasChildNodes)(IXTLRuntime *This,VARIANT_BOOL *hasChild);
//C HRESULT ( *get_ownerDocument)(IXTLRuntime *This,IXMLDOMDocument **DOMDocument);
//C HRESULT ( *cloneNode)(IXTLRuntime *This,VARIANT_BOOL deep,IXMLDOMNode **cloneRoot);
//C HRESULT ( *get_nodeTypeString)(IXTLRuntime *This,BSTR *nodeType);
//C HRESULT ( *get_text)(IXTLRuntime *This,BSTR *text);
//C HRESULT ( *put_text)(IXTLRuntime *This,BSTR text);
//C HRESULT ( *get_specified)(IXTLRuntime *This,VARIANT_BOOL *isSpecified);
//C HRESULT ( *get_definition)(IXTLRuntime *This,IXMLDOMNode **definitionNode);
//C HRESULT ( *get_nodeTypedValue)(IXTLRuntime *This,VARIANT *typedValue);
//C HRESULT ( *put_nodeTypedValue)(IXTLRuntime *This,VARIANT typedValue);
//C HRESULT ( *get_dataType)(IXTLRuntime *This,VARIANT *dataTypeName);
//C HRESULT ( *put_dataType)(IXTLRuntime *This,BSTR dataTypeName);
//C HRESULT ( *get_xml)(IXTLRuntime *This,BSTR *xmlString);
//C HRESULT ( *transformNode)(IXTLRuntime *This,IXMLDOMNode *stylesheet,BSTR *xmlString);
//C HRESULT ( *selectNodes)(IXTLRuntime *This,BSTR queryString,IXMLDOMNodeList **resultList);
//C HRESULT ( *selectSingleNode)(IXTLRuntime *This,BSTR queryString,IXMLDOMNode **resultNode);
//C HRESULT ( *get_parsed)(IXTLRuntime *This,VARIANT_BOOL *isParsed);
//C HRESULT ( *get_namespaceURI)(IXTLRuntime *This,BSTR *namespaceURI);
//C HRESULT ( *get_prefix)(IXTLRuntime *This,BSTR *prefixString);
//C HRESULT ( *get_baseName)(IXTLRuntime *This,BSTR *nameString);
//C HRESULT ( *transformNodeToObject)(IXTLRuntime *This,IXMLDOMNode *stylesheet,VARIANT outputObject);
//C HRESULT ( *uniqueID)(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pID);
//C HRESULT ( *depth)(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pDepth);
//C HRESULT ( *childNumber)(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pNumber);
//C HRESULT ( *ancestorChildNumber)(IXTLRuntime *This,BSTR bstrNodeName,IXMLDOMNode *pNode,LONG *pNumber);
//C HRESULT ( *absoluteChildNumber)(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pNumber);
//C HRESULT ( *formatIndex)(IXTLRuntime *This,LONG lIndex,BSTR bstrFormat,BSTR *pbstrFormattedString);
//C HRESULT ( *formatNumber)(IXTLRuntime *This,double dblNumber,BSTR bstrFormat,BSTR *pbstrFormattedString);
//C HRESULT ( *formatDate)(IXTLRuntime *This,VARIANT varDate,BSTR bstrFormat,VARIANT varDestLocale,BSTR *pbstrFormattedString);
//C HRESULT ( *formatTime)(IXTLRuntime *This,VARIANT varTime,BSTR bstrFormat,VARIANT varDestLocale,BSTR *pbstrFormattedString);
//C } IXTLRuntimeVtbl;
struct IXTLRuntimeVtbl
{
HRESULT function(IXTLRuntime *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXTLRuntime *This)AddRef;
ULONG function(IXTLRuntime *This)Release;
HRESULT function(IXTLRuntime *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXTLRuntime *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXTLRuntime *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXTLRuntime *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXTLRuntime *This, BSTR *name)get_nodeName;
HRESULT function(IXTLRuntime *This, VARIANT *value)get_nodeValue;
HRESULT function(IXTLRuntime *This, VARIANT value)put_nodeValue;
HRESULT function(IXTLRuntime *This, DOMNodeType *type)get_nodeType;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **parent)get_parentNode;
HRESULT function(IXTLRuntime *This, IXMLDOMNodeList **childList)get_childNodes;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **firstChild)get_firstChild;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **lastChild)get_lastChild;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **previousSibling)get_previousSibling;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **nextSibling)get_nextSibling;
HRESULT function(IXTLRuntime *This, IXMLDOMNamedNodeMap **attributeMap)get_attributes;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *newChild, VARIANT refChild, IXMLDOMNode **outNewChild)insertBefore;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, IXMLDOMNode **outOldChild)replaceChild;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *childNode, IXMLDOMNode **oldChild)removeChild;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *newChild, IXMLDOMNode **outNewChild)appendChild;
HRESULT function(IXTLRuntime *This, VARIANT_BOOL *hasChild)hasChildNodes;
HRESULT function(IXTLRuntime *This, IXMLDOMDocument **DOMDocument)get_ownerDocument;
HRESULT function(IXTLRuntime *This, VARIANT_BOOL deep, IXMLDOMNode **cloneRoot)cloneNode;
HRESULT function(IXTLRuntime *This, BSTR *nodeType)get_nodeTypeString;
HRESULT function(IXTLRuntime *This, BSTR *text)get_text;
HRESULT function(IXTLRuntime *This, BSTR text)put_text;
HRESULT function(IXTLRuntime *This, VARIANT_BOOL *isSpecified)get_specified;
HRESULT function(IXTLRuntime *This, IXMLDOMNode **definitionNode)get_definition;
HRESULT function(IXTLRuntime *This, VARIANT *typedValue)get_nodeTypedValue;
HRESULT function(IXTLRuntime *This, VARIANT typedValue)put_nodeTypedValue;
HRESULT function(IXTLRuntime *This, VARIANT *dataTypeName)get_dataType;
HRESULT function(IXTLRuntime *This, BSTR dataTypeName)put_dataType;
HRESULT function(IXTLRuntime *This, BSTR *xmlString)get_xml;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *stylesheet, BSTR *xmlString)transformNode;
HRESULT function(IXTLRuntime *This, BSTR queryString, IXMLDOMNodeList **resultList)selectNodes;
HRESULT function(IXTLRuntime *This, BSTR queryString, IXMLDOMNode **resultNode)selectSingleNode;
HRESULT function(IXTLRuntime *This, VARIANT_BOOL *isParsed)get_parsed;
HRESULT function(IXTLRuntime *This, BSTR *namespaceURI)get_namespaceURI;
HRESULT function(IXTLRuntime *This, BSTR *prefixString)get_prefix;
HRESULT function(IXTLRuntime *This, BSTR *nameString)get_baseName;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *stylesheet, VARIANT outputObject)transformNodeToObject;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pID)uniqueID;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pDepth)depth;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pNumber)childNumber;
HRESULT function(IXTLRuntime *This, BSTR bstrNodeName, IXMLDOMNode *pNode, LONG *pNumber)ancestorChildNumber;
HRESULT function(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pNumber)absoluteChildNumber;
HRESULT function(IXTLRuntime *This, LONG lIndex, BSTR bstrFormat, BSTR *pbstrFormattedString)formatIndex;
HRESULT function(IXTLRuntime *This, double dblNumber, BSTR bstrFormat, BSTR *pbstrFormattedString)formatNumber;
HRESULT function(IXTLRuntime *This, VARIANT varDate, BSTR bstrFormat, VARIANT varDestLocale, BSTR *pbstrFormattedString)formatDate;
HRESULT function(IXTLRuntime *This, VARIANT varTime, BSTR bstrFormat, VARIANT varDestLocale, BSTR *pbstrFormattedString)formatTime;
}
//C struct IXTLRuntime {
//C struct IXTLRuntimeVtbl *lpVtbl;
//C };
struct IXTLRuntime
{
IXTLRuntimeVtbl *lpVtbl;
}
//C HRESULT IXTLRuntime_uniqueID_Proxy(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pID);
HRESULT IXTLRuntime_uniqueID_Proxy(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pID);
//C void IXTLRuntime_uniqueID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_uniqueID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_depth_Proxy(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pDepth);
HRESULT IXTLRuntime_depth_Proxy(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pDepth);
//C void IXTLRuntime_depth_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_depth_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_childNumber_Proxy(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pNumber);
HRESULT IXTLRuntime_childNumber_Proxy(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pNumber);
//C void IXTLRuntime_childNumber_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_childNumber_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_ancestorChildNumber_Proxy(IXTLRuntime *This,BSTR bstrNodeName,IXMLDOMNode *pNode,LONG *pNumber);
HRESULT IXTLRuntime_ancestorChildNumber_Proxy(IXTLRuntime *This, BSTR bstrNodeName, IXMLDOMNode *pNode, LONG *pNumber);
//C void IXTLRuntime_ancestorChildNumber_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_ancestorChildNumber_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_absoluteChildNumber_Proxy(IXTLRuntime *This,IXMLDOMNode *pNode,LONG *pNumber);
HRESULT IXTLRuntime_absoluteChildNumber_Proxy(IXTLRuntime *This, IXMLDOMNode *pNode, LONG *pNumber);
//C void IXTLRuntime_absoluteChildNumber_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_absoluteChildNumber_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_formatIndex_Proxy(IXTLRuntime *This,LONG lIndex,BSTR bstrFormat,BSTR *pbstrFormattedString);
HRESULT IXTLRuntime_formatIndex_Proxy(IXTLRuntime *This, LONG lIndex, BSTR bstrFormat, BSTR *pbstrFormattedString);
//C void IXTLRuntime_formatIndex_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_formatIndex_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_formatNumber_Proxy(IXTLRuntime *This,double dblNumber,BSTR bstrFormat,BSTR *pbstrFormattedString);
HRESULT IXTLRuntime_formatNumber_Proxy(IXTLRuntime *This, double dblNumber, BSTR bstrFormat, BSTR *pbstrFormattedString);
//C void IXTLRuntime_formatNumber_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_formatNumber_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_formatDate_Proxy(IXTLRuntime *This,VARIANT varDate,BSTR bstrFormat,VARIANT varDestLocale,BSTR *pbstrFormattedString);
HRESULT IXTLRuntime_formatDate_Proxy(IXTLRuntime *This, VARIANT varDate, BSTR bstrFormat, VARIANT varDestLocale, BSTR *pbstrFormattedString);
//C void IXTLRuntime_formatDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_formatDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXTLRuntime_formatTime_Proxy(IXTLRuntime *This,VARIANT varTime,BSTR bstrFormat,VARIANT varDestLocale,BSTR *pbstrFormattedString);
HRESULT IXTLRuntime_formatTime_Proxy(IXTLRuntime *This, VARIANT varTime, BSTR bstrFormat, VARIANT varDestLocale, BSTR *pbstrFormattedString);
//C void IXTLRuntime_formatTime_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXTLRuntime_formatTime_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct XMLDOMDocumentEventsVtbl {
//C HRESULT ( *QueryInterface)(XMLDOMDocumentEvents *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(XMLDOMDocumentEvents *This);
//C ULONG ( *Release)(XMLDOMDocumentEvents *This);
//C HRESULT ( *GetTypeInfoCount)(XMLDOMDocumentEvents *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(XMLDOMDocumentEvents *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(XMLDOMDocumentEvents *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(XMLDOMDocumentEvents *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C } XMLDOMDocumentEventsVtbl;
struct XMLDOMDocumentEventsVtbl
{
HRESULT function(XMLDOMDocumentEvents *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(XMLDOMDocumentEvents *This)AddRef;
ULONG function(XMLDOMDocumentEvents *This)Release;
HRESULT function(XMLDOMDocumentEvents *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(XMLDOMDocumentEvents *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(XMLDOMDocumentEvents *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(XMLDOMDocumentEvents *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
}
//C struct XMLDOMDocumentEvents {
//C struct XMLDOMDocumentEventsVtbl *lpVtbl;
//C };
struct XMLDOMDocumentEvents
{
XMLDOMDocumentEventsVtbl *lpVtbl;
}
//C extern const CLSID CLSID_DOMDocument;
extern const CLSID CLSID_DOMDocument;
//C extern const CLSID CLSID_DOMFreeThreadedDocument;
extern const CLSID CLSID_DOMFreeThreadedDocument;
//C typedef struct IXMLHttpRequestVtbl {
//C HRESULT ( *QueryInterface)(IXMLHttpRequest *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLHttpRequest *This);
//C ULONG ( *Release)(IXMLHttpRequest *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLHttpRequest *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLHttpRequest *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLHttpRequest *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLHttpRequest *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *open)(IXMLHttpRequest *This,BSTR bstrMethod,BSTR bstrUrl,VARIANT varAsync,VARIANT bstrUser,VARIANT bstrPassword);
//C HRESULT ( *setRequestHeader)(IXMLHttpRequest *This,BSTR bstrHeader,BSTR bstrValue);
//C HRESULT ( *getResponseHeader)(IXMLHttpRequest *This,BSTR bstrHeader,BSTR *pbstrValue);
//C HRESULT ( *getAllResponseHeaders)(IXMLHttpRequest *This,BSTR *pbstrHeaders);
//C HRESULT ( *send)(IXMLHttpRequest *This,VARIANT varBody);
//C HRESULT ( *abort)(IXMLHttpRequest *This);
//C HRESULT ( *get_status)(IXMLHttpRequest *This,LONG *plStatus);
//C HRESULT ( *get_statusText)(IXMLHttpRequest *This,BSTR *pbstrStatus);
//C HRESULT ( *get_responseXML)(IXMLHttpRequest *This,IDispatch **ppBody);
//C HRESULT ( *get_responseText)(IXMLHttpRequest *This,BSTR *pbstrBody);
//C HRESULT ( *get_responseBody)(IXMLHttpRequest *This,VARIANT *pvarBody);
//C HRESULT ( *get_responseStream)(IXMLHttpRequest *This,VARIANT *pvarBody);
//C HRESULT ( *get_readyState)(IXMLHttpRequest *This,LONG *plState);
//C HRESULT ( *put_onreadystatechange)(IXMLHttpRequest *This,IDispatch *pReadyStateSink);
//C } IXMLHttpRequestVtbl;
struct IXMLHttpRequestVtbl
{
HRESULT function(IXMLHttpRequest *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLHttpRequest *This)AddRef;
ULONG function(IXMLHttpRequest *This)Release;
HRESULT function(IXMLHttpRequest *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLHttpRequest *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLHttpRequest *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLHttpRequest *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLHttpRequest *This, BSTR bstrMethod, BSTR bstrUrl, VARIANT varAsync, VARIANT bstrUser, VARIANT bstrPassword)open;
HRESULT function(IXMLHttpRequest *This, BSTR bstrHeader, BSTR bstrValue)setRequestHeader;
HRESULT function(IXMLHttpRequest *This, BSTR bstrHeader, BSTR *pbstrValue)getResponseHeader;
HRESULT function(IXMLHttpRequest *This, BSTR *pbstrHeaders)getAllResponseHeaders;
HRESULT function(IXMLHttpRequest *This, VARIANT varBody)send;
HRESULT function(IXMLHttpRequest *This)abort;
HRESULT function(IXMLHttpRequest *This, LONG *plStatus)get_status;
HRESULT function(IXMLHttpRequest *This, BSTR *pbstrStatus)get_statusText;
HRESULT function(IXMLHttpRequest *This, IDispatch **ppBody)get_responseXML;
HRESULT function(IXMLHttpRequest *This, BSTR *pbstrBody)get_responseText;
HRESULT function(IXMLHttpRequest *This, VARIANT *pvarBody)get_responseBody;
HRESULT function(IXMLHttpRequest *This, VARIANT *pvarBody)get_responseStream;
HRESULT function(IXMLHttpRequest *This, LONG *plState)get_readyState;
HRESULT function(IXMLHttpRequest *This, IDispatch *pReadyStateSink)put_onreadystatechange;
}
//C struct IXMLHttpRequest {
//C struct IXMLHttpRequestVtbl *lpVtbl;
//C };
struct IXMLHttpRequest
{
IXMLHttpRequestVtbl *lpVtbl;
}
//C HRESULT IXMLHttpRequest_open_Proxy(IXMLHttpRequest *This,BSTR bstrMethod,BSTR bstrUrl,VARIANT varAsync,VARIANT bstrUser,VARIANT bstrPassword);
HRESULT IXMLHttpRequest_open_Proxy(IXMLHttpRequest *This, BSTR bstrMethod, BSTR bstrUrl, VARIANT varAsync, VARIANT bstrUser, VARIANT bstrPassword);
//C void IXMLHttpRequest_open_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_open_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_setRequestHeader_Proxy(IXMLHttpRequest *This,BSTR bstrHeader,BSTR bstrValue);
HRESULT IXMLHttpRequest_setRequestHeader_Proxy(IXMLHttpRequest *This, BSTR bstrHeader, BSTR bstrValue);
//C void IXMLHttpRequest_setRequestHeader_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_setRequestHeader_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_getResponseHeader_Proxy(IXMLHttpRequest *This,BSTR bstrHeader,BSTR *pbstrValue);
HRESULT IXMLHttpRequest_getResponseHeader_Proxy(IXMLHttpRequest *This, BSTR bstrHeader, BSTR *pbstrValue);
//C void IXMLHttpRequest_getResponseHeader_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_getResponseHeader_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_getAllResponseHeaders_Proxy(IXMLHttpRequest *This,BSTR *pbstrHeaders);
HRESULT IXMLHttpRequest_getAllResponseHeaders_Proxy(IXMLHttpRequest *This, BSTR *pbstrHeaders);
//C void IXMLHttpRequest_getAllResponseHeaders_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_getAllResponseHeaders_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_send_Proxy(IXMLHttpRequest *This,VARIANT varBody);
HRESULT IXMLHttpRequest_send_Proxy(IXMLHttpRequest *This, VARIANT varBody);
//C void IXMLHttpRequest_send_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_send_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_abort_Proxy(IXMLHttpRequest *This);
HRESULT IXMLHttpRequest_abort_Proxy(IXMLHttpRequest *This);
//C void IXMLHttpRequest_abort_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_abort_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_status_Proxy(IXMLHttpRequest *This,LONG *plStatus);
HRESULT IXMLHttpRequest_get_status_Proxy(IXMLHttpRequest *This, LONG *plStatus);
//C void IXMLHttpRequest_get_status_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_status_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_statusText_Proxy(IXMLHttpRequest *This,BSTR *pbstrStatus);
HRESULT IXMLHttpRequest_get_statusText_Proxy(IXMLHttpRequest *This, BSTR *pbstrStatus);
//C void IXMLHttpRequest_get_statusText_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_statusText_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_responseXML_Proxy(IXMLHttpRequest *This,IDispatch **ppBody);
HRESULT IXMLHttpRequest_get_responseXML_Proxy(IXMLHttpRequest *This, IDispatch **ppBody);
//C void IXMLHttpRequest_get_responseXML_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_responseXML_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_responseText_Proxy(IXMLHttpRequest *This,BSTR *pbstrBody);
HRESULT IXMLHttpRequest_get_responseText_Proxy(IXMLHttpRequest *This, BSTR *pbstrBody);
//C void IXMLHttpRequest_get_responseText_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_responseText_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_responseBody_Proxy(IXMLHttpRequest *This,VARIANT *pvarBody);
HRESULT IXMLHttpRequest_get_responseBody_Proxy(IXMLHttpRequest *This, VARIANT *pvarBody);
//C void IXMLHttpRequest_get_responseBody_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_responseBody_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_responseStream_Proxy(IXMLHttpRequest *This,VARIANT *pvarBody);
HRESULT IXMLHttpRequest_get_responseStream_Proxy(IXMLHttpRequest *This, VARIANT *pvarBody);
//C void IXMLHttpRequest_get_responseStream_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_responseStream_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_get_readyState_Proxy(IXMLHttpRequest *This,LONG *plState);
HRESULT IXMLHttpRequest_get_readyState_Proxy(IXMLHttpRequest *This, LONG *plState);
//C void IXMLHttpRequest_get_readyState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_get_readyState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLHttpRequest_put_onreadystatechange_Proxy(IXMLHttpRequest *This,IDispatch *pReadyStateSink);
HRESULT IXMLHttpRequest_put_onreadystatechange_Proxy(IXMLHttpRequest *This, IDispatch *pReadyStateSink);
//C void IXMLHttpRequest_put_onreadystatechange_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLHttpRequest_put_onreadystatechange_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern const CLSID CLSID_XMLHTTPRequest;
extern const CLSID CLSID_XMLHTTPRequest;
//C typedef struct IXMLDSOControlVtbl {
//C HRESULT ( *QueryInterface)(IXMLDSOControl *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDSOControl *This);
//C ULONG ( *Release)(IXMLDSOControl *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDSOControl *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDSOControl *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDSOControl *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDSOControl *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_XMLDocument)(IXMLDSOControl *This,IXMLDOMDocument **ppDoc);
//C HRESULT ( *put_XMLDocument)(IXMLDSOControl *This,IXMLDOMDocument *ppDoc);
//C HRESULT ( *get_JavaDSOCompatible)(IXMLDSOControl *This,WINBOOL *fJavaDSOCompatible);
//C HRESULT ( *put_JavaDSOCompatible)(IXMLDSOControl *This,WINBOOL fJavaDSOCompatible);
//C HRESULT ( *get_readyState)(IXMLDSOControl *This,LONG *state);
//C } IXMLDSOControlVtbl;
struct IXMLDSOControlVtbl
{
HRESULT function(IXMLDSOControl *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDSOControl *This)AddRef;
ULONG function(IXMLDSOControl *This)Release;
HRESULT function(IXMLDSOControl *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDSOControl *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDSOControl *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDSOControl *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDSOControl *This, IXMLDOMDocument **ppDoc)get_XMLDocument;
HRESULT function(IXMLDSOControl *This, IXMLDOMDocument *ppDoc)put_XMLDocument;
HRESULT function(IXMLDSOControl *This, WINBOOL *fJavaDSOCompatible)get_JavaDSOCompatible;
HRESULT function(IXMLDSOControl *This, WINBOOL fJavaDSOCompatible)put_JavaDSOCompatible;
HRESULT function(IXMLDSOControl *This, LONG *state)get_readyState;
}
//C struct IXMLDSOControl {
//C struct IXMLDSOControlVtbl *lpVtbl;
//C };
struct IXMLDSOControl
{
IXMLDSOControlVtbl *lpVtbl;
}
//C HRESULT IXMLDSOControl_get_XMLDocument_Proxy(IXMLDSOControl *This,IXMLDOMDocument **ppDoc);
HRESULT IXMLDSOControl_get_XMLDocument_Proxy(IXMLDSOControl *This, IXMLDOMDocument **ppDoc);
//C void IXMLDSOControl_get_XMLDocument_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDSOControl_get_XMLDocument_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDSOControl_put_XMLDocument_Proxy(IXMLDSOControl *This,IXMLDOMDocument *ppDoc);
HRESULT IXMLDSOControl_put_XMLDocument_Proxy(IXMLDSOControl *This, IXMLDOMDocument *ppDoc);
//C void IXMLDSOControl_put_XMLDocument_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDSOControl_put_XMLDocument_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDSOControl_get_JavaDSOCompatible_Proxy(IXMLDSOControl *This,WINBOOL *fJavaDSOCompatible);
HRESULT IXMLDSOControl_get_JavaDSOCompatible_Proxy(IXMLDSOControl *This, WINBOOL *fJavaDSOCompatible);
//C void IXMLDSOControl_get_JavaDSOCompatible_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDSOControl_get_JavaDSOCompatible_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDSOControl_put_JavaDSOCompatible_Proxy(IXMLDSOControl *This,WINBOOL fJavaDSOCompatible);
HRESULT IXMLDSOControl_put_JavaDSOCompatible_Proxy(IXMLDSOControl *This, WINBOOL fJavaDSOCompatible);
//C void IXMLDSOControl_put_JavaDSOCompatible_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDSOControl_put_JavaDSOCompatible_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDSOControl_get_readyState_Proxy(IXMLDSOControl *This,LONG *state);
HRESULT IXMLDSOControl_get_readyState_Proxy(IXMLDSOControl *This, LONG *state);
//C void IXMLDSOControl_get_readyState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDSOControl_get_readyState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern const CLSID CLSID_XMLDSOControl;
extern const CLSID CLSID_XMLDSOControl;
//C typedef struct IXMLElementCollectionVtbl {
//C HRESULT ( *QueryInterface)(IXMLElementCollection *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLElementCollection *This);
//C ULONG ( *Release)(IXMLElementCollection *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLElementCollection *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLElementCollection *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLElementCollection *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLElementCollection *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *put_length)(IXMLElementCollection *This,LONG v);
//C HRESULT ( *get_length)(IXMLElementCollection *This,LONG *p);
//C HRESULT ( *get__newEnum)(IXMLElementCollection *This,IUnknown **ppUnk);
//C HRESULT ( *item)(IXMLElementCollection *This,VARIANT var1,VARIANT var2,IDispatch **ppDisp);
//C } IXMLElementCollectionVtbl;
struct IXMLElementCollectionVtbl
{
HRESULT function(IXMLElementCollection *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLElementCollection *This)AddRef;
ULONG function(IXMLElementCollection *This)Release;
HRESULT function(IXMLElementCollection *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLElementCollection *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLElementCollection *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLElementCollection *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLElementCollection *This, LONG v)put_length;
HRESULT function(IXMLElementCollection *This, LONG *p)get_length;
HRESULT function(IXMLElementCollection *This, IUnknown **ppUnk)get__newEnum;
HRESULT function(IXMLElementCollection *This, VARIANT var1, VARIANT var2, IDispatch **ppDisp)item;
}
//C struct IXMLElementCollection {
//C struct IXMLElementCollectionVtbl *lpVtbl;
//C };
struct IXMLElementCollection
{
IXMLElementCollectionVtbl *lpVtbl;
}
//C HRESULT IXMLElementCollection_put_length_Proxy(IXMLElementCollection *This,LONG v);
HRESULT IXMLElementCollection_put_length_Proxy(IXMLElementCollection *This, LONG v);
//C void IXMLElementCollection_put_length_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElementCollection_put_length_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElementCollection_get_length_Proxy(IXMLElementCollection *This,LONG *p);
HRESULT IXMLElementCollection_get_length_Proxy(IXMLElementCollection *This, LONG *p);
//C void IXMLElementCollection_get_length_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElementCollection_get_length_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElementCollection_get__newEnum_Proxy(IXMLElementCollection *This,IUnknown **ppUnk);
HRESULT IXMLElementCollection_get__newEnum_Proxy(IXMLElementCollection *This, IUnknown **ppUnk);
//C void IXMLElementCollection_get__newEnum_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElementCollection_get__newEnum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElementCollection_item_Proxy(IXMLElementCollection *This,VARIANT var1,VARIANT var2,IDispatch **ppDisp);
HRESULT IXMLElementCollection_item_Proxy(IXMLElementCollection *This, VARIANT var1, VARIANT var2, IDispatch **ppDisp);
//C void IXMLElementCollection_item_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElementCollection_item_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDocumentVtbl {
//C HRESULT ( *QueryInterface)(IXMLDocument *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDocument *This);
//C ULONG ( *Release)(IXMLDocument *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDocument *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDocument *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDocument *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDocument *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_root)(IXMLDocument *This,IXMLElement **p);
//C HRESULT ( *get_fileSize)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_fileModifiedDate)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_fileUpdatedDate)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_URL)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *put_URL)(IXMLDocument *This,BSTR p);
//C HRESULT ( *get_mimeType)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_readyState)(IXMLDocument *This,LONG *pl);
//C HRESULT ( *get_charset)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *put_charset)(IXMLDocument *This,BSTR p);
//C HRESULT ( *get_version)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_doctype)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *get_dtdURL)(IXMLDocument *This,BSTR *p);
//C HRESULT ( *createElement)(IXMLDocument *This,VARIANT vType,VARIANT var1,IXMLElement **ppElem);
//C } IXMLDocumentVtbl;
struct IXMLDocumentVtbl
{
HRESULT function(IXMLDocument *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDocument *This)AddRef;
ULONG function(IXMLDocument *This)Release;
HRESULT function(IXMLDocument *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDocument *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDocument *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDocument *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDocument *This, IXMLElement **p)get_root;
HRESULT function(IXMLDocument *This, BSTR *p)get_fileSize;
HRESULT function(IXMLDocument *This, BSTR *p)get_fileModifiedDate;
HRESULT function(IXMLDocument *This, BSTR *p)get_fileUpdatedDate;
HRESULT function(IXMLDocument *This, BSTR *p)get_URL;
HRESULT function(IXMLDocument *This, BSTR p)put_URL;
HRESULT function(IXMLDocument *This, BSTR *p)get_mimeType;
HRESULT function(IXMLDocument *This, LONG *pl)get_readyState;
HRESULT function(IXMLDocument *This, BSTR *p)get_charset;
HRESULT function(IXMLDocument *This, BSTR p)put_charset;
HRESULT function(IXMLDocument *This, BSTR *p)get_version;
HRESULT function(IXMLDocument *This, BSTR *p)get_doctype;
HRESULT function(IXMLDocument *This, BSTR *p)get_dtdURL;
HRESULT function(IXMLDocument *This, VARIANT vType, VARIANT var1, IXMLElement **ppElem)createElement;
}
//C struct IXMLDocument {
//C struct IXMLDocumentVtbl *lpVtbl;
//C };
struct IXMLDocument
{
IXMLDocumentVtbl *lpVtbl;
}
//C HRESULT IXMLDocument_get_root_Proxy(IXMLDocument *This,IXMLElement **p);
HRESULT IXMLDocument_get_root_Proxy(IXMLDocument *This, IXMLElement **p);
//C void IXMLDocument_get_root_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_root_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_fileSize_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_fileSize_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_fileSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_fileSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_fileModifiedDate_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_fileModifiedDate_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_fileModifiedDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_fileModifiedDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_fileUpdatedDate_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_fileUpdatedDate_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_fileUpdatedDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_fileUpdatedDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_URL_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_URL_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_URL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_URL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_put_URL_Proxy(IXMLDocument *This,BSTR p);
HRESULT IXMLDocument_put_URL_Proxy(IXMLDocument *This, BSTR p);
//C void IXMLDocument_put_URL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_put_URL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_mimeType_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_mimeType_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_mimeType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_mimeType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_readyState_Proxy(IXMLDocument *This,LONG *pl);
HRESULT IXMLDocument_get_readyState_Proxy(IXMLDocument *This, LONG *pl);
//C void IXMLDocument_get_readyState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_readyState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_charset_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_charset_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_charset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_charset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_put_charset_Proxy(IXMLDocument *This,BSTR p);
HRESULT IXMLDocument_put_charset_Proxy(IXMLDocument *This, BSTR p);
//C void IXMLDocument_put_charset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_put_charset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_version_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_version_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_version_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_version_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_doctype_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_doctype_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_doctype_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_doctype_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_get_dtdURL_Proxy(IXMLDocument *This,BSTR *p);
HRESULT IXMLDocument_get_dtdURL_Proxy(IXMLDocument *This, BSTR *p);
//C void IXMLDocument_get_dtdURL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_get_dtdURL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument_createElement_Proxy(IXMLDocument *This,VARIANT vType,VARIANT var1,IXMLElement **ppElem);
HRESULT IXMLDocument_createElement_Proxy(IXMLDocument *This, VARIANT vType, VARIANT var1, IXMLElement **ppElem);
//C void IXMLDocument_createElement_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument_createElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLDocument2Vtbl {
//C HRESULT ( *QueryInterface)(IXMLDocument2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLDocument2 *This);
//C ULONG ( *Release)(IXMLDocument2 *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLDocument2 *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLDocument2 *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLDocument2 *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLDocument2 *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_root)(IXMLDocument2 *This,IXMLElement2 **p);
//C HRESULT ( *get_fileSize)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_fileModifiedDate)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_fileUpdatedDate)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_URL)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *put_URL)(IXMLDocument2 *This,BSTR p);
//C HRESULT ( *get_mimeType)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_readyState)(IXMLDocument2 *This,LONG *pl);
//C HRESULT ( *get_charset)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *put_charset)(IXMLDocument2 *This,BSTR p);
//C HRESULT ( *get_version)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_doctype)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *get_dtdURL)(IXMLDocument2 *This,BSTR *p);
//C HRESULT ( *createElement)(IXMLDocument2 *This,VARIANT vType,VARIANT var1,IXMLElement2 **ppElem);
//C HRESULT ( *get_async)(IXMLDocument2 *This,VARIANT_BOOL *pf);
//C HRESULT ( *put_async)(IXMLDocument2 *This,VARIANT_BOOL f);
//C } IXMLDocument2Vtbl;
struct IXMLDocument2Vtbl
{
HRESULT function(IXMLDocument2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLDocument2 *This)AddRef;
ULONG function(IXMLDocument2 *This)Release;
HRESULT function(IXMLDocument2 *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLDocument2 *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLDocument2 *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLDocument2 *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLDocument2 *This, IXMLElement2 **p)get_root;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_fileSize;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_fileModifiedDate;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_fileUpdatedDate;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_URL;
HRESULT function(IXMLDocument2 *This, BSTR p)put_URL;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_mimeType;
HRESULT function(IXMLDocument2 *This, LONG *pl)get_readyState;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_charset;
HRESULT function(IXMLDocument2 *This, BSTR p)put_charset;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_version;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_doctype;
HRESULT function(IXMLDocument2 *This, BSTR *p)get_dtdURL;
HRESULT function(IXMLDocument2 *This, VARIANT vType, VARIANT var1, IXMLElement2 **ppElem)createElement;
HRESULT function(IXMLDocument2 *This, VARIANT_BOOL *pf)get_async;
HRESULT function(IXMLDocument2 *This, VARIANT_BOOL f)put_async;
}
//C struct IXMLDocument2 {
//C struct IXMLDocument2Vtbl *lpVtbl;
//C };
struct IXMLDocument2
{
IXMLDocument2Vtbl *lpVtbl;
}
//C HRESULT IXMLDocument2_get_root_Proxy(IXMLDocument2 *This,IXMLElement2 **p);
HRESULT IXMLDocument2_get_root_Proxy(IXMLDocument2 *This, IXMLElement2 **p);
//C void IXMLDocument2_get_root_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_root_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_fileSize_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_fileSize_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_fileSize_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_fileSize_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_fileModifiedDate_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_fileModifiedDate_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_fileModifiedDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_fileModifiedDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_fileUpdatedDate_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_fileUpdatedDate_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_fileUpdatedDate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_fileUpdatedDate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_URL_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_URL_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_URL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_URL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_put_URL_Proxy(IXMLDocument2 *This,BSTR p);
HRESULT IXMLDocument2_put_URL_Proxy(IXMLDocument2 *This, BSTR p);
//C void IXMLDocument2_put_URL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_put_URL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_mimeType_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_mimeType_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_mimeType_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_mimeType_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_readyState_Proxy(IXMLDocument2 *This,LONG *pl);
HRESULT IXMLDocument2_get_readyState_Proxy(IXMLDocument2 *This, LONG *pl);
//C void IXMLDocument2_get_readyState_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_readyState_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_charset_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_charset_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_charset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_charset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_put_charset_Proxy(IXMLDocument2 *This,BSTR p);
HRESULT IXMLDocument2_put_charset_Proxy(IXMLDocument2 *This, BSTR p);
//C void IXMLDocument2_put_charset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_put_charset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_version_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_version_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_version_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_version_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_doctype_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_doctype_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_doctype_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_doctype_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_dtdURL_Proxy(IXMLDocument2 *This,BSTR *p);
HRESULT IXMLDocument2_get_dtdURL_Proxy(IXMLDocument2 *This, BSTR *p);
//C void IXMLDocument2_get_dtdURL_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_dtdURL_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_createElement_Proxy(IXMLDocument2 *This,VARIANT vType,VARIANT var1,IXMLElement2 **ppElem);
HRESULT IXMLDocument2_createElement_Proxy(IXMLDocument2 *This, VARIANT vType, VARIANT var1, IXMLElement2 **ppElem);
//C void IXMLDocument2_createElement_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_createElement_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_get_async_Proxy(IXMLDocument2 *This,VARIANT_BOOL *pf);
HRESULT IXMLDocument2_get_async_Proxy(IXMLDocument2 *This, VARIANT_BOOL *pf);
//C void IXMLDocument2_get_async_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_get_async_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLDocument2_put_async_Proxy(IXMLDocument2 *This,VARIANT_BOOL f);
HRESULT IXMLDocument2_put_async_Proxy(IXMLDocument2 *This, VARIANT_BOOL f);
//C void IXMLDocument2_put_async_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLDocument2_put_async_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLElementVtbl {
//C HRESULT ( *QueryInterface)(IXMLElement *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLElement *This);
//C ULONG ( *Release)(IXMLElement *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLElement *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLElement *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLElement *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLElement *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_tagName)(IXMLElement *This,BSTR *p);
//C HRESULT ( *put_tagName)(IXMLElement *This,BSTR p);
//C HRESULT ( *get_parent)(IXMLElement *This,IXMLElement **ppParent);
//C HRESULT ( *setAttribute)(IXMLElement *This,BSTR strPropertyName,VARIANT PropertyValue);
//C HRESULT ( *getAttribute)(IXMLElement *This,BSTR strPropertyName,VARIANT *PropertyValue);
//C HRESULT ( *removeAttribute)(IXMLElement *This,BSTR strPropertyName);
//C HRESULT ( *get_children)(IXMLElement *This,IXMLElementCollection **pp);
//C HRESULT ( *get_type)(IXMLElement *This,LONG *plType);
//C HRESULT ( *get_text)(IXMLElement *This,BSTR *p);
//C HRESULT ( *put_text)(IXMLElement *This,BSTR p);
//C HRESULT ( *addChild)(IXMLElement *This,IXMLElement *pChildElem,LONG lIndex,LONG lReserved);
//C HRESULT ( *removeChild)(IXMLElement *This,IXMLElement *pChildElem);
//C } IXMLElementVtbl;
struct IXMLElementVtbl
{
HRESULT function(IXMLElement *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLElement *This)AddRef;
ULONG function(IXMLElement *This)Release;
HRESULT function(IXMLElement *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLElement *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLElement *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLElement *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLElement *This, BSTR *p)get_tagName;
HRESULT function(IXMLElement *This, BSTR p)put_tagName;
HRESULT function(IXMLElement *This, IXMLElement **ppParent)get_parent;
HRESULT function(IXMLElement *This, BSTR strPropertyName, VARIANT PropertyValue)setAttribute;
HRESULT function(IXMLElement *This, BSTR strPropertyName, VARIANT *PropertyValue)getAttribute;
HRESULT function(IXMLElement *This, BSTR strPropertyName)removeAttribute;
HRESULT function(IXMLElement *This, IXMLElementCollection **pp)get_children;
HRESULT function(IXMLElement *This, LONG *plType)get_type;
HRESULT function(IXMLElement *This, BSTR *p)get_text;
HRESULT function(IXMLElement *This, BSTR p)put_text;
HRESULT function(IXMLElement *This, IXMLElement *pChildElem, LONG lIndex, LONG lReserved)addChild;
HRESULT function(IXMLElement *This, IXMLElement *pChildElem)removeChild;
}
//C struct IXMLElement {
//C struct IXMLElementVtbl *lpVtbl;
//C };
struct IXMLElement
{
IXMLElementVtbl *lpVtbl;
}
//C HRESULT IXMLElement_get_tagName_Proxy(IXMLElement *This,BSTR *p);
HRESULT IXMLElement_get_tagName_Proxy(IXMLElement *This, BSTR *p);
//C void IXMLElement_get_tagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_get_tagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_put_tagName_Proxy(IXMLElement *This,BSTR p);
HRESULT IXMLElement_put_tagName_Proxy(IXMLElement *This, BSTR p);
//C void IXMLElement_put_tagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_put_tagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_get_parent_Proxy(IXMLElement *This,IXMLElement **ppParent);
HRESULT IXMLElement_get_parent_Proxy(IXMLElement *This, IXMLElement **ppParent);
//C void IXMLElement_get_parent_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_get_parent_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_setAttribute_Proxy(IXMLElement *This,BSTR strPropertyName,VARIANT PropertyValue);
HRESULT IXMLElement_setAttribute_Proxy(IXMLElement *This, BSTR strPropertyName, VARIANT PropertyValue);
//C void IXMLElement_setAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_setAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_getAttribute_Proxy(IXMLElement *This,BSTR strPropertyName,VARIANT *PropertyValue);
HRESULT IXMLElement_getAttribute_Proxy(IXMLElement *This, BSTR strPropertyName, VARIANT *PropertyValue);
//C void IXMLElement_getAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_getAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_removeAttribute_Proxy(IXMLElement *This,BSTR strPropertyName);
HRESULT IXMLElement_removeAttribute_Proxy(IXMLElement *This, BSTR strPropertyName);
//C void IXMLElement_removeAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_removeAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_get_children_Proxy(IXMLElement *This,IXMLElementCollection **pp);
HRESULT IXMLElement_get_children_Proxy(IXMLElement *This, IXMLElementCollection **pp);
//C void IXMLElement_get_children_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_get_children_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_get_type_Proxy(IXMLElement *This,LONG *plType);
HRESULT IXMLElement_get_type_Proxy(IXMLElement *This, LONG *plType);
//C void IXMLElement_get_type_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_get_type_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_get_text_Proxy(IXMLElement *This,BSTR *p);
HRESULT IXMLElement_get_text_Proxy(IXMLElement *This, BSTR *p);
//C void IXMLElement_get_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_get_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_put_text_Proxy(IXMLElement *This,BSTR p);
HRESULT IXMLElement_put_text_Proxy(IXMLElement *This, BSTR p);
//C void IXMLElement_put_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_put_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_addChild_Proxy(IXMLElement *This,IXMLElement *pChildElem,LONG lIndex,LONG lReserved);
HRESULT IXMLElement_addChild_Proxy(IXMLElement *This, IXMLElement *pChildElem, LONG lIndex, LONG lReserved);
//C void IXMLElement_addChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_addChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement_removeChild_Proxy(IXMLElement *This,IXMLElement *pChildElem);
HRESULT IXMLElement_removeChild_Proxy(IXMLElement *This, IXMLElement *pChildElem);
//C void IXMLElement_removeChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement_removeChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLElement2Vtbl {
//C HRESULT ( *QueryInterface)(IXMLElement2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLElement2 *This);
//C ULONG ( *Release)(IXMLElement2 *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLElement2 *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLElement2 *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLElement2 *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLElement2 *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_tagName)(IXMLElement2 *This,BSTR *p);
//C HRESULT ( *put_tagName)(IXMLElement2 *This,BSTR p);
//C HRESULT ( *get_parent)(IXMLElement2 *This,IXMLElement2 **ppParent);
//C HRESULT ( *setAttribute)(IXMLElement2 *This,BSTR strPropertyName,VARIANT PropertyValue);
//C HRESULT ( *getAttribute)(IXMLElement2 *This,BSTR strPropertyName,VARIANT *PropertyValue);
//C HRESULT ( *removeAttribute)(IXMLElement2 *This,BSTR strPropertyName);
//C HRESULT ( *get_children)(IXMLElement2 *This,IXMLElementCollection **pp);
//C HRESULT ( *get_type)(IXMLElement2 *This,LONG *plType);
//C HRESULT ( *get_text)(IXMLElement2 *This,BSTR *p);
//C HRESULT ( *put_text)(IXMLElement2 *This,BSTR p);
//C HRESULT ( *addChild)(IXMLElement2 *This,IXMLElement2 *pChildElem,LONG lIndex,LONG lReserved);
//C HRESULT ( *removeChild)(IXMLElement2 *This,IXMLElement2 *pChildElem);
//C HRESULT ( *get_attributes)(IXMLElement2 *This,IXMLElementCollection **pp);
//C } IXMLElement2Vtbl;
struct IXMLElement2Vtbl
{
HRESULT function(IXMLElement2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLElement2 *This)AddRef;
ULONG function(IXMLElement2 *This)Release;
HRESULT function(IXMLElement2 *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLElement2 *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLElement2 *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLElement2 *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLElement2 *This, BSTR *p)get_tagName;
HRESULT function(IXMLElement2 *This, BSTR p)put_tagName;
HRESULT function(IXMLElement2 *This, IXMLElement2 **ppParent)get_parent;
HRESULT function(IXMLElement2 *This, BSTR strPropertyName, VARIANT PropertyValue)setAttribute;
HRESULT function(IXMLElement2 *This, BSTR strPropertyName, VARIANT *PropertyValue)getAttribute;
HRESULT function(IXMLElement2 *This, BSTR strPropertyName)removeAttribute;
HRESULT function(IXMLElement2 *This, IXMLElementCollection **pp)get_children;
HRESULT function(IXMLElement2 *This, LONG *plType)get_type;
HRESULT function(IXMLElement2 *This, BSTR *p)get_text;
HRESULT function(IXMLElement2 *This, BSTR p)put_text;
HRESULT function(IXMLElement2 *This, IXMLElement2 *pChildElem, LONG lIndex, LONG lReserved)addChild;
HRESULT function(IXMLElement2 *This, IXMLElement2 *pChildElem)removeChild;
HRESULT function(IXMLElement2 *This, IXMLElementCollection **pp)get_attributes;
}
//C struct IXMLElement2 {
//C struct IXMLElement2Vtbl *lpVtbl;
//C };
struct IXMLElement2
{
IXMLElement2Vtbl *lpVtbl;
}
//C HRESULT IXMLElement2_get_tagName_Proxy(IXMLElement2 *This,BSTR *p);
HRESULT IXMLElement2_get_tagName_Proxy(IXMLElement2 *This, BSTR *p);
//C void IXMLElement2_get_tagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_tagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_put_tagName_Proxy(IXMLElement2 *This,BSTR p);
HRESULT IXMLElement2_put_tagName_Proxy(IXMLElement2 *This, BSTR p);
//C void IXMLElement2_put_tagName_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_put_tagName_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_get_parent_Proxy(IXMLElement2 *This,IXMLElement2 **ppParent);
HRESULT IXMLElement2_get_parent_Proxy(IXMLElement2 *This, IXMLElement2 **ppParent);
//C void IXMLElement2_get_parent_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_parent_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_setAttribute_Proxy(IXMLElement2 *This,BSTR strPropertyName,VARIANT PropertyValue);
HRESULT IXMLElement2_setAttribute_Proxy(IXMLElement2 *This, BSTR strPropertyName, VARIANT PropertyValue);
//C void IXMLElement2_setAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_setAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_getAttribute_Proxy(IXMLElement2 *This,BSTR strPropertyName,VARIANT *PropertyValue);
HRESULT IXMLElement2_getAttribute_Proxy(IXMLElement2 *This, BSTR strPropertyName, VARIANT *PropertyValue);
//C void IXMLElement2_getAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_getAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_removeAttribute_Proxy(IXMLElement2 *This,BSTR strPropertyName);
HRESULT IXMLElement2_removeAttribute_Proxy(IXMLElement2 *This, BSTR strPropertyName);
//C void IXMLElement2_removeAttribute_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_removeAttribute_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_get_children_Proxy(IXMLElement2 *This,IXMLElementCollection **pp);
HRESULT IXMLElement2_get_children_Proxy(IXMLElement2 *This, IXMLElementCollection **pp);
//C void IXMLElement2_get_children_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_children_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_get_type_Proxy(IXMLElement2 *This,LONG *plType);
HRESULT IXMLElement2_get_type_Proxy(IXMLElement2 *This, LONG *plType);
//C void IXMLElement2_get_type_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_type_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_get_text_Proxy(IXMLElement2 *This,BSTR *p);
HRESULT IXMLElement2_get_text_Proxy(IXMLElement2 *This, BSTR *p);
//C void IXMLElement2_get_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_put_text_Proxy(IXMLElement2 *This,BSTR p);
HRESULT IXMLElement2_put_text_Proxy(IXMLElement2 *This, BSTR p);
//C void IXMLElement2_put_text_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_put_text_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_addChild_Proxy(IXMLElement2 *This,IXMLElement2 *pChildElem,LONG lIndex,LONG lReserved);
HRESULT IXMLElement2_addChild_Proxy(IXMLElement2 *This, IXMLElement2 *pChildElem, LONG lIndex, LONG lReserved);
//C void IXMLElement2_addChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_addChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_removeChild_Proxy(IXMLElement2 *This,IXMLElement2 *pChildElem);
HRESULT IXMLElement2_removeChild_Proxy(IXMLElement2 *This, IXMLElement2 *pChildElem);
//C void IXMLElement2_removeChild_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_removeChild_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLElement2_get_attributes_Proxy(IXMLElement2 *This,IXMLElementCollection **pp);
HRESULT IXMLElement2_get_attributes_Proxy(IXMLElement2 *This, IXMLElementCollection **pp);
//C void IXMLElement2_get_attributes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLElement2_get_attributes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLAttributeVtbl {
//C HRESULT ( *QueryInterface)(IXMLAttribute *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLAttribute *This);
//C ULONG ( *Release)(IXMLAttribute *This);
//C HRESULT ( *GetTypeInfoCount)(IXMLAttribute *This,UINT *pctinfo);
//C HRESULT ( *GetTypeInfo)(IXMLAttribute *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo);
//C HRESULT ( *GetIDsOfNames)(IXMLAttribute *This,const IID *const riid,LPOLESTR *rgszNames,UINT cNames,LCID lcid,DISPID *rgDispId);
//C HRESULT ( *Invoke)(IXMLAttribute *This,DISPID dispIdMember,const IID *const riid,LCID lcid,WORD wFlags,DISPPARAMS *pDispParams,VARIANT *pVarResult,EXCEPINFO *pExcepInfo,UINT *puArgErr);
//C HRESULT ( *get_name)(IXMLAttribute *This,BSTR *n);
//C HRESULT ( *get_value)(IXMLAttribute *This,BSTR *v);
//C } IXMLAttributeVtbl;
struct IXMLAttributeVtbl
{
HRESULT function(IXMLAttribute *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLAttribute *This)AddRef;
ULONG function(IXMLAttribute *This)Release;
HRESULT function(IXMLAttribute *This, UINT *pctinfo)GetTypeInfoCount;
HRESULT function(IXMLAttribute *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)GetTypeInfo;
HRESULT function(IXMLAttribute *This, IID *riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)GetIDsOfNames;
HRESULT function(IXMLAttribute *This, DISPID dispIdMember, IID *riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)Invoke;
HRESULT function(IXMLAttribute *This, BSTR *n)get_name;
HRESULT function(IXMLAttribute *This, BSTR *v)get_value;
}
//C struct IXMLAttribute {
//C struct IXMLAttributeVtbl *lpVtbl;
//C };
struct IXMLAttribute
{
IXMLAttributeVtbl *lpVtbl;
}
//C HRESULT IXMLAttribute_get_name_Proxy(IXMLAttribute *This,BSTR *n);
HRESULT IXMLAttribute_get_name_Proxy(IXMLAttribute *This, BSTR *n);
//C void IXMLAttribute_get_name_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLAttribute_get_name_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IXMLAttribute_get_value_Proxy(IXMLAttribute *This,BSTR *v);
HRESULT IXMLAttribute_get_value_Proxy(IXMLAttribute *This, BSTR *v);
//C void IXMLAttribute_get_value_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLAttribute_get_value_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IXMLErrorVtbl {
//C HRESULT ( *QueryInterface)(IXMLError *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IXMLError *This);
//C ULONG ( *Release)(IXMLError *This);
//C HRESULT ( *GetErrorInfo)(IXMLError *This,XML_ERROR *pErrorReturn);
//C } IXMLErrorVtbl;
struct IXMLErrorVtbl
{
HRESULT function(IXMLError *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IXMLError *This)AddRef;
ULONG function(IXMLError *This)Release;
HRESULT function(IXMLError *This, XML_ERROR *pErrorReturn)GetErrorInfo;
}
//C struct IXMLError {
//C struct IXMLErrorVtbl *lpVtbl;
//C };
struct IXMLError
{
IXMLErrorVtbl *lpVtbl;
}
//C HRESULT IXMLError_GetErrorInfo_Proxy(IXMLError *This,XML_ERROR *pErrorReturn);
HRESULT IXMLError_GetErrorInfo_Proxy(IXMLError *This, XML_ERROR *pErrorReturn);
//C void IXMLError_GetErrorInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IXMLError_GetErrorInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern const CLSID CLSID_XMLDocument;
extern const CLSID CLSID_XMLDocument;
//C extern HRESULT CreateURLMoniker(LPMONIKER pMkCtx,LPCWSTR szURL,LPMONIKER *ppmk);
HRESULT CreateURLMoniker(LPMONIKER pMkCtx, LPCWSTR szURL, LPMONIKER *ppmk);
//C extern HRESULT CreateURLMonikerEx(LPMONIKER pMkCtx,LPCWSTR szURL,LPMONIKER *ppmk,DWORD dwFlags);
HRESULT CreateURLMonikerEx(LPMONIKER pMkCtx, LPCWSTR szURL, LPMONIKER *ppmk, DWORD dwFlags);
//C extern HRESULT GetClassURL(LPCWSTR szURL,CLSID *pClsID);
HRESULT GetClassURL(LPCWSTR szURL, CLSID *pClsID);
//C extern HRESULT CreateAsyncBindCtx(DWORD reserved,IBindStatusCallback *pBSCb,IEnumFORMATETC *pEFetc,IBindCtx **ppBC);
HRESULT CreateAsyncBindCtx(DWORD reserved, IBindStatusCallback *pBSCb, IEnumFORMATETC *pEFetc, IBindCtx **ppBC);
//C extern HRESULT CreateAsyncBindCtxEx(IBindCtx *pbc,DWORD dwOptions,IBindStatusCallback *pBSCb,IEnumFORMATETC *pEnum,IBindCtx **ppBC,DWORD reserved);
HRESULT CreateAsyncBindCtxEx(IBindCtx *pbc, DWORD dwOptions, IBindStatusCallback *pBSCb, IEnumFORMATETC *pEnum, IBindCtx **ppBC, DWORD reserved);
//C extern HRESULT MkParseDisplayNameEx(IBindCtx *pbc,LPCWSTR szDisplayName,ULONG *pchEaten,LPMONIKER *ppmk);
HRESULT MkParseDisplayNameEx(IBindCtx *pbc, LPCWSTR szDisplayName, ULONG *pchEaten, LPMONIKER *ppmk);
//C extern HRESULT RegisterBindStatusCallback(LPBC pBC,IBindStatusCallback *pBSCb,IBindStatusCallback **ppBSCBPrev,DWORD dwReserved);
HRESULT RegisterBindStatusCallback(LPBC pBC, IBindStatusCallback *pBSCb, IBindStatusCallback **ppBSCBPrev, DWORD dwReserved);
//C extern HRESULT RevokeBindStatusCallback(LPBC pBC,IBindStatusCallback *pBSCb);
HRESULT RevokeBindStatusCallback(LPBC pBC, IBindStatusCallback *pBSCb);
//C extern HRESULT GetClassFileOrMime(LPBC pBC,LPCWSTR szFilename,LPVOID pBuffer,DWORD cbSize,LPCWSTR szMime,DWORD dwReserved,CLSID *pclsid);
HRESULT GetClassFileOrMime(LPBC pBC, LPCWSTR szFilename, LPVOID pBuffer, DWORD cbSize, LPCWSTR szMime, DWORD dwReserved, CLSID *pclsid);
//C extern HRESULT IsValidURL(LPBC pBC,LPCWSTR szURL,DWORD dwReserved);
HRESULT IsValidURL(LPBC pBC, LPCWSTR szURL, DWORD dwReserved);
//C extern HRESULT CoGetClassObjectFromURL(const IID *const rCLASSID,LPCWSTR szCODE,DWORD dwFileVersionMS,DWORD dwFileVersionLS,LPCWSTR szTYPE,LPBINDCTX pBindCtx,DWORD dwClsContext,LPVOID pvReserved,const IID *const riid,LPVOID *ppv);
HRESULT CoGetClassObjectFromURL(IID *rCLASSID, LPCWSTR szCODE, DWORD dwFileVersionMS, DWORD dwFileVersionLS, LPCWSTR szTYPE, LPBINDCTX pBindCtx, DWORD dwClsContext, LPVOID pvReserved, IID *riid, LPVOID *ppv);
//C extern HRESULT FaultInIEFeature(HWND hWnd,uCLSSPEC *pClassSpec,QUERYCONTEXT *pQuery,DWORD dwFlags);
HRESULT FaultInIEFeature(HWND hWnd, uCLSSPEC *pClassSpec, QUERYCONTEXT *pQuery, DWORD dwFlags);
//C extern HRESULT GetComponentIDFromCLSSPEC(uCLSSPEC *pClassspec,LPSTR *ppszComponentID);
HRESULT GetComponentIDFromCLSSPEC(uCLSSPEC *pClassspec, LPSTR *ppszComponentID);
//C extern HRESULT IsAsyncMoniker(IMoniker *pmk);
HRESULT IsAsyncMoniker(IMoniker *pmk);
//C extern HRESULT CreateURLBinding(LPCWSTR lpszUrl,IBindCtx *pbc,IBinding **ppBdg);
HRESULT CreateURLBinding(LPCWSTR lpszUrl, IBindCtx *pbc, IBinding **ppBdg);
//C extern HRESULT RegisterMediaTypes(UINT ctypes,const LPCSTR *rgszTypes,CLIPFORMAT *rgcfTypes);
HRESULT RegisterMediaTypes(UINT ctypes, LPCSTR *rgszTypes, CLIPFORMAT *rgcfTypes);
//C extern HRESULT FindMediaType(LPCSTR rgszTypes,CLIPFORMAT *rgcfTypes);
HRESULT FindMediaType(LPCSTR rgszTypes, CLIPFORMAT *rgcfTypes);
//C extern HRESULT CreateFormatEnumerator(UINT cfmtetc,FORMATETC *rgfmtetc,IEnumFORMATETC **ppenumfmtetc);
HRESULT CreateFormatEnumerator(UINT cfmtetc, FORMATETC *rgfmtetc, IEnumFORMATETC **ppenumfmtetc);
//C extern HRESULT RegisterFormatEnumerator(LPBC pBC,IEnumFORMATETC *pEFetc,DWORD reserved);
HRESULT RegisterFormatEnumerator(LPBC pBC, IEnumFORMATETC *pEFetc, DWORD reserved);
//C extern HRESULT RevokeFormatEnumerator(LPBC pBC,IEnumFORMATETC *pEFetc);
HRESULT RevokeFormatEnumerator(LPBC pBC, IEnumFORMATETC *pEFetc);
//C extern HRESULT RegisterMediaTypeClass(LPBC pBC,UINT ctypes,const LPCSTR *rgszTypes,CLSID *rgclsID,DWORD reserved);
HRESULT RegisterMediaTypeClass(LPBC pBC, UINT ctypes, LPCSTR *rgszTypes, CLSID *rgclsID, DWORD reserved);
//C extern HRESULT FindMediaTypeClass(LPBC pBC,LPCSTR szType,CLSID *pclsID,DWORD reserved);
HRESULT FindMediaTypeClass(LPBC pBC, LPCSTR szType, CLSID *pclsID, DWORD reserved);
//C extern HRESULT UrlMkSetSessionOption(DWORD dwOption,LPVOID pBuffer,DWORD dwBufferLength,DWORD dwReserved);
HRESULT UrlMkSetSessionOption(DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength, DWORD dwReserved);
//C extern HRESULT UrlMkGetSessionOption(DWORD dwOption,LPVOID pBuffer,DWORD dwBufferLength,DWORD *pdwBufferLength,DWORD dwReserved);
HRESULT UrlMkGetSessionOption(DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength, DWORD *pdwBufferLength, DWORD dwReserved);
//C extern HRESULT FindMimeFromData(LPBC pBC,LPCWSTR pwzUrl,LPVOID pBuffer,DWORD cbSize,LPCWSTR pwzMimeProposed,DWORD dwMimeFlags,LPWSTR *ppwzMimeOut,DWORD dwReserved);
HRESULT FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer, DWORD cbSize, LPCWSTR pwzMimeProposed, DWORD dwMimeFlags, LPWSTR *ppwzMimeOut, DWORD dwReserved);
//C extern HRESULT ObtainUserAgentString(DWORD dwOption,LPSTR pszUAOut,DWORD *cbSize);
HRESULT ObtainUserAgentString(DWORD dwOption, LPSTR pszUAOut, DWORD *cbSize);
//C extern HRESULT CompareSecurityIds(BYTE *pbSecurityId1,DWORD dwLen1,BYTE *pbSecurityId2,DWORD dwLen2,DWORD dwReserved);
HRESULT CompareSecurityIds(BYTE *pbSecurityId1, DWORD dwLen1, BYTE *pbSecurityId2, DWORD dwLen2, DWORD dwReserved);
//C extern HRESULT CompatFlagsFromClsid(CLSID *pclsid,LPDWORD pdwCompatFlags,LPDWORD pdwMiscStatusFlags);
HRESULT CompatFlagsFromClsid(CLSID *pclsid, LPDWORD pdwCompatFlags, LPDWORD pdwMiscStatusFlags);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0000_v0_0_s_ifspec;
//C typedef IPersistMoniker *LPPERSISTMONIKER;
alias IPersistMoniker *LPPERSISTMONIKER;
//C typedef struct IPersistMonikerVtbl {
//C HRESULT ( *QueryInterface)(IPersistMoniker *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPersistMoniker *This);
//C ULONG ( *Release)(IPersistMoniker *This);
//C HRESULT ( *GetClassID)(IPersistMoniker *This,CLSID *pClassID);
//C HRESULT ( *IsDirty)(IPersistMoniker *This);
//C HRESULT ( *Load)(IPersistMoniker *This,WINBOOL fFullyAvailable,IMoniker *pimkName,LPBC pibc,DWORD grfMode);
//C HRESULT ( *Save)(IPersistMoniker *This,IMoniker *pimkName,LPBC pbc,WINBOOL fRemember);
//C HRESULT ( *SaveCompleted)(IPersistMoniker *This,IMoniker *pimkName,LPBC pibc);
//C HRESULT ( *GetCurMoniker)(IPersistMoniker *This,IMoniker **ppimkName);
//C } IPersistMonikerVtbl;
struct IPersistMonikerVtbl
{
HRESULT function(IPersistMoniker *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPersistMoniker *This)AddRef;
ULONG function(IPersistMoniker *This)Release;
HRESULT function(IPersistMoniker *This, CLSID *pClassID)GetClassID;
HRESULT function(IPersistMoniker *This)IsDirty;
HRESULT function(IPersistMoniker *This, WINBOOL fFullyAvailable, IMoniker *pimkName, LPBC pibc, DWORD grfMode)Load;
HRESULT function(IPersistMoniker *This, IMoniker *pimkName, LPBC pbc, WINBOOL fRemember)Save;
HRESULT function(IPersistMoniker *This, IMoniker *pimkName, LPBC pibc)SaveCompleted;
HRESULT function(IPersistMoniker *This, IMoniker **ppimkName)GetCurMoniker;
}
//C struct IPersistMoniker {
//C struct IPersistMonikerVtbl *lpVtbl;
//C };
struct IPersistMoniker
{
IPersistMonikerVtbl *lpVtbl;
}
//C HRESULT IPersistMoniker_GetClassID_Proxy(IPersistMoniker *This,CLSID *pClassID);
HRESULT IPersistMoniker_GetClassID_Proxy(IPersistMoniker *This, CLSID *pClassID);
//C void IPersistMoniker_GetClassID_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_GetClassID_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistMoniker_IsDirty_Proxy(IPersistMoniker *This);
HRESULT IPersistMoniker_IsDirty_Proxy(IPersistMoniker *This);
//C void IPersistMoniker_IsDirty_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_IsDirty_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistMoniker_Load_Proxy(IPersistMoniker *This,WINBOOL fFullyAvailable,IMoniker *pimkName,LPBC pibc,DWORD grfMode);
HRESULT IPersistMoniker_Load_Proxy(IPersistMoniker *This, WINBOOL fFullyAvailable, IMoniker *pimkName, LPBC pibc, DWORD grfMode);
//C void IPersistMoniker_Load_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_Load_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistMoniker_Save_Proxy(IPersistMoniker *This,IMoniker *pimkName,LPBC pbc,WINBOOL fRemember);
HRESULT IPersistMoniker_Save_Proxy(IPersistMoniker *This, IMoniker *pimkName, LPBC pbc, WINBOOL fRemember);
//C void IPersistMoniker_Save_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_Save_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistMoniker_SaveCompleted_Proxy(IPersistMoniker *This,IMoniker *pimkName,LPBC pibc);
HRESULT IPersistMoniker_SaveCompleted_Proxy(IPersistMoniker *This, IMoniker *pimkName, LPBC pibc);
//C void IPersistMoniker_SaveCompleted_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_SaveCompleted_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPersistMoniker_GetCurMoniker_Proxy(IPersistMoniker *This,IMoniker **ppimkName);
HRESULT IPersistMoniker_GetCurMoniker_Proxy(IPersistMoniker *This, IMoniker **ppimkName);
//C void IPersistMoniker_GetCurMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPersistMoniker_GetCurMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0178_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0178_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0178_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0178_v0_0_s_ifspec;
//C typedef IMonikerProp *LPMONIKERPROP;
alias IMonikerProp *LPMONIKERPROP;
//C typedef enum __MIDL_IMonikerProp_0001 {
//C MIMETYPEPROP = 0,USE_SRC_URL = 0x1,CLASSIDPROP = 0x2,TRUSTEDDOWNLOADPROP = 0x3,POPUPLEVELPROP = 0x4
//C } MONIKERPROPERTY;
enum __MIDL_IMonikerProp_0001
{
MIMETYPEPROP,
USE_SRC_URL,
CLASSIDPROP,
TRUSTEDDOWNLOADPROP,
POPUPLEVELPROP,
}
alias __MIDL_IMonikerProp_0001 MONIKERPROPERTY;
//C typedef struct IMonikerPropVtbl {
//C HRESULT ( *QueryInterface)(IMonikerProp *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IMonikerProp *This);
//C ULONG ( *Release)(IMonikerProp *This);
//C HRESULT ( *PutProperty)(IMonikerProp *This,MONIKERPROPERTY mkp,LPCWSTR val);
//C } IMonikerPropVtbl;
struct IMonikerPropVtbl
{
HRESULT function(IMonikerProp *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IMonikerProp *This)AddRef;
ULONG function(IMonikerProp *This)Release;
HRESULT function(IMonikerProp *This, MONIKERPROPERTY mkp, LPCWSTR val)PutProperty;
}
//C struct IMonikerProp {
//C struct IMonikerPropVtbl *lpVtbl;
//C };
struct IMonikerProp
{
IMonikerPropVtbl *lpVtbl;
}
//C HRESULT IMonikerProp_PutProperty_Proxy(IMonikerProp *This,MONIKERPROPERTY mkp,LPCWSTR val);
HRESULT IMonikerProp_PutProperty_Proxy(IMonikerProp *This, MONIKERPROPERTY mkp, LPCWSTR val);
//C void IMonikerProp_PutProperty_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IMonikerProp_PutProperty_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0179_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0179_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0179_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0179_v0_0_s_ifspec;
//C typedef IBindProtocol *LPBINDPROTOCOL;
alias IBindProtocol *LPBINDPROTOCOL;
//C typedef struct IBindProtocolVtbl {
//C HRESULT ( *QueryInterface)(IBindProtocol *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IBindProtocol *This);
//C ULONG ( *Release)(IBindProtocol *This);
//C HRESULT ( *CreateBinding)(IBindProtocol *This,LPCWSTR szUrl,IBindCtx *pbc,IBinding **ppb);
//C } IBindProtocolVtbl;
struct IBindProtocolVtbl
{
HRESULT function(IBindProtocol *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBindProtocol *This)AddRef;
ULONG function(IBindProtocol *This)Release;
HRESULT function(IBindProtocol *This, LPCWSTR szUrl, IBindCtx *pbc, IBinding **ppb)CreateBinding;
}
//C struct IBindProtocol {
//C struct IBindProtocolVtbl *lpVtbl;
//C };
struct IBindProtocol
{
IBindProtocolVtbl *lpVtbl;
}
//C HRESULT IBindProtocol_CreateBinding_Proxy(IBindProtocol *This,LPCWSTR szUrl,IBindCtx *pbc,IBinding **ppb);
HRESULT IBindProtocol_CreateBinding_Proxy(IBindProtocol *This, LPCWSTR szUrl, IBindCtx *pbc, IBinding **ppb);
//C void IBindProtocol_CreateBinding_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBindProtocol_CreateBinding_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IBinding *LPBINDING;
alias IBinding *LPBINDING;
//C typedef struct IBindingVtbl {
//C HRESULT ( *QueryInterface)(
//C IBinding* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IBinding* This);
//C ULONG ( *Release)(
//C IBinding* This);
//C HRESULT ( *Abort)(
//C IBinding* This);
//C HRESULT ( *Suspend)(
//C IBinding* This);
//C HRESULT ( *Resume)(
//C IBinding* This);
//C HRESULT ( *SetPriority)(
//C IBinding* This,
//C LONG nPriority);
//C HRESULT ( *GetPriority)(
//C IBinding* This,
//C LONG *pnPriority);
//C HRESULT ( *GetBindResult)(
//C IBinding* This,
//C CLSID *pclsidProtocol,
//C DWORD *pdwResult,
//C LPOLESTR *pszResult,
//C DWORD *pdwReserved);
//C } IBindingVtbl;
struct IBindingVtbl
{
HRESULT function(IBinding *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBinding *This)AddRef;
ULONG function(IBinding *This)Release;
HRESULT function(IBinding *This)Abort;
HRESULT function(IBinding *This)Suspend;
HRESULT function(IBinding *This)Resume;
HRESULT function(IBinding *This, LONG nPriority)SetPriority;
HRESULT function(IBinding *This, LONG *pnPriority)GetPriority;
HRESULT function(IBinding *This, CLSID *pclsidProtocol, DWORD *pdwResult, LPOLESTR *pszResult, DWORD *pdwReserved)GetBindResult;
}
//C struct IBinding {
//C IBindingVtbl* lpVtbl;
//C };
struct IBinding
{
IBindingVtbl *lpVtbl;
}
//C HRESULT IBinding_Abort_Proxy(
//C IBinding* This);
HRESULT IBinding_Abort_Proxy(IBinding *This);
//C void IBinding_Abort_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_Abort_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_Suspend_Proxy(
//C IBinding* This);
HRESULT IBinding_Suspend_Proxy(IBinding *This);
//C void IBinding_Suspend_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_Suspend_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_Resume_Proxy(
//C IBinding* This);
HRESULT IBinding_Resume_Proxy(IBinding *This);
//C void IBinding_Resume_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_Resume_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_SetPriority_Proxy(
//C IBinding* This,
//C LONG nPriority);
HRESULT IBinding_SetPriority_Proxy(IBinding *This, LONG nPriority);
//C void IBinding_SetPriority_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_SetPriority_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_GetPriority_Proxy(
//C IBinding* This,
//C LONG *pnPriority);
HRESULT IBinding_GetPriority_Proxy(IBinding *This, LONG *pnPriority);
//C void IBinding_GetPriority_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_GetPriority_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_RemoteGetBindResult_Proxy(
//C IBinding* This,
//C CLSID *pclsidProtocol,
//C DWORD *pdwResult,
//C LPOLESTR *pszResult,
//C DWORD dwReserved);
HRESULT IBinding_RemoteGetBindResult_Proxy(IBinding *This, CLSID *pclsidProtocol, DWORD *pdwResult, LPOLESTR *pszResult, DWORD dwReserved);
//C void IBinding_RemoteGetBindResult_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBinding_RemoteGetBindResult_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBinding_GetBindResult_Proxy(
//C IBinding* This,
//C CLSID *pclsidProtocol,
//C DWORD *pdwResult,
//C LPOLESTR *pszResult,
//C DWORD *pdwReserved);
HRESULT IBinding_GetBindResult_Proxy(IBinding *This, CLSID *pclsidProtocol, DWORD *pdwResult, LPOLESTR *pszResult, DWORD *pdwReserved);
//C HRESULT IBinding_GetBindResult_Stub(
//C IBinding* This,
//C CLSID *pclsidProtocol,
//C DWORD *pdwResult,
//C LPOLESTR *pszResult,
//C DWORD dwReserved);
HRESULT IBinding_GetBindResult_Stub(IBinding *This, CLSID *pclsidProtocol, DWORD *pdwResult, LPOLESTR *pszResult, DWORD dwReserved);
//C typedef IBindStatusCallback *LPBINDSTATUSCALLBACK;
alias IBindStatusCallback *LPBINDSTATUSCALLBACK;
//C typedef enum __WIDL_urlmon_generated_name_00000000 {
//C BINDVERB_GET = 0,
//C BINDVERB_POST = 1,
//C BINDVERB_PUT = 2,
//C BINDVERB_CUSTOM = 3
//C } BINDVERB;
enum __WIDL_urlmon_generated_name_00000000
{
BINDVERB_GET,
BINDVERB_POST,
BINDVERB_PUT,
BINDVERB_CUSTOM,
}
alias __WIDL_urlmon_generated_name_00000000 BINDVERB;
//C typedef enum __WIDL_urlmon_generated_name_00000001 {
//C BINDINFOF_URLENCODESTGMEDDATA = 0x1,
//C BINDINFOF_URLENCODEDEXTRAINFO = 0x2
//C } BINDINFOF;
enum __WIDL_urlmon_generated_name_00000001
{
BINDINFOF_URLENCODESTGMEDDATA = 1,
BINDINFOF_URLENCODEDEXTRAINFO,
}
alias __WIDL_urlmon_generated_name_00000001 BINDINFOF;
//C typedef enum __WIDL_urlmon_generated_name_00000002 {
//C BINDF_ASYNCHRONOUS = 0x1,
//C BINDF_ASYNCSTORAGE = 0x2,
//C BINDF_NOPROGRESSIVERENDERING = 0x4,
//C BINDF_OFFLINEOPERATION = 0x8,
//C BINDF_GETNEWESTVERSION = 0x10,
//C BINDF_NOWRITECACHE = 0x20,
//C BINDF_NEEDFILE = 0x40,
//C BINDF_PULLDATA = 0x80,
//C BINDF_IGNORESECURITYPROBLEM = 0x100,
//C BINDF_RESYNCHRONIZE = 0x200,
//C BINDF_HYPERLINK = 0x400,
//C BINDF_NO_UI = 0x800,
//C BINDF_SILENTOPERATION = 0x1000,
//C BINDF_PRAGMA_NO_CACHE = 0x2000,
//C BINDF_GETCLASSOBJECT = 0x4000,
//C BINDF_RESERVED_1 = 0x8000,
//C BINDF_FREE_THREADED = 0x10000,
//C BINDF_DIRECT_READ = 0x20000,
//C BINDF_FORMS_SUBMIT = 0x40000,
//C BINDF_GETFROMCACHE_IF_NET_FAIL = 0x80000,
//C BINDF_FROMURLMON = 0x100000,
//C BINDF_FWD_BACK = 0x200000,
//C BINDF_PREFERDEFAULTHANDLER = 0x400000,
//C BINDF_ENFORCERESTRICTED = 0x800000
//C } BINDF;
enum __WIDL_urlmon_generated_name_00000002
{
BINDF_ASYNCHRONOUS = 1,
BINDF_ASYNCSTORAGE,
BINDF_NOPROGRESSIVERENDERING = 4,
BINDF_OFFLINEOPERATION = 8,
BINDF_GETNEWESTVERSION = 16,
BINDF_NOWRITECACHE = 32,
BINDF_NEEDFILE = 64,
BINDF_PULLDATA = 128,
BINDF_IGNORESECURITYPROBLEM = 256,
BINDF_RESYNCHRONIZE = 512,
BINDF_HYPERLINK = 1024,
BINDF_NO_UI = 2048,
BINDF_SILENTOPERATION = 4096,
BINDF_PRAGMA_NO_CACHE = 8192,
BINDF_GETCLASSOBJECT = 16384,
BINDF_RESERVED_1 = 32768,
BINDF_FREE_THREADED = 65536,
BINDF_DIRECT_READ = 131072,
BINDF_FORMS_SUBMIT = 262144,
BINDF_GETFROMCACHE_IF_NET_FAIL = 524288,
BINDF_FROMURLMON = 1048576,
BINDF_FWD_BACK = 2097152,
BINDF_PREFERDEFAULTHANDLER = 4194304,
BINDF_ENFORCERESTRICTED = 8388608,
}
alias __WIDL_urlmon_generated_name_00000002 BINDF;
//C typedef enum __WIDL_urlmon_generated_name_00000003 {
//C URL_ENCODING_NONE = 0,
//C URL_ENCODING_ENABLE_UTF8 = 0x10000000,
//C URL_ENCODING_DISABLE_UTF8 = 0x20000000
//C } URL_ENCODING;
enum __WIDL_urlmon_generated_name_00000003
{
URL_ENCODING_NONE,
URL_ENCODING_ENABLE_UTF8 = 268435456,
URL_ENCODING_DISABLE_UTF8 = 536870912,
}
alias __WIDL_urlmon_generated_name_00000003 URL_ENCODING;
//C typedef struct _tagBINDINFO {
//C ULONG cbSize;
//C LPWSTR szExtraInfo;
//C STGMEDIUM stgmedData;
//C DWORD grfBindInfoF;
//C DWORD dwBindVerb;
//C LPWSTR szCustomVerb;
//C DWORD cbstgmedData;
//C DWORD dwOptions;
//C DWORD dwOptionsFlags;
//C DWORD dwCodePage;
//C SECURITY_ATTRIBUTES securityAttributes;
//C IID iid;
//C IUnknown *pUnk;
//C DWORD dwReserved;
//C } BINDINFO;
struct _tagBINDINFO
{
ULONG cbSize;
LPWSTR szExtraInfo;
STGMEDIUM stgmedData;
DWORD grfBindInfoF;
DWORD dwBindVerb;
LPWSTR szCustomVerb;
DWORD cbstgmedData;
DWORD dwOptions;
DWORD dwOptionsFlags;
DWORD dwCodePage;
SECURITY_ATTRIBUTES securityAttributes;
IID iid;
IUnknown *pUnk;
DWORD dwReserved;
}
alias _tagBINDINFO BINDINFO;
//C typedef struct _REMSECURITY_ATTRIBUTES {
//C DWORD nLength;
//C DWORD lpSecurityDescriptor;
//C WINBOOL bInheritHandle;
//C } REMSECURITY_ATTRIBUTES;
struct _REMSECURITY_ATTRIBUTES
{
DWORD nLength;
DWORD lpSecurityDescriptor;
WINBOOL bInheritHandle;
}
alias _REMSECURITY_ATTRIBUTES REMSECURITY_ATTRIBUTES;
//C typedef struct _REMSECURITY_ATTRIBUTES *PREMSECURITY_ATTRIBUTES;
alias _REMSECURITY_ATTRIBUTES *PREMSECURITY_ATTRIBUTES;
//C typedef struct _REMSECURITY_ATTRIBUTES *LPREMSECURITY_ATTRIBUTES;
alias _REMSECURITY_ATTRIBUTES *LPREMSECURITY_ATTRIBUTES;
//C typedef struct _tagRemBINDINFO {
//C ULONG cbSize;
//C LPWSTR szExtraInfo;
//C DWORD grfBindInfoF;
//C DWORD dwBindVerb;
//C LPWSTR szCustomVerb;
//C DWORD cbstgmedData;
//C DWORD dwOptions;
//C DWORD dwOptionsFlags;
//C DWORD dwCodePage;
//C REMSECURITY_ATTRIBUTES securityAttributes;
//C IID iid;
//C IUnknown *pUnk;
//C DWORD dwReserved;
//C } RemBINDINFO;
struct _tagRemBINDINFO
{
ULONG cbSize;
LPWSTR szExtraInfo;
DWORD grfBindInfoF;
DWORD dwBindVerb;
LPWSTR szCustomVerb;
DWORD cbstgmedData;
DWORD dwOptions;
DWORD dwOptionsFlags;
DWORD dwCodePage;
REMSECURITY_ATTRIBUTES securityAttributes;
IID iid;
IUnknown *pUnk;
DWORD dwReserved;
}
alias _tagRemBINDINFO RemBINDINFO;
//C typedef struct tagRemFORMATETC {
//C DWORD cfFormat;
//C DWORD ptd;
//C DWORD dwAspect;
//C LONG lindex;
//C DWORD tymed;
//C } RemFORMATETC;
struct tagRemFORMATETC
{
DWORD cfFormat;
DWORD ptd;
DWORD dwAspect;
LONG lindex;
DWORD tymed;
}
alias tagRemFORMATETC RemFORMATETC;
//C typedef struct tagRemFORMATETC *LPREMFORMATETC;
alias tagRemFORMATETC *LPREMFORMATETC;
//C typedef enum __WIDL_urlmon_generated_name_00000004 {
//C BINDINFO_OPTIONS_WININETFLAG = 0x10000,
//C BINDINFO_OPTIONS_ENABLE_UTF8 = 0x20000,
//C BINDINFO_OPTIONS_DISABLE_UTF8 = 0x40000,
//C BINDINFO_OPTIONS_USE_IE_ENCODING = 0x80000,
//C BINDINFO_OPTIONS_BINDTOOBJECT = 0x100000,
//C BINDINFO_OPTIONS_SECURITYOPTOUT = 0x200000,
//C BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN = 0x400000,
//C BINDINFO_OPTIONS_USEBINDSTRINGCREDS = 0x800000,
//C BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS = 0x1000000,
//C BINDINFO_OPTIONS_SHDOCVW_NAVIGATE = 0x80000000
//C } BINDINFO_OPTIONS;
enum __WIDL_urlmon_generated_name_00000004
{
BINDINFO_OPTIONS_WININETFLAG = 65536,
BINDINFO_OPTIONS_ENABLE_UTF8 = 131072,
BINDINFO_OPTIONS_DISABLE_UTF8 = 262144,
BINDINFO_OPTIONS_USE_IE_ENCODING = 524288,
BINDINFO_OPTIONS_BINDTOOBJECT = 1048576,
BINDINFO_OPTIONS_SECURITYOPTOUT = 2097152,
BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN = 4194304,
BINDINFO_OPTIONS_USEBINDSTRINGCREDS = 8388608,
BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS = 16777216,
BINDINFO_OPTIONS_SHDOCVW_NAVIGATE = -2147483648,
}
alias __WIDL_urlmon_generated_name_00000004 BINDINFO_OPTIONS;
//C typedef enum __WIDL_urlmon_generated_name_00000005 {
//C BSCF_FIRSTDATANOTIFICATION = 0x1,
//C BSCF_INTERMEDIATEDATANOTIFICATION = 0x2,
//C BSCF_LASTDATANOTIFICATION = 0x4,
//C BSCF_DATAFULLYAVAILABLE = 0x8,
//C BSCF_AVAILABLEDATASIZEUNKNOWN = 0x10
//C } BSCF;
enum __WIDL_urlmon_generated_name_00000005
{
BSCF_FIRSTDATANOTIFICATION = 1,
BSCF_INTERMEDIATEDATANOTIFICATION,
BSCF_LASTDATANOTIFICATION = 4,
BSCF_DATAFULLYAVAILABLE = 8,
BSCF_AVAILABLEDATASIZEUNKNOWN = 16,
}
alias __WIDL_urlmon_generated_name_00000005 BSCF;
//C typedef enum tagBINDSTATUS {
//C BINDSTATUS_FINDINGRESOURCE = 1,
//C BINDSTATUS_CONNECTING = 2,
//C BINDSTATUS_REDIRECTING = 3,
//C BINDSTATUS_BEGINDOWNLOADDATA = 4,
//C BINDSTATUS_DOWNLOADINGDATA = 5,
//C BINDSTATUS_ENDDOWNLOADDATA = 6,
//C BINDSTATUS_BEGINDOWNLOADCOMPONENTS = 7,
//C BINDSTATUS_INSTALLINGCOMPONENTS = 8,
//C BINDSTATUS_ENDDOWNLOADCOMPONENTS = 9,
//C BINDSTATUS_USINGCACHEDCOPY = 10,
//C BINDSTATUS_SENDINGREQUEST = 11,
//C BINDSTATUS_CLASSIDAVAILABLE = 12,
//C BINDSTATUS_MIMETYPEAVAILABLE = 13,
//C BINDSTATUS_CACHEFILENAMEAVAILABLE = 14,
//C BINDSTATUS_BEGINSYNCOPERATION = 15,
//C BINDSTATUS_ENDSYNCOPERATION = 16,
//C BINDSTATUS_BEGINUPLOADDATA = 17,
//C BINDSTATUS_UPLOADINGDATA = 18,
//C BINDSTATUS_ENDUPLOADDATA = 19,
//C BINDSTATUS_PROTOCOLCLASSID = 20,
//C BINDSTATUS_ENCODING = 21,
//C BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE = 22,
//C BINDSTATUS_CLASSINSTALLLOCATION = 23,
//C BINDSTATUS_DECODING = 24,
//C BINDSTATUS_LOADINGMIMEHANDLER = 25,
//C BINDSTATUS_CONTENTDISPOSITIONATTACH = 26,
//C BINDSTATUS_FILTERREPORTMIMETYPE = 27,
//C BINDSTATUS_CLSIDCANINSTANTIATE = 28,
//C BINDSTATUS_IUNKNOWNAVAILABLE = 29,
//C BINDSTATUS_DIRECTBIND = 30,
//C BINDSTATUS_RAWMIMETYPE = 31,
//C BINDSTATUS_PROXYDETECTING = 32,
//C BINDSTATUS_ACCEPTRANGES = 33,
//C BINDSTATUS_COOKIE_SENT = 34,
//C BINDSTATUS_COMPACT_POLICY_RECEIVED = 35,
//C BINDSTATUS_COOKIE_SUPPRESSED = 36,
//C BINDSTATUS_COOKIE_STATE_UNKNOWN = 37,
//C BINDSTATUS_COOKIE_STATE_ACCEPT = 38,
//C BINDSTATUS_COOKIE_STATE_REJECT = 39,
//C BINDSTATUS_COOKIE_STATE_PROMPT = 40,
//C BINDSTATUS_COOKIE_STATE_LEASH = 41,
//C BINDSTATUS_COOKIE_STATE_DOWNGRADE = 42,
//C BINDSTATUS_POLICY_HREF = 43,
//C BINDSTATUS_P3P_HEADER = 44,
//C BINDSTATUS_SESSION_COOKIE_RECEIVED = 45,
//C BINDSTATUS_PERSISTENT_COOKIE_RECEIVED = 46,
//C BINDSTATUS_SESSION_COOKIES_ALLOWED = 47,
//C BINDSTATUS_CACHECONTROL = 48,
//C BINDSTATUS_CONTENTDISPOSITIONFILENAME = 49,
//C BINDSTATUS_MIMETEXTPLAINMISMATCH = 50,
//C BINDSTATUS_PUBLISHERAVAILABLE = 51,
//C BINDSTATUS_DISPLAYNAMEAVAILABLE = 52
//C } BINDSTATUS;
enum tagBINDSTATUS
{
BINDSTATUS_FINDINGRESOURCE = 1,
BINDSTATUS_CONNECTING,
BINDSTATUS_REDIRECTING,
BINDSTATUS_BEGINDOWNLOADDATA,
BINDSTATUS_DOWNLOADINGDATA,
BINDSTATUS_ENDDOWNLOADDATA,
BINDSTATUS_BEGINDOWNLOADCOMPONENTS,
BINDSTATUS_INSTALLINGCOMPONENTS,
BINDSTATUS_ENDDOWNLOADCOMPONENTS,
BINDSTATUS_USINGCACHEDCOPY,
BINDSTATUS_SENDINGREQUEST,
BINDSTATUS_CLASSIDAVAILABLE,
BINDSTATUS_MIMETYPEAVAILABLE,
BINDSTATUS_CACHEFILENAMEAVAILABLE,
BINDSTATUS_BEGINSYNCOPERATION,
BINDSTATUS_ENDSYNCOPERATION,
BINDSTATUS_BEGINUPLOADDATA,
BINDSTATUS_UPLOADINGDATA,
BINDSTATUS_ENDUPLOADDATA,
BINDSTATUS_PROTOCOLCLASSID,
BINDSTATUS_ENCODING,
BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE,
BINDSTATUS_CLASSINSTALLLOCATION,
BINDSTATUS_DECODING,
BINDSTATUS_LOADINGMIMEHANDLER,
BINDSTATUS_CONTENTDISPOSITIONATTACH,
BINDSTATUS_FILTERREPORTMIMETYPE,
BINDSTATUS_CLSIDCANINSTANTIATE,
BINDSTATUS_IUNKNOWNAVAILABLE,
BINDSTATUS_DIRECTBIND,
BINDSTATUS_RAWMIMETYPE,
BINDSTATUS_PROXYDETECTING,
BINDSTATUS_ACCEPTRANGES,
BINDSTATUS_COOKIE_SENT,
BINDSTATUS_COMPACT_POLICY_RECEIVED,
BINDSTATUS_COOKIE_SUPPRESSED,
BINDSTATUS_COOKIE_STATE_UNKNOWN,
BINDSTATUS_COOKIE_STATE_ACCEPT,
BINDSTATUS_COOKIE_STATE_REJECT,
BINDSTATUS_COOKIE_STATE_PROMPT,
BINDSTATUS_COOKIE_STATE_LEASH,
BINDSTATUS_COOKIE_STATE_DOWNGRADE,
BINDSTATUS_POLICY_HREF,
BINDSTATUS_P3P_HEADER,
BINDSTATUS_SESSION_COOKIE_RECEIVED,
BINDSTATUS_PERSISTENT_COOKIE_RECEIVED,
BINDSTATUS_SESSION_COOKIES_ALLOWED,
BINDSTATUS_CACHECONTROL,
BINDSTATUS_CONTENTDISPOSITIONFILENAME,
BINDSTATUS_MIMETEXTPLAINMISMATCH,
BINDSTATUS_PUBLISHERAVAILABLE,
BINDSTATUS_DISPLAYNAMEAVAILABLE,
}
alias tagBINDSTATUS BINDSTATUS;
//C typedef struct IBindStatusCallbackVtbl {
//C HRESULT ( *QueryInterface)(
//C IBindStatusCallback* This,
//C const IID *const riid,
//C void **ppvObject);
//C ULONG ( *AddRef)(
//C IBindStatusCallback* This);
//C ULONG ( *Release)(
//C IBindStatusCallback* This);
//C HRESULT ( *OnStartBinding)(
//C IBindStatusCallback* This,
//C DWORD dwReserved,
//C IBinding *pib);
//C HRESULT ( *GetPriority)(
//C IBindStatusCallback* This,
//C LONG *pnPriority);
//C HRESULT ( *OnLowResource)(
//C IBindStatusCallback* This,
//C DWORD reserved);
//C HRESULT ( *OnProgress)(
//C IBindStatusCallback* This,
//C ULONG ulProgress,
//C ULONG ulProgressMax,
//C ULONG ulStatusCode,
//C LPCWSTR szStatusText);
//C HRESULT ( *OnStopBinding)(
//C IBindStatusCallback* This,
//C HRESULT hresult,
//C LPCWSTR szError);
//C HRESULT ( *GetBindInfo)(
//C IBindStatusCallback* This,
//C DWORD *grfBINDF,
//C BINDINFO *pbindinfo);
//C HRESULT ( *OnDataAvailable)(
//C IBindStatusCallback* This,
//C DWORD grfBSCF,
//C DWORD dwSize,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pstgmed);
//C HRESULT ( *OnObjectAvailable)(
//C IBindStatusCallback* This,
//C const IID *const riid,
//C IUnknown *punk);
//C } IBindStatusCallbackVtbl;
struct IBindStatusCallbackVtbl
{
HRESULT function(IBindStatusCallback *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBindStatusCallback *This)AddRef;
ULONG function(IBindStatusCallback *This)Release;
HRESULT function(IBindStatusCallback *This, DWORD dwReserved, IBinding *pib)OnStartBinding;
HRESULT function(IBindStatusCallback *This, LONG *pnPriority)GetPriority;
HRESULT function(IBindStatusCallback *This, DWORD reserved)OnLowResource;
HRESULT function(IBindStatusCallback *This, ULONG ulProgress, ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)OnProgress;
HRESULT function(IBindStatusCallback *This, HRESULT hresult, LPCWSTR szError)OnStopBinding;
HRESULT function(IBindStatusCallback *This, DWORD *grfBINDF, BINDINFO *pbindinfo)GetBindInfo;
HRESULT function(IBindStatusCallback *This, DWORD grfBSCF, DWORD dwSize, FORMATETC *pformatetc, STGMEDIUM *pstgmed)OnDataAvailable;
HRESULT function(IBindStatusCallback *This, IID *riid, IUnknown *punk)OnObjectAvailable;
}
//C struct IBindStatusCallback {
//C IBindStatusCallbackVtbl* lpVtbl;
//C };
struct IBindStatusCallback
{
IBindStatusCallbackVtbl *lpVtbl;
}
//C HRESULT IBindStatusCallback_OnStartBinding_Proxy(
//C IBindStatusCallback* This,
//C DWORD dwReserved,
//C IBinding *pib);
HRESULT IBindStatusCallback_OnStartBinding_Proxy(IBindStatusCallback *This, DWORD dwReserved, IBinding *pib);
//C void IBindStatusCallback_OnStartBinding_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_OnStartBinding_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_GetPriority_Proxy(
//C IBindStatusCallback* This,
//C LONG *pnPriority);
HRESULT IBindStatusCallback_GetPriority_Proxy(IBindStatusCallback *This, LONG *pnPriority);
//C void IBindStatusCallback_GetPriority_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_GetPriority_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_OnLowResource_Proxy(
//C IBindStatusCallback* This,
//C DWORD reserved);
HRESULT IBindStatusCallback_OnLowResource_Proxy(IBindStatusCallback *This, DWORD reserved);
//C void IBindStatusCallback_OnLowResource_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_OnLowResource_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_OnProgress_Proxy(
//C IBindStatusCallback* This,
//C ULONG ulProgress,
//C ULONG ulProgressMax,
//C ULONG ulStatusCode,
//C LPCWSTR szStatusText);
HRESULT IBindStatusCallback_OnProgress_Proxy(IBindStatusCallback *This, ULONG ulProgress, ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText);
//C void IBindStatusCallback_OnProgress_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_OnProgress_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_OnStopBinding_Proxy(
//C IBindStatusCallback* This,
//C HRESULT hresult,
//C LPCWSTR szError);
HRESULT IBindStatusCallback_OnStopBinding_Proxy(IBindStatusCallback *This, HRESULT hresult, LPCWSTR szError);
//C void IBindStatusCallback_OnStopBinding_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_OnStopBinding_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_RemoteGetBindInfo_Proxy(
//C IBindStatusCallback* This,
//C DWORD *grfBINDF,
//C RemBINDINFO *pbindinfo,
//C RemSTGMEDIUM *pstgmed);
HRESULT IBindStatusCallback_RemoteGetBindInfo_Proxy(IBindStatusCallback *This, DWORD *grfBINDF, RemBINDINFO *pbindinfo, RemSTGMEDIUM *pstgmed);
//C void IBindStatusCallback_RemoteGetBindInfo_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_RemoteGetBindInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_RemoteOnDataAvailable_Proxy(
//C IBindStatusCallback* This,
//C DWORD grfBSCF,
//C DWORD dwSize,
//C RemFORMATETC *pformatetc,
//C RemSTGMEDIUM *pstgmed);
HRESULT IBindStatusCallback_RemoteOnDataAvailable_Proxy(IBindStatusCallback *This, DWORD grfBSCF, DWORD dwSize, RemFORMATETC *pformatetc, RemSTGMEDIUM *pstgmed);
//C void IBindStatusCallback_RemoteOnDataAvailable_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_RemoteOnDataAvailable_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_OnObjectAvailable_Proxy(
//C IBindStatusCallback* This,
//C const IID *const riid,
//C IUnknown *punk);
HRESULT IBindStatusCallback_OnObjectAvailable_Proxy(IBindStatusCallback *This, IID *riid, IUnknown *punk);
//C void IBindStatusCallback_OnObjectAvailable_Stub(
//C IRpcStubBuffer* This,
//C IRpcChannelBuffer* pRpcChannelBuffer,
//C PRPC_MESSAGE pRpcMessage,
//C DWORD* pdwStubPhase);
void IBindStatusCallback_OnObjectAvailable_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *pRpcChannelBuffer, PRPC_MESSAGE pRpcMessage, DWORD *pdwStubPhase);
//C HRESULT IBindStatusCallback_GetBindInfo_Proxy(
//C IBindStatusCallback* This,
//C DWORD *grfBINDF,
//C BINDINFO *pbindinfo);
HRESULT IBindStatusCallback_GetBindInfo_Proxy(IBindStatusCallback *This, DWORD *grfBINDF, BINDINFO *pbindinfo);
//C HRESULT IBindStatusCallback_GetBindInfo_Stub(
//C IBindStatusCallback* This,
//C DWORD *grfBINDF,
//C RemBINDINFO *pbindinfo,
//C RemSTGMEDIUM *pstgmed);
HRESULT IBindStatusCallback_GetBindInfo_Stub(IBindStatusCallback *This, DWORD *grfBINDF, RemBINDINFO *pbindinfo, RemSTGMEDIUM *pstgmed);
//C HRESULT IBindStatusCallback_OnDataAvailable_Proxy(
//C IBindStatusCallback* This,
//C DWORD grfBSCF,
//C DWORD dwSize,
//C FORMATETC *pformatetc,
//C STGMEDIUM *pstgmed);
HRESULT IBindStatusCallback_OnDataAvailable_Proxy(IBindStatusCallback *This, DWORD grfBSCF, DWORD dwSize, FORMATETC *pformatetc, STGMEDIUM *pstgmed);
//C HRESULT IBindStatusCallback_OnDataAvailable_Stub(
//C IBindStatusCallback* This,
//C DWORD grfBSCF,
//C DWORD dwSize,
//C RemFORMATETC *pformatetc,
//C RemSTGMEDIUM *pstgmed);
HRESULT IBindStatusCallback_OnDataAvailable_Stub(IBindStatusCallback *This, DWORD grfBSCF, DWORD dwSize, RemFORMATETC *pformatetc, RemSTGMEDIUM *pstgmed);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0182_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0182_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0182_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0182_v0_0_s_ifspec;
//C typedef IAuthenticate *LPAUTHENTICATION;
alias IAuthenticate *LPAUTHENTICATION;
//C typedef struct IAuthenticateVtbl {
//C HRESULT ( *QueryInterface)(IAuthenticate *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IAuthenticate *This);
//C ULONG ( *Release)(IAuthenticate *This);
//C HRESULT ( *Authenticate)(IAuthenticate *This,HWND *phwnd,LPWSTR *pszUsername,LPWSTR *pszPassword);
//C } IAuthenticateVtbl;
struct IAuthenticateVtbl
{
HRESULT function(IAuthenticate *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IAuthenticate *This)AddRef;
ULONG function(IAuthenticate *This)Release;
HRESULT function(IAuthenticate *This, HWND *phwnd, LPWSTR *pszUsername, LPWSTR *pszPassword)Authenticate;
}
//C struct IAuthenticate {
//C struct IAuthenticateVtbl *lpVtbl;
//C };
struct IAuthenticate
{
IAuthenticateVtbl *lpVtbl;
}
//C HRESULT IAuthenticate_Authenticate_Proxy(IAuthenticate *This,HWND *phwnd,LPWSTR *pszUsername,LPWSTR *pszPassword);
HRESULT IAuthenticate_Authenticate_Proxy(IAuthenticate *This, HWND *phwnd, LPWSTR *pszUsername, LPWSTR *pszPassword);
//C void IAuthenticate_Authenticate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IAuthenticate_Authenticate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0183_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0183_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0183_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0183_v0_0_s_ifspec;
//C typedef IHttpNegotiate *LPHTTPNEGOTIATE;
alias IHttpNegotiate *LPHTTPNEGOTIATE;
//C typedef struct IHttpNegotiateVtbl {
//C HRESULT ( *QueryInterface)(IHttpNegotiate *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IHttpNegotiate *This);
//C ULONG ( *Release)(IHttpNegotiate *This);
//C HRESULT ( *BeginningTransaction)(IHttpNegotiate *This,LPCWSTR szURL,LPCWSTR szHeaders,DWORD dwReserved,LPWSTR *pszAdditionalHeaders);
//C HRESULT ( *OnResponse)(IHttpNegotiate *This,DWORD dwResponseCode,LPCWSTR szResponseHeaders,LPCWSTR szRequestHeaders,LPWSTR *pszAdditionalRequestHeaders);
//C } IHttpNegotiateVtbl;
struct IHttpNegotiateVtbl
{
HRESULT function(IHttpNegotiate *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IHttpNegotiate *This)AddRef;
ULONG function(IHttpNegotiate *This)Release;
HRESULT function(IHttpNegotiate *This, LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders)BeginningTransaction;
HRESULT function(IHttpNegotiate *This, DWORD dwResponseCode, LPCWSTR szResponseHeaders, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders)OnResponse;
}
//C struct IHttpNegotiate {
//C struct IHttpNegotiateVtbl *lpVtbl;
//C };
struct IHttpNegotiate
{
IHttpNegotiateVtbl *lpVtbl;
}
//C HRESULT IHttpNegotiate_BeginningTransaction_Proxy(IHttpNegotiate *This,LPCWSTR szURL,LPCWSTR szHeaders,DWORD dwReserved,LPWSTR *pszAdditionalHeaders);
HRESULT IHttpNegotiate_BeginningTransaction_Proxy(IHttpNegotiate *This, LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders);
//C void IHttpNegotiate_BeginningTransaction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IHttpNegotiate_BeginningTransaction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IHttpNegotiate_OnResponse_Proxy(IHttpNegotiate *This,DWORD dwResponseCode,LPCWSTR szResponseHeaders,LPCWSTR szRequestHeaders,LPWSTR *pszAdditionalRequestHeaders);
HRESULT IHttpNegotiate_OnResponse_Proxy(IHttpNegotiate *This, DWORD dwResponseCode, LPCWSTR szResponseHeaders, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders);
//C void IHttpNegotiate_OnResponse_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IHttpNegotiate_OnResponse_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0184_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0184_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0184_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0184_v0_0_s_ifspec;
//C typedef IHttpNegotiate2 *LPHTTPNEGOTIATE2;
alias IHttpNegotiate2 *LPHTTPNEGOTIATE2;
//C typedef struct IHttpNegotiate2Vtbl {
//C HRESULT ( *QueryInterface)(IHttpNegotiate2 *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IHttpNegotiate2 *This);
//C ULONG ( *Release)(IHttpNegotiate2 *This);
//C HRESULT ( *BeginningTransaction)(IHttpNegotiate2 *This,LPCWSTR szURL,LPCWSTR szHeaders,DWORD dwReserved,LPWSTR *pszAdditionalHeaders);
//C HRESULT ( *OnResponse)(IHttpNegotiate2 *This,DWORD dwResponseCode,LPCWSTR szResponseHeaders,LPCWSTR szRequestHeaders,LPWSTR *pszAdditionalRequestHeaders);
//C HRESULT ( *GetRootSecurityId)(IHttpNegotiate2 *This,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
//C } IHttpNegotiate2Vtbl;
struct IHttpNegotiate2Vtbl
{
HRESULT function(IHttpNegotiate2 *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IHttpNegotiate2 *This)AddRef;
ULONG function(IHttpNegotiate2 *This)Release;
HRESULT function(IHttpNegotiate2 *This, LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders)BeginningTransaction;
HRESULT function(IHttpNegotiate2 *This, DWORD dwResponseCode, LPCWSTR szResponseHeaders, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders)OnResponse;
HRESULT function(IHttpNegotiate2 *This, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)GetRootSecurityId;
}
//C struct IHttpNegotiate2 {
//C struct IHttpNegotiate2Vtbl *lpVtbl;
//C };
struct IHttpNegotiate2
{
IHttpNegotiate2Vtbl *lpVtbl;
}
//C HRESULT IHttpNegotiate2_GetRootSecurityId_Proxy(IHttpNegotiate2 *This,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
HRESULT IHttpNegotiate2_GetRootSecurityId_Proxy(IHttpNegotiate2 *This, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved);
//C void IHttpNegotiate2_GetRootSecurityId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IHttpNegotiate2_GetRootSecurityId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0185_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0185_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0185_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0185_v0_0_s_ifspec;
//C typedef IWinInetFileStream *LPWININETFILESTREAM;
alias IWinInetFileStream *LPWININETFILESTREAM;
//C typedef struct IWinInetFileStreamVtbl {
//C HRESULT ( *QueryInterface)(IWinInetFileStream *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWinInetFileStream *This);
//C ULONG ( *Release)(IWinInetFileStream *This);
//C HRESULT ( *SetHandleForUnlock)(IWinInetFileStream *This,DWORD_PTR hWinInetLockHandle,DWORD_PTR dwReserved);
//C HRESULT ( *SetDeleteFile)(IWinInetFileStream *This,DWORD_PTR dwReserved);
//C } IWinInetFileStreamVtbl;
struct IWinInetFileStreamVtbl
{
HRESULT function(IWinInetFileStream *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWinInetFileStream *This)AddRef;
ULONG function(IWinInetFileStream *This)Release;
HRESULT function(IWinInetFileStream *This, DWORD_PTR hWinInetLockHandle, DWORD_PTR dwReserved)SetHandleForUnlock;
HRESULT function(IWinInetFileStream *This, DWORD_PTR dwReserved)SetDeleteFile;
}
//C struct IWinInetFileStream {
//C struct IWinInetFileStreamVtbl *lpVtbl;
//C };
struct IWinInetFileStream
{
IWinInetFileStreamVtbl *lpVtbl;
}
//C HRESULT IWinInetFileStream_SetHandleForUnlock_Proxy(IWinInetFileStream *This,DWORD_PTR hWinInetLockHandle,DWORD_PTR dwReserved);
HRESULT IWinInetFileStream_SetHandleForUnlock_Proxy(IWinInetFileStream *This, DWORD_PTR hWinInetLockHandle, DWORD_PTR dwReserved);
//C void IWinInetFileStream_SetHandleForUnlock_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWinInetFileStream_SetHandleForUnlock_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IWinInetFileStream_SetDeleteFile_Proxy(IWinInetFileStream *This,DWORD_PTR dwReserved);
HRESULT IWinInetFileStream_SetDeleteFile_Proxy(IWinInetFileStream *This, DWORD_PTR dwReserved);
//C void IWinInetFileStream_SetDeleteFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWinInetFileStream_SetDeleteFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0186_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0186_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0186_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0186_v0_0_s_ifspec;
//C typedef IWindowForBindingUI *LPWINDOWFORBINDINGUI;
alias IWindowForBindingUI *LPWINDOWFORBINDINGUI;
//C typedef struct IWindowForBindingUIVtbl {
//C HRESULT ( *QueryInterface)(IWindowForBindingUI *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWindowForBindingUI *This);
//C ULONG ( *Release)(IWindowForBindingUI *This);
//C HRESULT ( *GetWindow)(IWindowForBindingUI *This,const GUID *const rguidReason,HWND *phwnd);
//C } IWindowForBindingUIVtbl;
struct IWindowForBindingUIVtbl
{
HRESULT function(IWindowForBindingUI *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWindowForBindingUI *This)AddRef;
ULONG function(IWindowForBindingUI *This)Release;
HRESULT function(IWindowForBindingUI *This, GUID *rguidReason, HWND *phwnd)GetWindow;
}
//C struct IWindowForBindingUI {
//C struct IWindowForBindingUIVtbl *lpVtbl;
//C };
struct IWindowForBindingUI
{
IWindowForBindingUIVtbl *lpVtbl;
}
//C HRESULT IWindowForBindingUI_GetWindow_Proxy(IWindowForBindingUI *This,const GUID *const rguidReason,HWND *phwnd);
HRESULT IWindowForBindingUI_GetWindow_Proxy(IWindowForBindingUI *This, GUID *rguidReason, HWND *phwnd);
//C void IWindowForBindingUI_GetWindow_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWindowForBindingUI_GetWindow_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0187_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0187_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0187_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0187_v0_0_s_ifspec;
//C typedef ICodeInstall *LPCODEINSTALL;
alias ICodeInstall *LPCODEINSTALL;
//C typedef enum __MIDL_ICodeInstall_0001 {
//C CIP_DISK_FULL = 0,
//C CIP_ACCESS_DENIED,CIP_NEWER_VERSION_EXISTS,CIP_OLDER_VERSION_EXISTS,
//C CIP_NAME_CONFLICT,CIP_TRUST_VERIFICATION_COMPONENT_MISSING,CIP_EXE_SELF_REGISTERATION_TIMEOUT,
//C CIP_UNSAFE_TO_ABORT,CIP_NEED_REBOOT,CIP_NEED_REBOOT_UI_PERMISSION
//C } CIP_STATUS;
enum __MIDL_ICodeInstall_0001
{
CIP_DISK_FULL,
CIP_ACCESS_DENIED,
CIP_NEWER_VERSION_EXISTS,
CIP_OLDER_VERSION_EXISTS,
CIP_NAME_CONFLICT,
CIP_TRUST_VERIFICATION_COMPONENT_MISSING,
CIP_EXE_SELF_REGISTERATION_TIMEOUT,
CIP_UNSAFE_TO_ABORT,
CIP_NEED_REBOOT,
CIP_NEED_REBOOT_UI_PERMISSION,
}
alias __MIDL_ICodeInstall_0001 CIP_STATUS;
//C typedef struct ICodeInstallVtbl {
//C HRESULT ( *QueryInterface)(ICodeInstall *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICodeInstall *This);
//C ULONG ( *Release)(ICodeInstall *This);
//C HRESULT ( *GetWindow)(ICodeInstall *This,const GUID *const rguidReason,HWND *phwnd);
//C HRESULT ( *OnCodeInstallProblem)(ICodeInstall *This,ULONG ulStatusCode,LPCWSTR szDestination,LPCWSTR szSource,DWORD dwReserved);
//C } ICodeInstallVtbl;
struct ICodeInstallVtbl
{
HRESULT function(ICodeInstall *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICodeInstall *This)AddRef;
ULONG function(ICodeInstall *This)Release;
HRESULT function(ICodeInstall *This, GUID *rguidReason, HWND *phwnd)GetWindow;
HRESULT function(ICodeInstall *This, ULONG ulStatusCode, LPCWSTR szDestination, LPCWSTR szSource, DWORD dwReserved)OnCodeInstallProblem;
}
//C struct ICodeInstall {
//C struct ICodeInstallVtbl *lpVtbl;
//C };
struct ICodeInstall
{
ICodeInstallVtbl *lpVtbl;
}
//C HRESULT ICodeInstall_OnCodeInstallProblem_Proxy(ICodeInstall *This,ULONG ulStatusCode,LPCWSTR szDestination,LPCWSTR szSource,DWORD dwReserved);
HRESULT ICodeInstall_OnCodeInstallProblem_Proxy(ICodeInstall *This, ULONG ulStatusCode, LPCWSTR szDestination, LPCWSTR szSource, DWORD dwReserved);
//C void ICodeInstall_OnCodeInstallProblem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICodeInstall_OnCodeInstallProblem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0188_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0188_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0188_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0188_v0_0_s_ifspec;
//C typedef IWinInetInfo *LPWININETINFO;
alias IWinInetInfo *LPWININETINFO;
//C typedef struct IWinInetInfoVtbl {
//C HRESULT ( *QueryInterface)(IWinInetInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWinInetInfo *This);
//C ULONG ( *Release)(IWinInetInfo *This);
//C HRESULT ( *QueryOption)(IWinInetInfo *This,DWORD dwOption,LPVOID pBuffer,DWORD *pcbBuf);
//C } IWinInetInfoVtbl;
struct IWinInetInfoVtbl
{
HRESULT function(IWinInetInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWinInetInfo *This)AddRef;
ULONG function(IWinInetInfo *This)Release;
HRESULT function(IWinInetInfo *This, DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf)QueryOption;
}
//C struct IWinInetInfo {
//C struct IWinInetInfoVtbl *lpVtbl;
//C };
struct IWinInetInfo
{
IWinInetInfoVtbl *lpVtbl;
}
//C HRESULT IWinInetInfo_RemoteQueryOption_Proxy(IWinInetInfo *This,DWORD dwOption,BYTE *pBuffer,DWORD *pcbBuf);
HRESULT IWinInetInfo_RemoteQueryOption_Proxy(IWinInetInfo *This, DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf);
//C void IWinInetInfo_RemoteQueryOption_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWinInetInfo_RemoteQueryOption_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0189_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0189_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0189_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0189_v0_0_s_ifspec;
//C typedef IHttpSecurity *LPHTTPSECURITY;
alias IHttpSecurity *LPHTTPSECURITY;
//C typedef struct IHttpSecurityVtbl {
//C HRESULT ( *QueryInterface)(IHttpSecurity *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IHttpSecurity *This);
//C ULONG ( *Release)(IHttpSecurity *This);
//C HRESULT ( *GetWindow)(IHttpSecurity *This,const GUID *const rguidReason,HWND *phwnd);
//C HRESULT ( *OnSecurityProblem)(IHttpSecurity *This,DWORD dwProblem);
//C } IHttpSecurityVtbl;
struct IHttpSecurityVtbl
{
HRESULT function(IHttpSecurity *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IHttpSecurity *This)AddRef;
ULONG function(IHttpSecurity *This)Release;
HRESULT function(IHttpSecurity *This, GUID *rguidReason, HWND *phwnd)GetWindow;
HRESULT function(IHttpSecurity *This, DWORD dwProblem)OnSecurityProblem;
}
//C struct IHttpSecurity {
//C struct IHttpSecurityVtbl *lpVtbl;
//C };
struct IHttpSecurity
{
IHttpSecurityVtbl *lpVtbl;
}
//C HRESULT IHttpSecurity_OnSecurityProblem_Proxy(IHttpSecurity *This,DWORD dwProblem);
HRESULT IHttpSecurity_OnSecurityProblem_Proxy(IHttpSecurity *This, DWORD dwProblem);
//C void IHttpSecurity_OnSecurityProblem_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IHttpSecurity_OnSecurityProblem_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0190_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0190_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0190_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0190_v0_0_s_ifspec;
//C typedef IWinInetHttpInfo *LPWININETHTTPINFO;
alias IWinInetHttpInfo *LPWININETHTTPINFO;
//C typedef struct IWinInetHttpInfoVtbl {
//C HRESULT ( *QueryInterface)(IWinInetHttpInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWinInetHttpInfo *This);
//C ULONG ( *Release)(IWinInetHttpInfo *This);
//C HRESULT ( *QueryOption)(IWinInetHttpInfo *This,DWORD dwOption,LPVOID pBuffer,DWORD *pcbBuf);
//C HRESULT ( *QueryInfo)(IWinInetHttpInfo *This,DWORD dwOption,LPVOID pBuffer,DWORD *pcbBuf,DWORD *pdwFlags,DWORD *pdwReserved);
//C } IWinInetHttpInfoVtbl;
struct IWinInetHttpInfoVtbl
{
HRESULT function(IWinInetHttpInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWinInetHttpInfo *This)AddRef;
ULONG function(IWinInetHttpInfo *This)Release;
HRESULT function(IWinInetHttpInfo *This, DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf)QueryOption;
HRESULT function(IWinInetHttpInfo *This, DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf, DWORD *pdwFlags, DWORD *pdwReserved)QueryInfo;
}
//C struct IWinInetHttpInfo {
//C struct IWinInetHttpInfoVtbl *lpVtbl;
//C };
struct IWinInetHttpInfo
{
IWinInetHttpInfoVtbl *lpVtbl;
}
//C HRESULT IWinInetHttpInfo_RemoteQueryInfo_Proxy(IWinInetHttpInfo *This,DWORD dwOption,BYTE *pBuffer,DWORD *pcbBuf,DWORD *pdwFlags,DWORD *pdwReserved);
HRESULT IWinInetHttpInfo_RemoteQueryInfo_Proxy(IWinInetHttpInfo *This, DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf, DWORD *pdwFlags, DWORD *pdwReserved);
//C void IWinInetHttpInfo_RemoteQueryInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWinInetHttpInfo_RemoteQueryInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0191_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0191_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0191_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0191_v0_0_s_ifspec;
//C typedef IWinInetCacheHints *LPWININETCACHEHINTS;
alias IWinInetCacheHints *LPWININETCACHEHINTS;
//C typedef struct IWinInetCacheHintsVtbl {
//C HRESULT ( *QueryInterface)(IWinInetCacheHints *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWinInetCacheHints *This);
//C ULONG ( *Release)(IWinInetCacheHints *This);
//C HRESULT ( *SetCacheExtension)(IWinInetCacheHints *This,LPCWSTR pwzExt,LPVOID pszCacheFile,DWORD *pcbCacheFile,DWORD *pdwWinInetError,DWORD *pdwReserved);
//C } IWinInetCacheHintsVtbl;
struct IWinInetCacheHintsVtbl
{
HRESULT function(IWinInetCacheHints *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWinInetCacheHints *This)AddRef;
ULONG function(IWinInetCacheHints *This)Release;
HRESULT function(IWinInetCacheHints *This, LPCWSTR pwzExt, LPVOID pszCacheFile, DWORD *pcbCacheFile, DWORD *pdwWinInetError, DWORD *pdwReserved)SetCacheExtension;
}
//C struct IWinInetCacheHints {
//C struct IWinInetCacheHintsVtbl *lpVtbl;
//C };
struct IWinInetCacheHints
{
IWinInetCacheHintsVtbl *lpVtbl;
}
//C HRESULT IWinInetCacheHints_SetCacheExtension_Proxy(IWinInetCacheHints *This,LPCWSTR pwzExt,LPVOID pszCacheFile,DWORD *pcbCacheFile,DWORD *pdwWinInetError,DWORD *pdwReserved);
HRESULT IWinInetCacheHints_SetCacheExtension_Proxy(IWinInetCacheHints *This, LPCWSTR pwzExt, LPVOID pszCacheFile, DWORD *pcbCacheFile, DWORD *pdwWinInetError, DWORD *pdwReserved);
//C void IWinInetCacheHints_SetCacheExtension_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWinInetCacheHints_SetCacheExtension_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0192_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0192_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0192_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0192_v0_0_s_ifspec;
//C typedef IBindHost *LPBINDHOST;
alias IBindHost *LPBINDHOST;
//C typedef struct IBindHostVtbl {
//C HRESULT ( *QueryInterface)(IBindHost *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IBindHost *This);
//C ULONG ( *Release)(IBindHost *This);
//C HRESULT ( *CreateMoniker)(IBindHost *This,LPOLESTR szName,IBindCtx *pBC,IMoniker **ppmk,DWORD dwReserved);
//C HRESULT ( *MonikerBindToStorage)(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,void **ppvObj);
//C HRESULT ( *MonikerBindToObject)(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,void **ppvObj);
//C } IBindHostVtbl;
struct IBindHostVtbl
{
HRESULT function(IBindHost *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IBindHost *This)AddRef;
ULONG function(IBindHost *This)Release;
HRESULT function(IBindHost *This, LPOLESTR szName, IBindCtx *pBC, IMoniker **ppmk, DWORD dwReserved)CreateMoniker;
HRESULT function(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, void **ppvObj)MonikerBindToStorage;
HRESULT function(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, void **ppvObj)MonikerBindToObject;
}
//C struct IBindHost {
//C struct IBindHostVtbl *lpVtbl;
//C };
struct IBindHost
{
IBindHostVtbl *lpVtbl;
}
//C HRESULT IBindHost_CreateMoniker_Proxy(IBindHost *This,LPOLESTR szName,IBindCtx *pBC,IMoniker **ppmk,DWORD dwReserved);
HRESULT IBindHost_CreateMoniker_Proxy(IBindHost *This, LPOLESTR szName, IBindCtx *pBC, IMoniker **ppmk, DWORD dwReserved);
//C void IBindHost_CreateMoniker_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBindHost_CreateMoniker_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IBindHost_RemoteMonikerBindToStorage_Proxy(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,IUnknown **ppvObj);
HRESULT IBindHost_RemoteMonikerBindToStorage_Proxy(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, IUnknown **ppvObj);
//C void IBindHost_RemoteMonikerBindToStorage_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBindHost_RemoteMonikerBindToStorage_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IBindHost_RemoteMonikerBindToObject_Proxy(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,IUnknown **ppvObj);
HRESULT IBindHost_RemoteMonikerBindToObject_Proxy(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, IUnknown **ppvObj);
//C void IBindHost_RemoteMonikerBindToObject_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IBindHost_RemoteMonikerBindToObject_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C struct IBindStatusCallback;
//C extern HRESULT HlinkSimpleNavigateToString(LPCWSTR szTarget,LPCWSTR szLocation,LPCWSTR szTargetFrameName,IUnknown *pUnk,IBindCtx *pbc,IBindStatusCallback *,DWORD grfHLNF,DWORD dwReserved);
HRESULT HlinkSimpleNavigateToString(LPCWSTR szTarget, LPCWSTR szLocation, LPCWSTR szTargetFrameName, IUnknown *pUnk, IBindCtx *pbc, IBindStatusCallback *, DWORD grfHLNF, DWORD dwReserved);
//C extern HRESULT HlinkSimpleNavigateToMoniker(IMoniker *pmkTarget,LPCWSTR szLocation,LPCWSTR szTargetFrameName,IUnknown *pUnk,IBindCtx *pbc,IBindStatusCallback *,DWORD grfHLNF,DWORD dwReserved);
HRESULT HlinkSimpleNavigateToMoniker(IMoniker *pmkTarget, LPCWSTR szLocation, LPCWSTR szTargetFrameName, IUnknown *pUnk, IBindCtx *pbc, IBindStatusCallback *, DWORD grfHLNF, DWORD dwReserved);
//C extern HRESULT URLOpenStreamA(LPUNKNOWN,LPCSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenStreamA(LPUNKNOWN , LPCSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLOpenStreamW(LPUNKNOWN,LPCWSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenStreamW(LPUNKNOWN , LPCWSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLOpenPullStreamA(LPUNKNOWN,LPCSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenPullStreamA(LPUNKNOWN , LPCSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLOpenPullStreamW(LPUNKNOWN,LPCWSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenPullStreamW(LPUNKNOWN , LPCWSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLDownloadToFileA(LPUNKNOWN,LPCSTR,LPCSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLDownloadToFileA(LPUNKNOWN , LPCSTR , LPCSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLDownloadToFileW(LPUNKNOWN,LPCWSTR,LPCWSTR,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLDownloadToFileW(LPUNKNOWN , LPCWSTR , LPCWSTR , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLDownloadToCacheFileA(LPUNKNOWN,LPCSTR,LPTSTR,DWORD,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLDownloadToCacheFileA(LPUNKNOWN , LPCSTR , LPTSTR , DWORD , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLDownloadToCacheFileW(LPUNKNOWN,LPCWSTR,LPWSTR,DWORD,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLDownloadToCacheFileW(LPUNKNOWN , LPCWSTR , LPWSTR , DWORD , DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLOpenBlockingStreamA(LPUNKNOWN,LPCSTR,LPSTREAM*,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenBlockingStreamA(LPUNKNOWN , LPCSTR , LPSTREAM *, DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT URLOpenBlockingStreamW(LPUNKNOWN,LPCWSTR,LPSTREAM*,DWORD,LPBINDSTATUSCALLBACK);
HRESULT URLOpenBlockingStreamW(LPUNKNOWN , LPCWSTR , LPSTREAM *, DWORD , LPBINDSTATUSCALLBACK );
//C extern HRESULT HlinkGoBack(IUnknown *pUnk);
HRESULT HlinkGoBack(IUnknown *pUnk);
//C extern HRESULT HlinkGoForward(IUnknown *pUnk);
HRESULT HlinkGoForward(IUnknown *pUnk);
//C extern HRESULT HlinkNavigateString(IUnknown *pUnk,LPCWSTR szTarget);
HRESULT HlinkNavigateString(IUnknown *pUnk, LPCWSTR szTarget);
//C extern HRESULT HlinkNavigateMoniker(IUnknown *pUnk,IMoniker *pmkTarget);
HRESULT HlinkNavigateMoniker(IUnknown *pUnk, IMoniker *pmkTarget);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0193_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0193_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0193_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0193_v0_0_s_ifspec;
//C typedef IInternet *LPIINTERNET;
alias IInternet *LPIINTERNET;
//C typedef struct IInternetVtbl {
//C HRESULT ( *QueryInterface)(IInternet *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternet *This);
//C ULONG ( *Release)(IInternet *This);
//C } IInternetVtbl;
struct IInternetVtbl
{
HRESULT function(IInternet *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternet *This)AddRef;
ULONG function(IInternet *This)Release;
}
//C struct IInternet {
//C struct IInternetVtbl *lpVtbl;
//C };
struct IInternet
{
IInternetVtbl *lpVtbl;
}
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0194_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0194_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0194_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0194_v0_0_s_ifspec;
//C typedef IInternetBindInfo *LPIINTERNETBINDINFO;
alias IInternetBindInfo *LPIINTERNETBINDINFO;
//C typedef enum tagBINDSTRING {
//C BINDSTRING_HEADERS = 1,
//C BINDSTRING_ACCEPT_MIMES,BINDSTRING_EXTRA_URL,BINDSTRING_LANGUAGE,BINDSTRING_USERNAME,
//C BINDSTRING_PASSWORD,BINDSTRING_UA_PIXELS,BINDSTRING_UA_COLOR,BINDSTRING_OS,
//C BINDSTRING_USER_AGENT,BINDSTRING_ACCEPT_ENCODINGS,BINDSTRING_POST_COOKIE,
//C BINDSTRING_POST_DATA_MIME,BINDSTRING_URL,BINDSTRING_IID,BINDSTRING_FLAG_BIND_TO_OBJECT,
//C BINDSTRING_PTR_BIND_CONTEXT
//C } BINDSTRING;
enum tagBINDSTRING
{
BINDSTRING_HEADERS = 1,
BINDSTRING_ACCEPT_MIMES,
BINDSTRING_EXTRA_URL,
BINDSTRING_LANGUAGE,
BINDSTRING_USERNAME,
BINDSTRING_PASSWORD,
BINDSTRING_UA_PIXELS,
BINDSTRING_UA_COLOR,
BINDSTRING_OS,
BINDSTRING_USER_AGENT,
BINDSTRING_ACCEPT_ENCODINGS,
BINDSTRING_POST_COOKIE,
BINDSTRING_POST_DATA_MIME,
BINDSTRING_URL,
BINDSTRING_IID,
BINDSTRING_FLAG_BIND_TO_OBJECT,
BINDSTRING_PTR_BIND_CONTEXT,
}
alias tagBINDSTRING BINDSTRING;
//C typedef struct IInternetBindInfoVtbl {
//C HRESULT ( *QueryInterface)(IInternetBindInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetBindInfo *This);
//C ULONG ( *Release)(IInternetBindInfo *This);
//C HRESULT ( *GetBindInfo)(IInternetBindInfo *This,DWORD *grfBINDF,BINDINFO *pbindinfo);
//C HRESULT ( *GetBindString)(IInternetBindInfo *This,ULONG ulStringType,LPOLESTR *ppwzStr,ULONG cEl,ULONG *pcElFetched);
//C } IInternetBindInfoVtbl;
struct IInternetBindInfoVtbl
{
HRESULT function(IInternetBindInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetBindInfo *This)AddRef;
ULONG function(IInternetBindInfo *This)Release;
HRESULT function(IInternetBindInfo *This, DWORD *grfBINDF, BINDINFO *pbindinfo)GetBindInfo;
HRESULT function(IInternetBindInfo *This, ULONG ulStringType, LPOLESTR *ppwzStr, ULONG cEl, ULONG *pcElFetched)GetBindString;
}
//C struct IInternetBindInfo {
//C struct IInternetBindInfoVtbl *lpVtbl;
//C };
struct IInternetBindInfo
{
IInternetBindInfoVtbl *lpVtbl;
}
//C HRESULT IInternetBindInfo_GetBindInfo_Proxy(IInternetBindInfo *This,DWORD *grfBINDF,BINDINFO *pbindinfo);
HRESULT IInternetBindInfo_GetBindInfo_Proxy(IInternetBindInfo *This, DWORD *grfBINDF, BINDINFO *pbindinfo);
//C void IInternetBindInfo_GetBindInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetBindInfo_GetBindInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetBindInfo_GetBindString_Proxy(IInternetBindInfo *This,ULONG ulStringType,LPOLESTR *ppwzStr,ULONG cEl,ULONG *pcElFetched);
HRESULT IInternetBindInfo_GetBindString_Proxy(IInternetBindInfo *This, ULONG ulStringType, LPOLESTR *ppwzStr, ULONG cEl, ULONG *pcElFetched);
//C void IInternetBindInfo_GetBindString_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetBindInfo_GetBindString_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0195_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0195_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0195_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0195_v0_0_s_ifspec;
//C typedef IInternetProtocolRoot *LPIINTERNETPROTOCOLROOT;
alias IInternetProtocolRoot *LPIINTERNETPROTOCOLROOT;
//C typedef enum _tagPI_FLAGS {
//C PI_PARSE_URL = 0x1,PI_FILTER_MODE = 0x2,PI_FORCE_ASYNC = 0x4,PI_USE_WORKERTHREAD = 0x8,PI_MIMEVERIFICATION = 0x10,PI_CLSIDLOOKUP = 0x20,
//C PI_DATAPROGRESS = 0x40,PI_SYNCHRONOUS = 0x80,PI_APARTMENTTHREADED = 0x100,PI_CLASSINSTALL = 0x200,PI_PASSONBINDCTX = 0x2000,
//C PI_NOMIMEHANDLER = 0x8000,PI_LOADAPPDIRECT = 0x4000,PD_FORCE_SWITCH = 0x10000,PI_PREFERDEFAULTHANDLER = 0x20000
//C } PI_FLAGS;
enum _tagPI_FLAGS
{
PI_PARSE_URL = 1,
PI_FILTER_MODE,
PI_FORCE_ASYNC = 4,
PI_USE_WORKERTHREAD = 8,
PI_MIMEVERIFICATION = 16,
PI_CLSIDLOOKUP = 32,
PI_DATAPROGRESS = 64,
PI_SYNCHRONOUS = 128,
PI_APARTMENTTHREADED = 256,
PI_CLASSINSTALL = 512,
PI_PASSONBINDCTX = 8192,
PI_NOMIMEHANDLER = 32768,
PI_LOADAPPDIRECT = 16384,
PD_FORCE_SWITCH = 65536,
PI_PREFERDEFAULTHANDLER = 131072,
}
alias _tagPI_FLAGS PI_FLAGS;
//C typedef struct _tagPROTOCOLDATA {
//C DWORD grfFlags;
//C DWORD dwState;
//C LPVOID pData;
//C ULONG cbData;
//C } PROTOCOLDATA;
struct _tagPROTOCOLDATA
{
DWORD grfFlags;
DWORD dwState;
LPVOID pData;
ULONG cbData;
}
alias _tagPROTOCOLDATA PROTOCOLDATA;
//C typedef struct _tagStartParam {
//C IID iid;
//C IBindCtx *pIBindCtx;
//C IUnknown *pItf;
//C } StartParam;
struct _tagStartParam
{
IID iid;
IBindCtx *pIBindCtx;
IUnknown *pItf;
}
alias _tagStartParam StartParam;
//C typedef struct IInternetProtocolRootVtbl {
//C HRESULT ( *QueryInterface)(IInternetProtocolRoot *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetProtocolRoot *This);
//C ULONG ( *Release)(IInternetProtocolRoot *This);
//C HRESULT ( *Start)(IInternetProtocolRoot *This,LPCWSTR szUrl,IInternetProtocolSink *pOIProtSink,IInternetBindInfo *pOIBindInfo,DWORD grfPI,HANDLE_PTR dwReserved);
//C HRESULT ( *Continue)(IInternetProtocolRoot *This,PROTOCOLDATA *pProtocolData);
//C HRESULT ( *Abort)(IInternetProtocolRoot *This,HRESULT hrReason,DWORD dwOptions);
//C HRESULT ( *Terminate)(IInternetProtocolRoot *This,DWORD dwOptions);
//C HRESULT ( *Suspend)(IInternetProtocolRoot *This);
//C HRESULT ( *Resume)(IInternetProtocolRoot *This);
//C } IInternetProtocolRootVtbl;
struct IInternetProtocolRootVtbl
{
HRESULT function(IInternetProtocolRoot *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetProtocolRoot *This)AddRef;
ULONG function(IInternetProtocolRoot *This)Release;
HRESULT function(IInternetProtocolRoot *This, LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved)Start;
HRESULT function(IInternetProtocolRoot *This, PROTOCOLDATA *pProtocolData)Continue;
HRESULT function(IInternetProtocolRoot *This, HRESULT hrReason, DWORD dwOptions)Abort;
HRESULT function(IInternetProtocolRoot *This, DWORD dwOptions)Terminate;
HRESULT function(IInternetProtocolRoot *This)Suspend;
HRESULT function(IInternetProtocolRoot *This)Resume;
}
//C struct IInternetProtocolRoot {
//C struct IInternetProtocolRootVtbl *lpVtbl;
//C };
struct IInternetProtocolRoot
{
IInternetProtocolRootVtbl *lpVtbl;
}
//C HRESULT IInternetProtocolRoot_Start_Proxy(IInternetProtocolRoot *This,LPCWSTR szUrl,IInternetProtocolSink *pOIProtSink,IInternetBindInfo *pOIBindInfo,DWORD grfPI,HANDLE_PTR dwReserved);
HRESULT IInternetProtocolRoot_Start_Proxy(IInternetProtocolRoot *This, LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved);
//C void IInternetProtocolRoot_Start_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Start_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolRoot_Continue_Proxy(IInternetProtocolRoot *This,PROTOCOLDATA *pProtocolData);
HRESULT IInternetProtocolRoot_Continue_Proxy(IInternetProtocolRoot *This, PROTOCOLDATA *pProtocolData);
//C void IInternetProtocolRoot_Continue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Continue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolRoot_Abort_Proxy(IInternetProtocolRoot *This,HRESULT hrReason,DWORD dwOptions);
HRESULT IInternetProtocolRoot_Abort_Proxy(IInternetProtocolRoot *This, HRESULT hrReason, DWORD dwOptions);
//C void IInternetProtocolRoot_Abort_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Abort_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolRoot_Terminate_Proxy(IInternetProtocolRoot *This,DWORD dwOptions);
HRESULT IInternetProtocolRoot_Terminate_Proxy(IInternetProtocolRoot *This, DWORD dwOptions);
//C void IInternetProtocolRoot_Terminate_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Terminate_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolRoot_Suspend_Proxy(IInternetProtocolRoot *This);
HRESULT IInternetProtocolRoot_Suspend_Proxy(IInternetProtocolRoot *This);
//C void IInternetProtocolRoot_Suspend_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Suspend_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolRoot_Resume_Proxy(IInternetProtocolRoot *This);
HRESULT IInternetProtocolRoot_Resume_Proxy(IInternetProtocolRoot *This);
//C void IInternetProtocolRoot_Resume_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolRoot_Resume_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0196_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0196_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0196_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0196_v0_0_s_ifspec;
//C typedef IInternetProtocol *LPIINTERNETPROTOCOL;
alias IInternetProtocol *LPIINTERNETPROTOCOL;
//C typedef struct IInternetProtocolVtbl {
//C HRESULT ( *QueryInterface)(IInternetProtocol *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetProtocol *This);
//C ULONG ( *Release)(IInternetProtocol *This);
//C HRESULT ( *Start)(IInternetProtocol *This,LPCWSTR szUrl,IInternetProtocolSink *pOIProtSink,IInternetBindInfo *pOIBindInfo,DWORD grfPI,HANDLE_PTR dwReserved);
//C HRESULT ( *Continue)(IInternetProtocol *This,PROTOCOLDATA *pProtocolData);
//C HRESULT ( *Abort)(IInternetProtocol *This,HRESULT hrReason,DWORD dwOptions);
//C HRESULT ( *Terminate)(IInternetProtocol *This,DWORD dwOptions);
//C HRESULT ( *Suspend)(IInternetProtocol *This);
//C HRESULT ( *Resume)(IInternetProtocol *This);
//C HRESULT ( *Read)(IInternetProtocol *This,void *pv,ULONG cb,ULONG *pcbRead);
//C HRESULT ( *Seek)(IInternetProtocol *This,LARGE_INTEGER dlibMove,DWORD dwOrigin,ULARGE_INTEGER *plibNewPosition);
//C HRESULT ( *LockRequest)(IInternetProtocol *This,DWORD dwOptions);
//C HRESULT ( *UnlockRequest)(IInternetProtocol *This);
//C } IInternetProtocolVtbl;
struct IInternetProtocolVtbl
{
HRESULT function(IInternetProtocol *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetProtocol *This)AddRef;
ULONG function(IInternetProtocol *This)Release;
HRESULT function(IInternetProtocol *This, LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved)Start;
HRESULT function(IInternetProtocol *This, PROTOCOLDATA *pProtocolData)Continue;
HRESULT function(IInternetProtocol *This, HRESULT hrReason, DWORD dwOptions)Abort;
HRESULT function(IInternetProtocol *This, DWORD dwOptions)Terminate;
HRESULT function(IInternetProtocol *This)Suspend;
HRESULT function(IInternetProtocol *This)Resume;
HRESULT function(IInternetProtocol *This, void *pv, ULONG cb, ULONG *pcbRead)Read;
HRESULT function(IInternetProtocol *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)Seek;
HRESULT function(IInternetProtocol *This, DWORD dwOptions)LockRequest;
HRESULT function(IInternetProtocol *This)UnlockRequest;
}
//C struct IInternetProtocol {
//C struct IInternetProtocolVtbl *lpVtbl;
//C };
struct IInternetProtocol
{
IInternetProtocolVtbl *lpVtbl;
}
//C HRESULT IInternetProtocol_Read_Proxy(IInternetProtocol *This,void *pv,ULONG cb,ULONG *pcbRead);
HRESULT IInternetProtocol_Read_Proxy(IInternetProtocol *This, void *pv, ULONG cb, ULONG *pcbRead);
//C void IInternetProtocol_Read_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocol_Read_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocol_Seek_Proxy(IInternetProtocol *This,LARGE_INTEGER dlibMove,DWORD dwOrigin,ULARGE_INTEGER *plibNewPosition);
HRESULT IInternetProtocol_Seek_Proxy(IInternetProtocol *This, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition);
//C void IInternetProtocol_Seek_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocol_Seek_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocol_LockRequest_Proxy(IInternetProtocol *This,DWORD dwOptions);
HRESULT IInternetProtocol_LockRequest_Proxy(IInternetProtocol *This, DWORD dwOptions);
//C void IInternetProtocol_LockRequest_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocol_LockRequest_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocol_UnlockRequest_Proxy(IInternetProtocol *This);
HRESULT IInternetProtocol_UnlockRequest_Proxy(IInternetProtocol *This);
//C void IInternetProtocol_UnlockRequest_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocol_UnlockRequest_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0197_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0197_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0197_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0197_v0_0_s_ifspec;
//C typedef IInternetProtocolSink *LPIINTERNETPROTOCOLSINK;
alias IInternetProtocolSink *LPIINTERNETPROTOCOLSINK;
//C typedef struct IInternetProtocolSinkVtbl {
//C HRESULT ( *QueryInterface)(IInternetProtocolSink *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetProtocolSink *This);
//C ULONG ( *Release)(IInternetProtocolSink *This);
//C HRESULT ( *Switch)(IInternetProtocolSink *This,PROTOCOLDATA *pProtocolData);
//C HRESULT ( *ReportProgress)(IInternetProtocolSink *This,ULONG ulStatusCode,LPCWSTR szStatusText);
//C HRESULT ( *ReportData)(IInternetProtocolSink *This,DWORD grfBSCF,ULONG ulProgress,ULONG ulProgressMax);
//C HRESULT ( *ReportResult)(IInternetProtocolSink *This,HRESULT hrResult,DWORD dwError,LPCWSTR szResult);
//C } IInternetProtocolSinkVtbl;
struct IInternetProtocolSinkVtbl
{
HRESULT function(IInternetProtocolSink *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetProtocolSink *This)AddRef;
ULONG function(IInternetProtocolSink *This)Release;
HRESULT function(IInternetProtocolSink *This, PROTOCOLDATA *pProtocolData)Switch;
HRESULT function(IInternetProtocolSink *This, ULONG ulStatusCode, LPCWSTR szStatusText)ReportProgress;
HRESULT function(IInternetProtocolSink *This, DWORD grfBSCF, ULONG ulProgress, ULONG ulProgressMax)ReportData;
HRESULT function(IInternetProtocolSink *This, HRESULT hrResult, DWORD dwError, LPCWSTR szResult)ReportResult;
}
//C struct IInternetProtocolSink {
//C struct IInternetProtocolSinkVtbl *lpVtbl;
//C };
struct IInternetProtocolSink
{
IInternetProtocolSinkVtbl *lpVtbl;
}
//C HRESULT IInternetProtocolSink_Switch_Proxy(IInternetProtocolSink *This,PROTOCOLDATA *pProtocolData);
HRESULT IInternetProtocolSink_Switch_Proxy(IInternetProtocolSink *This, PROTOCOLDATA *pProtocolData);
//C void IInternetProtocolSink_Switch_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSink_Switch_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolSink_ReportProgress_Proxy(IInternetProtocolSink *This,ULONG ulStatusCode,LPCWSTR szStatusText);
HRESULT IInternetProtocolSink_ReportProgress_Proxy(IInternetProtocolSink *This, ULONG ulStatusCode, LPCWSTR szStatusText);
//C void IInternetProtocolSink_ReportProgress_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSink_ReportProgress_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolSink_ReportData_Proxy(IInternetProtocolSink *This,DWORD grfBSCF,ULONG ulProgress,ULONG ulProgressMax);
HRESULT IInternetProtocolSink_ReportData_Proxy(IInternetProtocolSink *This, DWORD grfBSCF, ULONG ulProgress, ULONG ulProgressMax);
//C void IInternetProtocolSink_ReportData_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSink_ReportData_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolSink_ReportResult_Proxy(IInternetProtocolSink *This,HRESULT hrResult,DWORD dwError,LPCWSTR szResult);
HRESULT IInternetProtocolSink_ReportResult_Proxy(IInternetProtocolSink *This, HRESULT hrResult, DWORD dwError, LPCWSTR szResult);
//C void IInternetProtocolSink_ReportResult_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSink_ReportResult_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0198_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0198_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0198_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0198_v0_0_s_ifspec;
//C typedef IInternetProtocolSinkStackable *LPIINTERNETPROTOCOLSINKStackable;
alias IInternetProtocolSinkStackable *LPIINTERNETPROTOCOLSINKStackable;
//C typedef struct IInternetProtocolSinkStackableVtbl {
//C HRESULT ( *QueryInterface)(IInternetProtocolSinkStackable *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetProtocolSinkStackable *This);
//C ULONG ( *Release)(IInternetProtocolSinkStackable *This);
//C HRESULT ( *SwitchSink)(IInternetProtocolSinkStackable *This,IInternetProtocolSink *pOIProtSink);
//C HRESULT ( *CommitSwitch)(IInternetProtocolSinkStackable *This);
//C HRESULT ( *RollbackSwitch)(IInternetProtocolSinkStackable *This);
//C } IInternetProtocolSinkStackableVtbl;
struct IInternetProtocolSinkStackableVtbl
{
HRESULT function(IInternetProtocolSinkStackable *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetProtocolSinkStackable *This)AddRef;
ULONG function(IInternetProtocolSinkStackable *This)Release;
HRESULT function(IInternetProtocolSinkStackable *This, IInternetProtocolSink *pOIProtSink)SwitchSink;
HRESULT function(IInternetProtocolSinkStackable *This)CommitSwitch;
HRESULT function(IInternetProtocolSinkStackable *This)RollbackSwitch;
}
//C struct IInternetProtocolSinkStackable {
//C struct IInternetProtocolSinkStackableVtbl *lpVtbl;
//C };
struct IInternetProtocolSinkStackable
{
IInternetProtocolSinkStackableVtbl *lpVtbl;
}
//C HRESULT IInternetProtocolSinkStackable_SwitchSink_Proxy(IInternetProtocolSinkStackable *This,IInternetProtocolSink *pOIProtSink);
HRESULT IInternetProtocolSinkStackable_SwitchSink_Proxy(IInternetProtocolSinkStackable *This, IInternetProtocolSink *pOIProtSink);
//C void IInternetProtocolSinkStackable_SwitchSink_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSinkStackable_SwitchSink_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolSinkStackable_CommitSwitch_Proxy(IInternetProtocolSinkStackable *This);
HRESULT IInternetProtocolSinkStackable_CommitSwitch_Proxy(IInternetProtocolSinkStackable *This);
//C void IInternetProtocolSinkStackable_CommitSwitch_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSinkStackable_CommitSwitch_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolSinkStackable_RollbackSwitch_Proxy(IInternetProtocolSinkStackable *This);
HRESULT IInternetProtocolSinkStackable_RollbackSwitch_Proxy(IInternetProtocolSinkStackable *This);
//C void IInternetProtocolSinkStackable_RollbackSwitch_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolSinkStackable_RollbackSwitch_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0199_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0199_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0199_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0199_v0_0_s_ifspec;
//C typedef IInternetSession *LPIINTERNETSESSION;
alias IInternetSession *LPIINTERNETSESSION;
//C typedef enum _tagOIBDG_FLAGS {
//C OIBDG_APARTMENTTHREADED = 0x100,OIBDG_DATAONLY = 0x1000
//C } OIBDG_FLAGS;
enum _tagOIBDG_FLAGS
{
OIBDG_APARTMENTTHREADED = 256,
OIBDG_DATAONLY = 4096,
}
alias _tagOIBDG_FLAGS OIBDG_FLAGS;
//C typedef struct IInternetSessionVtbl {
//C HRESULT ( *QueryInterface)(IInternetSession *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetSession *This);
//C ULONG ( *Release)(IInternetSession *This);
//C HRESULT ( *RegisterNameSpace)(IInternetSession *This,IClassFactory *pCF,const IID *const rclsid,LPCWSTR pwzProtocol,ULONG cPatterns,const LPCWSTR *ppwzPatterns,DWORD dwReserved);
//C HRESULT ( *UnregisterNameSpace)(IInternetSession *This,IClassFactory *pCF,LPCWSTR pszProtocol);
//C HRESULT ( *RegisterMimeFilter)(IInternetSession *This,IClassFactory *pCF,const IID *const rclsid,LPCWSTR pwzType);
//C HRESULT ( *UnregisterMimeFilter)(IInternetSession *This,IClassFactory *pCF,LPCWSTR pwzType);
//C HRESULT ( *CreateBinding)(IInternetSession *This,LPBC pBC,LPCWSTR szUrl,IUnknown *pUnkOuter,IUnknown **ppUnk,IInternetProtocol **ppOInetProt,DWORD dwOption);
//C HRESULT ( *SetSessionOption)(IInternetSession *This,DWORD dwOption,LPVOID pBuffer,DWORD dwBufferLength,DWORD dwReserved);
//C HRESULT ( *GetSessionOption)(IInternetSession *This,DWORD dwOption,LPVOID pBuffer,DWORD *pdwBufferLength,DWORD dwReserved);
//C } IInternetSessionVtbl;
struct IInternetSessionVtbl
{
HRESULT function(IInternetSession *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetSession *This)AddRef;
ULONG function(IInternetSession *This)Release;
HRESULT function(IInternetSession *This, IClassFactory *pCF, IID *rclsid, LPCWSTR pwzProtocol, ULONG cPatterns, LPCWSTR *ppwzPatterns, DWORD dwReserved)RegisterNameSpace;
HRESULT function(IInternetSession *This, IClassFactory *pCF, LPCWSTR pszProtocol)UnregisterNameSpace;
HRESULT function(IInternetSession *This, IClassFactory *pCF, IID *rclsid, LPCWSTR pwzType)RegisterMimeFilter;
HRESULT function(IInternetSession *This, IClassFactory *pCF, LPCWSTR pwzType)UnregisterMimeFilter;
HRESULT function(IInternetSession *This, LPBC pBC, LPCWSTR szUrl, IUnknown *pUnkOuter, IUnknown **ppUnk, IInternetProtocol **ppOInetProt, DWORD dwOption)CreateBinding;
HRESULT function(IInternetSession *This, DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength, DWORD dwReserved)SetSessionOption;
HRESULT function(IInternetSession *This, DWORD dwOption, LPVOID pBuffer, DWORD *pdwBufferLength, DWORD dwReserved)GetSessionOption;
}
//C struct IInternetSession {
//C struct IInternetSessionVtbl *lpVtbl;
//C };
struct IInternetSession
{
IInternetSessionVtbl *lpVtbl;
}
//C HRESULT IInternetSession_RegisterNameSpace_Proxy(IInternetSession *This,IClassFactory *pCF,const IID *const rclsid,LPCWSTR pwzProtocol,ULONG cPatterns,const LPCWSTR *ppwzPatterns,DWORD dwReserved);
HRESULT IInternetSession_RegisterNameSpace_Proxy(IInternetSession *This, IClassFactory *pCF, IID *rclsid, LPCWSTR pwzProtocol, ULONG cPatterns, LPCWSTR *ppwzPatterns, DWORD dwReserved);
//C void IInternetSession_RegisterNameSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_RegisterNameSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_UnregisterNameSpace_Proxy(IInternetSession *This,IClassFactory *pCF,LPCWSTR pszProtocol);
HRESULT IInternetSession_UnregisterNameSpace_Proxy(IInternetSession *This, IClassFactory *pCF, LPCWSTR pszProtocol);
//C void IInternetSession_UnregisterNameSpace_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_UnregisterNameSpace_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_RegisterMimeFilter_Proxy(IInternetSession *This,IClassFactory *pCF,const IID *const rclsid,LPCWSTR pwzType);
HRESULT IInternetSession_RegisterMimeFilter_Proxy(IInternetSession *This, IClassFactory *pCF, IID *rclsid, LPCWSTR pwzType);
//C void IInternetSession_RegisterMimeFilter_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_RegisterMimeFilter_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_UnregisterMimeFilter_Proxy(IInternetSession *This,IClassFactory *pCF,LPCWSTR pwzType);
HRESULT IInternetSession_UnregisterMimeFilter_Proxy(IInternetSession *This, IClassFactory *pCF, LPCWSTR pwzType);
//C void IInternetSession_UnregisterMimeFilter_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_UnregisterMimeFilter_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_CreateBinding_Proxy(IInternetSession *This,LPBC pBC,LPCWSTR szUrl,IUnknown *pUnkOuter,IUnknown **ppUnk,IInternetProtocol **ppOInetProt,DWORD dwOption);
HRESULT IInternetSession_CreateBinding_Proxy(IInternetSession *This, LPBC pBC, LPCWSTR szUrl, IUnknown *pUnkOuter, IUnknown **ppUnk, IInternetProtocol **ppOInetProt, DWORD dwOption);
//C void IInternetSession_CreateBinding_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_CreateBinding_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_SetSessionOption_Proxy(IInternetSession *This,DWORD dwOption,LPVOID pBuffer,DWORD dwBufferLength,DWORD dwReserved);
HRESULT IInternetSession_SetSessionOption_Proxy(IInternetSession *This, DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength, DWORD dwReserved);
//C void IInternetSession_SetSessionOption_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_SetSessionOption_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSession_GetSessionOption_Proxy(IInternetSession *This,DWORD dwOption,LPVOID pBuffer,DWORD *pdwBufferLength,DWORD dwReserved);
HRESULT IInternetSession_GetSessionOption_Proxy(IInternetSession *This, DWORD dwOption, LPVOID pBuffer, DWORD *pdwBufferLength, DWORD dwReserved);
//C void IInternetSession_GetSessionOption_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSession_GetSessionOption_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0200_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0200_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0200_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0200_v0_0_s_ifspec;
//C typedef IInternetThreadSwitch *LPIINTERNETTHREADSWITCH;
alias IInternetThreadSwitch *LPIINTERNETTHREADSWITCH;
//C typedef struct IInternetThreadSwitchVtbl {
//C HRESULT ( *QueryInterface)(IInternetThreadSwitch *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetThreadSwitch *This);
//C ULONG ( *Release)(IInternetThreadSwitch *This);
//C HRESULT ( *Prepare)(IInternetThreadSwitch *This);
//C HRESULT ( *Continue)(IInternetThreadSwitch *This);
//C } IInternetThreadSwitchVtbl;
struct IInternetThreadSwitchVtbl
{
HRESULT function(IInternetThreadSwitch *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetThreadSwitch *This)AddRef;
ULONG function(IInternetThreadSwitch *This)Release;
HRESULT function(IInternetThreadSwitch *This)Prepare;
HRESULT function(IInternetThreadSwitch *This)Continue;
}
//C struct IInternetThreadSwitch {
//C struct IInternetThreadSwitchVtbl *lpVtbl;
//C };
struct IInternetThreadSwitch
{
IInternetThreadSwitchVtbl *lpVtbl;
}
//C HRESULT IInternetThreadSwitch_Prepare_Proxy(IInternetThreadSwitch *This);
HRESULT IInternetThreadSwitch_Prepare_Proxy(IInternetThreadSwitch *This);
//C void IInternetThreadSwitch_Prepare_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetThreadSwitch_Prepare_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetThreadSwitch_Continue_Proxy(IInternetThreadSwitch *This);
HRESULT IInternetThreadSwitch_Continue_Proxy(IInternetThreadSwitch *This);
//C void IInternetThreadSwitch_Continue_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetThreadSwitch_Continue_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0201_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0201_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0201_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0201_v0_0_s_ifspec;
//C typedef IInternetPriority *LPIINTERNETPRIORITY;
alias IInternetPriority *LPIINTERNETPRIORITY;
//C typedef struct IInternetPriorityVtbl {
//C HRESULT ( *QueryInterface)(IInternetPriority *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetPriority *This);
//C ULONG ( *Release)(IInternetPriority *This);
//C HRESULT ( *SetPriority)(IInternetPriority *This,LONG nPriority);
//C HRESULT ( *GetPriority)(IInternetPriority *This,LONG *pnPriority);
//C } IInternetPriorityVtbl;
struct IInternetPriorityVtbl
{
HRESULT function(IInternetPriority *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetPriority *This)AddRef;
ULONG function(IInternetPriority *This)Release;
HRESULT function(IInternetPriority *This, LONG nPriority)SetPriority;
HRESULT function(IInternetPriority *This, LONG *pnPriority)GetPriority;
}
//C struct IInternetPriority {
//C struct IInternetPriorityVtbl *lpVtbl;
//C };
struct IInternetPriority
{
IInternetPriorityVtbl *lpVtbl;
}
//C HRESULT IInternetPriority_SetPriority_Proxy(IInternetPriority *This,LONG nPriority);
HRESULT IInternetPriority_SetPriority_Proxy(IInternetPriority *This, LONG nPriority);
//C void IInternetPriority_SetPriority_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetPriority_SetPriority_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetPriority_GetPriority_Proxy(IInternetPriority *This,LONG *pnPriority);
HRESULT IInternetPriority_GetPriority_Proxy(IInternetPriority *This, LONG *pnPriority);
//C void IInternetPriority_GetPriority_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetPriority_GetPriority_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0202_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0202_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0202_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0202_v0_0_s_ifspec;
//C typedef IInternetProtocolInfo *LPIINTERNETPROTOCOLINFO;
alias IInternetProtocolInfo *LPIINTERNETPROTOCOLINFO;
//C typedef enum _tagPARSEACTION {
//C PARSE_CANONICALIZE = 1,
//C PARSE_FRIENDLY,PARSE_SECURITY_URL,PARSE_ROOTDOCUMENT,PARSE_DOCUMENT,PARSE_ANCHOR,
//C PARSE_ENCODE,PARSE_DECODE,PARSE_PATH_FROM_URL,PARSE_URL_FROM_PATH,PARSE_MIME,
//C PARSE_SERVER,PARSE_SCHEMA,PARSE_SITE,PARSE_DOMAIN,PARSE_LOCATION,PARSE_SECURITY_DOMAIN,
//C PARSE_ESCAPE,PARSE_UNESCAPE
//C } PARSEACTION;
enum _tagPARSEACTION
{
PARSE_CANONICALIZE = 1,
PARSE_FRIENDLY,
PARSE_SECURITY_URL,
PARSE_ROOTDOCUMENT,
PARSE_DOCUMENT,
PARSE_ANCHOR,
PARSE_ENCODE,
PARSE_DECODE,
PARSE_PATH_FROM_URL,
PARSE_URL_FROM_PATH,
PARSE_MIME,
PARSE_SERVER,
PARSE_SCHEMA,
PARSE_SITE,
PARSE_DOMAIN,
PARSE_LOCATION,
PARSE_SECURITY_DOMAIN,
PARSE_ESCAPE,
PARSE_UNESCAPE,
}
alias _tagPARSEACTION PARSEACTION;
//C typedef enum _tagPSUACTION {
//C PSU_DEFAULT = 1,
//C PSU_SECURITY_URL_ONLY
//C } PSUACTION;
enum _tagPSUACTION
{
PSU_DEFAULT = 1,
PSU_SECURITY_URL_ONLY,
}
alias _tagPSUACTION PSUACTION;
//C typedef enum _tagQUERYOPTION {
//C QUERY_EXPIRATION_DATE = 1,
//C QUERY_TIME_OF_LAST_CHANGE,QUERY_CONTENT_ENCODING,QUERY_CONTENT_TYPE,QUERY_REFRESH,
//C QUERY_RECOMBINE,QUERY_CAN_NAVIGATE,QUERY_USES_NETWORK,QUERY_IS_CACHED,QUERY_IS_INSTALLEDENTRY,
//C QUERY_IS_CACHED_OR_MAPPED,QUERY_USES_CACHE,QUERY_IS_SECURE,QUERY_IS_SAFE
//C } QUERYOPTION;
enum _tagQUERYOPTION
{
QUERY_EXPIRATION_DATE = 1,
QUERY_TIME_OF_LAST_CHANGE,
QUERY_CONTENT_ENCODING,
QUERY_CONTENT_TYPE,
QUERY_REFRESH,
QUERY_RECOMBINE,
QUERY_CAN_NAVIGATE,
QUERY_USES_NETWORK,
QUERY_IS_CACHED,
QUERY_IS_INSTALLEDENTRY,
QUERY_IS_CACHED_OR_MAPPED,
QUERY_USES_CACHE,
QUERY_IS_SECURE,
QUERY_IS_SAFE,
}
alias _tagQUERYOPTION QUERYOPTION;
//C typedef struct IInternetProtocolInfoVtbl {
//C HRESULT ( *QueryInterface)(IInternetProtocolInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetProtocolInfo *This);
//C ULONG ( *Release)(IInternetProtocolInfo *This);
//C HRESULT ( *ParseUrl)(IInternetProtocolInfo *This,LPCWSTR pwzUrl,PARSEACTION ParseAction,DWORD dwParseFlags,LPWSTR pwzResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
//C HRESULT ( *CombineUrl)(IInternetProtocolInfo *This,LPCWSTR pwzBaseUrl,LPCWSTR pwzRelativeUrl,DWORD dwCombineFlags,LPWSTR pwzResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
//C HRESULT ( *CompareUrl)(IInternetProtocolInfo *This,LPCWSTR pwzUrl1,LPCWSTR pwzUrl2,DWORD dwCompareFlags);
//C HRESULT ( *QueryInfo)(IInternetProtocolInfo *This,LPCWSTR pwzUrl,QUERYOPTION OueryOption,DWORD dwQueryFlags,LPVOID pBuffer,DWORD cbBuffer,DWORD *pcbBuf,DWORD dwReserved);
//C } IInternetProtocolInfoVtbl;
struct IInternetProtocolInfoVtbl
{
HRESULT function(IInternetProtocolInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetProtocolInfo *This)AddRef;
ULONG function(IInternetProtocolInfo *This)Release;
HRESULT function(IInternetProtocolInfo *This, LPCWSTR pwzUrl, PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)ParseUrl;
HRESULT function(IInternetProtocolInfo *This, LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved)CombineUrl;
HRESULT function(IInternetProtocolInfo *This, LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags)CompareUrl;
HRESULT function(IInternetProtocolInfo *This, LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved)QueryInfo;
}
//C struct IInternetProtocolInfo {
//C struct IInternetProtocolInfoVtbl *lpVtbl;
//C };
struct IInternetProtocolInfo
{
IInternetProtocolInfoVtbl *lpVtbl;
}
//C HRESULT IInternetProtocolInfo_ParseUrl_Proxy(IInternetProtocolInfo *This,LPCWSTR pwzUrl,PARSEACTION ParseAction,DWORD dwParseFlags,LPWSTR pwzResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
HRESULT IInternetProtocolInfo_ParseUrl_Proxy(IInternetProtocolInfo *This, LPCWSTR pwzUrl, PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
//C void IInternetProtocolInfo_ParseUrl_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolInfo_ParseUrl_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolInfo_CombineUrl_Proxy(IInternetProtocolInfo *This,LPCWSTR pwzBaseUrl,LPCWSTR pwzRelativeUrl,DWORD dwCombineFlags,LPWSTR pwzResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
HRESULT IInternetProtocolInfo_CombineUrl_Proxy(IInternetProtocolInfo *This, LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
//C void IInternetProtocolInfo_CombineUrl_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolInfo_CombineUrl_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolInfo_CompareUrl_Proxy(IInternetProtocolInfo *This,LPCWSTR pwzUrl1,LPCWSTR pwzUrl2,DWORD dwCompareFlags);
HRESULT IInternetProtocolInfo_CompareUrl_Proxy(IInternetProtocolInfo *This, LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags);
//C void IInternetProtocolInfo_CompareUrl_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolInfo_CompareUrl_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetProtocolInfo_QueryInfo_Proxy(IInternetProtocolInfo *This,LPCWSTR pwzUrl,QUERYOPTION OueryOption,DWORD dwQueryFlags,LPVOID pBuffer,DWORD cbBuffer,DWORD *pcbBuf,DWORD dwReserved);
HRESULT IInternetProtocolInfo_QueryInfo_Proxy(IInternetProtocolInfo *This, LPCWSTR pwzUrl, QUERYOPTION OueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved);
//C void IInternetProtocolInfo_QueryInfo_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetProtocolInfo_QueryInfo_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern HRESULT CoInternetParseUrl(LPCWSTR pwzUrl,PARSEACTION ParseAction,DWORD dwFlags,LPWSTR pszResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
HRESULT CoInternetParseUrl(LPCWSTR pwzUrl, PARSEACTION ParseAction, DWORD dwFlags, LPWSTR pszResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
//C extern HRESULT CoInternetCombineUrl(LPCWSTR pwzBaseUrl,LPCWSTR pwzRelativeUrl,DWORD dwCombineFlags,LPWSTR pszResult,DWORD cchResult,DWORD *pcchResult,DWORD dwReserved);
HRESULT CoInternetCombineUrl(LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pszResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
//C extern HRESULT CoInternetCompareUrl(LPCWSTR pwzUrl1,LPCWSTR pwzUrl2,DWORD dwFlags);
HRESULT CoInternetCompareUrl(LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwFlags);
//C extern HRESULT CoInternetGetProtocolFlags(LPCWSTR pwzUrl,DWORD *pdwFlags,DWORD dwReserved);
HRESULT CoInternetGetProtocolFlags(LPCWSTR pwzUrl, DWORD *pdwFlags, DWORD dwReserved);
//C extern HRESULT CoInternetQueryInfo(LPCWSTR pwzUrl,QUERYOPTION QueryOptions,DWORD dwQueryFlags,LPVOID pvBuffer,DWORD cbBuffer,DWORD *pcbBuffer,DWORD dwReserved);
HRESULT CoInternetQueryInfo(LPCWSTR pwzUrl, QUERYOPTION QueryOptions, DWORD dwQueryFlags, LPVOID pvBuffer, DWORD cbBuffer, DWORD *pcbBuffer, DWORD dwReserved);
//C extern HRESULT CoInternetGetSession(DWORD dwSessionMode,IInternetSession **ppIInternetSession,DWORD dwReserved);
HRESULT CoInternetGetSession(DWORD dwSessionMode, IInternetSession **ppIInternetSession, DWORD dwReserved);
//C extern HRESULT CoInternetGetSecurityUrl(LPCWSTR pwzUrl,LPWSTR *ppwzSecUrl,PSUACTION psuAction,DWORD dwReserved);
HRESULT CoInternetGetSecurityUrl(LPCWSTR pwzUrl, LPWSTR *ppwzSecUrl, PSUACTION psuAction, DWORD dwReserved);
//C extern HRESULT AsyncInstallDistributionUnit(LPCWSTR szDistUnit,LPCWSTR szTYPE,LPCWSTR szExt,DWORD dwFileVersionMS,DWORD dwFileVersionLS,LPCWSTR szURL,IBindCtx *pbc,LPVOID pvReserved,DWORD flags);
HRESULT AsyncInstallDistributionUnit(LPCWSTR szDistUnit, LPCWSTR szTYPE, LPCWSTR szExt, DWORD dwFileVersionMS, DWORD dwFileVersionLS, LPCWSTR szURL, IBindCtx *pbc, LPVOID pvReserved, DWORD flags);
//C typedef enum _tagINTERNETFEATURELIST {
//C FEATURE_OBJECT_CACHING = 0,
//C FEATURE_ZONE_ELEVATION,FEATURE_MIME_HANDLING,FEATURE_MIME_SNIFFING,
//C FEATURE_WINDOW_RESTRICTIONS,FEATURE_WEBOC_POPUPMANAGEMENT,
//C FEATURE_BEHAVIORS,FEATURE_DISABLE_MK_PROTOCOL,FEATURE_LOCALMACHINE_LOCKDOWN,
//C FEATURE_SECURITYBAND,FEATURE_RESTRICT_ACTIVEXINSTALL,FEATURE_VALIDATE_NAVIGATE_URL,
//C FEATURE_RESTRICT_FILEDOWNLOAD,FEATURE_ADDON_MANAGEMENT,FEATURE_PROTOCOL_LOCKDOWN,
//C FEATURE_HTTP_USERNAME_PASSWORD_DISABLE,FEATURE_SAFE_BINDTOOBJECT,
//C FEATURE_UNC_SAVEDFILECHECK,FEATURE_GET_URL_DOM_FILEPATH_UNENCODED,
//C FEATURE_ENTRY_COUNT
//C } INTERNETFEATURELIST;
enum _tagINTERNETFEATURELIST
{
FEATURE_OBJECT_CACHING,
FEATURE_ZONE_ELEVATION,
FEATURE_MIME_HANDLING,
FEATURE_MIME_SNIFFING,
FEATURE_WINDOW_RESTRICTIONS,
FEATURE_WEBOC_POPUPMANAGEMENT,
FEATURE_BEHAVIORS,
FEATURE_DISABLE_MK_PROTOCOL,
FEATURE_LOCALMACHINE_LOCKDOWN,
FEATURE_SECURITYBAND,
FEATURE_RESTRICT_ACTIVEXINSTALL,
FEATURE_VALIDATE_NAVIGATE_URL,
FEATURE_RESTRICT_FILEDOWNLOAD,
FEATURE_ADDON_MANAGEMENT,
FEATURE_PROTOCOL_LOCKDOWN,
FEATURE_HTTP_USERNAME_PASSWORD_DISABLE,
FEATURE_SAFE_BINDTOOBJECT,
FEATURE_UNC_SAVEDFILECHECK,
FEATURE_GET_URL_DOM_FILEPATH_UNENCODED,
FEATURE_ENTRY_COUNT,
}
alias _tagINTERNETFEATURELIST INTERNETFEATURELIST;
//C extern HRESULT CoInternetSetFeatureEnabled(INTERNETFEATURELIST FeatureEntry,DWORD dwFlags,WINBOOL fEnable);
HRESULT CoInternetSetFeatureEnabled(INTERNETFEATURELIST FeatureEntry, DWORD dwFlags, WINBOOL fEnable);
//C extern HRESULT CoInternetIsFeatureEnabled(INTERNETFEATURELIST FeatureEntry,DWORD dwFlags);
HRESULT CoInternetIsFeatureEnabled(INTERNETFEATURELIST FeatureEntry, DWORD dwFlags);
//C extern HRESULT CoInternetIsFeatureEnabledForUrl(INTERNETFEATURELIST FeatureEntry,DWORD dwFlags,LPCWSTR szURL,IInternetSecurityManager *pSecMgr);
HRESULT CoInternetIsFeatureEnabledForUrl(INTERNETFEATURELIST FeatureEntry, DWORD dwFlags, LPCWSTR szURL, IInternetSecurityManager *pSecMgr);
//C extern HRESULT CoInternetIsFeatureZoneElevationEnabled(LPCWSTR szFromURL,LPCWSTR szToURL,IInternetSecurityManager *pSecMgr,DWORD dwFlags);
HRESULT CoInternetIsFeatureZoneElevationEnabled(LPCWSTR szFromURL, LPCWSTR szToURL, IInternetSecurityManager *pSecMgr, DWORD dwFlags);
//C extern HRESULT CopyStgMedium(const STGMEDIUM *pcstgmedSrc,STGMEDIUM *pstgmedDest);
HRESULT CopyStgMedium(STGMEDIUM *pcstgmedSrc, STGMEDIUM *pstgmedDest);
//C extern HRESULT CopyBindInfo(const BINDINFO *pcbiSrc,BINDINFO *pbiDest);
HRESULT CopyBindInfo(BINDINFO *pcbiSrc, BINDINFO *pbiDest);
//C extern void ReleaseBindInfo(BINDINFO *pbindinfo);
void ReleaseBindInfo(BINDINFO *pbindinfo);
//C extern HRESULT CoInternetCreateSecurityManager(IServiceProvider *pSP,IInternetSecurityManager **ppSM,DWORD dwReserved);
HRESULT CoInternetCreateSecurityManager(IServiceProvider *pSP, IInternetSecurityManager **ppSM, DWORD dwReserved);
//C extern HRESULT CoInternetCreateZoneManager(IServiceProvider *pSP,IInternetZoneManager **ppZM,DWORD dwReserved);
HRESULT CoInternetCreateZoneManager(IServiceProvider *pSP, IInternetZoneManager **ppZM, DWORD dwReserved);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0203_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0203_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0203_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0203_v0_0_s_ifspec;
//C typedef struct IInternetSecurityMgrSiteVtbl {
//C HRESULT ( *QueryInterface)(IInternetSecurityMgrSite *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetSecurityMgrSite *This);
//C ULONG ( *Release)(IInternetSecurityMgrSite *This);
//C HRESULT ( *GetWindow)(IInternetSecurityMgrSite *This,HWND *phwnd);
//C HRESULT ( *EnableModeless)(IInternetSecurityMgrSite *This,WINBOOL fEnable);
//C } IInternetSecurityMgrSiteVtbl;
struct IInternetSecurityMgrSiteVtbl
{
HRESULT function(IInternetSecurityMgrSite *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetSecurityMgrSite *This)AddRef;
ULONG function(IInternetSecurityMgrSite *This)Release;
HRESULT function(IInternetSecurityMgrSite *This, HWND *phwnd)GetWindow;
HRESULT function(IInternetSecurityMgrSite *This, WINBOOL fEnable)EnableModeless;
}
//C struct IInternetSecurityMgrSite {
//C struct IInternetSecurityMgrSiteVtbl *lpVtbl;
//C };
struct IInternetSecurityMgrSite
{
IInternetSecurityMgrSiteVtbl *lpVtbl;
}
//C HRESULT IInternetSecurityMgrSite_GetWindow_Proxy(IInternetSecurityMgrSite *This,HWND *phwnd);
HRESULT IInternetSecurityMgrSite_GetWindow_Proxy(IInternetSecurityMgrSite *This, HWND *phwnd);
//C void IInternetSecurityMgrSite_GetWindow_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityMgrSite_GetWindow_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityMgrSite_EnableModeless_Proxy(IInternetSecurityMgrSite *This,WINBOOL fEnable);
HRESULT IInternetSecurityMgrSite_EnableModeless_Proxy(IInternetSecurityMgrSite *This, WINBOOL fEnable);
//C void IInternetSecurityMgrSite_EnableModeless_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityMgrSite_EnableModeless_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0204_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0204_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0204_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0204_v0_0_s_ifspec;
//C typedef enum __MIDL_IInternetSecurityManager_0001 {
//C PUAF_DEFAULT = 0,PUAF_NOUI = 0x1,PUAF_ISFILE = 0x2,PUAF_WARN_IF_DENIED = 0x4,PUAF_FORCEUI_FOREGROUND = 0x8,PUAF_CHECK_TIFS = 0x10,
//C PUAF_DONTCHECKBOXINDIALOG = 0x20,PUAF_TRUSTED = 0x40,PUAF_ACCEPT_WILDCARD_SCHEME = 0x80,PUAF_ENFORCERESTRICTED = 0x100,
//C PUAF_NOSAVEDFILECHECK = 0x200,PUAF_REQUIRESAVEDFILECHECK = 0x400,PUAF_LMZ_UNLOCKED = 0x10000,PUAF_LMZ_LOCKED = 0x20000,
//C PUAF_DEFAULTZONEPOL = 0x40000,PUAF_NPL_USE_LOCKED_IF_RESTRICTED = 0x80000,PUAF_NOUIIFLOCKED = 0x100000,PUAF_DRAGPROTOCOLCHECK = 0x200000
//C } PUAF;
enum __MIDL_IInternetSecurityManager_0001
{
PUAF_DEFAULT,
PUAF_NOUI,
PUAF_ISFILE,
PUAF_WARN_IF_DENIED = 4,
PUAF_FORCEUI_FOREGROUND = 8,
PUAF_CHECK_TIFS = 16,
PUAF_DONTCHECKBOXINDIALOG = 32,
PUAF_TRUSTED = 64,
PUAF_ACCEPT_WILDCARD_SCHEME = 128,
PUAF_ENFORCERESTRICTED = 256,
PUAF_NOSAVEDFILECHECK = 512,
PUAF_REQUIRESAVEDFILECHECK = 1024,
PUAF_LMZ_UNLOCKED = 65536,
PUAF_LMZ_LOCKED = 131072,
PUAF_DEFAULTZONEPOL = 262144,
PUAF_NPL_USE_LOCKED_IF_RESTRICTED = 524288,
PUAF_NOUIIFLOCKED = 1048576,
PUAF_DRAGPROTOCOLCHECK = 2097152,
}
alias __MIDL_IInternetSecurityManager_0001 PUAF;
//C typedef enum __MIDL_IInternetSecurityManager_0002 {
//C PUAFOUT_DEFAULT = 0,PUAFOUT_ISLOCKZONEPOLICY = 0x1
//C } PUAFOUT;
enum __MIDL_IInternetSecurityManager_0002
{
PUAFOUT_DEFAULT,
PUAFOUT_ISLOCKZONEPOLICY,
}
alias __MIDL_IInternetSecurityManager_0002 PUAFOUT;
//C typedef enum __MIDL_IInternetSecurityManager_0003 {
//C SZM_CREATE = 0,SZM_DELETE = 0x1
//C } SZM_FLAGS;
enum __MIDL_IInternetSecurityManager_0003
{
SZM_CREATE,
SZM_DELETE,
}
alias __MIDL_IInternetSecurityManager_0003 SZM_FLAGS;
//C typedef struct IInternetSecurityManagerVtbl {
//C HRESULT ( *QueryInterface)(IInternetSecurityManager *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetSecurityManager *This);
//C ULONG ( *Release)(IInternetSecurityManager *This);
//C HRESULT ( *SetSecuritySite)(IInternetSecurityManager *This,IInternetSecurityMgrSite *pSite);
//C HRESULT ( *GetSecuritySite)(IInternetSecurityManager *This,IInternetSecurityMgrSite **ppSite);
//C HRESULT ( *MapUrlToZone)(IInternetSecurityManager *This,LPCWSTR pwszUrl,DWORD *pdwZone,DWORD dwFlags);
//C HRESULT ( *GetSecurityId)(IInternetSecurityManager *This,LPCWSTR pwszUrl,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
//C HRESULT ( *ProcessUrlAction)(IInternetSecurityManager *This,LPCWSTR pwszUrl,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved);
//C HRESULT ( *QueryCustomPolicy)(IInternetSecurityManager *This,LPCWSTR pwszUrl,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwReserved);
//C HRESULT ( *SetZoneMapping)(IInternetSecurityManager *This,DWORD dwZone,LPCWSTR lpszPattern,DWORD dwFlags);
//C HRESULT ( *GetZoneMappings)(IInternetSecurityManager *This,DWORD dwZone,IEnumString **ppenumString,DWORD dwFlags);
//C } IInternetSecurityManagerVtbl;
struct IInternetSecurityManagerVtbl
{
HRESULT function(IInternetSecurityManager *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetSecurityManager *This)AddRef;
ULONG function(IInternetSecurityManager *This)Release;
HRESULT function(IInternetSecurityManager *This, IInternetSecurityMgrSite *pSite)SetSecuritySite;
HRESULT function(IInternetSecurityManager *This, IInternetSecurityMgrSite **ppSite)GetSecuritySite;
HRESULT function(IInternetSecurityManager *This, LPCWSTR pwszUrl, DWORD *pdwZone, DWORD dwFlags)MapUrlToZone;
HRESULT function(IInternetSecurityManager *This, LPCWSTR pwszUrl, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)GetSecurityId;
HRESULT function(IInternetSecurityManager *This, LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved)ProcessUrlAction;
HRESULT function(IInternetSecurityManager *This, LPCWSTR pwszUrl, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwReserved)QueryCustomPolicy;
HRESULT function(IInternetSecurityManager *This, DWORD dwZone, LPCWSTR lpszPattern, DWORD dwFlags)SetZoneMapping;
HRESULT function(IInternetSecurityManager *This, DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags)GetZoneMappings;
}
//C struct IInternetSecurityManager {
//C struct IInternetSecurityManagerVtbl *lpVtbl;
//C };
struct IInternetSecurityManager
{
IInternetSecurityManagerVtbl *lpVtbl;
}
//C HRESULT IInternetSecurityManager_SetSecuritySite_Proxy(IInternetSecurityManager *This,IInternetSecurityMgrSite *pSite);
HRESULT IInternetSecurityManager_SetSecuritySite_Proxy(IInternetSecurityManager *This, IInternetSecurityMgrSite *pSite);
//C void IInternetSecurityManager_SetSecuritySite_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_SetSecuritySite_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_GetSecuritySite_Proxy(IInternetSecurityManager *This,IInternetSecurityMgrSite **ppSite);
HRESULT IInternetSecurityManager_GetSecuritySite_Proxy(IInternetSecurityManager *This, IInternetSecurityMgrSite **ppSite);
//C void IInternetSecurityManager_GetSecuritySite_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_GetSecuritySite_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_MapUrlToZone_Proxy(IInternetSecurityManager *This,LPCWSTR pwszUrl,DWORD *pdwZone,DWORD dwFlags);
HRESULT IInternetSecurityManager_MapUrlToZone_Proxy(IInternetSecurityManager *This, LPCWSTR pwszUrl, DWORD *pdwZone, DWORD dwFlags);
//C void IInternetSecurityManager_MapUrlToZone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_MapUrlToZone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_GetSecurityId_Proxy(IInternetSecurityManager *This,LPCWSTR pwszUrl,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
HRESULT IInternetSecurityManager_GetSecurityId_Proxy(IInternetSecurityManager *This, LPCWSTR pwszUrl, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved);
//C void IInternetSecurityManager_GetSecurityId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_GetSecurityId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_ProcessUrlAction_Proxy(IInternetSecurityManager *This,LPCWSTR pwszUrl,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved);
HRESULT IInternetSecurityManager_ProcessUrlAction_Proxy(IInternetSecurityManager *This, LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved);
//C void IInternetSecurityManager_ProcessUrlAction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_ProcessUrlAction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_QueryCustomPolicy_Proxy(IInternetSecurityManager *This,LPCWSTR pwszUrl,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwReserved);
HRESULT IInternetSecurityManager_QueryCustomPolicy_Proxy(IInternetSecurityManager *This, LPCWSTR pwszUrl, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwReserved);
//C void IInternetSecurityManager_QueryCustomPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_QueryCustomPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_SetZoneMapping_Proxy(IInternetSecurityManager *This,DWORD dwZone,LPCWSTR lpszPattern,DWORD dwFlags);
HRESULT IInternetSecurityManager_SetZoneMapping_Proxy(IInternetSecurityManager *This, DWORD dwZone, LPCWSTR lpszPattern, DWORD dwFlags);
//C void IInternetSecurityManager_SetZoneMapping_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_SetZoneMapping_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetSecurityManager_GetZoneMappings_Proxy(IInternetSecurityManager *This,DWORD dwZone,IEnumString **ppenumString,DWORD dwFlags);
HRESULT IInternetSecurityManager_GetZoneMappings_Proxy(IInternetSecurityManager *This, DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags);
//C void IInternetSecurityManager_GetZoneMappings_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManager_GetZoneMappings_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct IInternetSecurityManagerExVtbl {
//C HRESULT ( *QueryInterface)(IInternetSecurityManagerEx *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetSecurityManagerEx *This);
//C ULONG ( *Release)(IInternetSecurityManagerEx *This);
//C HRESULT ( *SetSecuritySite)(IInternetSecurityManagerEx *This,IInternetSecurityMgrSite *pSite);
//C HRESULT ( *GetSecuritySite)(IInternetSecurityManagerEx *This,IInternetSecurityMgrSite **ppSite);
//C HRESULT ( *MapUrlToZone)(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,DWORD *pdwZone,DWORD dwFlags);
//C HRESULT ( *GetSecurityId)(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
//C HRESULT ( *ProcessUrlAction)(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved);
//C HRESULT ( *QueryCustomPolicy)(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwReserved);
//C HRESULT ( *SetZoneMapping)(IInternetSecurityManagerEx *This,DWORD dwZone,LPCWSTR lpszPattern,DWORD dwFlags);
//C HRESULT ( *GetZoneMappings)(IInternetSecurityManagerEx *This,DWORD dwZone,IEnumString **ppenumString,DWORD dwFlags);
//C HRESULT ( *ProcessUrlActionEx)(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved,DWORD *pdwOutFlags);
//C } IInternetSecurityManagerExVtbl;
struct IInternetSecurityManagerExVtbl
{
HRESULT function(IInternetSecurityManagerEx *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetSecurityManagerEx *This)AddRef;
ULONG function(IInternetSecurityManagerEx *This)Release;
HRESULT function(IInternetSecurityManagerEx *This, IInternetSecurityMgrSite *pSite)SetSecuritySite;
HRESULT function(IInternetSecurityManagerEx *This, IInternetSecurityMgrSite **ppSite)GetSecuritySite;
HRESULT function(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, DWORD *pdwZone, DWORD dwFlags)MapUrlToZone;
HRESULT function(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)GetSecurityId;
HRESULT function(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved)ProcessUrlAction;
HRESULT function(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwReserved)QueryCustomPolicy;
HRESULT function(IInternetSecurityManagerEx *This, DWORD dwZone, LPCWSTR lpszPattern, DWORD dwFlags)SetZoneMapping;
HRESULT function(IInternetSecurityManagerEx *This, DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags)GetZoneMappings;
HRESULT function(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved, DWORD *pdwOutFlags)ProcessUrlActionEx;
}
//C struct IInternetSecurityManagerEx {
//C struct IInternetSecurityManagerExVtbl *lpVtbl;
//C };
struct IInternetSecurityManagerEx
{
IInternetSecurityManagerExVtbl *lpVtbl;
}
//C HRESULT IInternetSecurityManagerEx_ProcessUrlActionEx_Proxy(IInternetSecurityManagerEx *This,LPCWSTR pwszUrl,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved,DWORD *pdwOutFlags);
HRESULT IInternetSecurityManagerEx_ProcessUrlActionEx_Proxy(IInternetSecurityManagerEx *This, LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved, DWORD *pdwOutFlags);
//C void IInternetSecurityManagerEx_ProcessUrlActionEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetSecurityManagerEx_ProcessUrlActionEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0205_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0205_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0205_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0205_v0_0_s_ifspec;
//C typedef struct IZoneIdentifierVtbl {
//C HRESULT ( *QueryInterface)(IZoneIdentifier *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IZoneIdentifier *This);
//C ULONG ( *Release)(IZoneIdentifier *This);
//C HRESULT ( *GetId)(IZoneIdentifier *This,DWORD *pdwZone);
//C HRESULT ( *SetId)(IZoneIdentifier *This,DWORD dwZone);
//C HRESULT ( *Remove)(IZoneIdentifier *This);
//C } IZoneIdentifierVtbl;
struct IZoneIdentifierVtbl
{
HRESULT function(IZoneIdentifier *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IZoneIdentifier *This)AddRef;
ULONG function(IZoneIdentifier *This)Release;
HRESULT function(IZoneIdentifier *This, DWORD *pdwZone)GetId;
HRESULT function(IZoneIdentifier *This, DWORD dwZone)SetId;
HRESULT function(IZoneIdentifier *This)Remove;
}
//C struct IZoneIdentifier {
//C struct IZoneIdentifierVtbl *lpVtbl;
//C };
struct IZoneIdentifier
{
IZoneIdentifierVtbl *lpVtbl;
}
//C HRESULT IZoneIdentifier_GetId_Proxy(IZoneIdentifier *This,DWORD *pdwZone);
HRESULT IZoneIdentifier_GetId_Proxy(IZoneIdentifier *This, DWORD *pdwZone);
//C void IZoneIdentifier_GetId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IZoneIdentifier_GetId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IZoneIdentifier_SetId_Proxy(IZoneIdentifier *This,DWORD dwZone);
HRESULT IZoneIdentifier_SetId_Proxy(IZoneIdentifier *This, DWORD dwZone);
//C void IZoneIdentifier_SetId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IZoneIdentifier_SetId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IZoneIdentifier_Remove_Proxy(IZoneIdentifier *This);
HRESULT IZoneIdentifier_Remove_Proxy(IZoneIdentifier *This);
//C void IZoneIdentifier_Remove_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IZoneIdentifier_Remove_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0207_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0207_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0207_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0207_v0_0_s_ifspec;
//C typedef struct IInternetHostSecurityManagerVtbl {
//C HRESULT ( *QueryInterface)(IInternetHostSecurityManager *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetHostSecurityManager *This);
//C ULONG ( *Release)(IInternetHostSecurityManager *This);
//C HRESULT ( *GetSecurityId)(IInternetHostSecurityManager *This,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
//C HRESULT ( *ProcessUrlAction)(IInternetHostSecurityManager *This,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved);
//C HRESULT ( *QueryCustomPolicy)(IInternetHostSecurityManager *This,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwReserved);
//C } IInternetHostSecurityManagerVtbl;
struct IInternetHostSecurityManagerVtbl
{
HRESULT function(IInternetHostSecurityManager *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetHostSecurityManager *This)AddRef;
ULONG function(IInternetHostSecurityManager *This)Release;
HRESULT function(IInternetHostSecurityManager *This, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)GetSecurityId;
HRESULT function(IInternetHostSecurityManager *This, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved)ProcessUrlAction;
HRESULT function(IInternetHostSecurityManager *This, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwReserved)QueryCustomPolicy;
}
//C struct IInternetHostSecurityManager {
//C struct IInternetHostSecurityManagerVtbl *lpVtbl;
//C };
struct IInternetHostSecurityManager
{
IInternetHostSecurityManagerVtbl *lpVtbl;
}
//C HRESULT IInternetHostSecurityManager_GetSecurityId_Proxy(IInternetHostSecurityManager *This,BYTE *pbSecurityId,DWORD *pcbSecurityId,DWORD_PTR dwReserved);
HRESULT IInternetHostSecurityManager_GetSecurityId_Proxy(IInternetHostSecurityManager *This, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved);
//C void IInternetHostSecurityManager_GetSecurityId_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetHostSecurityManager_GetSecurityId_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetHostSecurityManager_ProcessUrlAction_Proxy(IInternetHostSecurityManager *This,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwFlags,DWORD dwReserved);
HRESULT IInternetHostSecurityManager_ProcessUrlAction_Proxy(IInternetHostSecurityManager *This, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwFlags, DWORD dwReserved);
//C void IInternetHostSecurityManager_ProcessUrlAction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetHostSecurityManager_ProcessUrlAction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetHostSecurityManager_QueryCustomPolicy_Proxy(IInternetHostSecurityManager *This,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,BYTE *pContext,DWORD cbContext,DWORD dwReserved);
HRESULT IInternetHostSecurityManager_QueryCustomPolicy_Proxy(IInternetHostSecurityManager *This, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext, DWORD cbContext, DWORD dwReserved);
//C void IInternetHostSecurityManager_QueryCustomPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetHostSecurityManager_QueryCustomPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0208_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0208_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0208_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0208_v0_0_s_ifspec;
//C typedef IInternetZoneManager *LPURLZONEMANAGER;
alias IInternetZoneManager *LPURLZONEMANAGER;
//C typedef enum tagURLZONE {
//C URLZONE_PREDEFINED_MIN = 0,URLZONE_LOCAL_MACHINE = 0,
//C URLZONE_INTRANET,URLZONE_TRUSTED,URLZONE_INTERNET,URLZONE_UNTRUSTED,
//C URLZONE_PREDEFINED_MAX = 999,URLZONE_USER_MIN = 1000,
//C URLZONE_USER_MAX = 10000
//C } URLZONE;
enum tagURLZONE
{
URLZONE_PREDEFINED_MIN,
URLZONE_LOCAL_MACHINE = 0,
URLZONE_INTRANET,
URLZONE_TRUSTED,
URLZONE_INTERNET,
URLZONE_UNTRUSTED,
URLZONE_PREDEFINED_MAX = 999,
URLZONE_USER_MIN,
URLZONE_USER_MAX = 10000,
}
alias tagURLZONE URLZONE;
//C typedef enum tagURLTEMPLATE {
//C URLTEMPLATE_CUSTOM = 0,
//C URLTEMPLATE_PREDEFINED_MIN = 0x10000,
//C URLTEMPLATE_LOW = 0x10000,
//C URLTEMPLATE_MEDLOW = 0x10500,
//C URLTEMPLATE_MEDIUM = 0x11000,
//C URLTEMPLATE_HIGH = 0x12000,
//C URLTEMPLATE_PREDEFINED_MAX = 0x20000
//C } URLTEMPLATE;
enum tagURLTEMPLATE
{
URLTEMPLATE_CUSTOM,
URLTEMPLATE_PREDEFINED_MIN = 65536,
URLTEMPLATE_LOW = 65536,
URLTEMPLATE_MEDLOW = 66816,
URLTEMPLATE_MEDIUM = 69632,
URLTEMPLATE_HIGH = 73728,
URLTEMPLATE_PREDEFINED_MAX = 131072,
}
alias tagURLTEMPLATE URLTEMPLATE;
//C enum __MIDL_IInternetZoneManager_0001 {
//C MAX_ZONE_PATH = 260,MAX_ZONE_DESCRIPTION = 200
//C };
enum __MIDL_IInternetZoneManager_0001
{
MAX_ZONE_PATH = 260,
MAX_ZONE_DESCRIPTION = 200,
}
//C typedef enum __MIDL_IInternetZoneManager_0002 {
//C ZAFLAGS_CUSTOM_EDIT = 0x1,ZAFLAGS_ADD_SITES = 0x2,ZAFLAGS_REQUIRE_VERIFICATION = 0x4,ZAFLAGS_INCLUDE_PROXY_OVERRIDE = 0x8,
//C ZAFLAGS_INCLUDE_INTRANET_SITES = 0x10,ZAFLAGS_NO_UI = 0x20,ZAFLAGS_SUPPORTS_VERIFICATION = 0x40,ZAFLAGS_UNC_AS_INTRANET = 0x80,
//C ZAFLAGS_USE_LOCKED_ZONES = 0x10000
//C } ZAFLAGS;
enum __MIDL_IInternetZoneManager_0002
{
ZAFLAGS_CUSTOM_EDIT = 1,
ZAFLAGS_ADD_SITES,
ZAFLAGS_REQUIRE_VERIFICATION = 4,
ZAFLAGS_INCLUDE_PROXY_OVERRIDE = 8,
ZAFLAGS_INCLUDE_INTRANET_SITES = 16,
ZAFLAGS_NO_UI = 32,
ZAFLAGS_SUPPORTS_VERIFICATION = 64,
ZAFLAGS_UNC_AS_INTRANET = 128,
ZAFLAGS_USE_LOCKED_ZONES = 65536,
}
alias __MIDL_IInternetZoneManager_0002 ZAFLAGS;
//C typedef struct _ZONEATTRIBUTES {
//C ULONG cbSize;
//C WCHAR szDisplayName[260 ];
//C WCHAR szDescription[200 ];
//C WCHAR szIconPath[260 ];
//C DWORD dwTemplateMinLevel;
//C DWORD dwTemplateRecommended;
//C DWORD dwTemplateCurrentLevel;
//C DWORD dwFlags;
//C } ZONEATTRIBUTES;
struct _ZONEATTRIBUTES
{
ULONG cbSize;
WCHAR [260]szDisplayName;
WCHAR [200]szDescription;
WCHAR [260]szIconPath;
DWORD dwTemplateMinLevel;
DWORD dwTemplateRecommended;
DWORD dwTemplateCurrentLevel;
DWORD dwFlags;
}
alias _ZONEATTRIBUTES ZONEATTRIBUTES;
//C typedef struct _ZONEATTRIBUTES *LPZONEATTRIBUTES;
alias _ZONEATTRIBUTES *LPZONEATTRIBUTES;
//C typedef enum _URLZONEREG {
//C URLZONEREG_DEFAULT = 0,
//C URLZONEREG_HKLM,URLZONEREG_HKCU
//C } URLZONEREG;
enum _URLZONEREG
{
URLZONEREG_DEFAULT,
URLZONEREG_HKLM,
URLZONEREG_HKCU,
}
alias _URLZONEREG URLZONEREG;
//C typedef struct IInternetZoneManagerVtbl {
//C HRESULT ( *QueryInterface)(IInternetZoneManager *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetZoneManager *This);
//C ULONG ( *Release)(IInternetZoneManager *This);
//C HRESULT ( *GetZoneAttributes)(IInternetZoneManager *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
//C HRESULT ( *SetZoneAttributes)(IInternetZoneManager *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
//C HRESULT ( *GetZoneCustomPolicy)(IInternetZoneManager *This,DWORD dwZone,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *SetZoneCustomPolicy)(IInternetZoneManager *This,DWORD dwZone,const GUID *const guidKey,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *GetZoneActionPolicy)(IInternetZoneManager *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *SetZoneActionPolicy)(IInternetZoneManager *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *PromptAction)(IInternetZoneManager *This,DWORD dwAction,HWND hwndParent,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwPromptFlags);
//C HRESULT ( *LogAction)(IInternetZoneManager *This,DWORD dwAction,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwLogFlags);
//C HRESULT ( *CreateZoneEnumerator)(IInternetZoneManager *This,DWORD *pdwEnum,DWORD *pdwCount,DWORD dwFlags);
//C HRESULT ( *GetZoneAt)(IInternetZoneManager *This,DWORD dwEnum,DWORD dwIndex,DWORD *pdwZone);
//C HRESULT ( *DestroyZoneEnumerator)(IInternetZoneManager *This,DWORD dwEnum);
//C HRESULT ( *CopyTemplatePoliciesToZone)(IInternetZoneManager *This,DWORD dwTemplate,DWORD dwZone,DWORD dwReserved);
//C } IInternetZoneManagerVtbl;
struct IInternetZoneManagerVtbl
{
HRESULT function(IInternetZoneManager *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetZoneManager *This)AddRef;
ULONG function(IInternetZoneManager *This)Release;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes)GetZoneAttributes;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes)SetZoneAttributes;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, URLZONEREG urlZoneReg)GetZoneCustomPolicy;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, GUID *guidKey, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)SetZoneCustomPolicy;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)GetZoneActionPolicy;
HRESULT function(IInternetZoneManager *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)SetZoneActionPolicy;
HRESULT function(IInternetZoneManager *This, DWORD dwAction, HWND hwndParent, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwPromptFlags)PromptAction;
HRESULT function(IInternetZoneManager *This, DWORD dwAction, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwLogFlags)LogAction;
HRESULT function(IInternetZoneManager *This, DWORD *pdwEnum, DWORD *pdwCount, DWORD dwFlags)CreateZoneEnumerator;
HRESULT function(IInternetZoneManager *This, DWORD dwEnum, DWORD dwIndex, DWORD *pdwZone)GetZoneAt;
HRESULT function(IInternetZoneManager *This, DWORD dwEnum)DestroyZoneEnumerator;
HRESULT function(IInternetZoneManager *This, DWORD dwTemplate, DWORD dwZone, DWORD dwReserved)CopyTemplatePoliciesToZone;
}
//C struct IInternetZoneManager {
//C struct IInternetZoneManagerVtbl *lpVtbl;
//C };
struct IInternetZoneManager
{
IInternetZoneManagerVtbl *lpVtbl;
}
//C HRESULT IInternetZoneManager_GetZoneAttributes_Proxy(IInternetZoneManager *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
HRESULT IInternetZoneManager_GetZoneAttributes_Proxy(IInternetZoneManager *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes);
//C void IInternetZoneManager_GetZoneAttributes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_GetZoneAttributes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_SetZoneAttributes_Proxy(IInternetZoneManager *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
HRESULT IInternetZoneManager_SetZoneAttributes_Proxy(IInternetZoneManager *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes);
//C void IInternetZoneManager_SetZoneAttributes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_SetZoneAttributes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_GetZoneCustomPolicy_Proxy(IInternetZoneManager *This,DWORD dwZone,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,URLZONEREG urlZoneReg);
HRESULT IInternetZoneManager_GetZoneCustomPolicy_Proxy(IInternetZoneManager *This, DWORD dwZone, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, URLZONEREG urlZoneReg);
//C void IInternetZoneManager_GetZoneCustomPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_GetZoneCustomPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_SetZoneCustomPolicy_Proxy(IInternetZoneManager *This,DWORD dwZone,const GUID *const guidKey,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
HRESULT IInternetZoneManager_SetZoneCustomPolicy_Proxy(IInternetZoneManager *This, DWORD dwZone, GUID *guidKey, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg);
//C void IInternetZoneManager_SetZoneCustomPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_SetZoneCustomPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_GetZoneActionPolicy_Proxy(IInternetZoneManager *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
HRESULT IInternetZoneManager_GetZoneActionPolicy_Proxy(IInternetZoneManager *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg);
//C void IInternetZoneManager_GetZoneActionPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_GetZoneActionPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_SetZoneActionPolicy_Proxy(IInternetZoneManager *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
HRESULT IInternetZoneManager_SetZoneActionPolicy_Proxy(IInternetZoneManager *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg);
//C void IInternetZoneManager_SetZoneActionPolicy_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_SetZoneActionPolicy_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_PromptAction_Proxy(IInternetZoneManager *This,DWORD dwAction,HWND hwndParent,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwPromptFlags);
HRESULT IInternetZoneManager_PromptAction_Proxy(IInternetZoneManager *This, DWORD dwAction, HWND hwndParent, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwPromptFlags);
//C void IInternetZoneManager_PromptAction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_PromptAction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_LogAction_Proxy(IInternetZoneManager *This,DWORD dwAction,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwLogFlags);
HRESULT IInternetZoneManager_LogAction_Proxy(IInternetZoneManager *This, DWORD dwAction, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwLogFlags);
//C void IInternetZoneManager_LogAction_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_LogAction_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_CreateZoneEnumerator_Proxy(IInternetZoneManager *This,DWORD *pdwEnum,DWORD *pdwCount,DWORD dwFlags);
HRESULT IInternetZoneManager_CreateZoneEnumerator_Proxy(IInternetZoneManager *This, DWORD *pdwEnum, DWORD *pdwCount, DWORD dwFlags);
//C void IInternetZoneManager_CreateZoneEnumerator_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_CreateZoneEnumerator_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_GetZoneAt_Proxy(IInternetZoneManager *This,DWORD dwEnum,DWORD dwIndex,DWORD *pdwZone);
HRESULT IInternetZoneManager_GetZoneAt_Proxy(IInternetZoneManager *This, DWORD dwEnum, DWORD dwIndex, DWORD *pdwZone);
//C void IInternetZoneManager_GetZoneAt_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_GetZoneAt_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_DestroyZoneEnumerator_Proxy(IInternetZoneManager *This,DWORD dwEnum);
HRESULT IInternetZoneManager_DestroyZoneEnumerator_Proxy(IInternetZoneManager *This, DWORD dwEnum);
//C void IInternetZoneManager_DestroyZoneEnumerator_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_DestroyZoneEnumerator_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManager_CopyTemplatePoliciesToZone_Proxy(IInternetZoneManager *This,DWORD dwTemplate,DWORD dwZone,DWORD dwReserved);
HRESULT IInternetZoneManager_CopyTemplatePoliciesToZone_Proxy(IInternetZoneManager *This, DWORD dwTemplate, DWORD dwZone, DWORD dwReserved);
//C void IInternetZoneManager_CopyTemplatePoliciesToZone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManager_CopyTemplatePoliciesToZone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0209_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0209_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0209_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0209_v0_0_s_ifspec;
//C typedef struct IInternetZoneManagerExVtbl {
//C HRESULT ( *QueryInterface)(IInternetZoneManagerEx *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IInternetZoneManagerEx *This);
//C ULONG ( *Release)(IInternetZoneManagerEx *This);
//C HRESULT ( *GetZoneAttributes)(IInternetZoneManagerEx *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
//C HRESULT ( *SetZoneAttributes)(IInternetZoneManagerEx *This,DWORD dwZone,ZONEATTRIBUTES *pZoneAttributes);
//C HRESULT ( *GetZoneCustomPolicy)(IInternetZoneManagerEx *This,DWORD dwZone,const GUID *const guidKey,BYTE **ppPolicy,DWORD *pcbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *SetZoneCustomPolicy)(IInternetZoneManagerEx *This,DWORD dwZone,const GUID *const guidKey,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *GetZoneActionPolicy)(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *SetZoneActionPolicy)(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg);
//C HRESULT ( *PromptAction)(IInternetZoneManagerEx *This,DWORD dwAction,HWND hwndParent,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwPromptFlags);
//C HRESULT ( *LogAction)(IInternetZoneManagerEx *This,DWORD dwAction,LPCWSTR pwszUrl,LPCWSTR pwszText,DWORD dwLogFlags);
//C HRESULT ( *CreateZoneEnumerator)(IInternetZoneManagerEx *This,DWORD *pdwEnum,DWORD *pdwCount,DWORD dwFlags);
//C HRESULT ( *GetZoneAt)(IInternetZoneManagerEx *This,DWORD dwEnum,DWORD dwIndex,DWORD *pdwZone);
//C HRESULT ( *DestroyZoneEnumerator)(IInternetZoneManagerEx *This,DWORD dwEnum);
//C HRESULT ( *CopyTemplatePoliciesToZone)(IInternetZoneManagerEx *This,DWORD dwTemplate,DWORD dwZone,DWORD dwReserved);
//C HRESULT ( *GetZoneActionPolicyEx)(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg,DWORD dwFlags);
//C HRESULT ( *SetZoneActionPolicyEx)(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg,DWORD dwFlags);
//C } IInternetZoneManagerExVtbl;
struct IInternetZoneManagerExVtbl
{
HRESULT function(IInternetZoneManagerEx *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IInternetZoneManagerEx *This)AddRef;
ULONG function(IInternetZoneManagerEx *This)Release;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes)GetZoneAttributes;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, ZONEATTRIBUTES *pZoneAttributes)SetZoneAttributes;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, GUID *guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, URLZONEREG urlZoneReg)GetZoneCustomPolicy;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, GUID *guidKey, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)SetZoneCustomPolicy;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)GetZoneActionPolicy;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)SetZoneActionPolicy;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwAction, HWND hwndParent, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwPromptFlags)PromptAction;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwAction, LPCWSTR pwszUrl, LPCWSTR pwszText, DWORD dwLogFlags)LogAction;
HRESULT function(IInternetZoneManagerEx *This, DWORD *pdwEnum, DWORD *pdwCount, DWORD dwFlags)CreateZoneEnumerator;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwEnum, DWORD dwIndex, DWORD *pdwZone)GetZoneAt;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwEnum)DestroyZoneEnumerator;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwTemplate, DWORD dwZone, DWORD dwReserved)CopyTemplatePoliciesToZone;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg, DWORD dwFlags)GetZoneActionPolicyEx;
HRESULT function(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg, DWORD dwFlags)SetZoneActionPolicyEx;
}
//C struct IInternetZoneManagerEx {
//C struct IInternetZoneManagerExVtbl *lpVtbl;
//C };
struct IInternetZoneManagerEx
{
IInternetZoneManagerExVtbl *lpVtbl;
}
//C HRESULT IInternetZoneManagerEx_GetZoneActionPolicyEx_Proxy(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg,DWORD dwFlags);
HRESULT IInternetZoneManagerEx_GetZoneActionPolicyEx_Proxy(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg, DWORD dwFlags);
//C void IInternetZoneManagerEx_GetZoneActionPolicyEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManagerEx_GetZoneActionPolicyEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IInternetZoneManagerEx_SetZoneActionPolicyEx_Proxy(IInternetZoneManagerEx *This,DWORD dwZone,DWORD dwAction,BYTE *pPolicy,DWORD cbPolicy,URLZONEREG urlZoneReg,DWORD dwFlags);
HRESULT IInternetZoneManagerEx_SetZoneActionPolicyEx_Proxy(IInternetZoneManagerEx *This, DWORD dwZone, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg, DWORD dwFlags);
//C void IInternetZoneManagerEx_SetZoneActionPolicyEx_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IInternetZoneManagerEx_SetZoneActionPolicyEx_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct _tagCODEBASEHOLD {
//C ULONG cbSize;
//C LPWSTR szDistUnit;
//C LPWSTR szCodeBase;
//C DWORD dwVersionMS;
//C DWORD dwVersionLS;
//C DWORD dwStyle;
//C } CODEBASEHOLD;
struct _tagCODEBASEHOLD
{
ULONG cbSize;
LPWSTR szDistUnit;
LPWSTR szCodeBase;
DWORD dwVersionMS;
DWORD dwVersionLS;
DWORD dwStyle;
}
alias _tagCODEBASEHOLD CODEBASEHOLD;
//C typedef struct _tagCODEBASEHOLD *LPCODEBASEHOLD;
alias _tagCODEBASEHOLD *LPCODEBASEHOLD;
//C typedef struct _tagSOFTDISTINFO {
//C ULONG cbSize;
//C DWORD dwFlags;
//C DWORD dwAdState;
//C LPWSTR szTitle;
//C LPWSTR szAbstract;
//C LPWSTR szHREF;
//C DWORD dwInstalledVersionMS;
//C DWORD dwInstalledVersionLS;
//C DWORD dwUpdateVersionMS;
//C DWORD dwUpdateVersionLS;
//C DWORD dwAdvertisedVersionMS;
//C DWORD dwAdvertisedVersionLS;
//C DWORD dwReserved;
//C } SOFTDISTINFO;
struct _tagSOFTDISTINFO
{
ULONG cbSize;
DWORD dwFlags;
DWORD dwAdState;
LPWSTR szTitle;
LPWSTR szAbstract;
LPWSTR szHREF;
DWORD dwInstalledVersionMS;
DWORD dwInstalledVersionLS;
DWORD dwUpdateVersionMS;
DWORD dwUpdateVersionLS;
DWORD dwAdvertisedVersionMS;
DWORD dwAdvertisedVersionLS;
DWORD dwReserved;
}
alias _tagSOFTDISTINFO SOFTDISTINFO;
//C typedef struct _tagSOFTDISTINFO *LPSOFTDISTINFO;
alias _tagSOFTDISTINFO *LPSOFTDISTINFO;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0210_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0210_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0210_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0210_v0_0_s_ifspec;
//C typedef struct ISoftDistExtVtbl {
//C HRESULT ( *QueryInterface)(ISoftDistExt *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ISoftDistExt *This);
//C ULONG ( *Release)(ISoftDistExt *This);
//C HRESULT ( *ProcessSoftDist)(ISoftDistExt *This,LPCWSTR szCDFURL,IXMLElement *pSoftDistElement,LPSOFTDISTINFO lpsdi);
//C HRESULT ( *GetFirstCodeBase)(ISoftDistExt *This,LPWSTR *szCodeBase,LPDWORD dwMaxSize);
//C HRESULT ( *GetNextCodeBase)(ISoftDistExt *This,LPWSTR *szCodeBase,LPDWORD dwMaxSize);
//C HRESULT ( *AsyncInstallDistributionUnit)(ISoftDistExt *This,IBindCtx *pbc,LPVOID pvReserved,DWORD flags,LPCODEBASEHOLD lpcbh);
//C } ISoftDistExtVtbl;
struct ISoftDistExtVtbl
{
HRESULT function(ISoftDistExt *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ISoftDistExt *This)AddRef;
ULONG function(ISoftDistExt *This)Release;
HRESULT function(ISoftDistExt *This, LPCWSTR szCDFURL, IXMLElement *pSoftDistElement, LPSOFTDISTINFO lpsdi)ProcessSoftDist;
HRESULT function(ISoftDistExt *This, LPWSTR *szCodeBase, LPDWORD dwMaxSize)GetFirstCodeBase;
HRESULT function(ISoftDistExt *This, LPWSTR *szCodeBase, LPDWORD dwMaxSize)GetNextCodeBase;
HRESULT function(ISoftDistExt *This, IBindCtx *pbc, LPVOID pvReserved, DWORD flags, LPCODEBASEHOLD lpcbh)AsyncInstallDistributionUnit;
}
//C struct ISoftDistExt {
//C struct ISoftDistExtVtbl *lpVtbl;
//C };
struct ISoftDistExt
{
ISoftDistExtVtbl *lpVtbl;
}
//C HRESULT ISoftDistExt_ProcessSoftDist_Proxy(ISoftDistExt *This,LPCWSTR szCDFURL,IXMLElement *pSoftDistElement,LPSOFTDISTINFO lpsdi);
HRESULT ISoftDistExt_ProcessSoftDist_Proxy(ISoftDistExt *This, LPCWSTR szCDFURL, IXMLElement *pSoftDistElement, LPSOFTDISTINFO lpsdi);
//C void ISoftDistExt_ProcessSoftDist_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISoftDistExt_ProcessSoftDist_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISoftDistExt_GetFirstCodeBase_Proxy(ISoftDistExt *This,LPWSTR *szCodeBase,LPDWORD dwMaxSize);
HRESULT ISoftDistExt_GetFirstCodeBase_Proxy(ISoftDistExt *This, LPWSTR *szCodeBase, LPDWORD dwMaxSize);
//C void ISoftDistExt_GetFirstCodeBase_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISoftDistExt_GetFirstCodeBase_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISoftDistExt_GetNextCodeBase_Proxy(ISoftDistExt *This,LPWSTR *szCodeBase,LPDWORD dwMaxSize);
HRESULT ISoftDistExt_GetNextCodeBase_Proxy(ISoftDistExt *This, LPWSTR *szCodeBase, LPDWORD dwMaxSize);
//C void ISoftDistExt_GetNextCodeBase_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISoftDistExt_GetNextCodeBase_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ISoftDistExt_AsyncInstallDistributionUnit_Proxy(ISoftDistExt *This,IBindCtx *pbc,LPVOID pvReserved,DWORD flags,LPCODEBASEHOLD lpcbh);
HRESULT ISoftDistExt_AsyncInstallDistributionUnit_Proxy(ISoftDistExt *This, IBindCtx *pbc, LPVOID pvReserved, DWORD flags, LPCODEBASEHOLD lpcbh);
//C void ISoftDistExt_AsyncInstallDistributionUnit_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ISoftDistExt_AsyncInstallDistributionUnit_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern HRESULT GetSoftwareUpdateInfo(LPCWSTR szDistUnit,LPSOFTDISTINFO psdi);
HRESULT GetSoftwareUpdateInfo(LPCWSTR szDistUnit, LPSOFTDISTINFO psdi);
//C extern HRESULT SetSoftwareUpdateAdvertisementState(LPCWSTR szDistUnit,DWORD dwAdState,DWORD dwAdvertisedVersionMS,DWORD dwAdvertisedVersionLS);
HRESULT SetSoftwareUpdateAdvertisementState(LPCWSTR szDistUnit, DWORD dwAdState, DWORD dwAdvertisedVersionMS, DWORD dwAdvertisedVersionLS);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0211_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0211_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0211_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0211_v0_0_s_ifspec;
//C typedef ICatalogFileInfo *LPCATALOGFILEINFO;
alias ICatalogFileInfo *LPCATALOGFILEINFO;
//C typedef struct ICatalogFileInfoVtbl {
//C HRESULT ( *QueryInterface)(ICatalogFileInfo *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(ICatalogFileInfo *This);
//C ULONG ( *Release)(ICatalogFileInfo *This);
//C HRESULT ( *GetCatalogFile)(ICatalogFileInfo *This,LPSTR *ppszCatalogFile);
//C HRESULT ( *GetJavaTrust)(ICatalogFileInfo *This,void **ppJavaTrust);
//C } ICatalogFileInfoVtbl;
struct ICatalogFileInfoVtbl
{
HRESULT function(ICatalogFileInfo *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(ICatalogFileInfo *This)AddRef;
ULONG function(ICatalogFileInfo *This)Release;
HRESULT function(ICatalogFileInfo *This, LPSTR *ppszCatalogFile)GetCatalogFile;
HRESULT function(ICatalogFileInfo *This, void **ppJavaTrust)GetJavaTrust;
}
//C struct ICatalogFileInfo {
//C struct ICatalogFileInfoVtbl *lpVtbl;
//C };
struct ICatalogFileInfo
{
ICatalogFileInfoVtbl *lpVtbl;
}
//C HRESULT ICatalogFileInfo_GetCatalogFile_Proxy(ICatalogFileInfo *This,LPSTR *ppszCatalogFile);
HRESULT ICatalogFileInfo_GetCatalogFile_Proxy(ICatalogFileInfo *This, LPSTR *ppszCatalogFile);
//C void ICatalogFileInfo_GetCatalogFile_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICatalogFileInfo_GetCatalogFile_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT ICatalogFileInfo_GetJavaTrust_Proxy(ICatalogFileInfo *This,void **ppJavaTrust);
HRESULT ICatalogFileInfo_GetJavaTrust_Proxy(ICatalogFileInfo *This, void **ppJavaTrust);
//C void ICatalogFileInfo_GetJavaTrust_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void ICatalogFileInfo_GetJavaTrust_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0212_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0212_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0212_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0212_v0_0_s_ifspec;
//C typedef IDataFilter *LPDATAFILTER;
alias IDataFilter *LPDATAFILTER;
//C typedef struct IDataFilterVtbl {
//C HRESULT ( *QueryInterface)(IDataFilter *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IDataFilter *This);
//C ULONG ( *Release)(IDataFilter *This);
//C HRESULT ( *DoEncode)(IDataFilter *This,DWORD dwFlags,LONG lInBufferSize,BYTE *pbInBuffer,LONG lOutBufferSize,BYTE *pbOutBuffer,LONG lInBytesAvailable,LONG *plInBytesRead,LONG *plOutBytesWritten,DWORD dwReserved);
//C HRESULT ( *DoDecode)(IDataFilter *This,DWORD dwFlags,LONG lInBufferSize,BYTE *pbInBuffer,LONG lOutBufferSize,BYTE *pbOutBuffer,LONG lInBytesAvailable,LONG *plInBytesRead,LONG *plOutBytesWritten,DWORD dwReserved);
//C HRESULT ( *SetEncodingLevel)(IDataFilter *This,DWORD dwEncLevel);
//C } IDataFilterVtbl;
struct IDataFilterVtbl
{
HRESULT function(IDataFilter *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IDataFilter *This)AddRef;
ULONG function(IDataFilter *This)Release;
HRESULT function(IDataFilter *This, DWORD dwFlags, LONG lInBufferSize, BYTE *pbInBuffer, LONG lOutBufferSize, BYTE *pbOutBuffer, LONG lInBytesAvailable, LONG *plInBytesRead, LONG *plOutBytesWritten, DWORD dwReserved)DoEncode;
HRESULT function(IDataFilter *This, DWORD dwFlags, LONG lInBufferSize, BYTE *pbInBuffer, LONG lOutBufferSize, BYTE *pbOutBuffer, LONG lInBytesAvailable, LONG *plInBytesRead, LONG *plOutBytesWritten, DWORD dwReserved)DoDecode;
HRESULT function(IDataFilter *This, DWORD dwEncLevel)SetEncodingLevel;
}
//C struct IDataFilter {
//C struct IDataFilterVtbl *lpVtbl;
//C };
struct IDataFilter
{
IDataFilterVtbl *lpVtbl;
}
//C HRESULT IDataFilter_DoEncode_Proxy(IDataFilter *This,DWORD dwFlags,LONG lInBufferSize,BYTE *pbInBuffer,LONG lOutBufferSize,BYTE *pbOutBuffer,LONG lInBytesAvailable,LONG *plInBytesRead,LONG *plOutBytesWritten,DWORD dwReserved);
HRESULT IDataFilter_DoEncode_Proxy(IDataFilter *This, DWORD dwFlags, LONG lInBufferSize, BYTE *pbInBuffer, LONG lOutBufferSize, BYTE *pbOutBuffer, LONG lInBytesAvailable, LONG *plInBytesRead, LONG *plOutBytesWritten, DWORD dwReserved);
//C void IDataFilter_DoEncode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataFilter_DoEncode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDataFilter_DoDecode_Proxy(IDataFilter *This,DWORD dwFlags,LONG lInBufferSize,BYTE *pbInBuffer,LONG lOutBufferSize,BYTE *pbOutBuffer,LONG lInBytesAvailable,LONG *plInBytesRead,LONG *plOutBytesWritten,DWORD dwReserved);
HRESULT IDataFilter_DoDecode_Proxy(IDataFilter *This, DWORD dwFlags, LONG lInBufferSize, BYTE *pbInBuffer, LONG lOutBufferSize, BYTE *pbOutBuffer, LONG lInBytesAvailable, LONG *plInBytesRead, LONG *plOutBytesWritten, DWORD dwReserved);
//C void IDataFilter_DoDecode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataFilter_DoDecode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IDataFilter_SetEncodingLevel_Proxy(IDataFilter *This,DWORD dwEncLevel);
HRESULT IDataFilter_SetEncodingLevel_Proxy(IDataFilter *This, DWORD dwEncLevel);
//C void IDataFilter_SetEncodingLevel_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IDataFilter_SetEncodingLevel_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef struct _tagPROTOCOLFILTERDATA {
//C DWORD cbSize;
//C IInternetProtocolSink *pProtocolSink;
//C IInternetProtocol *pProtocol;
//C IUnknown *pUnk;
//C DWORD dwFilterFlags;
//C } PROTOCOLFILTERDATA;
struct _tagPROTOCOLFILTERDATA
{
DWORD cbSize;
IInternetProtocolSink *pProtocolSink;
IInternetProtocol *pProtocol;
IUnknown *pUnk;
DWORD dwFilterFlags;
}
alias _tagPROTOCOLFILTERDATA PROTOCOLFILTERDATA;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0213_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0213_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0213_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0213_v0_0_s_ifspec;
//C typedef IEncodingFilterFactory *LPENCODINGFILTERFACTORY;
alias IEncodingFilterFactory *LPENCODINGFILTERFACTORY;
//C typedef struct _tagDATAINFO {
//C ULONG ulTotalSize;
//C ULONG ulavrPacketSize;
//C ULONG ulConnectSpeed;
//C ULONG ulProcessorSpeed;
//C } DATAINFO;
struct _tagDATAINFO
{
ULONG ulTotalSize;
ULONG ulavrPacketSize;
ULONG ulConnectSpeed;
ULONG ulProcessorSpeed;
}
alias _tagDATAINFO DATAINFO;
//C typedef struct IEncodingFilterFactoryVtbl {
//C HRESULT ( *QueryInterface)(IEncodingFilterFactory *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IEncodingFilterFactory *This);
//C ULONG ( *Release)(IEncodingFilterFactory *This);
//C HRESULT ( *FindBestFilter)(IEncodingFilterFactory *This,LPCWSTR pwzCodeIn,LPCWSTR pwzCodeOut,DATAINFO info,IDataFilter **ppDF);
//C HRESULT ( *GetDefaultFilter)(IEncodingFilterFactory *This,LPCWSTR pwzCodeIn,LPCWSTR pwzCodeOut,IDataFilter **ppDF);
//C } IEncodingFilterFactoryVtbl;
struct IEncodingFilterFactoryVtbl
{
HRESULT function(IEncodingFilterFactory *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEncodingFilterFactory *This)AddRef;
ULONG function(IEncodingFilterFactory *This)Release;
HRESULT function(IEncodingFilterFactory *This, LPCWSTR pwzCodeIn, LPCWSTR pwzCodeOut, DATAINFO info, IDataFilter **ppDF)FindBestFilter;
HRESULT function(IEncodingFilterFactory *This, LPCWSTR pwzCodeIn, LPCWSTR pwzCodeOut, IDataFilter **ppDF)GetDefaultFilter;
}
//C struct IEncodingFilterFactory {
//C struct IEncodingFilterFactoryVtbl *lpVtbl;
//C };
struct IEncodingFilterFactory
{
IEncodingFilterFactoryVtbl *lpVtbl;
}
//C HRESULT IEncodingFilterFactory_FindBestFilter_Proxy(IEncodingFilterFactory *This,LPCWSTR pwzCodeIn,LPCWSTR pwzCodeOut,DATAINFO info,IDataFilter **ppDF);
HRESULT IEncodingFilterFactory_FindBestFilter_Proxy(IEncodingFilterFactory *This, LPCWSTR pwzCodeIn, LPCWSTR pwzCodeOut, DATAINFO info, IDataFilter **ppDF);
//C void IEncodingFilterFactory_FindBestFilter_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEncodingFilterFactory_FindBestFilter_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEncodingFilterFactory_GetDefaultFilter_Proxy(IEncodingFilterFactory *This,LPCWSTR pwzCodeIn,LPCWSTR pwzCodeOut,IDataFilter **ppDF);
HRESULT IEncodingFilterFactory_GetDefaultFilter_Proxy(IEncodingFilterFactory *This, LPCWSTR pwzCodeIn, LPCWSTR pwzCodeOut, IDataFilter **ppDF);
//C void IEncodingFilterFactory_GetDefaultFilter_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEncodingFilterFactory_GetDefaultFilter_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C WINBOOL IsLoggingEnabledA(LPCSTR pszUrl);
WINBOOL IsLoggingEnabledA(LPCSTR pszUrl);
//C WINBOOL IsLoggingEnabledW(LPCWSTR pwszUrl);
WINBOOL IsLoggingEnabledW(LPCWSTR pwszUrl);
//C typedef struct _tagHIT_LOGGING_INFO {
//C DWORD dwStructSize;
//C LPSTR lpszLoggedUrlName;
//C SYSTEMTIME StartTime;
//C SYSTEMTIME EndTime;
//C LPSTR lpszExtendedInfo;
//C } HIT_LOGGING_INFO;
struct _tagHIT_LOGGING_INFO
{
DWORD dwStructSize;
LPSTR lpszLoggedUrlName;
SYSTEMTIME StartTime;
SYSTEMTIME EndTime;
LPSTR lpszExtendedInfo;
}
alias _tagHIT_LOGGING_INFO HIT_LOGGING_INFO;
//C typedef struct _tagHIT_LOGGING_INFO *LPHIT_LOGGING_INFO;
alias _tagHIT_LOGGING_INFO *LPHIT_LOGGING_INFO;
//C WINBOOL WriteHitLogging(LPHIT_LOGGING_INFO lpLogginginfo);
WINBOOL WriteHitLogging(LPHIT_LOGGING_INFO lpLogginginfo);
//C struct CONFIRMSAFETY {
//C CLSID clsid;
//C IUnknown *pUnk;
//C DWORD dwFlags;
//C };
struct CONFIRMSAFETY
{
CLSID clsid;
IUnknown *pUnk;
DWORD dwFlags;
}
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0214_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0214_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0214_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0214_v0_0_s_ifspec;
//C typedef IWrappedProtocol *LPIWRAPPEDPROTOCOL;
alias IWrappedProtocol *LPIWRAPPEDPROTOCOL;
//C typedef struct IWrappedProtocolVtbl {
//C HRESULT ( *QueryInterface)(IWrappedProtocol *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IWrappedProtocol *This);
//C ULONG ( *Release)(IWrappedProtocol *This);
//C HRESULT ( *GetWrapperCode)(IWrappedProtocol *This,LONG *pnCode,DWORD_PTR dwReserved);
//C } IWrappedProtocolVtbl;
struct IWrappedProtocolVtbl
{
HRESULT function(IWrappedProtocol *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IWrappedProtocol *This)AddRef;
ULONG function(IWrappedProtocol *This)Release;
HRESULT function(IWrappedProtocol *This, LONG *pnCode, DWORD_PTR dwReserved)GetWrapperCode;
}
//C struct IWrappedProtocol {
//C struct IWrappedProtocolVtbl *lpVtbl;
//C };
struct IWrappedProtocol
{
IWrappedProtocolVtbl *lpVtbl;
}
//C HRESULT IWrappedProtocol_GetWrapperCode_Proxy(IWrappedProtocol *This,LONG *pnCode,DWORD_PTR dwReserved);
HRESULT IWrappedProtocol_GetWrapperCode_Proxy(IWrappedProtocol *This, LONG *pnCode, DWORD_PTR dwReserved);
//C void IWrappedProtocol_GetWrapperCode_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IWrappedProtocol_GetWrapperCode_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0215_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0215_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_urlmon_0215_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_urlmon_0215_v0_0_s_ifspec;
//C ULONG HWND_UserSize(ULONG *,ULONG,HWND *);
ULONG HWND_UserSize(ULONG *, ULONG , HWND *);
//C unsigned char * HWND_UserMarshal(ULONG *,unsigned char *,HWND *);
ubyte * HWND_UserMarshal(ULONG *, ubyte *, HWND *);
//C unsigned char * HWND_UserUnmarshal(ULONG *,unsigned char *,HWND *);
ubyte * HWND_UserUnmarshal(ULONG *, ubyte *, HWND *);
//C void HWND_UserFree(ULONG *,HWND *);
void HWND_UserFree(ULONG *, HWND *);
//C HRESULT IWinInetInfo_QueryOption_Proxy(IWinInetInfo *This,DWORD dwOption,LPVOID pBuffer,DWORD *pcbBuf);
HRESULT IWinInetInfo_QueryOption_Proxy(IWinInetInfo *This, DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf);
//C HRESULT IWinInetInfo_QueryOption_Stub(IWinInetInfo *This,DWORD dwOption,BYTE *pBuffer,DWORD *pcbBuf);
HRESULT IWinInetInfo_QueryOption_Stub(IWinInetInfo *This, DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf);
//C HRESULT IWinInetHttpInfo_QueryInfo_Proxy(IWinInetHttpInfo *This,DWORD dwOption,LPVOID pBuffer,DWORD *pcbBuf,DWORD *pdwFlags,DWORD *pdwReserved);
HRESULT IWinInetHttpInfo_QueryInfo_Proxy(IWinInetHttpInfo *This, DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf, DWORD *pdwFlags, DWORD *pdwReserved);
//C HRESULT IWinInetHttpInfo_QueryInfo_Stub(IWinInetHttpInfo *This,DWORD dwOption,BYTE *pBuffer,DWORD *pcbBuf,DWORD *pdwFlags,DWORD *pdwReserved);
HRESULT IWinInetHttpInfo_QueryInfo_Stub(IWinInetHttpInfo *This, DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf, DWORD *pdwFlags, DWORD *pdwReserved);
//C HRESULT IBindHost_MonikerBindToStorage_Proxy(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,void **ppvObj);
HRESULT IBindHost_MonikerBindToStorage_Proxy(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, void **ppvObj);
//C HRESULT IBindHost_MonikerBindToStorage_Stub(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,IUnknown **ppvObj);
HRESULT IBindHost_MonikerBindToStorage_Stub(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, IUnknown **ppvObj);
//C HRESULT IBindHost_MonikerBindToObject_Proxy(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,void **ppvObj);
HRESULT IBindHost_MonikerBindToObject_Proxy(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, void **ppvObj);
//C HRESULT IBindHost_MonikerBindToObject_Stub(IBindHost *This,IMoniker *pMk,IBindCtx *pBC,IBindStatusCallback *pBSC,const IID *const riid,IUnknown **ppvObj);
HRESULT IBindHost_MonikerBindToObject_Stub(IBindHost *This, IMoniker *pMk, IBindCtx *pBC, IBindStatusCallback *pBSC, IID *riid, IUnknown **ppvObj);
//C ULONG STGMEDIUM_UserSize (ULONG *,ULONG,STGMEDIUM *);
ULONG STGMEDIUM_UserSize(ULONG *, ULONG , STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserMarshal (ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserMarshal(ULONG *, ubyte *, STGMEDIUM *);
//C unsigned char * STGMEDIUM_UserUnmarshal(ULONG *,unsigned char *,STGMEDIUM *);
ubyte * STGMEDIUM_UserUnmarshal(ULONG *, ubyte *, STGMEDIUM *);
//C void STGMEDIUM_UserFree (ULONG *,STGMEDIUM *);
void STGMEDIUM_UserFree(ULONG *, STGMEDIUM *);
//C ULONG CLIPFORMAT_UserSize (ULONG *,ULONG,CLIPFORMAT *);
ULONG CLIPFORMAT_UserSize(ULONG *, ULONG , CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserMarshal (ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserMarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C unsigned char * CLIPFORMAT_UserUnmarshal(ULONG *,unsigned char *,CLIPFORMAT *);
ubyte * CLIPFORMAT_UserUnmarshal(ULONG *, ubyte *, CLIPFORMAT *);
//C void CLIPFORMAT_UserFree (ULONG *,CLIPFORMAT *);
void CLIPFORMAT_UserFree(ULONG *, CLIPFORMAT *);
//C typedef struct IPropertyStorage IPropertyStorage;
//C typedef struct IPropertySetStorage IPropertySetStorage;
//C typedef struct IEnumSTATPROPSTG IEnumSTATPROPSTG;
//C typedef struct IEnumSTATPROPSETSTG IEnumSTATPROPSETSTG;
//C typedef struct tagVersionedStream {
//C GUID guidVersion;
//C IStream *pStream;
//C } VERSIONEDSTREAM;
struct tagVersionedStream
{
GUID guidVersion;
IStream *pStream;
}
alias tagVersionedStream VERSIONEDSTREAM;
//C typedef struct tagVersionedStream *LPVERSIONEDSTREAM;
alias tagVersionedStream *LPVERSIONEDSTREAM;
//C typedef struct tagPROPVARIANT PROPVARIANT;
alias tagPROPVARIANT PROPVARIANT;
//C typedef struct tagCAC {
//C ULONG cElems;
//C CHAR *pElems;
//C } CAC;
struct tagCAC
{
ULONG cElems;
CHAR *pElems;
}
alias tagCAC CAC;
//C typedef struct tagCAUB {
//C ULONG cElems;
//C UCHAR *pElems;
//C } CAUB;
struct tagCAUB
{
ULONG cElems;
UCHAR *pElems;
}
alias tagCAUB CAUB;
//C typedef struct tagCAI {
//C ULONG cElems;
//C SHORT *pElems;
//C } CAI;
struct tagCAI
{
ULONG cElems;
SHORT *pElems;
}
alias tagCAI CAI;
//C typedef struct tagCAUI {
//C ULONG cElems;
//C USHORT *pElems;
//C } CAUI;
struct tagCAUI
{
ULONG cElems;
USHORT *pElems;
}
alias tagCAUI CAUI;
//C typedef struct tagCAL {
//C ULONG cElems;
//C LONG *pElems;
//C } CAL;
struct tagCAL
{
ULONG cElems;
LONG *pElems;
}
alias tagCAL CAL;
//C typedef struct tagCAUL {
//C ULONG cElems;
//C ULONG *pElems;
//C } CAUL;
struct tagCAUL
{
ULONG cElems;
ULONG *pElems;
}
alias tagCAUL CAUL;
//C typedef struct tagCAFLT {
//C ULONG cElems;
//C FLOAT *pElems;
//C } CAFLT;
struct tagCAFLT
{
ULONG cElems;
FLOAT *pElems;
}
alias tagCAFLT CAFLT;
//C typedef struct tagCADBL {
//C ULONG cElems;
//C DOUBLE *pElems;
//C } CADBL;
struct tagCADBL
{
ULONG cElems;
DOUBLE *pElems;
}
alias tagCADBL CADBL;
//C typedef struct tagCACY {
//C ULONG cElems;
//C CY *pElems;
//C } CACY;
struct tagCACY
{
ULONG cElems;
CY *pElems;
}
alias tagCACY CACY;
//C typedef struct tagCADATE {
//C ULONG cElems;
//C DATE *pElems;
//C } CADATE;
struct tagCADATE
{
ULONG cElems;
DATE *pElems;
}
alias tagCADATE CADATE;
//C typedef struct tagCABSTR {
//C ULONG cElems;
//C BSTR *pElems;
//C } CABSTR;
struct tagCABSTR
{
ULONG cElems;
BSTR *pElems;
}
alias tagCABSTR CABSTR;
//C typedef struct tagCABSTRBLOB {
//C ULONG cElems;
//C BSTRBLOB *pElems;
//C } CABSTRBLOB;
struct tagCABSTRBLOB
{
ULONG cElems;
BSTRBLOB *pElems;
}
alias tagCABSTRBLOB CABSTRBLOB;
//C typedef struct tagCABOOL {
//C ULONG cElems;
//C VARIANT_BOOL *pElems;
//C } CABOOL;
struct tagCABOOL
{
ULONG cElems;
VARIANT_BOOL *pElems;
}
alias tagCABOOL CABOOL;
//C typedef struct tagCASCODE {
//C ULONG cElems;
//C SCODE *pElems;
//C } CASCODE;
struct tagCASCODE
{
ULONG cElems;
SCODE *pElems;
}
alias tagCASCODE CASCODE;
//C typedef struct tagCAPROPVARIANT {
//C ULONG cElems;
//C PROPVARIANT *pElems;
//C } CAPROPVARIANT;
struct tagCAPROPVARIANT
{
ULONG cElems;
PROPVARIANT *pElems;
}
alias tagCAPROPVARIANT CAPROPVARIANT;
//C typedef struct tagCAH {
//C ULONG cElems;
//C LARGE_INTEGER *pElems;
//C } CAH;
struct tagCAH
{
ULONG cElems;
LARGE_INTEGER *pElems;
}
alias tagCAH CAH;
//C typedef struct tagCAUH {
//C ULONG cElems;
//C ULARGE_INTEGER *pElems;
//C } CAUH;
struct tagCAUH
{
ULONG cElems;
ULARGE_INTEGER *pElems;
}
alias tagCAUH CAUH;
//C typedef struct tagCALPSTR {
//C ULONG cElems;
//C LPSTR *pElems;
//C } CALPSTR;
struct tagCALPSTR
{
ULONG cElems;
LPSTR *pElems;
}
alias tagCALPSTR CALPSTR;
//C typedef struct tagCALPWSTR {
//C ULONG cElems;
//C LPWSTR *pElems;
//C } CALPWSTR;
struct tagCALPWSTR
{
ULONG cElems;
LPWSTR *pElems;
}
alias tagCALPWSTR CALPWSTR;
//C typedef struct tagCAFILETIME {
//C ULONG cElems;
//C FILETIME *pElems;
//C } CAFILETIME;
struct tagCAFILETIME
{
ULONG cElems;
FILETIME *pElems;
}
alias tagCAFILETIME CAFILETIME;
//C typedef struct tagCACLIPDATA {
//C ULONG cElems;
//C CLIPDATA *pElems;
//C } CACLIPDATA;
struct tagCACLIPDATA
{
ULONG cElems;
CLIPDATA *pElems;
}
alias tagCACLIPDATA CACLIPDATA;
//C typedef struct tagCACLSID {
//C ULONG cElems;
//C CLSID *pElems;
//C } CACLSID;
struct tagCACLSID
{
ULONG cElems;
CLSID *pElems;
}
alias tagCACLSID CACLSID;
//C typedef WORD PROPVAR_PAD1;
alias WORD PROPVAR_PAD1;
//C typedef WORD PROPVAR_PAD2;
alias WORD PROPVAR_PAD2;
//C typedef WORD PROPVAR_PAD3;
alias WORD PROPVAR_PAD3;
//C struct tagPROPVARIANT {
//C union {
//C struct {
//C VARTYPE vt;
//C PROPVAR_PAD1 wReserved1;
//C PROPVAR_PAD2 wReserved2;
//C PROPVAR_PAD3 wReserved3;
//C union {
//C CHAR cVal;
//C UCHAR bVal;
//C SHORT iVal;
//C USHORT uiVal;
//C LONG lVal;
//C ULONG ulVal;
//C INT intVal;
//C UINT uintVal;
//C LARGE_INTEGER hVal;
//C ULARGE_INTEGER uhVal;
//C FLOAT fltVal;
//C DOUBLE dblVal;
//C VARIANT_BOOL boolVal;
//C SCODE scode;
//C CY cyVal;
//C DATE date;
//C FILETIME filetime;
//C CLSID *puuid;
//C CLIPDATA *pclipdata;
//C BSTR bstrVal;
//C BSTRBLOB bstrblobVal;
//C BLOB blob;
//C LPSTR pszVal;
//C LPWSTR pwszVal;
//C IUnknown *punkVal;
//C IDispatch *pdispVal;
//C IStream *pStream;
//C IStorage *pStorage;
//C LPVERSIONEDSTREAM pVersionedStream;
//C LPSAFEARRAY parray;
//C CAC cac;
//C CAUB caub;
//C CAI cai;
//C CAUI caui;
//C CAL cal;
//C CAUL caul;
//C CAH cah;
//C CAUH cauh;
//C CAFLT caflt;
//C CADBL cadbl;
//C CABOOL cabool;
//C CASCODE cascode;
//C CACY cacy;
//C CADATE cadate;
//C CAFILETIME cafiletime;
//C CACLSID cauuid;
//C CACLIPDATA caclipdata;
//C CABSTR cabstr;
//C CABSTRBLOB cabstrblob;
//C CALPSTR calpstr;
//C CALPWSTR calpwstr;
//C CAPROPVARIANT capropvar;
//C CHAR *pcVal;
//C UCHAR *pbVal;
//C SHORT *piVal;
//C USHORT *puiVal;
//C LONG *plVal;
//C ULONG *pulVal;
//C INT *pintVal;
//C UINT *puintVal;
//C FLOAT *pfltVal;
//C DOUBLE *pdblVal;
//C VARIANT_BOOL *pboolVal;
//C DECIMAL *pdecVal;
//C SCODE *pscode;
//C CY *pcyVal;
//C DATE *pdate;
//C BSTR *pbstrVal;
//C IUnknown **ppunkVal;
//C IDispatch **ppdispVal;
//C LPSAFEARRAY *pparray;
//C PROPVARIANT *pvarVal;
//C } ;
union _N197
{
CHAR cVal;
UCHAR bVal;
SHORT iVal;
USHORT uiVal;
LONG lVal;
ULONG ulVal;
INT intVal;
UINT uintVal;
LARGE_INTEGER hVal;
ULARGE_INTEGER uhVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
FILETIME filetime;
CLSID *puuid;
CLIPDATA *pclipdata;
BSTR bstrVal;
BSTRBLOB bstrblobVal;
BLOB blob;
LPSTR pszVal;
LPWSTR pwszVal;
IUnknown *punkVal;
IDispatch *pdispVal;
IStream *pStream;
IStorage *pStorage;
LPVERSIONEDSTREAM pVersionedStream;
LPSAFEARRAY parray;
CAC cac;
CAUB caub;
CAI cai;
CAUI caui;
CAL cal;
CAUL caul;
CAH cah;
CAUH cauh;
CAFLT caflt;
CADBL cadbl;
CABOOL cabool;
CASCODE cascode;
CACY cacy;
CADATE cadate;
CAFILETIME cafiletime;
CACLSID cauuid;
CACLIPDATA caclipdata;
CABSTR cabstr;
CABSTRBLOB cabstrblob;
CALPSTR calpstr;
CALPWSTR calpwstr;
CAPROPVARIANT capropvar;
CHAR *pcVal;
UCHAR *pbVal;
SHORT *piVal;
USHORT *puiVal;
LONG *plVal;
ULONG *pulVal;
INT *pintVal;
UINT *puintVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
DECIMAL *pdecVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
LPSAFEARRAY *pparray;
PROPVARIANT *pvarVal;
}
//C };
struct _N196
{
VARTYPE vt;
PROPVAR_PAD1 wReserved1;
PROPVAR_PAD2 wReserved2;
PROPVAR_PAD3 wReserved3;
CHAR cVal;
UCHAR bVal;
SHORT iVal;
USHORT uiVal;
LONG lVal;
ULONG ulVal;
INT intVal;
UINT uintVal;
LARGE_INTEGER hVal;
ULARGE_INTEGER uhVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
FILETIME filetime;
CLSID *puuid;
CLIPDATA *pclipdata;
BSTR bstrVal;
BSTRBLOB bstrblobVal;
BLOB blob;
LPSTR pszVal;
LPWSTR pwszVal;
IUnknown *punkVal;
IDispatch *pdispVal;
IStream *pStream;
IStorage *pStorage;
LPVERSIONEDSTREAM pVersionedStream;
LPSAFEARRAY parray;
CAC cac;
CAUB caub;
CAI cai;
CAUI caui;
CAL cal;
CAUL caul;
CAH cah;
CAUH cauh;
CAFLT caflt;
CADBL cadbl;
CABOOL cabool;
CASCODE cascode;
CACY cacy;
CADATE cadate;
CAFILETIME cafiletime;
CACLSID cauuid;
CACLIPDATA caclipdata;
CABSTR cabstr;
CABSTRBLOB cabstrblob;
CALPSTR calpstr;
CALPWSTR calpwstr;
CAPROPVARIANT capropvar;
CHAR *pcVal;
UCHAR *pbVal;
SHORT *piVal;
USHORT *puiVal;
LONG *plVal;
ULONG *pulVal;
INT *pintVal;
UINT *puintVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
DECIMAL *pdecVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
LPSAFEARRAY *pparray;
PROPVARIANT *pvarVal;
}
//C DECIMAL decVal;
//C };
union _N195
{
VARTYPE vt;
PROPVAR_PAD1 wReserved1;
PROPVAR_PAD2 wReserved2;
PROPVAR_PAD3 wReserved3;
CHAR cVal;
UCHAR bVal;
SHORT iVal;
USHORT uiVal;
LONG lVal;
ULONG ulVal;
INT intVal;
UINT uintVal;
LARGE_INTEGER hVal;
ULARGE_INTEGER uhVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
FILETIME filetime;
CLSID *puuid;
CLIPDATA *pclipdata;
BSTR bstrVal;
BSTRBLOB bstrblobVal;
BLOB blob;
LPSTR pszVal;
LPWSTR pwszVal;
IUnknown *punkVal;
IDispatch *pdispVal;
IStream *pStream;
IStorage *pStorage;
LPVERSIONEDSTREAM pVersionedStream;
LPSAFEARRAY parray;
CAC cac;
CAUB caub;
CAI cai;
CAUI caui;
CAL cal;
CAUL caul;
CAH cah;
CAUH cauh;
CAFLT caflt;
CADBL cadbl;
CABOOL cabool;
CASCODE cascode;
CACY cacy;
CADATE cadate;
CAFILETIME cafiletime;
CACLSID cauuid;
CACLIPDATA caclipdata;
CABSTR cabstr;
CABSTRBLOB cabstrblob;
CALPSTR calpstr;
CALPWSTR calpwstr;
CAPROPVARIANT capropvar;
CHAR *pcVal;
UCHAR *pbVal;
SHORT *piVal;
USHORT *puiVal;
LONG *plVal;
ULONG *pulVal;
INT *pintVal;
UINT *puintVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
DECIMAL *pdecVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
LPSAFEARRAY *pparray;
PROPVARIANT *pvarVal;
DECIMAL decVal;
}
//C };
struct tagPROPVARIANT
{
VARTYPE vt;
PROPVAR_PAD1 wReserved1;
PROPVAR_PAD2 wReserved2;
PROPVAR_PAD3 wReserved3;
CHAR cVal;
UCHAR bVal;
SHORT iVal;
USHORT uiVal;
LONG lVal;
ULONG ulVal;
INT intVal;
UINT uintVal;
LARGE_INTEGER hVal;
ULARGE_INTEGER uhVal;
FLOAT fltVal;
DOUBLE dblVal;
VARIANT_BOOL boolVal;
SCODE scode;
CY cyVal;
DATE date;
FILETIME filetime;
CLSID *puuid;
CLIPDATA *pclipdata;
BSTR bstrVal;
BSTRBLOB bstrblobVal;
BLOB blob;
LPSTR pszVal;
LPWSTR pwszVal;
IUnknown *punkVal;
IDispatch *pdispVal;
IStream *pStream;
IStorage *pStorage;
LPVERSIONEDSTREAM pVersionedStream;
LPSAFEARRAY parray;
CAC cac;
CAUB caub;
CAI cai;
CAUI caui;
CAL cal;
CAUL caul;
CAH cah;
CAUH cauh;
CAFLT caflt;
CADBL cadbl;
CABOOL cabool;
CASCODE cascode;
CACY cacy;
CADATE cadate;
CAFILETIME cafiletime;
CACLSID cauuid;
CACLIPDATA caclipdata;
CABSTR cabstr;
CABSTRBLOB cabstrblob;
CALPSTR calpstr;
CALPWSTR calpwstr;
CAPROPVARIANT capropvar;
CHAR *pcVal;
UCHAR *pbVal;
SHORT *piVal;
USHORT *puiVal;
LONG *plVal;
ULONG *pulVal;
INT *pintVal;
UINT *puintVal;
FLOAT *pfltVal;
DOUBLE *pdblVal;
VARIANT_BOOL *pboolVal;
DECIMAL *pdecVal;
SCODE *pscode;
CY *pcyVal;
DATE *pdate;
BSTR *pbstrVal;
IUnknown **ppunkVal;
IDispatch **ppdispVal;
LPSAFEARRAY *pparray;
PROPVARIANT *pvarVal;
DECIMAL decVal;
}
//C typedef struct tagPROPVARIANT *LPPROPVARIANT;
alias tagPROPVARIANT *LPPROPVARIANT;
//C enum PIDMSI_STATUS_VALUE {
//C PIDMSI_STATUS_NORMAL = 0,PIDMSI_STATUS_NEW,PIDMSI_STATUS_PRELIM,
//C PIDMSI_STATUS_DRAFT,PIDMSI_STATUS_INPROGRESS,PIDMSI_STATUS_EDIT,
//C PIDMSI_STATUS_REVIEW,PIDMSI_STATUS_PROOF,PIDMSI_STATUS_FINAL,
//C PIDMSI_STATUS_OTHER = 0x7fff
//C };
enum PIDMSI_STATUS_VALUE
{
PIDMSI_STATUS_NORMAL,
PIDMSI_STATUS_NEW,
PIDMSI_STATUS_PRELIM,
PIDMSI_STATUS_DRAFT,
PIDMSI_STATUS_INPROGRESS,
PIDMSI_STATUS_EDIT,
PIDMSI_STATUS_REVIEW,
PIDMSI_STATUS_PROOF,
PIDMSI_STATUS_FINAL,
PIDMSI_STATUS_OTHER = 32767,
}
//C typedef struct tagPROPSPEC {
//C ULONG ulKind;
//C union {
//C PROPID propid;
//C LPOLESTR lpwstr;
//C } ;
union _N198
{
PROPID propid;
LPOLESTR lpwstr;
}
//C } PROPSPEC;
struct tagPROPSPEC
{
ULONG ulKind;
PROPID propid;
LPOLESTR lpwstr;
}
alias tagPROPSPEC PROPSPEC;
//C typedef struct tagSTATPROPSTG {
//C LPOLESTR lpwstrName;
//C PROPID propid;
//C VARTYPE vt;
//C } STATPROPSTG;
struct tagSTATPROPSTG
{
LPOLESTR lpwstrName;
PROPID propid;
VARTYPE vt;
}
alias tagSTATPROPSTG STATPROPSTG;
//C typedef struct tagSTATPROPSETSTG {
//C FMTID fmtid;
//C CLSID clsid;
//C DWORD grfFlags;
//C FILETIME mtime;
//C FILETIME ctime;
//C FILETIME atime;
//C DWORD dwOSVersion;
//C } STATPROPSETSTG;
struct tagSTATPROPSETSTG
{
FMTID fmtid;
CLSID clsid;
DWORD grfFlags;
FILETIME mtime;
FILETIME ctime;
FILETIME atime;
DWORD dwOSVersion;
}
alias tagSTATPROPSETSTG STATPROPSETSTG;
//C extern RPC_IF_HANDLE __MIDL_itf_propidl_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_propidl_0000_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_propidl_0000_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_propidl_0000_v0_0_s_ifspec;
//C typedef struct IPropertyStorageVtbl {
//C HRESULT ( *QueryInterface)(IPropertyStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPropertyStorage *This);
//C ULONG ( *Release)(IPropertyStorage *This);
//C HRESULT ( *ReadMultiple)(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[],PROPVARIANT rgpropvar[]);
//C HRESULT ( *WriteMultiple)(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[],const PROPVARIANT rgpropvar[],PROPID propidNameFirst);
//C HRESULT ( *DeleteMultiple)(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[]);
//C HRESULT ( *ReadPropertyNames)(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[],LPOLESTR rglpwstrName[]);
//C HRESULT ( *WritePropertyNames)(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[],const LPOLESTR rglpwstrName[]);
//C HRESULT ( *DeletePropertyNames)(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[]);
//C HRESULT ( *Commit)(IPropertyStorage *This,DWORD grfCommitFlags);
//C HRESULT ( *Revert)(IPropertyStorage *This);
//C HRESULT ( *Enum)(IPropertyStorage *This,IEnumSTATPROPSTG **ppenum);
//C HRESULT ( *SetTimes)(IPropertyStorage *This,const FILETIME *pctime,const FILETIME *patime,const FILETIME *pmtime);
//C HRESULT ( *SetClass)(IPropertyStorage *This,const IID *const clsid);
//C HRESULT ( *Stat)(IPropertyStorage *This,STATPROPSETSTG *pstatpsstg);
//C } IPropertyStorageVtbl;
struct IPropertyStorageVtbl
{
HRESULT function(IPropertyStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPropertyStorage *This)AddRef;
ULONG function(IPropertyStorage *This)Release;
HRESULT function(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec, PROPVARIANT *rgpropvar)ReadMultiple;
HRESULT function(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec, PROPVARIANT *rgpropvar, PROPID propidNameFirst)WriteMultiple;
HRESULT function(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec)DeleteMultiple;
HRESULT function(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid, LPOLESTR *rglpwstrName)ReadPropertyNames;
HRESULT function(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid, LPOLESTR *rglpwstrName)WritePropertyNames;
HRESULT function(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid)DeletePropertyNames;
HRESULT function(IPropertyStorage *This, DWORD grfCommitFlags)Commit;
HRESULT function(IPropertyStorage *This)Revert;
HRESULT function(IPropertyStorage *This, IEnumSTATPROPSTG **ppenum)Enum;
HRESULT function(IPropertyStorage *This, FILETIME *pctime, FILETIME *patime, FILETIME *pmtime)SetTimes;
HRESULT function(IPropertyStorage *This, IID *clsid)SetClass;
HRESULT function(IPropertyStorage *This, STATPROPSETSTG *pstatpsstg)Stat;
}
//C struct IPropertyStorage {
//C struct IPropertyStorageVtbl *lpVtbl;
//C };
struct IPropertyStorage
{
IPropertyStorageVtbl *lpVtbl;
}
//C HRESULT IPropertyStorage_ReadMultiple_Proxy(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[],PROPVARIANT rgpropvar[]);
HRESULT IPropertyStorage_ReadMultiple_Proxy(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec, PROPVARIANT *rgpropvar);
//C void IPropertyStorage_ReadMultiple_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_ReadMultiple_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_WriteMultiple_Proxy(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[],const PROPVARIANT rgpropvar[],PROPID propidNameFirst);
HRESULT IPropertyStorage_WriteMultiple_Proxy(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec, PROPVARIANT *rgpropvar, PROPID propidNameFirst);
//C void IPropertyStorage_WriteMultiple_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_WriteMultiple_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_DeleteMultiple_Proxy(IPropertyStorage *This,ULONG cpspec,const PROPSPEC rgpspec[]);
HRESULT IPropertyStorage_DeleteMultiple_Proxy(IPropertyStorage *This, ULONG cpspec, PROPSPEC *rgpspec);
//C void IPropertyStorage_DeleteMultiple_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_DeleteMultiple_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_ReadPropertyNames_Proxy(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[],LPOLESTR rglpwstrName[]);
HRESULT IPropertyStorage_ReadPropertyNames_Proxy(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid, LPOLESTR *rglpwstrName);
//C void IPropertyStorage_ReadPropertyNames_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_ReadPropertyNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_WritePropertyNames_Proxy(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[],const LPOLESTR rglpwstrName[]);
HRESULT IPropertyStorage_WritePropertyNames_Proxy(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid, LPOLESTR *rglpwstrName);
//C void IPropertyStorage_WritePropertyNames_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_WritePropertyNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_DeletePropertyNames_Proxy(IPropertyStorage *This,ULONG cpropid,const PROPID rgpropid[]);
HRESULT IPropertyStorage_DeletePropertyNames_Proxy(IPropertyStorage *This, ULONG cpropid, PROPID *rgpropid);
//C void IPropertyStorage_DeletePropertyNames_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_DeletePropertyNames_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_Commit_Proxy(IPropertyStorage *This,DWORD grfCommitFlags);
HRESULT IPropertyStorage_Commit_Proxy(IPropertyStorage *This, DWORD grfCommitFlags);
//C void IPropertyStorage_Commit_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_Commit_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_Revert_Proxy(IPropertyStorage *This);
HRESULT IPropertyStorage_Revert_Proxy(IPropertyStorage *This);
//C void IPropertyStorage_Revert_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_Revert_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_Enum_Proxy(IPropertyStorage *This,IEnumSTATPROPSTG **ppenum);
HRESULT IPropertyStorage_Enum_Proxy(IPropertyStorage *This, IEnumSTATPROPSTG **ppenum);
//C void IPropertyStorage_Enum_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_Enum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_SetTimes_Proxy(IPropertyStorage *This,const FILETIME *pctime,const FILETIME *patime,const FILETIME *pmtime);
HRESULT IPropertyStorage_SetTimes_Proxy(IPropertyStorage *This, FILETIME *pctime, FILETIME *patime, FILETIME *pmtime);
//C void IPropertyStorage_SetTimes_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_SetTimes_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_SetClass_Proxy(IPropertyStorage *This,const IID *const clsid);
HRESULT IPropertyStorage_SetClass_Proxy(IPropertyStorage *This, IID *clsid);
//C void IPropertyStorage_SetClass_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_SetClass_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertyStorage_Stat_Proxy(IPropertyStorage *This,STATPROPSETSTG *pstatpsstg);
HRESULT IPropertyStorage_Stat_Proxy(IPropertyStorage *This, STATPROPSETSTG *pstatpsstg);
//C void IPropertyStorage_Stat_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertyStorage_Stat_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IPropertySetStorage *LPPROPERTYSETSTORAGE;
alias IPropertySetStorage *LPPROPERTYSETSTORAGE;
//C typedef struct IPropertySetStorageVtbl {
//C HRESULT ( *QueryInterface)(IPropertySetStorage *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IPropertySetStorage *This);
//C ULONG ( *Release)(IPropertySetStorage *This);
//C HRESULT ( *Create)(IPropertySetStorage *This,const IID *const rfmtid,const CLSID *pclsid,DWORD grfFlags,DWORD grfMode,IPropertyStorage **ppprstg);
//C HRESULT ( *Open)(IPropertySetStorage *This,const IID *const rfmtid,DWORD grfMode,IPropertyStorage **ppprstg);
//C HRESULT ( *Delete)(IPropertySetStorage *This,const IID *const rfmtid);
//C HRESULT ( *Enum)(IPropertySetStorage *This,IEnumSTATPROPSETSTG **ppenum);
//C } IPropertySetStorageVtbl;
struct IPropertySetStorageVtbl
{
HRESULT function(IPropertySetStorage *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IPropertySetStorage *This)AddRef;
ULONG function(IPropertySetStorage *This)Release;
HRESULT function(IPropertySetStorage *This, IID *rfmtid, CLSID *pclsid, DWORD grfFlags, DWORD grfMode, IPropertyStorage **ppprstg)Create;
HRESULT function(IPropertySetStorage *This, IID *rfmtid, DWORD grfMode, IPropertyStorage **ppprstg)Open;
HRESULT function(IPropertySetStorage *This, IID *rfmtid)Delete;
HRESULT function(IPropertySetStorage *This, IEnumSTATPROPSETSTG **ppenum)Enum;
}
//C struct IPropertySetStorage {
//C struct IPropertySetStorageVtbl *lpVtbl;
//C };
struct IPropertySetStorage
{
IPropertySetStorageVtbl *lpVtbl;
}
//C HRESULT IPropertySetStorage_Create_Proxy(IPropertySetStorage *This,const IID *const rfmtid,const CLSID *pclsid,DWORD grfFlags,DWORD grfMode,IPropertyStorage **ppprstg);
HRESULT IPropertySetStorage_Create_Proxy(IPropertySetStorage *This, IID *rfmtid, CLSID *pclsid, DWORD grfFlags, DWORD grfMode, IPropertyStorage **ppprstg);
//C void IPropertySetStorage_Create_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertySetStorage_Create_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertySetStorage_Open_Proxy(IPropertySetStorage *This,const IID *const rfmtid,DWORD grfMode,IPropertyStorage **ppprstg);
HRESULT IPropertySetStorage_Open_Proxy(IPropertySetStorage *This, IID *rfmtid, DWORD grfMode, IPropertyStorage **ppprstg);
//C void IPropertySetStorage_Open_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertySetStorage_Open_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertySetStorage_Delete_Proxy(IPropertySetStorage *This,const IID *const rfmtid);
HRESULT IPropertySetStorage_Delete_Proxy(IPropertySetStorage *This, IID *rfmtid);
//C void IPropertySetStorage_Delete_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertySetStorage_Delete_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IPropertySetStorage_Enum_Proxy(IPropertySetStorage *This,IEnumSTATPROPSETSTG **ppenum);
HRESULT IPropertySetStorage_Enum_Proxy(IPropertySetStorage *This, IEnumSTATPROPSETSTG **ppenum);
//C void IPropertySetStorage_Enum_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IPropertySetStorage_Enum_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumSTATPROPSTG *LPENUMSTATPROPSTG;
alias IEnumSTATPROPSTG *LPENUMSTATPROPSTG;
//C typedef struct IEnumSTATPROPSTGVtbl {
//C HRESULT ( *QueryInterface)(IEnumSTATPROPSTG *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IEnumSTATPROPSTG *This);
//C ULONG ( *Release)(IEnumSTATPROPSTG *This);
//C HRESULT ( *Next)(IEnumSTATPROPSTG *This,ULONG celt,STATPROPSTG *rgelt,ULONG *pceltFetched);
//C HRESULT ( *Skip)(IEnumSTATPROPSTG *This,ULONG celt);
//C HRESULT ( *Reset)(IEnumSTATPROPSTG *This);
//C HRESULT ( *Clone)(IEnumSTATPROPSTG *This,IEnumSTATPROPSTG **ppenum);
//C } IEnumSTATPROPSTGVtbl;
struct IEnumSTATPROPSTGVtbl
{
HRESULT function(IEnumSTATPROPSTG *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumSTATPROPSTG *This)AddRef;
ULONG function(IEnumSTATPROPSTG *This)Release;
HRESULT function(IEnumSTATPROPSTG *This, ULONG celt, STATPROPSTG *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumSTATPROPSTG *This, ULONG celt)Skip;
HRESULT function(IEnumSTATPROPSTG *This)Reset;
HRESULT function(IEnumSTATPROPSTG *This, IEnumSTATPROPSTG **ppenum)Clone;
}
//C struct IEnumSTATPROPSTG {
//C struct IEnumSTATPROPSTGVtbl *lpVtbl;
//C };
struct IEnumSTATPROPSTG
{
IEnumSTATPROPSTGVtbl *lpVtbl;
}
//C HRESULT IEnumSTATPROPSTG_RemoteNext_Proxy(IEnumSTATPROPSTG *This,ULONG celt,STATPROPSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSTG_RemoteNext_Proxy(IEnumSTATPROPSTG *This, ULONG celt, STATPROPSTG *rgelt, ULONG *pceltFetched);
//C void IEnumSTATPROPSTG_RemoteNext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSTG_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSTG_Skip_Proxy(IEnumSTATPROPSTG *This,ULONG celt);
HRESULT IEnumSTATPROPSTG_Skip_Proxy(IEnumSTATPROPSTG *This, ULONG celt);
//C void IEnumSTATPROPSTG_Skip_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSTG_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSTG_Reset_Proxy(IEnumSTATPROPSTG *This);
HRESULT IEnumSTATPROPSTG_Reset_Proxy(IEnumSTATPROPSTG *This);
//C void IEnumSTATPROPSTG_Reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSTG_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSTG_Clone_Proxy(IEnumSTATPROPSTG *This,IEnumSTATPROPSTG **ppenum);
HRESULT IEnumSTATPROPSTG_Clone_Proxy(IEnumSTATPROPSTG *This, IEnumSTATPROPSTG **ppenum);
//C void IEnumSTATPROPSTG_Clone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSTG_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IEnumSTATPROPSETSTG *LPENUMSTATPROPSETSTG;
alias IEnumSTATPROPSETSTG *LPENUMSTATPROPSETSTG;
//C typedef struct IEnumSTATPROPSETSTGVtbl {
//C HRESULT ( *QueryInterface)(IEnumSTATPROPSETSTG *This,const IID *const riid,void **ppvObject);
//C ULONG ( *AddRef)(IEnumSTATPROPSETSTG *This);
//C ULONG ( *Release)(IEnumSTATPROPSETSTG *This);
//C HRESULT ( *Next)(IEnumSTATPROPSETSTG *This,ULONG celt,STATPROPSETSTG *rgelt,ULONG *pceltFetched);
//C HRESULT ( *Skip)(IEnumSTATPROPSETSTG *This,ULONG celt);
//C HRESULT ( *Reset)(IEnumSTATPROPSETSTG *This);
//C HRESULT ( *Clone)(IEnumSTATPROPSETSTG *This,IEnumSTATPROPSETSTG **ppenum);
//C } IEnumSTATPROPSETSTGVtbl;
struct IEnumSTATPROPSETSTGVtbl
{
HRESULT function(IEnumSTATPROPSETSTG *This, IID *riid, void **ppvObject)QueryInterface;
ULONG function(IEnumSTATPROPSETSTG *This)AddRef;
ULONG function(IEnumSTATPROPSETSTG *This)Release;
HRESULT function(IEnumSTATPROPSETSTG *This, ULONG celt, STATPROPSETSTG *rgelt, ULONG *pceltFetched)Next;
HRESULT function(IEnumSTATPROPSETSTG *This, ULONG celt)Skip;
HRESULT function(IEnumSTATPROPSETSTG *This)Reset;
HRESULT function(IEnumSTATPROPSETSTG *This, IEnumSTATPROPSETSTG **ppenum)Clone;
}
//C struct IEnumSTATPROPSETSTG {
//C struct IEnumSTATPROPSETSTGVtbl *lpVtbl;
//C };
struct IEnumSTATPROPSETSTG
{
IEnumSTATPROPSETSTGVtbl *lpVtbl;
}
//C HRESULT IEnumSTATPROPSETSTG_RemoteNext_Proxy(IEnumSTATPROPSETSTG *This,ULONG celt,STATPROPSETSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSETSTG_RemoteNext_Proxy(IEnumSTATPROPSETSTG *This, ULONG celt, STATPROPSETSTG *rgelt, ULONG *pceltFetched);
//C void IEnumSTATPROPSETSTG_RemoteNext_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSETSTG_RemoteNext_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSETSTG_Skip_Proxy(IEnumSTATPROPSETSTG *This,ULONG celt);
HRESULT IEnumSTATPROPSETSTG_Skip_Proxy(IEnumSTATPROPSETSTG *This, ULONG celt);
//C void IEnumSTATPROPSETSTG_Skip_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSETSTG_Skip_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSETSTG_Reset_Proxy(IEnumSTATPROPSETSTG *This);
HRESULT IEnumSTATPROPSETSTG_Reset_Proxy(IEnumSTATPROPSETSTG *This);
//C void IEnumSTATPROPSETSTG_Reset_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSETSTG_Reset_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C HRESULT IEnumSTATPROPSETSTG_Clone_Proxy(IEnumSTATPROPSETSTG *This,IEnumSTATPROPSETSTG **ppenum);
HRESULT IEnumSTATPROPSETSTG_Clone_Proxy(IEnumSTATPROPSETSTG *This, IEnumSTATPROPSETSTG **ppenum);
//C void IEnumSTATPROPSETSTG_Clone_Stub(IRpcStubBuffer *This,IRpcChannelBuffer *_pRpcChannelBuffer,PRPC_MESSAGE _pRpcMessage,DWORD *_pdwStubPhase);
void IEnumSTATPROPSETSTG_Clone_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
//C typedef IPropertyStorage *LPPROPERTYSTORAGE;
alias IPropertyStorage *LPPROPERTYSTORAGE;
//C extern HRESULT PropVariantCopy (PROPVARIANT *pvarDest,const PROPVARIANT *pvarSrc);
HRESULT PropVariantCopy(PROPVARIANT *pvarDest, PROPVARIANT *pvarSrc);
//C extern HRESULT PropVariantClear (PROPVARIANT *pvar);
HRESULT PropVariantClear(PROPVARIANT *pvar);
//C extern HRESULT FreePropVariantArray (ULONG cVariants,PROPVARIANT *rgvars);
HRESULT FreePropVariantArray(ULONG cVariants, PROPVARIANT *rgvars);
//C extern HRESULT StgCreatePropStg(IUnknown *pUnk,const IID *const fmtid,const CLSID *pclsid,DWORD grfFlags,DWORD dwReserved,IPropertyStorage **ppPropStg);
HRESULT StgCreatePropStg(IUnknown *pUnk, IID *fmtid, CLSID *pclsid, DWORD grfFlags, DWORD dwReserved, IPropertyStorage **ppPropStg);
//C extern HRESULT StgOpenPropStg(IUnknown *pUnk,const IID *const fmtid,DWORD grfFlags,DWORD dwReserved,IPropertyStorage **ppPropStg);
HRESULT StgOpenPropStg(IUnknown *pUnk, IID *fmtid, DWORD grfFlags, DWORD dwReserved, IPropertyStorage **ppPropStg);
//C extern HRESULT StgCreatePropSetStg(IStorage *pStorage,DWORD dwReserved,IPropertySetStorage **ppPropSetStg);
HRESULT StgCreatePropSetStg(IStorage *pStorage, DWORD dwReserved, IPropertySetStorage **ppPropSetStg);
//C extern HRESULT FmtIdToPropStgName(const FMTID *pfmtid,LPOLESTR oszName);
HRESULT FmtIdToPropStgName(FMTID *pfmtid, LPOLESTR oszName);
//C extern HRESULT PropStgNameToFmtId(const LPOLESTR oszName,FMTID *pfmtid);
HRESULT PropStgNameToFmtId(LPOLESTR oszName, FMTID *pfmtid);
//C extern RPC_IF_HANDLE __MIDL_itf_propidl_0120_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_propidl_0120_v0_0_c_ifspec;
//C extern RPC_IF_HANDLE __MIDL_itf_propidl_0120_v0_0_s_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_propidl_0120_v0_0_s_ifspec;
//C ULONG BSTR_UserSize(ULONG *,ULONG,BSTR *);
ULONG BSTR_UserSize(ULONG *, ULONG , BSTR *);
//C unsigned char * BSTR_UserMarshal(ULONG *,unsigned char *,BSTR *);
ubyte * BSTR_UserMarshal(ULONG *, ubyte *, BSTR *);
//C unsigned char * BSTR_UserUnmarshal(ULONG *,unsigned char *,BSTR *);
ubyte * BSTR_UserUnmarshal(ULONG *, ubyte *, BSTR *);
//C void BSTR_UserFree(ULONG *,BSTR *);
void BSTR_UserFree(ULONG *, BSTR *);
//C ULONG LPSAFEARRAY_UserSize(ULONG *,ULONG,LPSAFEARRAY *);
ULONG LPSAFEARRAY_UserSize(ULONG *, ULONG , LPSAFEARRAY *);
//C unsigned char * LPSAFEARRAY_UserMarshal(ULONG *,unsigned char *,LPSAFEARRAY *);
ubyte * LPSAFEARRAY_UserMarshal(ULONG *, ubyte *, LPSAFEARRAY *);
//C unsigned char * LPSAFEARRAY_UserUnmarshal(ULONG *,unsigned char *,LPSAFEARRAY *);
ubyte * LPSAFEARRAY_UserUnmarshal(ULONG *, ubyte *, LPSAFEARRAY *);
//C void LPSAFEARRAY_UserFree(ULONG *,LPSAFEARRAY *);
void LPSAFEARRAY_UserFree(ULONG *, LPSAFEARRAY *);
//C HRESULT IEnumSTATPROPSTG_Next_Proxy(IEnumSTATPROPSTG *This,ULONG celt,STATPROPSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSTG_Next_Proxy(IEnumSTATPROPSTG *This, ULONG celt, STATPROPSTG *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumSTATPROPSTG_Next_Stub(IEnumSTATPROPSTG *This,ULONG celt,STATPROPSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSTG_Next_Stub(IEnumSTATPROPSTG *This, ULONG celt, STATPROPSTG *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumSTATPROPSETSTG_Next_Proxy(IEnumSTATPROPSETSTG *This,ULONG celt,STATPROPSETSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSETSTG_Next_Proxy(IEnumSTATPROPSETSTG *This, ULONG celt, STATPROPSETSTG *rgelt, ULONG *pceltFetched);
//C HRESULT IEnumSTATPROPSETSTG_Next_Stub(IEnumSTATPROPSETSTG *This,ULONG celt,STATPROPSETSTG *rgelt,ULONG *pceltFetched);
HRESULT IEnumSTATPROPSETSTG_Next_Stub(IEnumSTATPROPSETSTG *This, ULONG celt, STATPROPSETSTG *rgelt, ULONG *pceltFetched);
//C extern HRESULT CreateStdProgressIndicator(HWND hwndParent,LPCOLESTR pszTitle,IBindStatusCallback *pIbscCaller,IBindStatusCallback **ppIbsc);
HRESULT CreateStdProgressIndicator(HWND hwndParent, LPCOLESTR pszTitle, IBindStatusCallback *pIbscCaller, IBindStatusCallback **ppIbsc);
//C extern BSTR SysAllocString(const OLECHAR *);
BSTR SysAllocString(OLECHAR *);
//C extern INT SysReAllocString(BSTR *,const OLECHAR *);
INT SysReAllocString(BSTR *, OLECHAR *);
//C extern BSTR SysAllocStringLen(const OLECHAR *,UINT);
BSTR SysAllocStringLen(OLECHAR *, UINT );
//C extern INT SysReAllocStringLen(BSTR *,const OLECHAR *,UINT);
INT SysReAllocStringLen(BSTR *, OLECHAR *, UINT );
//C extern void SysFreeString(BSTR);
void SysFreeString(BSTR );
//C extern UINT SysStringLen(BSTR);
UINT SysStringLen(BSTR );
//C extern UINT SysStringByteLen(BSTR bstr);
UINT SysStringByteLen(BSTR bstr);
//C extern BSTR SysAllocStringByteLen(LPCSTR psz,UINT len);
BSTR SysAllocStringByteLen(LPCSTR psz, UINT len);
//C extern INT DosDateTimeToVariantTime(USHORT wDosDate,USHORT wDosTime,DOUBLE *pvtime);
INT DosDateTimeToVariantTime(USHORT wDosDate, USHORT wDosTime, DOUBLE *pvtime);
//C extern INT VariantTimeToDosDateTime(DOUBLE vtime,USHORT *pwDosDate,USHORT *pwDosTime);
INT VariantTimeToDosDateTime(DOUBLE vtime, USHORT *pwDosDate, USHORT *pwDosTime);
//C extern INT SystemTimeToVariantTime(LPSYSTEMTIME lpSystemTime,DOUBLE *pvtime);
INT SystemTimeToVariantTime(LPSYSTEMTIME lpSystemTime, DOUBLE *pvtime);
//C extern INT VariantTimeToSystemTime(DOUBLE vtime,LPSYSTEMTIME lpSystemTime);
INT VariantTimeToSystemTime(DOUBLE vtime, LPSYSTEMTIME lpSystemTime);
//C extern HRESULT SafeArrayAllocDescriptor(UINT cDims,SAFEARRAY **ppsaOut);
HRESULT SafeArrayAllocDescriptor(UINT cDims, SAFEARRAY **ppsaOut);
//C extern HRESULT SafeArrayAllocDescriptorEx(VARTYPE vt,UINT cDims,SAFEARRAY **ppsaOut);
HRESULT SafeArrayAllocDescriptorEx(VARTYPE vt, UINT cDims, SAFEARRAY **ppsaOut);
//C extern HRESULT SafeArrayAllocData(SAFEARRAY *psa);
HRESULT SafeArrayAllocData(SAFEARRAY *psa);
//C extern SAFEARRAY * SafeArrayCreate(VARTYPE vt,UINT cDims,SAFEARRAYBOUND *rgsabound);
SAFEARRAY * SafeArrayCreate(VARTYPE vt, UINT cDims, SAFEARRAYBOUND *rgsabound);
//C extern SAFEARRAY * SafeArrayCreateEx(VARTYPE vt,UINT cDims,SAFEARRAYBOUND *rgsabound,PVOID pvExtra);
SAFEARRAY * SafeArrayCreateEx(VARTYPE vt, UINT cDims, SAFEARRAYBOUND *rgsabound, PVOID pvExtra);
//C extern HRESULT SafeArrayCopyData(SAFEARRAY *psaSource,SAFEARRAY *psaTarget);
HRESULT SafeArrayCopyData(SAFEARRAY *psaSource, SAFEARRAY *psaTarget);
//C extern HRESULT SafeArrayDestroyDescriptor(SAFEARRAY *psa);
HRESULT SafeArrayDestroyDescriptor(SAFEARRAY *psa);
//C extern HRESULT SafeArrayDestroyData(SAFEARRAY *psa);
HRESULT SafeArrayDestroyData(SAFEARRAY *psa);
//C extern HRESULT SafeArrayDestroy(SAFEARRAY *psa);
HRESULT SafeArrayDestroy(SAFEARRAY *psa);
//C extern HRESULT SafeArrayRedim(SAFEARRAY *psa,SAFEARRAYBOUND *psaboundNew);
HRESULT SafeArrayRedim(SAFEARRAY *psa, SAFEARRAYBOUND *psaboundNew);
//C extern UINT SafeArrayGetDim(SAFEARRAY *psa);
UINT SafeArrayGetDim(SAFEARRAY *psa);
//C extern UINT SafeArrayGetElemsize(SAFEARRAY *psa);
UINT SafeArrayGetElemsize(SAFEARRAY *psa);
//C extern HRESULT SafeArrayGetUBound(SAFEARRAY *psa,UINT nDim,LONG *plUbound);
HRESULT SafeArrayGetUBound(SAFEARRAY *psa, UINT nDim, LONG *plUbound);
//C extern HRESULT SafeArrayGetLBound(SAFEARRAY *psa,UINT nDim,LONG *plLbound);
HRESULT SafeArrayGetLBound(SAFEARRAY *psa, UINT nDim, LONG *plLbound);
//C extern HRESULT SafeArrayLock(SAFEARRAY *psa);
HRESULT SafeArrayLock(SAFEARRAY *psa);
//C extern HRESULT SafeArrayUnlock(SAFEARRAY *psa);
HRESULT SafeArrayUnlock(SAFEARRAY *psa);
//C extern HRESULT SafeArrayAccessData(SAFEARRAY *psa,void **ppvData);
HRESULT SafeArrayAccessData(SAFEARRAY *psa, void **ppvData);
//C extern HRESULT SafeArrayUnaccessData(SAFEARRAY *psa);
HRESULT SafeArrayUnaccessData(SAFEARRAY *psa);
//C extern HRESULT SafeArrayGetElement(SAFEARRAY *psa,LONG *rgIndices,void *pv);
HRESULT SafeArrayGetElement(SAFEARRAY *psa, LONG *rgIndices, void *pv);
//C extern HRESULT SafeArrayPutElement(SAFEARRAY *psa,LONG *rgIndices,void *pv);
HRESULT SafeArrayPutElement(SAFEARRAY *psa, LONG *rgIndices, void *pv);
//C extern HRESULT SafeArrayCopy(SAFEARRAY *psa,SAFEARRAY **ppsaOut);
HRESULT SafeArrayCopy(SAFEARRAY *psa, SAFEARRAY **ppsaOut);
//C extern HRESULT SafeArrayPtrOfIndex(SAFEARRAY *psa,LONG *rgIndices,void **ppvData);
HRESULT SafeArrayPtrOfIndex(SAFEARRAY *psa, LONG *rgIndices, void **ppvData);
//C extern HRESULT SafeArraySetRecordInfo(SAFEARRAY *psa,IRecordInfo *prinfo);
HRESULT SafeArraySetRecordInfo(SAFEARRAY *psa, IRecordInfo *prinfo);
//C extern HRESULT SafeArrayGetRecordInfo(SAFEARRAY *psa,IRecordInfo **prinfo);
HRESULT SafeArrayGetRecordInfo(SAFEARRAY *psa, IRecordInfo **prinfo);
//C extern HRESULT SafeArraySetIID(SAFEARRAY *psa,const GUID *const guid);
HRESULT SafeArraySetIID(SAFEARRAY *psa, GUID *guid);
//C extern HRESULT SafeArrayGetIID(SAFEARRAY *psa,GUID *pguid);
HRESULT SafeArrayGetIID(SAFEARRAY *psa, GUID *pguid);
//C extern HRESULT SafeArrayGetVartype(SAFEARRAY *psa,VARTYPE *pvt);
HRESULT SafeArrayGetVartype(SAFEARRAY *psa, VARTYPE *pvt);
//C extern SAFEARRAY * SafeArrayCreateVector(VARTYPE vt,LONG lLbound,ULONG cElements);
SAFEARRAY * SafeArrayCreateVector(VARTYPE vt, LONG lLbound, ULONG cElements);
//C extern SAFEARRAY * SafeArrayCreateVectorEx(VARTYPE vt,LONG lLbound,ULONG cElements,PVOID pvExtra);
SAFEARRAY * SafeArrayCreateVectorEx(VARTYPE vt, LONG lLbound, ULONG cElements, PVOID pvExtra);
//C extern void VariantInit(VARIANTARG *pvarg);
void VariantInit(VARIANTARG *pvarg);
//C extern HRESULT VariantClear(VARIANTARG *pvarg);
HRESULT VariantClear(VARIANTARG *pvarg);
//C extern HRESULT VariantCopy(VARIANTARG *pvargDest,VARIANTARG *pvargSrc);
HRESULT VariantCopy(VARIANTARG *pvargDest, VARIANTARG *pvargSrc);
//C extern HRESULT VariantCopyInd(VARIANT *pvarDest,VARIANTARG *pvargSrc);
HRESULT VariantCopyInd(VARIANT *pvarDest, VARIANTARG *pvargSrc);
//C extern HRESULT VariantChangeType(VARIANTARG *pvargDest,VARIANTARG *pvarSrc,USHORT wFlags,VARTYPE vt);
HRESULT VariantChangeType(VARIANTARG *pvargDest, VARIANTARG *pvarSrc, USHORT wFlags, VARTYPE vt);
//C extern HRESULT VariantChangeTypeEx(VARIANTARG *pvargDest,VARIANTARG *pvarSrc,LCID lcid,USHORT wFlags,VARTYPE vt);
HRESULT VariantChangeTypeEx(VARIANTARG *pvargDest, VARIANTARG *pvarSrc, LCID lcid, USHORT wFlags, VARTYPE vt);
//C extern HRESULT VectorFromBstr (BSTR bstr,SAFEARRAY **ppsa);
HRESULT VectorFromBstr(BSTR bstr, SAFEARRAY **ppsa);
//C extern HRESULT BstrFromVector (SAFEARRAY *psa,BSTR *pbstr);
HRESULT BstrFromVector(SAFEARRAY *psa, BSTR *pbstr);
//C extern HRESULT VarUI1FromI2(SHORT sIn,BYTE *pbOut);
HRESULT VarUI1FromI2(SHORT sIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromI4(LONG lIn,BYTE *pbOut);
HRESULT VarUI1FromI4(LONG lIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromI8(LONG64 i64In,BYTE *pbOut);
HRESULT VarUI1FromI8(LONG64 i64In, BYTE *pbOut);
//C extern HRESULT VarUI1FromR4(FLOAT fltIn,BYTE *pbOut);
HRESULT VarUI1FromR4(FLOAT fltIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromR8(DOUBLE dblIn,BYTE *pbOut);
HRESULT VarUI1FromR8(DOUBLE dblIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromCy(CY cyIn,BYTE *pbOut);
HRESULT VarUI1FromCy(CY cyIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromDate(DATE dateIn,BYTE *pbOut);
HRESULT VarUI1FromDate(DATE dateIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,BYTE *pbOut);
HRESULT VarUI1FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, BYTE *pbOut);
//C extern HRESULT VarUI1FromDisp(IDispatch *pdispIn,LCID lcid,BYTE *pbOut);
HRESULT VarUI1FromDisp(IDispatch *pdispIn, LCID lcid, BYTE *pbOut);
//C extern HRESULT VarUI1FromBool(VARIANT_BOOL boolIn,BYTE *pbOut);
HRESULT VarUI1FromBool(VARIANT_BOOL boolIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromI1(CHAR cIn,BYTE *pbOut);
HRESULT VarUI1FromI1(CHAR cIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromUI2(USHORT uiIn,BYTE *pbOut);
HRESULT VarUI1FromUI2(USHORT uiIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromUI4(ULONG ulIn,BYTE *pbOut);
HRESULT VarUI1FromUI4(ULONG ulIn, BYTE *pbOut);
//C extern HRESULT VarUI1FromUI8(ULONG64 ui64In,BYTE *pbOut);
HRESULT VarUI1FromUI8(ULONG64 ui64In, BYTE *pbOut);
//C extern HRESULT VarUI1FromDec(DECIMAL *pdecIn,BYTE *pbOut);
HRESULT VarUI1FromDec(DECIMAL *pdecIn, BYTE *pbOut);
//C extern HRESULT VarI2FromUI1(BYTE bIn,SHORT *psOut);
HRESULT VarI2FromUI1(BYTE bIn, SHORT *psOut);
//C extern HRESULT VarI2FromI4(LONG lIn,SHORT *psOut);
HRESULT VarI2FromI4(LONG lIn, SHORT *psOut);
//C extern HRESULT VarI2FromI8(LONG64 i64In,SHORT *psOut);
HRESULT VarI2FromI8(LONG64 i64In, SHORT *psOut);
//C extern HRESULT VarI2FromR4(FLOAT fltIn,SHORT *psOut);
HRESULT VarI2FromR4(FLOAT fltIn, SHORT *psOut);
//C extern HRESULT VarI2FromR8(DOUBLE dblIn,SHORT *psOut);
HRESULT VarI2FromR8(DOUBLE dblIn, SHORT *psOut);
//C extern HRESULT VarI2FromCy(CY cyIn,SHORT *psOut);
HRESULT VarI2FromCy(CY cyIn, SHORT *psOut);
//C extern HRESULT VarI2FromDate(DATE dateIn,SHORT *psOut);
HRESULT VarI2FromDate(DATE dateIn, SHORT *psOut);
//C extern HRESULT VarI2FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,SHORT *psOut);
HRESULT VarI2FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, SHORT *psOut);
//C extern HRESULT VarI2FromDisp(IDispatch *pdispIn,LCID lcid,SHORT *psOut);
HRESULT VarI2FromDisp(IDispatch *pdispIn, LCID lcid, SHORT *psOut);
//C extern HRESULT VarI2FromBool(VARIANT_BOOL boolIn,SHORT *psOut);
HRESULT VarI2FromBool(VARIANT_BOOL boolIn, SHORT *psOut);
//C extern HRESULT VarI2FromI1(CHAR cIn,SHORT *psOut);
HRESULT VarI2FromI1(CHAR cIn, SHORT *psOut);
//C extern HRESULT VarI2FromUI2(USHORT uiIn,SHORT *psOut);
HRESULT VarI2FromUI2(USHORT uiIn, SHORT *psOut);
//C extern HRESULT VarI2FromUI4(ULONG ulIn,SHORT *psOut);
HRESULT VarI2FromUI4(ULONG ulIn, SHORT *psOut);
//C extern HRESULT VarI2FromUI8(ULONG64 ui64In,SHORT *psOut);
HRESULT VarI2FromUI8(ULONG64 ui64In, SHORT *psOut);
//C extern HRESULT VarI2FromDec(DECIMAL *pdecIn,SHORT *psOut);
HRESULT VarI2FromDec(DECIMAL *pdecIn, SHORT *psOut);
//C extern HRESULT VarI4FromUI1(BYTE bIn,LONG *plOut);
HRESULT VarI4FromUI1(BYTE bIn, LONG *plOut);
//C extern HRESULT VarI4FromI2(SHORT sIn,LONG *plOut);
HRESULT VarI4FromI2(SHORT sIn, LONG *plOut);
//C extern HRESULT VarI4FromI8(LONG64 i64In,LONG *plOut);
HRESULT VarI4FromI8(LONG64 i64In, LONG *plOut);
//C extern HRESULT VarI4FromR4(FLOAT fltIn,LONG *plOut);
HRESULT VarI4FromR4(FLOAT fltIn, LONG *plOut);
//C extern HRESULT VarI4FromR8(DOUBLE dblIn,LONG *plOut);
HRESULT VarI4FromR8(DOUBLE dblIn, LONG *plOut);
//C extern HRESULT VarI4FromCy(CY cyIn,LONG *plOut);
HRESULT VarI4FromCy(CY cyIn, LONG *plOut);
//C extern HRESULT VarI4FromDate(DATE dateIn,LONG *plOut);
HRESULT VarI4FromDate(DATE dateIn, LONG *plOut);
//C extern HRESULT VarI4FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,LONG *plOut);
HRESULT VarI4FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, LONG *plOut);
//C extern HRESULT VarI4FromDisp(IDispatch *pdispIn,LCID lcid,LONG *plOut);
HRESULT VarI4FromDisp(IDispatch *pdispIn, LCID lcid, LONG *plOut);
//C extern HRESULT VarI4FromBool(VARIANT_BOOL boolIn,LONG *plOut);
HRESULT VarI4FromBool(VARIANT_BOOL boolIn, LONG *plOut);
//C extern HRESULT VarI4FromI1(CHAR cIn,LONG *plOut);
HRESULT VarI4FromI1(CHAR cIn, LONG *plOut);
//C extern HRESULT VarI4FromUI2(USHORT uiIn,LONG *plOut);
HRESULT VarI4FromUI2(USHORT uiIn, LONG *plOut);
//C extern HRESULT VarI4FromUI4(ULONG ulIn,LONG *plOut);
HRESULT VarI4FromUI4(ULONG ulIn, LONG *plOut);
//C extern HRESULT VarI4FromUI8(ULONG64 ui64In,LONG *plOut);
HRESULT VarI4FromUI8(ULONG64 ui64In, LONG *plOut);
//C extern HRESULT VarI4FromDec(DECIMAL *pdecIn,LONG *plOut);
HRESULT VarI4FromDec(DECIMAL *pdecIn, LONG *plOut);
//C extern HRESULT VarI4FromInt(INT intIn,LONG *plOut);
HRESULT VarI4FromInt(INT intIn, LONG *plOut);
//C extern HRESULT VarI8FromUI1(BYTE bIn,LONG64 *pi64Out);
HRESULT VarI8FromUI1(BYTE bIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromI2(SHORT sIn,LONG64 *pi64Out);
HRESULT VarI8FromI2(SHORT sIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromI4(LONG lIn,LONG64 *pi64Out);
HRESULT VarI8FromI4(LONG lIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromR4(FLOAT fltIn,LONG64 *pi64Out);
HRESULT VarI8FromR4(FLOAT fltIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromR8(DOUBLE dblIn,LONG64 *pi64Out);
HRESULT VarI8FromR8(DOUBLE dblIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromCy(CY cyIn,LONG64 *pi64Out);
HRESULT VarI8FromCy(CY cyIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromDate(DATE dateIn,LONG64 *pi64Out);
HRESULT VarI8FromDate(DATE dateIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromStr(OLECHAR *strIn,LCID lcid,unsigned long dwFlags,LONG64 *pi64Out);
HRESULT VarI8FromStr(OLECHAR *strIn, LCID lcid, uint dwFlags, LONG64 *pi64Out);
//C extern HRESULT VarI8FromDisp(IDispatch *pdispIn,LCID lcid,LONG64 *pi64Out);
HRESULT VarI8FromDisp(IDispatch *pdispIn, LCID lcid, LONG64 *pi64Out);
//C extern HRESULT VarI8FromBool(VARIANT_BOOL boolIn,LONG64 *pi64Out);
HRESULT VarI8FromBool(VARIANT_BOOL boolIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromI1(CHAR cIn,LONG64 *pi64Out);
HRESULT VarI8FromI1(CHAR cIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromUI2(USHORT uiIn,LONG64 *pi64Out);
HRESULT VarI8FromUI2(USHORT uiIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromUI4(ULONG ulIn,LONG64 *pi64Out);
HRESULT VarI8FromUI4(ULONG ulIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromUI8(ULONG64 ui64In,LONG64 *pi64Out);
HRESULT VarI8FromUI8(ULONG64 ui64In, LONG64 *pi64Out);
//C extern HRESULT VarI8FromDec(DECIMAL *pdecIn,LONG64 *pi64Out);
HRESULT VarI8FromDec(DECIMAL *pdecIn, LONG64 *pi64Out);
//C extern HRESULT VarI8FromInt(INT intIn,LONG64 *pi64Out);
HRESULT VarI8FromInt(INT intIn, LONG64 *pi64Out);
//C extern HRESULT VarR4FromUI1(BYTE bIn,FLOAT *pfltOut);
HRESULT VarR4FromUI1(BYTE bIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromI2(SHORT sIn,FLOAT *pfltOut);
HRESULT VarR4FromI2(SHORT sIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromI4(LONG lIn,FLOAT *pfltOut);
HRESULT VarR4FromI4(LONG lIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromI8(LONG64 i64In,FLOAT *pfltOut);
HRESULT VarR4FromI8(LONG64 i64In, FLOAT *pfltOut);
//C extern HRESULT VarR4FromR8(DOUBLE dblIn,FLOAT *pfltOut);
HRESULT VarR4FromR8(DOUBLE dblIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromCy(CY cyIn,FLOAT *pfltOut);
HRESULT VarR4FromCy(CY cyIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromDate(DATE dateIn,FLOAT *pfltOut);
HRESULT VarR4FromDate(DATE dateIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,FLOAT *pfltOut);
HRESULT VarR4FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, FLOAT *pfltOut);
//C extern HRESULT VarR4FromDisp(IDispatch *pdispIn,LCID lcid,FLOAT *pfltOut);
HRESULT VarR4FromDisp(IDispatch *pdispIn, LCID lcid, FLOAT *pfltOut);
//C extern HRESULT VarR4FromBool(VARIANT_BOOL boolIn,FLOAT *pfltOut);
HRESULT VarR4FromBool(VARIANT_BOOL boolIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromI1(CHAR cIn,FLOAT *pfltOut);
HRESULT VarR4FromI1(CHAR cIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromUI2(USHORT uiIn,FLOAT *pfltOut);
HRESULT VarR4FromUI2(USHORT uiIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromUI4(ULONG ulIn,FLOAT *pfltOut);
HRESULT VarR4FromUI4(ULONG ulIn, FLOAT *pfltOut);
//C extern HRESULT VarR4FromUI8(ULONG64 ui64In,FLOAT *pfltOut);
HRESULT VarR4FromUI8(ULONG64 ui64In, FLOAT *pfltOut);
//C extern HRESULT VarR4FromDec(DECIMAL *pdecIn,FLOAT *pfltOut);
HRESULT VarR4FromDec(DECIMAL *pdecIn, FLOAT *pfltOut);
//C extern HRESULT VarR8FromUI1(BYTE bIn,DOUBLE *pdblOut);
HRESULT VarR8FromUI1(BYTE bIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromI2(SHORT sIn,DOUBLE *pdblOut);
HRESULT VarR8FromI2(SHORT sIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromI4(LONG lIn,DOUBLE *pdblOut);
HRESULT VarR8FromI4(LONG lIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromI8(LONG64 i64In,DOUBLE *pdblOut);
HRESULT VarR8FromI8(LONG64 i64In, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromR4(FLOAT fltIn,DOUBLE *pdblOut);
HRESULT VarR8FromR4(FLOAT fltIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromCy(CY cyIn,DOUBLE *pdblOut);
HRESULT VarR8FromCy(CY cyIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromDate(DATE dateIn,DOUBLE *pdblOut);
HRESULT VarR8FromDate(DATE dateIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,DOUBLE *pdblOut);
HRESULT VarR8FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromDisp(IDispatch *pdispIn,LCID lcid,DOUBLE *pdblOut);
HRESULT VarR8FromDisp(IDispatch *pdispIn, LCID lcid, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromBool(VARIANT_BOOL boolIn,DOUBLE *pdblOut);
HRESULT VarR8FromBool(VARIANT_BOOL boolIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromI1(CHAR cIn,DOUBLE *pdblOut);
HRESULT VarR8FromI1(CHAR cIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromUI2(USHORT uiIn,DOUBLE *pdblOut);
HRESULT VarR8FromUI2(USHORT uiIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromUI4(ULONG ulIn,DOUBLE *pdblOut);
HRESULT VarR8FromUI4(ULONG ulIn, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromUI8(ULONG64 ui64In,DOUBLE *pdblOut);
HRESULT VarR8FromUI8(ULONG64 ui64In, DOUBLE *pdblOut);
//C extern HRESULT VarR8FromDec(DECIMAL *pdecIn,DOUBLE *pdblOut);
HRESULT VarR8FromDec(DECIMAL *pdecIn, DOUBLE *pdblOut);
//C extern HRESULT VarDateFromUI1(BYTE bIn,DATE *pdateOut);
HRESULT VarDateFromUI1(BYTE bIn, DATE *pdateOut);
//C extern HRESULT VarDateFromI2(SHORT sIn,DATE *pdateOut);
HRESULT VarDateFromI2(SHORT sIn, DATE *pdateOut);
//C extern HRESULT VarDateFromI4(LONG lIn,DATE *pdateOut);
HRESULT VarDateFromI4(LONG lIn, DATE *pdateOut);
//C extern HRESULT VarDateFromI8(LONG64 i64In,DATE *pdateOut);
HRESULT VarDateFromI8(LONG64 i64In, DATE *pdateOut);
//C extern HRESULT VarDateFromR4(FLOAT fltIn,DATE *pdateOut);
HRESULT VarDateFromR4(FLOAT fltIn, DATE *pdateOut);
//C extern HRESULT VarDateFromR8(DOUBLE dblIn,DATE *pdateOut);
HRESULT VarDateFromR8(DOUBLE dblIn, DATE *pdateOut);
//C extern HRESULT VarDateFromCy(CY cyIn,DATE *pdateOut);
HRESULT VarDateFromCy(CY cyIn, DATE *pdateOut);
//C extern HRESULT VarDateFromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,DATE *pdateOut);
HRESULT VarDateFromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, DATE *pdateOut);
//C extern HRESULT VarDateFromDisp(IDispatch *pdispIn,LCID lcid,DATE *pdateOut);
HRESULT VarDateFromDisp(IDispatch *pdispIn, LCID lcid, DATE *pdateOut);
//C extern HRESULT VarDateFromBool(VARIANT_BOOL boolIn,DATE *pdateOut);
HRESULT VarDateFromBool(VARIANT_BOOL boolIn, DATE *pdateOut);
//C extern HRESULT VarDateFromI1(CHAR cIn,DATE *pdateOut);
HRESULT VarDateFromI1(CHAR cIn, DATE *pdateOut);
//C extern HRESULT VarDateFromUI2(USHORT uiIn,DATE *pdateOut);
HRESULT VarDateFromUI2(USHORT uiIn, DATE *pdateOut);
//C extern HRESULT VarDateFromUI4(ULONG ulIn,DATE *pdateOut);
HRESULT VarDateFromUI4(ULONG ulIn, DATE *pdateOut);
//C extern HRESULT VarDateFromUI8(ULONG64 ui64In,DATE *pdateOut);
HRESULT VarDateFromUI8(ULONG64 ui64In, DATE *pdateOut);
//C extern HRESULT VarDateFromDec(DECIMAL *pdecIn,DATE *pdateOut);
HRESULT VarDateFromDec(DECIMAL *pdecIn, DATE *pdateOut);
//C extern HRESULT VarCyFromUI1(BYTE bIn,CY *pcyOut);
HRESULT VarCyFromUI1(BYTE bIn, CY *pcyOut);
//C extern HRESULT VarCyFromI2(SHORT sIn,CY *pcyOut);
HRESULT VarCyFromI2(SHORT sIn, CY *pcyOut);
//C extern HRESULT VarCyFromI4(LONG lIn,CY *pcyOut);
HRESULT VarCyFromI4(LONG lIn, CY *pcyOut);
//C extern HRESULT VarCyFromI8(LONG64 i64In,CY *pcyOut);
HRESULT VarCyFromI8(LONG64 i64In, CY *pcyOut);
//C extern HRESULT VarCyFromR4(FLOAT fltIn,CY *pcyOut);
HRESULT VarCyFromR4(FLOAT fltIn, CY *pcyOut);
//C extern HRESULT VarCyFromR8(DOUBLE dblIn,CY *pcyOut);
HRESULT VarCyFromR8(DOUBLE dblIn, CY *pcyOut);
//C extern HRESULT VarCyFromDate(DATE dateIn,CY *pcyOut);
HRESULT VarCyFromDate(DATE dateIn, CY *pcyOut);
//C extern HRESULT VarCyFromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,CY *pcyOut);
HRESULT VarCyFromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, CY *pcyOut);
//C extern HRESULT VarCyFromDisp(IDispatch *pdispIn,LCID lcid,CY *pcyOut);
HRESULT VarCyFromDisp(IDispatch *pdispIn, LCID lcid, CY *pcyOut);
//C extern HRESULT VarCyFromBool(VARIANT_BOOL boolIn,CY *pcyOut);
HRESULT VarCyFromBool(VARIANT_BOOL boolIn, CY *pcyOut);
//C extern HRESULT VarCyFromI1(CHAR cIn,CY *pcyOut);
HRESULT VarCyFromI1(CHAR cIn, CY *pcyOut);
//C extern HRESULT VarCyFromUI2(USHORT uiIn,CY *pcyOut);
HRESULT VarCyFromUI2(USHORT uiIn, CY *pcyOut);
//C extern HRESULT VarCyFromUI4(ULONG ulIn,CY *pcyOut);
HRESULT VarCyFromUI4(ULONG ulIn, CY *pcyOut);
//C extern HRESULT VarCyFromUI8(ULONG64 ui64In,CY *pcyOut);
HRESULT VarCyFromUI8(ULONG64 ui64In, CY *pcyOut);
//C extern HRESULT VarCyFromDec(DECIMAL *pdecIn,CY *pcyOut);
HRESULT VarCyFromDec(DECIMAL *pdecIn, CY *pcyOut);
//C extern HRESULT VarBstrFromUI1(BYTE bVal,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromUI1(BYTE bVal, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromI2(SHORT iVal,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromI2(SHORT iVal, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromI4(LONG lIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromI4(LONG lIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromI8(LONG64 i64In,LCID lcid,unsigned long dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromI8(LONG64 i64In, LCID lcid, uint dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromR4(FLOAT fltIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromR4(FLOAT fltIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromR8(DOUBLE dblIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromR8(DOUBLE dblIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromCy(CY cyIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromCy(CY cyIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromDate(DATE dateIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromDate(DATE dateIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromDisp(IDispatch *pdispIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromDisp(IDispatch *pdispIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromBool(VARIANT_BOOL boolIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromBool(VARIANT_BOOL boolIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromI1(CHAR cIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromI1(CHAR cIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromUI2(USHORT uiIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromUI2(USHORT uiIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromUI4(ULONG ulIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromUI4(ULONG ulIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromUI8(ULONG64 ui64In,LCID lcid,unsigned long dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromUI8(ULONG64 ui64In, LCID lcid, uint dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBstrFromDec(DECIMAL *pdecIn,LCID lcid,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarBstrFromDec(DECIMAL *pdecIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarBoolFromUI1(BYTE bIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromUI1(BYTE bIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromI2(SHORT sIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromI2(SHORT sIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromI4(LONG lIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromI4(LONG lIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromI8(LONG64 i64In,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromI8(LONG64 i64In, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromR4(FLOAT fltIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromR4(FLOAT fltIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromR8(DOUBLE dblIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromR8(DOUBLE dblIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromDate(DATE dateIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromDate(DATE dateIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromCy(CY cyIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromCy(CY cyIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromDisp(IDispatch *pdispIn,LCID lcid,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromDisp(IDispatch *pdispIn, LCID lcid, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromI1(CHAR cIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromI1(CHAR cIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromUI2(USHORT uiIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromUI2(USHORT uiIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromUI4(ULONG ulIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromUI4(ULONG ulIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromUI8(ULONG64 i64In,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromUI8(ULONG64 i64In, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarBoolFromDec(DECIMAL *pdecIn,VARIANT_BOOL *pboolOut);
HRESULT VarBoolFromDec(DECIMAL *pdecIn, VARIANT_BOOL *pboolOut);
//C extern HRESULT VarI1FromUI1(BYTE bIn,CHAR *pcOut);
HRESULT VarI1FromUI1(BYTE bIn, CHAR *pcOut);
//C extern HRESULT VarI1FromI2(SHORT uiIn,CHAR *pcOut);
HRESULT VarI1FromI2(SHORT uiIn, CHAR *pcOut);
//C extern HRESULT VarI1FromI4(LONG lIn,CHAR *pcOut);
HRESULT VarI1FromI4(LONG lIn, CHAR *pcOut);
//C extern HRESULT VarI1FromI8(LONG64 i64In,CHAR *pcOut);
HRESULT VarI1FromI8(LONG64 i64In, CHAR *pcOut);
//C extern HRESULT VarI1FromR4(FLOAT fltIn,CHAR *pcOut);
HRESULT VarI1FromR4(FLOAT fltIn, CHAR *pcOut);
//C extern HRESULT VarI1FromR8(DOUBLE dblIn,CHAR *pcOut);
HRESULT VarI1FromR8(DOUBLE dblIn, CHAR *pcOut);
//C extern HRESULT VarI1FromDate(DATE dateIn,CHAR *pcOut);
HRESULT VarI1FromDate(DATE dateIn, CHAR *pcOut);
//C extern HRESULT VarI1FromCy(CY cyIn,CHAR *pcOut);
HRESULT VarI1FromCy(CY cyIn, CHAR *pcOut);
//C extern HRESULT VarI1FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,CHAR *pcOut);
HRESULT VarI1FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, CHAR *pcOut);
//C extern HRESULT VarI1FromDisp(IDispatch *pdispIn,LCID lcid,CHAR *pcOut);
HRESULT VarI1FromDisp(IDispatch *pdispIn, LCID lcid, CHAR *pcOut);
//C extern HRESULT VarI1FromBool(VARIANT_BOOL boolIn,CHAR *pcOut);
HRESULT VarI1FromBool(VARIANT_BOOL boolIn, CHAR *pcOut);
//C extern HRESULT VarI1FromUI2(USHORT uiIn,CHAR *pcOut);
HRESULT VarI1FromUI2(USHORT uiIn, CHAR *pcOut);
//C extern HRESULT VarI1FromUI4(ULONG ulIn,CHAR *pcOut);
HRESULT VarI1FromUI4(ULONG ulIn, CHAR *pcOut);
//C extern HRESULT VarI1FromUI8(ULONG64 i64In,CHAR *pcOut);
HRESULT VarI1FromUI8(ULONG64 i64In, CHAR *pcOut);
//C extern HRESULT VarI1FromDec(DECIMAL *pdecIn,CHAR *pcOut);
HRESULT VarI1FromDec(DECIMAL *pdecIn, CHAR *pcOut);
//C extern HRESULT VarUI2FromUI1(BYTE bIn,USHORT *puiOut);
HRESULT VarUI2FromUI1(BYTE bIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromI2(SHORT uiIn,USHORT *puiOut);
HRESULT VarUI2FromI2(SHORT uiIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromI4(LONG lIn,USHORT *puiOut);
HRESULT VarUI2FromI4(LONG lIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromI8(LONG64 i64In,USHORT *puiOut);
HRESULT VarUI2FromI8(LONG64 i64In, USHORT *puiOut);
//C extern HRESULT VarUI2FromR4(FLOAT fltIn,USHORT *puiOut);
HRESULT VarUI2FromR4(FLOAT fltIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromR8(DOUBLE dblIn,USHORT *puiOut);
HRESULT VarUI2FromR8(DOUBLE dblIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromDate(DATE dateIn,USHORT *puiOut);
HRESULT VarUI2FromDate(DATE dateIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromCy(CY cyIn,USHORT *puiOut);
HRESULT VarUI2FromCy(CY cyIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,USHORT *puiOut);
HRESULT VarUI2FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, USHORT *puiOut);
//C extern HRESULT VarUI2FromDisp(IDispatch *pdispIn,LCID lcid,USHORT *puiOut);
HRESULT VarUI2FromDisp(IDispatch *pdispIn, LCID lcid, USHORT *puiOut);
//C extern HRESULT VarUI2FromBool(VARIANT_BOOL boolIn,USHORT *puiOut);
HRESULT VarUI2FromBool(VARIANT_BOOL boolIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromI1(CHAR cIn,USHORT *puiOut);
HRESULT VarUI2FromI1(CHAR cIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromUI4(ULONG ulIn,USHORT *puiOut);
HRESULT VarUI2FromUI4(ULONG ulIn, USHORT *puiOut);
//C extern HRESULT VarUI2FromUI8(ULONG64 i64In,USHORT *puiOut);
HRESULT VarUI2FromUI8(ULONG64 i64In, USHORT *puiOut);
//C extern HRESULT VarUI2FromDec(DECIMAL *pdecIn,USHORT *puiOut);
HRESULT VarUI2FromDec(DECIMAL *pdecIn, USHORT *puiOut);
//C extern HRESULT VarUI4FromUI1(BYTE bIn,ULONG *pulOut);
HRESULT VarUI4FromUI1(BYTE bIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromI2(SHORT uiIn,ULONG *pulOut);
HRESULT VarUI4FromI2(SHORT uiIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromI4(LONG lIn,ULONG *pulOut);
HRESULT VarUI4FromI4(LONG lIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromI8(LONG64 i64In,ULONG *plOut);
HRESULT VarUI4FromI8(LONG64 i64In, ULONG *plOut);
//C extern HRESULT VarUI4FromR4(FLOAT fltIn,ULONG *pulOut);
HRESULT VarUI4FromR4(FLOAT fltIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromR8(DOUBLE dblIn,ULONG *pulOut);
HRESULT VarUI4FromR8(DOUBLE dblIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromDate(DATE dateIn,ULONG *pulOut);
HRESULT VarUI4FromDate(DATE dateIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromCy(CY cyIn,ULONG *pulOut);
HRESULT VarUI4FromCy(CY cyIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,ULONG *pulOut);
HRESULT VarUI4FromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, ULONG *pulOut);
//C extern HRESULT VarUI4FromDisp(IDispatch *pdispIn,LCID lcid,ULONG *pulOut);
HRESULT VarUI4FromDisp(IDispatch *pdispIn, LCID lcid, ULONG *pulOut);
//C extern HRESULT VarUI4FromBool(VARIANT_BOOL boolIn,ULONG *pulOut);
HRESULT VarUI4FromBool(VARIANT_BOOL boolIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromI1(CHAR cIn,ULONG *pulOut);
HRESULT VarUI4FromI1(CHAR cIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromUI2(USHORT uiIn,ULONG *pulOut);
HRESULT VarUI4FromUI2(USHORT uiIn, ULONG *pulOut);
//C extern HRESULT VarUI4FromUI8(ULONG64 ui64In,ULONG *plOut);
HRESULT VarUI4FromUI8(ULONG64 ui64In, ULONG *plOut);
//C extern HRESULT VarUI4FromDec(DECIMAL *pdecIn,ULONG *pulOut);
HRESULT VarUI4FromDec(DECIMAL *pdecIn, ULONG *pulOut);
//C extern HRESULT VarUI8FromUI1(BYTE bIn,ULONG64 *pi64Out);
HRESULT VarUI8FromUI1(BYTE bIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromI2(SHORT sIn,ULONG64 *pi64Out);
HRESULT VarUI8FromI2(SHORT sIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromI4(LONG lIn,ULONG64 *pi64Out);
HRESULT VarUI8FromI4(LONG lIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromI8(LONG64 ui64In,ULONG64 *pi64Out);
HRESULT VarUI8FromI8(LONG64 ui64In, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromR4(FLOAT fltIn,ULONG64 *pi64Out);
HRESULT VarUI8FromR4(FLOAT fltIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromR8(DOUBLE dblIn,ULONG64 *pi64Out);
HRESULT VarUI8FromR8(DOUBLE dblIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromCy(CY cyIn,ULONG64 *pi64Out);
HRESULT VarUI8FromCy(CY cyIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromDate(DATE dateIn,ULONG64 *pi64Out);
HRESULT VarUI8FromDate(DATE dateIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromStr(OLECHAR *strIn,LCID lcid,unsigned long dwFlags,ULONG64 *pi64Out);
HRESULT VarUI8FromStr(OLECHAR *strIn, LCID lcid, uint dwFlags, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromDisp(IDispatch *pdispIn,LCID lcid,ULONG64 *pi64Out);
HRESULT VarUI8FromDisp(IDispatch *pdispIn, LCID lcid, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromBool(VARIANT_BOOL boolIn,ULONG64 *pi64Out);
HRESULT VarUI8FromBool(VARIANT_BOOL boolIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromI1(CHAR cIn,ULONG64 *pi64Out);
HRESULT VarUI8FromI1(CHAR cIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromUI2(USHORT uiIn,ULONG64 *pi64Out);
HRESULT VarUI8FromUI2(USHORT uiIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromUI4(ULONG ulIn,ULONG64 *pi64Out);
HRESULT VarUI8FromUI4(ULONG ulIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromDec(DECIMAL *pdecIn,ULONG64 *pi64Out);
HRESULT VarUI8FromDec(DECIMAL *pdecIn, ULONG64 *pi64Out);
//C extern HRESULT VarUI8FromInt(INT intIn,ULONG64 *pi64Out);
HRESULT VarUI8FromInt(INT intIn, ULONG64 *pi64Out);
//C extern HRESULT VarDecFromUI1(BYTE bIn,DECIMAL *pdecOut);
HRESULT VarDecFromUI1(BYTE bIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromI2(SHORT uiIn,DECIMAL *pdecOut);
HRESULT VarDecFromI2(SHORT uiIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromI4(LONG lIn,DECIMAL *pdecOut);
HRESULT VarDecFromI4(LONG lIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromI8(LONG64 i64In,DECIMAL *pdecOut);
HRESULT VarDecFromI8(LONG64 i64In, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromR4(FLOAT fltIn,DECIMAL *pdecOut);
HRESULT VarDecFromR4(FLOAT fltIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromR8(DOUBLE dblIn,DECIMAL *pdecOut);
HRESULT VarDecFromR8(DOUBLE dblIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromDate(DATE dateIn,DECIMAL *pdecOut);
HRESULT VarDecFromDate(DATE dateIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromCy(CY cyIn,DECIMAL *pdecOut);
HRESULT VarDecFromCy(CY cyIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,DECIMAL *pdecOut);
HRESULT VarDecFromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromDisp(IDispatch *pdispIn,LCID lcid,DECIMAL *pdecOut);
HRESULT VarDecFromDisp(IDispatch *pdispIn, LCID lcid, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromBool(VARIANT_BOOL boolIn,DECIMAL *pdecOut);
HRESULT VarDecFromBool(VARIANT_BOOL boolIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromI1(CHAR cIn,DECIMAL *pdecOut);
HRESULT VarDecFromI1(CHAR cIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromUI2(USHORT uiIn,DECIMAL *pdecOut);
HRESULT VarDecFromUI2(USHORT uiIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromUI4(ULONG ulIn,DECIMAL *pdecOut);
HRESULT VarDecFromUI4(ULONG ulIn, DECIMAL *pdecOut);
//C extern HRESULT VarDecFromUI8(ULONG64 ui64In,DECIMAL *pdecOut);
HRESULT VarDecFromUI8(ULONG64 ui64In, DECIMAL *pdecOut);
//C extern HRESULT VarI4FromI8(LONG64 i64In,LONG *plOut);
HRESULT VarI4FromI8(LONG64 i64In, LONG *plOut);
//C extern HRESULT VarI4FromUI8(ULONG64 ui64In,LONG *plOut);
HRESULT VarI4FromUI8(ULONG64 ui64In, LONG *plOut);
//C typedef struct {
//C INT cDig;
//C ULONG dwInFlags;
//C ULONG dwOutFlags;
//C INT cchUsed;
//C INT nBaseShift;
//C INT nPwr10;
//C } NUMPARSE;
struct _N199
{
INT cDig;
ULONG dwInFlags;
ULONG dwOutFlags;
INT cchUsed;
INT nBaseShift;
INT nPwr10;
}
alias _N199 NUMPARSE;
//C extern HRESULT VarParseNumFromStr(OLECHAR *strIn,LCID lcid,ULONG dwFlags,NUMPARSE *pnumprs,BYTE *rgbDig);
HRESULT VarParseNumFromStr(OLECHAR *strIn, LCID lcid, ULONG dwFlags, NUMPARSE *pnumprs, BYTE *rgbDig);
//C extern HRESULT VarNumFromParseNum(NUMPARSE *pnumprs,BYTE *rgbDig,ULONG dwVtBits,VARIANT *pvar);
HRESULT VarNumFromParseNum(NUMPARSE *pnumprs, BYTE *rgbDig, ULONG dwVtBits, VARIANT *pvar);
//C extern HRESULT VarAdd(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarAdd(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarAnd(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarAnd(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarCat(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarCat(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarDiv(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarDiv(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarEqv(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarEqv(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarIdiv(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarIdiv(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarImp(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarImp(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarMod(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarMod(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarMul(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarMul(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarOr(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarOr(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarPow(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarPow(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarSub(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarSub(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarXor(LPVARIANT pvarLeft,LPVARIANT pvarRight,LPVARIANT pvarResult);
HRESULT VarXor(LPVARIANT pvarLeft, LPVARIANT pvarRight, LPVARIANT pvarResult);
//C extern HRESULT VarAbs(LPVARIANT pvarIn,LPVARIANT pvarResult);
HRESULT VarAbs(LPVARIANT pvarIn, LPVARIANT pvarResult);
//C extern HRESULT VarFix(LPVARIANT pvarIn,LPVARIANT pvarResult);
HRESULT VarFix(LPVARIANT pvarIn, LPVARIANT pvarResult);
//C extern HRESULT VarInt(LPVARIANT pvarIn,LPVARIANT pvarResult);
HRESULT VarInt(LPVARIANT pvarIn, LPVARIANT pvarResult);
//C extern HRESULT VarNeg(LPVARIANT pvarIn,LPVARIANT pvarResult);
HRESULT VarNeg(LPVARIANT pvarIn, LPVARIANT pvarResult);
//C extern HRESULT VarNot(LPVARIANT pvarIn,LPVARIANT pvarResult);
HRESULT VarNot(LPVARIANT pvarIn, LPVARIANT pvarResult);
//C extern HRESULT VarRound(LPVARIANT pvarIn,int cDecimals,LPVARIANT pvarResult);
HRESULT VarRound(LPVARIANT pvarIn, int cDecimals, LPVARIANT pvarResult);
//C extern HRESULT VarCmp(LPVARIANT pvarLeft,LPVARIANT pvarRight,LCID lcid,ULONG dwFlags);
HRESULT VarCmp(LPVARIANT pvarLeft, LPVARIANT pvarRight, LCID lcid, ULONG dwFlags);
//C extern HRESULT VarDecAdd(LPDECIMAL pdecLeft,LPDECIMAL pdecRight,LPDECIMAL pdecResult);
HRESULT VarDecAdd(LPDECIMAL pdecLeft, LPDECIMAL pdecRight, LPDECIMAL pdecResult);
//C extern HRESULT VarDecDiv(LPDECIMAL pdecLeft,LPDECIMAL pdecRight,LPDECIMAL pdecResult);
HRESULT VarDecDiv(LPDECIMAL pdecLeft, LPDECIMAL pdecRight, LPDECIMAL pdecResult);
//C extern HRESULT VarDecMul(LPDECIMAL pdecLeft,LPDECIMAL pdecRight,LPDECIMAL pdecResult);
HRESULT VarDecMul(LPDECIMAL pdecLeft, LPDECIMAL pdecRight, LPDECIMAL pdecResult);
//C extern HRESULT VarDecSub(LPDECIMAL pdecLeft,LPDECIMAL pdecRight,LPDECIMAL pdecResult);
HRESULT VarDecSub(LPDECIMAL pdecLeft, LPDECIMAL pdecRight, LPDECIMAL pdecResult);
//C extern HRESULT VarDecAbs(LPDECIMAL pdecIn,LPDECIMAL pdecResult);
HRESULT VarDecAbs(LPDECIMAL pdecIn, LPDECIMAL pdecResult);
//C extern HRESULT VarDecFix(LPDECIMAL pdecIn,LPDECIMAL pdecResult);
HRESULT VarDecFix(LPDECIMAL pdecIn, LPDECIMAL pdecResult);
//C extern HRESULT VarDecInt(LPDECIMAL pdecIn,LPDECIMAL pdecResult);
HRESULT VarDecInt(LPDECIMAL pdecIn, LPDECIMAL pdecResult);
//C extern HRESULT VarDecNeg(LPDECIMAL pdecIn,LPDECIMAL pdecResult);
HRESULT VarDecNeg(LPDECIMAL pdecIn, LPDECIMAL pdecResult);
//C extern HRESULT VarDecRound(LPDECIMAL pdecIn,int cDecimals,LPDECIMAL pdecResult);
HRESULT VarDecRound(LPDECIMAL pdecIn, int cDecimals, LPDECIMAL pdecResult);
//C extern HRESULT VarDecCmp(LPDECIMAL pdecLeft,LPDECIMAL pdecRight);
HRESULT VarDecCmp(LPDECIMAL pdecLeft, LPDECIMAL pdecRight);
//C extern HRESULT VarDecCmpR8(LPDECIMAL pdecLeft,double dblRight);
HRESULT VarDecCmpR8(LPDECIMAL pdecLeft, double dblRight);
//C extern HRESULT VarCyAdd(CY cyLeft,CY cyRight,LPCY pcyResult);
HRESULT VarCyAdd(CY cyLeft, CY cyRight, LPCY pcyResult);
//C extern HRESULT VarCyMul(CY cyLeft,CY cyRight,LPCY pcyResult);
HRESULT VarCyMul(CY cyLeft, CY cyRight, LPCY pcyResult);
//C extern HRESULT VarCyMulI4(CY cyLeft,long lRight,LPCY pcyResult);
HRESULT VarCyMulI4(CY cyLeft, int lRight, LPCY pcyResult);
//C extern HRESULT VarCyMulI8(CY cyLeft,LONG64 lRight,LPCY pcyResult);
HRESULT VarCyMulI8(CY cyLeft, LONG64 lRight, LPCY pcyResult);
//C extern HRESULT VarCySub(CY cyLeft,CY cyRight,LPCY pcyResult);
HRESULT VarCySub(CY cyLeft, CY cyRight, LPCY pcyResult);
//C extern HRESULT VarCyAbs(CY cyIn,LPCY pcyResult);
HRESULT VarCyAbs(CY cyIn, LPCY pcyResult);
//C extern HRESULT VarCyFix(CY cyIn,LPCY pcyResult);
HRESULT VarCyFix(CY cyIn, LPCY pcyResult);
//C extern HRESULT VarCyInt(CY cyIn,LPCY pcyResult);
HRESULT VarCyInt(CY cyIn, LPCY pcyResult);
//C extern HRESULT VarCyNeg(CY cyIn,LPCY pcyResult);
HRESULT VarCyNeg(CY cyIn, LPCY pcyResult);
//C extern HRESULT VarCyRound(CY cyIn,int cDecimals,LPCY pcyResult);
HRESULT VarCyRound(CY cyIn, int cDecimals, LPCY pcyResult);
//C extern HRESULT VarCyCmp(CY cyLeft,CY cyRight);
HRESULT VarCyCmp(CY cyLeft, CY cyRight);
//C extern HRESULT VarCyCmpR8(CY cyLeft,double dblRight);
HRESULT VarCyCmpR8(CY cyLeft, double dblRight);
//C extern HRESULT VarBstrCat(BSTR bstrLeft,BSTR bstrRight,LPBSTR pbstrResult);
HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult);
//C extern HRESULT VarBstrCmp(BSTR bstrLeft,BSTR bstrRight,LCID lcid,ULONG dwFlags);
HRESULT VarBstrCmp(BSTR bstrLeft, BSTR bstrRight, LCID lcid, ULONG dwFlags);
//C extern HRESULT VarR8Pow(double dblLeft,double dblRight,double *pdblResult);
HRESULT VarR8Pow(double dblLeft, double dblRight, double *pdblResult);
//C extern HRESULT VarR4CmpR8(float fltLeft,double dblRight);
HRESULT VarR4CmpR8(float fltLeft, double dblRight);
//C extern HRESULT VarR8Round(double dblIn,int cDecimals,double *pdblResult);
HRESULT VarR8Round(double dblIn, int cDecimals, double *pdblResult);
//C typedef struct {
//C SYSTEMTIME st;
//C USHORT wDayOfYear;
//C } UDATE;
struct _N200
{
SYSTEMTIME st;
USHORT wDayOfYear;
}
alias _N200 UDATE;
//C extern HRESULT VarDateFromUdate(UDATE *pudateIn,ULONG dwFlags,DATE *pdateOut);
HRESULT VarDateFromUdate(UDATE *pudateIn, ULONG dwFlags, DATE *pdateOut);
//C extern HRESULT VarDateFromUdateEx(UDATE *pudateIn,LCID lcid,ULONG dwFlags,DATE *pdateOut);
HRESULT VarDateFromUdateEx(UDATE *pudateIn, LCID lcid, ULONG dwFlags, DATE *pdateOut);
//C extern HRESULT VarUdateFromDate(DATE dateIn,ULONG dwFlags,UDATE *pudateOut);
HRESULT VarUdateFromDate(DATE dateIn, ULONG dwFlags, UDATE *pudateOut);
//C extern HRESULT GetAltMonthNames(LCID lcid,LPOLESTR **prgp);
HRESULT GetAltMonthNames(LCID lcid, LPOLESTR **prgp);
//C extern HRESULT VarFormat(LPVARIANT pvarIn,LPOLESTR pstrFormat,int iFirstDay,int iFirstWeek,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarFormat(LPVARIANT pvarIn, LPOLESTR pstrFormat, int iFirstDay, int iFirstWeek, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarFormatDateTime(LPVARIANT pvarIn,int iNamedFormat,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarFormatDateTime(LPVARIANT pvarIn, int iNamedFormat, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarFormatNumber(LPVARIANT pvarIn,int iNumDig,int iIncLead,int iUseParens,int iGroup,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarFormatNumber(LPVARIANT pvarIn, int iNumDig, int iIncLead, int iUseParens, int iGroup, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarFormatPercent(LPVARIANT pvarIn,int iNumDig,int iIncLead,int iUseParens,int iGroup,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarFormatPercent(LPVARIANT pvarIn, int iNumDig, int iIncLead, int iUseParens, int iGroup, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarFormatCurrency(LPVARIANT pvarIn,int iNumDig,int iIncLead,int iUseParens,int iGroup,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarFormatCurrency(LPVARIANT pvarIn, int iNumDig, int iIncLead, int iUseParens, int iGroup, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarWeekdayName(int iWeekday,int fAbbrev,int iFirstDay,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarWeekdayName(int iWeekday, int fAbbrev, int iFirstDay, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarMonthName(int iMonth,int fAbbrev,ULONG dwFlags,BSTR *pbstrOut);
HRESULT VarMonthName(int iMonth, int fAbbrev, ULONG dwFlags, BSTR *pbstrOut);
//C extern HRESULT VarFormatFromTokens(LPVARIANT pvarIn,LPOLESTR pstrFormat,LPBYTE pbTokCur,ULONG dwFlags,BSTR *pbstrOut,LCID lcid);
HRESULT VarFormatFromTokens(LPVARIANT pvarIn, LPOLESTR pstrFormat, LPBYTE pbTokCur, ULONG dwFlags, BSTR *pbstrOut, LCID lcid);
//C extern HRESULT VarTokenizeFormatString(LPOLESTR pstrFormat,LPBYTE rgbTok,int cbTok,int iFirstDay,int iFirstWeek,LCID lcid,int *pcbActual);
HRESULT VarTokenizeFormatString(LPOLESTR pstrFormat, LPBYTE rgbTok, int cbTok, int iFirstDay, int iFirstWeek, LCID lcid, int *pcbActual);
//C typedef ITypeLib *LPTYPELIB;
//C typedef ITypeInfo *LPTYPEINFO;
//C typedef ITypeComp *LPTYPECOMP;
//C extern ULONG LHashValOfNameSysA(SYSKIND syskind,LCID lcid,LPCSTR szName);
ULONG LHashValOfNameSysA(SYSKIND syskind, LCID lcid, LPCSTR szName);
//C extern ULONG LHashValOfNameSys(SYSKIND syskind,LCID lcid,const OLECHAR *szName);
ULONG LHashValOfNameSys(SYSKIND syskind, LCID lcid, OLECHAR *szName);
//C extern HRESULT LoadTypeLib(const OLECHAR *szFile,ITypeLib **pptlib);
HRESULT LoadTypeLib(OLECHAR *szFile, ITypeLib **pptlib);
//C typedef enum tagREGKIND {
//C REGKIND_DEFAULT,REGKIND_REGISTER,REGKIND_NONE
//C } REGKIND;
enum tagREGKIND
{
REGKIND_DEFAULT,
REGKIND_REGISTER,
REGKIND_NONE,
}
alias tagREGKIND REGKIND;
//C extern HRESULT LoadTypeLibEx(LPCOLESTR szFile,REGKIND regkind,ITypeLib **pptlib);
HRESULT LoadTypeLibEx(LPCOLESTR szFile, REGKIND regkind, ITypeLib **pptlib);
//C extern HRESULT LoadRegTypeLib(const GUID *const rguid,WORD wVerMajor,WORD wVerMinor,LCID lcid,ITypeLib **pptlib);
HRESULT LoadRegTypeLib(GUID *rguid, WORD wVerMajor, WORD wVerMinor, LCID lcid, ITypeLib **pptlib);
//C extern HRESULT QueryPathOfRegTypeLib(const GUID *const guid,USHORT wMaj,USHORT wMin,LCID lcid,LPBSTR lpbstrPathName);
HRESULT QueryPathOfRegTypeLib(GUID *guid, USHORT wMaj, USHORT wMin, LCID lcid, LPBSTR lpbstrPathName);
//C extern HRESULT RegisterTypeLib(ITypeLib *ptlib,OLECHAR *szFullPath,OLECHAR *szHelpDir);
HRESULT RegisterTypeLib(ITypeLib *ptlib, OLECHAR *szFullPath, OLECHAR *szHelpDir);
//C extern HRESULT UnRegisterTypeLib(const GUID *const libID,WORD wVerMajor,WORD wVerMinor,LCID lcid,SYSKIND syskind);
HRESULT UnRegisterTypeLib(GUID *libID, WORD wVerMajor, WORD wVerMinor, LCID lcid, SYSKIND syskind);
//C extern HRESULT CreateTypeLib(SYSKIND syskind,const OLECHAR *szFile,ICreateTypeLib **ppctlib);
HRESULT CreateTypeLib(SYSKIND syskind, OLECHAR *szFile, ICreateTypeLib **ppctlib);
//C extern HRESULT CreateTypeLib2(SYSKIND syskind,LPCOLESTR szFile,ICreateTypeLib2 **ppctlib);
HRESULT CreateTypeLib2(SYSKIND syskind, LPCOLESTR szFile, ICreateTypeLib2 **ppctlib);
//C typedef IDispatch *LPDISPATCH;
//C typedef struct tagPARAMDATA {
//C OLECHAR *szName;
//C VARTYPE vt;
//C } PARAMDATA,*LPPARAMDATA;
struct tagPARAMDATA
{
OLECHAR *szName;
VARTYPE vt;
}
alias tagPARAMDATA PARAMDATA;
alias tagPARAMDATA *LPPARAMDATA;
//C typedef struct tagMETHODDATA {
//C OLECHAR *szName;
//C PARAMDATA *ppdata;
//C DISPID dispid;
//C UINT iMeth;
//C CALLCONV cc;
//C UINT cArgs;
//C WORD wFlags;
//C VARTYPE vtReturn;
//C } METHODDATA,*LPMETHODDATA;
struct tagMETHODDATA
{
OLECHAR *szName;
PARAMDATA *ppdata;
DISPID dispid;
UINT iMeth;
CALLCONV cc;
UINT cArgs;
WORD wFlags;
VARTYPE vtReturn;
}
alias tagMETHODDATA METHODDATA;
alias tagMETHODDATA *LPMETHODDATA;
//C typedef struct tagINTERFACEDATA {
//C METHODDATA *pmethdata;
//C UINT cMembers;
//C } INTERFACEDATA,*LPINTERFACEDATA;
struct tagINTERFACEDATA
{
METHODDATA *pmethdata;
UINT cMembers;
}
alias tagINTERFACEDATA INTERFACEDATA;
alias tagINTERFACEDATA *LPINTERFACEDATA;
//C extern HRESULT DispGetParam(DISPPARAMS *pdispparams,UINT position,VARTYPE vtTarg,VARIANT *pvarResult,UINT *puArgErr);
HRESULT DispGetParam(DISPPARAMS *pdispparams, UINT position, VARTYPE vtTarg, VARIANT *pvarResult, UINT *puArgErr);
//C extern HRESULT DispGetIDsOfNames(ITypeInfo *ptinfo,OLECHAR **rgszNames,UINT cNames,DISPID *rgdispid);
HRESULT DispGetIDsOfNames(ITypeInfo *ptinfo, OLECHAR **rgszNames, UINT cNames, DISPID *rgdispid);
//C extern HRESULT DispInvoke(void *_this,ITypeInfo *ptinfo,DISPID dispidMember,WORD wFlags,DISPPARAMS *pparams,VARIANT *pvarResult,EXCEPINFO *pexcepinfo,UINT *puArgErr);
HRESULT DispInvoke(void *_this, ITypeInfo *ptinfo, DISPID dispidMember, WORD wFlags, DISPPARAMS *pparams, VARIANT *pvarResult, EXCEPINFO *pexcepinfo, UINT *puArgErr);
//C extern HRESULT CreateDispTypeInfo(INTERFACEDATA *pidata,LCID lcid,ITypeInfo **pptinfo);
HRESULT CreateDispTypeInfo(INTERFACEDATA *pidata, LCID lcid, ITypeInfo **pptinfo);
//C extern HRESULT CreateStdDispatch(IUnknown *punkOuter,void *pvThis,ITypeInfo *ptinfo,IUnknown **ppunkStdDisp);
HRESULT CreateStdDispatch(IUnknown *punkOuter, void *pvThis, ITypeInfo *ptinfo, IUnknown **ppunkStdDisp);
//C extern HRESULT DispCallFunc(void *pvInstance,ULONG_PTR oVft,CALLCONV cc,VARTYPE vtReturn,UINT cActuals,VARTYPE *prgvt,VARIANTARG **prgpvarg,VARIANT *pvargResult);
HRESULT DispCallFunc(void *pvInstance, ULONG_PTR oVft, CALLCONV cc, VARTYPE vtReturn, UINT cActuals, VARTYPE *prgvt, VARIANTARG **prgpvarg, VARIANT *pvargResult);
//C extern HRESULT RegisterActiveObject(IUnknown *punk,const IID *const rclsid,DWORD dwFlags,DWORD *pdwRegister);
HRESULT RegisterActiveObject(IUnknown *punk, IID *rclsid, DWORD dwFlags, DWORD *pdwRegister);
//C extern HRESULT RevokeActiveObject(DWORD dwRegister,void *pvReserved);
HRESULT RevokeActiveObject(DWORD dwRegister, void *pvReserved);
//C extern HRESULT GetActiveObject(const IID *const rclsid,void *pvReserved,IUnknown **ppunk);
HRESULT GetActiveObject(IID *rclsid, void *pvReserved, IUnknown **ppunk);
//C extern HRESULT SetErrorInfo(ULONG dwReserved,IErrorInfo *perrinfo);
HRESULT SetErrorInfo(ULONG dwReserved, IErrorInfo *perrinfo);
//C extern HRESULT GetErrorInfo(ULONG dwReserved,IErrorInfo **pperrinfo);
HRESULT GetErrorInfo(ULONG dwReserved, IErrorInfo **pperrinfo);
//C extern HRESULT CreateErrorInfo(ICreateErrorInfo **pperrinfo);
HRESULT CreateErrorInfo(ICreateErrorInfo **pperrinfo);
//C extern HRESULT GetRecordInfoFromTypeInfo(ITypeInfo *pTypeInfo,IRecordInfo **ppRecInfo);
HRESULT GetRecordInfoFromTypeInfo(ITypeInfo *pTypeInfo, IRecordInfo **ppRecInfo);
//C extern HRESULT GetRecordInfoFromGuids(const GUID *const rGuidTypeLib,ULONG uVerMajor,ULONG uVerMinor,LCID lcid,const GUID *const rGuidTypeInfo,IRecordInfo **ppRecInfo);
HRESULT GetRecordInfoFromGuids(GUID *rGuidTypeLib, ULONG uVerMajor, ULONG uVerMinor, LCID lcid, GUID *rGuidTypeInfo, IRecordInfo **ppRecInfo);
//C extern ULONG OaBuildVersion(void);
ULONG OaBuildVersion();
//C extern void ClearCustData(LPCUSTDATA pCustData);
void ClearCustData(LPCUSTDATA pCustData);
//C extern HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *ppDAHolder);
HRESULT CreateDataAdviseHolder(LPDATAADVISEHOLDER *ppDAHolder);
//C extern DWORD OleBuildVersion(void);
DWORD OleBuildVersion();
//C extern HRESULT ReadClassStg(LPSTORAGE pStg,CLSID *pclsid);
HRESULT ReadClassStg(LPSTORAGE pStg, CLSID *pclsid);
//C extern HRESULT WriteClassStg(LPSTORAGE pStg,const IID *const rclsid);
HRESULT WriteClassStg(LPSTORAGE pStg, IID *rclsid);
//C extern HRESULT ReadClassStm(LPSTREAM pStm,CLSID *pclsid);
HRESULT ReadClassStm(LPSTREAM pStm, CLSID *pclsid);
//C extern HRESULT WriteClassStm(LPSTREAM pStm,const IID *const rclsid);
HRESULT WriteClassStm(LPSTREAM pStm, IID *rclsid);
//C extern HRESULT WriteFmtUserTypeStg (LPSTORAGE pstg,CLIPFORMAT cf,LPOLESTR lpszUserType);
HRESULT WriteFmtUserTypeStg(LPSTORAGE pstg, CLIPFORMAT cf, LPOLESTR lpszUserType);
//C extern HRESULT ReadFmtUserTypeStg (LPSTORAGE pstg,CLIPFORMAT *pcf,LPOLESTR *lplpszUserType);
HRESULT ReadFmtUserTypeStg(LPSTORAGE pstg, CLIPFORMAT *pcf, LPOLESTR *lplpszUserType);
//C extern HRESULT OleInitialize(LPVOID pvReserved);
HRESULT OleInitialize(LPVOID pvReserved);
//C extern void OleUninitialize(void);
void OleUninitialize();
//C extern HRESULT OleQueryLinkFromData(LPDATAOBJECT pSrcDataObject);
HRESULT OleQueryLinkFromData(LPDATAOBJECT pSrcDataObject);
//C extern HRESULT OleQueryCreateFromData(LPDATAOBJECT pSrcDataObject);
HRESULT OleQueryCreateFromData(LPDATAOBJECT pSrcDataObject);
//C extern HRESULT OleCreate(const IID *const rclsid,const IID *const riid,DWORD renderopt,LPFORMATETC pFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreate(IID *rclsid, IID *riid, DWORD renderopt, LPFORMATETC pFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateEx(const IID *const rclsid,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateEx(IID *rclsid, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateFromData(LPDATAOBJECT pSrcDataObj,const IID *const riid,DWORD renderopt,LPFORMATETC pFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateFromData(LPDATAOBJECT pSrcDataObj, IID *riid, DWORD renderopt, LPFORMATETC pFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateFromDataEx(LPDATAOBJECT pSrcDataObj,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateFromDataEx(LPDATAOBJECT pSrcDataObj, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLinkFromData(LPDATAOBJECT pSrcDataObj,const IID *const riid,DWORD renderopt,LPFORMATETC pFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLinkFromData(LPDATAOBJECT pSrcDataObj, IID *riid, DWORD renderopt, LPFORMATETC pFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLinkFromDataEx(LPDATAOBJECT pSrcDataObj,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLinkFromDataEx(LPDATAOBJECT pSrcDataObj, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateStaticFromData(LPDATAOBJECT pSrcDataObj,const IID *const iid,DWORD renderopt,LPFORMATETC pFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateStaticFromData(LPDATAOBJECT pSrcDataObj, IID *iid, DWORD renderopt, LPFORMATETC pFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLink(LPMONIKER pmkLinkSrc,const IID *const riid,DWORD renderopt,LPFORMATETC lpFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLink(LPMONIKER pmkLinkSrc, IID *riid, DWORD renderopt, LPFORMATETC lpFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLinkEx(LPMONIKER pmkLinkSrc,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLinkEx(LPMONIKER pmkLinkSrc, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLinkToFile(LPCOLESTR lpszFileName,const IID *const riid,DWORD renderopt,LPFORMATETC lpFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLinkToFile(LPCOLESTR lpszFileName, IID *riid, DWORD renderopt, LPFORMATETC lpFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateLinkToFileEx(LPCOLESTR lpszFileName,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateLinkToFileEx(LPCOLESTR lpszFileName, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateFromFile(const IID *const rclsid,LPCOLESTR lpszFileName,const IID *const riid,DWORD renderopt,LPFORMATETC lpFormatEtc,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateFromFile(IID *rclsid, LPCOLESTR lpszFileName, IID *riid, DWORD renderopt, LPFORMATETC lpFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleCreateFromFileEx(const IID *const rclsid,LPCOLESTR lpszFileName,const IID *const riid,DWORD dwFlags,DWORD renderopt,ULONG cFormats,DWORD *rgAdvf,LPFORMATETC rgFormatEtc,IAdviseSink *lpAdviseSink,DWORD *rgdwConnection,LPOLECLIENTSITE pClientSite,LPSTORAGE pStg,LPVOID *ppvObj);
HRESULT OleCreateFromFileEx(IID *rclsid, LPCOLESTR lpszFileName, IID *riid, DWORD dwFlags, DWORD renderopt, ULONG cFormats, DWORD *rgAdvf, LPFORMATETC rgFormatEtc, IAdviseSink *lpAdviseSink, DWORD *rgdwConnection, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID *ppvObj);
//C extern HRESULT OleLoad(LPSTORAGE pStg,const IID *const riid,LPOLECLIENTSITE pClientSite,LPVOID *ppvObj);
HRESULT OleLoad(LPSTORAGE pStg, IID *riid, LPOLECLIENTSITE pClientSite, LPVOID *ppvObj);
//C extern HRESULT OleSave(LPPERSISTSTORAGE pPS,LPSTORAGE pStg,WINBOOL fSameAsLoad);
HRESULT OleSave(LPPERSISTSTORAGE pPS, LPSTORAGE pStg, WINBOOL fSameAsLoad);
//C extern HRESULT OleLoadFromStream(LPSTREAM pStm,const IID *const iidInterface,LPVOID *ppvObj);
HRESULT OleLoadFromStream(LPSTREAM pStm, IID *iidInterface, LPVOID *ppvObj);
//C extern HRESULT OleSaveToStream(LPPERSISTSTREAM pPStm,LPSTREAM pStm);
HRESULT OleSaveToStream(LPPERSISTSTREAM pPStm, LPSTREAM pStm);
//C extern HRESULT OleSetContainedObject(LPUNKNOWN pUnknown,WINBOOL fContained);
HRESULT OleSetContainedObject(LPUNKNOWN pUnknown, WINBOOL fContained);
//C extern HRESULT OleNoteObjectVisible(LPUNKNOWN pUnknown,WINBOOL fVisible);
HRESULT OleNoteObjectVisible(LPUNKNOWN pUnknown, WINBOOL fVisible);
//C extern HRESULT RegisterDragDrop(HWND hwnd,LPDROPTARGET pDropTarget);
HRESULT RegisterDragDrop(HWND hwnd, LPDROPTARGET pDropTarget);
//C extern HRESULT RevokeDragDrop(HWND hwnd);
HRESULT RevokeDragDrop(HWND hwnd);
//C extern HRESULT DoDragDrop(LPDATAOBJECT pDataObj,LPDROPSOURCE pDropSource,DWORD dwOKEffects,LPDWORD pdwEffect);
HRESULT DoDragDrop(LPDATAOBJECT pDataObj, LPDROPSOURCE pDropSource, DWORD dwOKEffects, LPDWORD pdwEffect);
//C extern HRESULT OleSetClipboard(LPDATAOBJECT pDataObj);
HRESULT OleSetClipboard(LPDATAOBJECT pDataObj);
//C extern HRESULT OleGetClipboard(LPDATAOBJECT *ppDataObj);
HRESULT OleGetClipboard(LPDATAOBJECT *ppDataObj);
//C extern HRESULT OleFlushClipboard(void);
HRESULT OleFlushClipboard();
//C extern HRESULT OleIsCurrentClipboard(LPDATAOBJECT pDataObj);
HRESULT OleIsCurrentClipboard(LPDATAOBJECT pDataObj);
//C extern HOLEMENU OleCreateMenuDescriptor (HMENU hmenuCombined,LPOLEMENUGROUPWIDTHS lpMenuWidths);
HOLEMENU OleCreateMenuDescriptor(HMENU hmenuCombined, LPOLEMENUGROUPWIDTHS lpMenuWidths);
//C extern HRESULT OleSetMenuDescriptor (HOLEMENU holemenu,HWND hwndFrame,HWND hwndActiveObject,LPOLEINPLACEFRAME lpFrame,LPOLEINPLACEACTIVEOBJECT lpActiveObj);
HRESULT OleSetMenuDescriptor(HOLEMENU holemenu, HWND hwndFrame, HWND hwndActiveObject, LPOLEINPLACEFRAME lpFrame, LPOLEINPLACEACTIVEOBJECT lpActiveObj);
//C extern HRESULT OleDestroyMenuDescriptor (HOLEMENU holemenu);
HRESULT OleDestroyMenuDescriptor(HOLEMENU holemenu);
//C extern HRESULT OleTranslateAccelerator (LPOLEINPLACEFRAME lpFrame,LPOLEINPLACEFRAMEINFO lpFrameInfo,LPMSG lpmsg);
HRESULT OleTranslateAccelerator(LPOLEINPLACEFRAME lpFrame, LPOLEINPLACEFRAMEINFO lpFrameInfo, LPMSG lpmsg);
//C extern HANDLE OleDuplicateData (HANDLE hSrc,CLIPFORMAT cfFormat,UINT uiFlags);
HANDLE OleDuplicateData(HANDLE hSrc, CLIPFORMAT cfFormat, UINT uiFlags);
//C extern HRESULT OleDraw (LPUNKNOWN pUnknown,DWORD dwAspect,HDC hdcDraw,LPCRECT lprcBounds);
HRESULT OleDraw(LPUNKNOWN pUnknown, DWORD dwAspect, HDC hdcDraw, LPCRECT lprcBounds);
//C extern HRESULT OleRun(LPUNKNOWN pUnknown);
HRESULT OleRun(LPUNKNOWN pUnknown);
//C extern WINBOOL OleIsRunning(LPOLEOBJECT pObject);
WINBOOL OleIsRunning(LPOLEOBJECT pObject);
//C extern HRESULT OleLockRunning(LPUNKNOWN pUnknown,WINBOOL fLock,WINBOOL fLastUnlockCloses);
HRESULT OleLockRunning(LPUNKNOWN pUnknown, WINBOOL fLock, WINBOOL fLastUnlockCloses);
//C extern void ReleaseStgMedium(LPSTGMEDIUM);
void ReleaseStgMedium(LPSTGMEDIUM );
//C extern HRESULT CreateOleAdviseHolder(LPOLEADVISEHOLDER *ppOAHolder);
HRESULT CreateOleAdviseHolder(LPOLEADVISEHOLDER *ppOAHolder);
//C extern HRESULT OleCreateDefaultHandler(const IID *const clsid,LPUNKNOWN pUnkOuter,const IID *const riid,LPVOID *lplpObj);
HRESULT OleCreateDefaultHandler(IID *clsid, LPUNKNOWN pUnkOuter, IID *riid, LPVOID *lplpObj);
//C extern HRESULT OleCreateEmbeddingHelper(const IID *const clsid,LPUNKNOWN pUnkOuter,DWORD flags,LPCLASSFACTORY pCF,const IID *const riid,LPVOID *lplpObj);
HRESULT OleCreateEmbeddingHelper(IID *clsid, LPUNKNOWN pUnkOuter, DWORD flags, LPCLASSFACTORY pCF, IID *riid, LPVOID *lplpObj);
//C extern WINBOOL IsAccelerator(HACCEL hAccel,int cAccelEntries,LPMSG lpMsg,WORD *lpwCmd);
WINBOOL IsAccelerator(HACCEL hAccel, int cAccelEntries, LPMSG lpMsg, WORD *lpwCmd);
//C extern HGLOBAL OleGetIconOfFile(LPOLESTR lpszPath,WINBOOL fUseFileAsLabel);
HGLOBAL OleGetIconOfFile(LPOLESTR lpszPath, WINBOOL fUseFileAsLabel);
//C extern HGLOBAL OleGetIconOfClass(const IID *const rclsid,LPOLESTR lpszLabel,WINBOOL fUseTypeAsLabel);
HGLOBAL OleGetIconOfClass(IID *rclsid, LPOLESTR lpszLabel, WINBOOL fUseTypeAsLabel);
//C extern HGLOBAL OleMetafilePictFromIconAndLabel(HICON hIcon,LPOLESTR lpszLabel,LPOLESTR lpszSourceFile,UINT iIconIndex);
HGLOBAL OleMetafilePictFromIconAndLabel(HICON hIcon, LPOLESTR lpszLabel, LPOLESTR lpszSourceFile, UINT iIconIndex);
//C extern HRESULT OleRegGetUserType (const IID *const clsid,DWORD dwFormOfType,LPOLESTR *pszUserType);
HRESULT OleRegGetUserType(IID *clsid, DWORD dwFormOfType, LPOLESTR *pszUserType);
//C extern HRESULT OleRegGetMiscStatus (const IID *const clsid,DWORD dwAspect,DWORD *pdwStatus);
HRESULT OleRegGetMiscStatus(IID *clsid, DWORD dwAspect, DWORD *pdwStatus);
//C extern HRESULT OleRegEnumFormatEtc (const IID *const clsid,DWORD dwDirection,LPENUMFORMATETC *ppenum);
HRESULT OleRegEnumFormatEtc(IID *clsid, DWORD dwDirection, LPENUMFORMATETC *ppenum);
//C extern HRESULT OleRegEnumVerbs (const IID *const clsid,LPENUMOLEVERB *ppenum);
HRESULT OleRegEnumVerbs(IID *clsid, LPENUMOLEVERB *ppenum);
//C typedef struct _OLESTREAM *LPOLESTREAM;
alias _OLESTREAM *LPOLESTREAM;
//C typedef struct _OLESTREAMVTBL {
//C DWORD ( *Get)(LPOLESTREAM,void *,DWORD);
//C DWORD ( *Put)(LPOLESTREAM,const void *,DWORD);
//C } OLESTREAMVTBL;
struct _OLESTREAMVTBL
{
DWORD function(LPOLESTREAM , void *, DWORD )Get;
DWORD function(LPOLESTREAM , void *, DWORD )Put;
}
alias _OLESTREAMVTBL OLESTREAMVTBL;
//C typedef OLESTREAMVTBL *LPOLESTREAMVTBL;
alias OLESTREAMVTBL *LPOLESTREAMVTBL;
//C typedef struct _OLESTREAM {
//C LPOLESTREAMVTBL lpstbl;
//C } OLESTREAM;
struct _OLESTREAM
{
LPOLESTREAMVTBL lpstbl;
}
alias _OLESTREAM OLESTREAM;
//C extern HRESULT OleConvertOLESTREAMToIStorage(LPOLESTREAM lpolestream,LPSTORAGE pstg,const DVTARGETDEVICE *ptd);
HRESULT OleConvertOLESTREAMToIStorage(LPOLESTREAM lpolestream, LPSTORAGE pstg, DVTARGETDEVICE *ptd);
//C extern HRESULT OleConvertIStorageToOLESTREAM(LPSTORAGE pstg,LPOLESTREAM lpolestream);
HRESULT OleConvertIStorageToOLESTREAM(LPSTORAGE pstg, LPOLESTREAM lpolestream);
//C extern HRESULT GetHGlobalFromILockBytes (LPLOCKBYTES plkbyt,HGLOBAL *phglobal);
HRESULT GetHGlobalFromILockBytes(LPLOCKBYTES plkbyt, HGLOBAL *phglobal);
//C extern HRESULT CreateILockBytesOnHGlobal (HGLOBAL hGlobal,WINBOOL fDeleteOnRelease,LPLOCKBYTES *pplkbyt);
HRESULT CreateILockBytesOnHGlobal(HGLOBAL hGlobal, WINBOOL fDeleteOnRelease, LPLOCKBYTES *pplkbyt);
//C extern HRESULT GetHGlobalFromStream (LPSTREAM pstm,HGLOBAL *phglobal);
HRESULT GetHGlobalFromStream(LPSTREAM pstm, HGLOBAL *phglobal);
//C extern HRESULT CreateStreamOnHGlobal (HGLOBAL hGlobal,WINBOOL fDeleteOnRelease,LPSTREAM *ppstm);
HRESULT CreateStreamOnHGlobal(HGLOBAL hGlobal, WINBOOL fDeleteOnRelease, LPSTREAM *ppstm);
//C extern HRESULT OleDoAutoConvert(LPSTORAGE pStg,LPCLSID pClsidNew);
HRESULT OleDoAutoConvert(LPSTORAGE pStg, LPCLSID pClsidNew);
//C extern HRESULT OleGetAutoConvert(const IID *const clsidOld,LPCLSID pClsidNew);
HRESULT OleGetAutoConvert(IID *clsidOld, LPCLSID pClsidNew);
//C extern HRESULT OleSetAutoConvert(const IID *const clsidOld,const IID *const clsidNew);
HRESULT OleSetAutoConvert(IID *clsidOld, IID *clsidNew);
//C extern HRESULT GetConvertStg(LPSTORAGE pStg);
HRESULT GetConvertStg(LPSTORAGE pStg);
//C extern HRESULT SetConvertStg(LPSTORAGE pStg,WINBOOL fConvert);
HRESULT SetConvertStg(LPSTORAGE pStg, WINBOOL fConvert);
//C extern HRESULT OleConvertIStorageToOLESTREAMEx(LPSTORAGE pstg,CLIPFORMAT cfFormat,LONG lWidth,LONG lHeight,DWORD dwSize,LPSTGMEDIUM pmedium,LPOLESTREAM polestm);
HRESULT OleConvertIStorageToOLESTREAMEx(LPSTORAGE pstg, CLIPFORMAT cfFormat, LONG lWidth, LONG lHeight, DWORD dwSize, LPSTGMEDIUM pmedium, LPOLESTREAM polestm);
//C extern HRESULT OleConvertOLESTREAMToIStorageEx(LPOLESTREAM polestm,LPSTORAGE pstg,CLIPFORMAT *pcfFormat,LONG *plwWidth,LONG *plHeight,DWORD *pdwSize,LPSTGMEDIUM pmedium);
HRESULT OleConvertOLESTREAMToIStorageEx(LPOLESTREAM polestm, LPSTORAGE pstg, CLIPFORMAT *pcfFormat, LONG *plwWidth, LONG *plHeight, DWORD *pdwSize, LPSTGMEDIUM pmedium);
//C typedef struct _STORAGE_HOTPLUG_INFO {
//C DWORD Size;
//C BOOLEAN MediaRemovable;
//C BOOLEAN MediaHotplug;
//C BOOLEAN DeviceHotplug;
//C BOOLEAN WriteCacheEnableOverride;
//C } STORAGE_HOTPLUG_INFO,*PSTORAGE_HOTPLUG_INFO;
struct _STORAGE_HOTPLUG_INFO
{
DWORD Size;
BOOLEAN MediaRemovable;
BOOLEAN MediaHotplug;
BOOLEAN DeviceHotplug;
BOOLEAN WriteCacheEnableOverride;
}
alias _STORAGE_HOTPLUG_INFO STORAGE_HOTPLUG_INFO;
alias _STORAGE_HOTPLUG_INFO *PSTORAGE_HOTPLUG_INFO;
//C typedef struct _STORAGE_DEVICE_NUMBER {
//C DWORD DeviceType;
//C DWORD DeviceNumber;
//C DWORD PartitionNumber;
//C } STORAGE_DEVICE_NUMBER,*PSTORAGE_DEVICE_NUMBER;
struct _STORAGE_DEVICE_NUMBER
{
DWORD DeviceType;
DWORD DeviceNumber;
DWORD PartitionNumber;
}
alias _STORAGE_DEVICE_NUMBER STORAGE_DEVICE_NUMBER;
alias _STORAGE_DEVICE_NUMBER *PSTORAGE_DEVICE_NUMBER;
//C typedef struct _STORAGE_BUS_RESET_REQUEST {
//C BYTE PathId;
//C } STORAGE_BUS_RESET_REQUEST,*PSTORAGE_BUS_RESET_REQUEST;
struct _STORAGE_BUS_RESET_REQUEST
{
BYTE PathId;
}
alias _STORAGE_BUS_RESET_REQUEST STORAGE_BUS_RESET_REQUEST;
alias _STORAGE_BUS_RESET_REQUEST *PSTORAGE_BUS_RESET_REQUEST;
//C typedef struct STORAGE_BREAK_RESERVATION_REQUEST {
//C DWORD Length;
//C BYTE _unused;
//C BYTE PathId;
//C BYTE TargetId;
//C BYTE Lun;
//C } STORAGE_BREAK_RESERVATION_REQUEST,*PSTORAGE_BREAK_RESERVATION_REQUEST;
struct STORAGE_BREAK_RESERVATION_REQUEST
{
DWORD Length;
BYTE _unused;
BYTE PathId;
BYTE TargetId;
BYTE Lun;
}
alias STORAGE_BREAK_RESERVATION_REQUEST *PSTORAGE_BREAK_RESERVATION_REQUEST;
//C typedef struct _PREVENT_MEDIA_REMOVAL {
//C BOOLEAN PreventMediaRemoval;
//C } PREVENT_MEDIA_REMOVAL,*PPREVENT_MEDIA_REMOVAL;
struct _PREVENT_MEDIA_REMOVAL
{
BOOLEAN PreventMediaRemoval;
}
alias _PREVENT_MEDIA_REMOVAL PREVENT_MEDIA_REMOVAL;
alias _PREVENT_MEDIA_REMOVAL *PPREVENT_MEDIA_REMOVAL;
//C typedef struct _CLASS_MEDIA_CHANGE_CONTEXT {
//C DWORD MediaChangeCount;
//C DWORD NewState;
//C } CLASS_MEDIA_CHANGE_CONTEXT,*PCLASS_MEDIA_CHANGE_CONTEXT;
struct _CLASS_MEDIA_CHANGE_CONTEXT
{
DWORD MediaChangeCount;
DWORD NewState;
}
alias _CLASS_MEDIA_CHANGE_CONTEXT CLASS_MEDIA_CHANGE_CONTEXT;
alias _CLASS_MEDIA_CHANGE_CONTEXT *PCLASS_MEDIA_CHANGE_CONTEXT;
//C typedef struct _TAPE_STATISTICS {
//C DWORD Version;
//C DWORD Flags;
//C LARGE_INTEGER RecoveredWrites;
//C LARGE_INTEGER UnrecoveredWrites;
//C LARGE_INTEGER RecoveredReads;
//C LARGE_INTEGER UnrecoveredReads;
//C BYTE CompressionRatioReads;
//C BYTE CompressionRatioWrites;
//C } TAPE_STATISTICS,*PTAPE_STATISTICS;
struct _TAPE_STATISTICS
{
DWORD Version;
DWORD Flags;
LARGE_INTEGER RecoveredWrites;
LARGE_INTEGER UnrecoveredWrites;
LARGE_INTEGER RecoveredReads;
LARGE_INTEGER UnrecoveredReads;
BYTE CompressionRatioReads;
BYTE CompressionRatioWrites;
}
alias _TAPE_STATISTICS TAPE_STATISTICS;
alias _TAPE_STATISTICS *PTAPE_STATISTICS;
//C typedef struct _TAPE_GET_STATISTICS {
//C DWORD Operation;
//C } TAPE_GET_STATISTICS,*PTAPE_GET_STATISTICS;
struct _TAPE_GET_STATISTICS
{
DWORD Operation;
}
alias _TAPE_GET_STATISTICS TAPE_GET_STATISTICS;
alias _TAPE_GET_STATISTICS *PTAPE_GET_STATISTICS;
//C typedef enum _STORAGE_MEDIA_TYPE {
//C DDS_4mm = 0x20,
//C MiniQic,
//C Travan,
//C QIC,
//C MP_8mm,
//C AME_8mm,
//C AIT1_8mm,
//C DLT,
//C NCTP,
//C IBM_3480,
//C IBM_3490E,
//C IBM_Magstar_3590,
//C IBM_Magstar_MP,
//C STK_DATA_D3,
//C SONY_DTF,
//C DV_6mm,
//C DMI,
//C SONY_D2,
//C CLEANER_CARTRIDGE,
//C CD_ROM,
//C CD_R,
//C CD_RW,
//C DVD_ROM,
//C DVD_R,
//C DVD_RW,
//C MO_3_RW,
//C MO_5_WO,
//C MO_5_RW,
//C MO_5_LIMDOW,
//C PC_5_WO,
//C PC_5_RW,
//C PD_5_RW,
//C ABL_5_WO,
//C PINNACLE_APEX_5_RW,
//C SONY_12_WO,
//C PHILIPS_12_WO,
//C HITACHI_12_WO,
//C CYGNET_12_WO,
//C KODAK_14_WO,
//C MO_NFR_525,
//C NIKON_12_RW,
//C IOMEGA_ZIP,
//C IOMEGA_JAZ,
//C SYQUEST_EZ135,
//C SYQUEST_EZFLYER,
//C SYQUEST_SYJET,
//C AVATAR_F2,
//C MP2_8mm,
//C DST_S,
//C DST_M,
//C DST_L,
//C VXATape_1,
//C VXATape_2,
//C STK_9840,
//C LTO_Ultrium,
//C LTO_Accelis,
//C DVD_RAM,
//C AIT_8mm,
//C ADR_1,
//C ADR_2,
//C STK_9940,
//C SAIT,
//C VXATape
//C } STORAGE_MEDIA_TYPE,*PSTORAGE_MEDIA_TYPE;
enum _STORAGE_MEDIA_TYPE
{
DDS_4mm = 32,
MiniQic,
Travan,
QIC,
MP_8mm,
AME_8mm,
AIT1_8mm,
DLT,
NCTP,
IBM_3480,
IBM_3490E,
IBM_Magstar_3590,
IBM_Magstar_MP,
STK_DATA_D3,
SONY_DTF,
DV_6mm,
DMI,
SONY_D2,
CLEANER_CARTRIDGE,
CD_ROM,
CD_R,
CD_RW,
DVD_ROM,
DVD_R,
DVD_RW,
MO_3_RW,
MO_5_WO,
MO_5_RW,
MO_5_LIMDOW,
PC_5_WO,
PC_5_RW,
PD_5_RW,
ABL_5_WO,
PINNACLE_APEX_5_RW,
SONY_12_WO,
PHILIPS_12_WO,
HITACHI_12_WO,
CYGNET_12_WO,
KODAK_14_WO,
MO_NFR_525,
NIKON_12_RW,
IOMEGA_ZIP,
IOMEGA_JAZ,
SYQUEST_EZ135,
SYQUEST_EZFLYER,
SYQUEST_SYJET,
AVATAR_F2,
MP2_8mm,
DST_S,
DST_M,
DST_L,
VXATape_1,
VXATape_2,
STK_9840,
LTO_Ultrium,
LTO_Accelis,
DVD_RAM,
AIT_8mm,
ADR_1,
ADR_2,
STK_9940,
SAIT,
VXATape,
}
alias _STORAGE_MEDIA_TYPE STORAGE_MEDIA_TYPE;
alias _STORAGE_MEDIA_TYPE *PSTORAGE_MEDIA_TYPE;
//C typedef enum _STORAGE_BUS_TYPE {
//C BusTypeUnknown = 0x00,
//C BusTypeScsi = 0x1,
//C BusTypeAtapi = 0x2,
//C BusTypeAta = 0x3,
//C BusType1394 = 0x4,
//C BusTypeSsa = 0x5,
//C BusTypeFibre = 0x6,
//C BusTypeUsb = 0x7,
//C BusTypeRAID = 0x8,
//C BusTypeMax,
//C BusTypeMaxReserved = 0x7F
//C } STORAGE_BUS_TYPE,*PSTORAGE_BUS_TYPE;
enum _STORAGE_BUS_TYPE
{
BusTypeUnknown,
BusTypeScsi,
BusTypeAtapi,
BusTypeAta,
BusType1394,
BusTypeSsa,
BusTypeFibre,
BusTypeUsb,
BusTypeRAID,
BusTypeMax,
BusTypeMaxReserved = 127,
}
alias _STORAGE_BUS_TYPE STORAGE_BUS_TYPE;
alias _STORAGE_BUS_TYPE *PSTORAGE_BUS_TYPE;
//C typedef struct _DEVICE_MEDIA_INFO {
//C union {
//C struct {
//C LARGE_INTEGER Cylinders;
//C STORAGE_MEDIA_TYPE MediaType;
//C DWORD TracksPerCylinder;
//C DWORD SectorsPerTrack;
//C DWORD BytesPerSector;
//C DWORD NumberMediaSides;
//C DWORD MediaCharacteristics;
//C } DiskInfo;
struct _N202
{
LARGE_INTEGER Cylinders;
STORAGE_MEDIA_TYPE MediaType;
DWORD TracksPerCylinder;
DWORD SectorsPerTrack;
DWORD BytesPerSector;
DWORD NumberMediaSides;
DWORD MediaCharacteristics;
}
//C struct {
//C LARGE_INTEGER Cylinders;
//C STORAGE_MEDIA_TYPE MediaType;
//C DWORD TracksPerCylinder;
//C DWORD SectorsPerTrack;
//C DWORD BytesPerSector;
//C DWORD NumberMediaSides;
//C DWORD MediaCharacteristics;
//C } RemovableDiskInfo;
struct _N203
{
LARGE_INTEGER Cylinders;
STORAGE_MEDIA_TYPE MediaType;
DWORD TracksPerCylinder;
DWORD SectorsPerTrack;
DWORD BytesPerSector;
DWORD NumberMediaSides;
DWORD MediaCharacteristics;
}
//C struct {
//C STORAGE_MEDIA_TYPE MediaType;
//C DWORD MediaCharacteristics;
//C DWORD CurrentBlockSize;
//C STORAGE_BUS_TYPE BusType;
//C union {
//C struct {
//C BYTE MediumType;
//C BYTE DensityCode;
//C } ScsiInformation;
struct _N206
{
BYTE MediumType;
BYTE DensityCode;
}
//C } BusSpecificData;
union _N205
{
_N206 ScsiInformation;
}
//C } TapeInfo;
struct _N204
{
STORAGE_MEDIA_TYPE MediaType;
DWORD MediaCharacteristics;
DWORD CurrentBlockSize;
STORAGE_BUS_TYPE BusType;
_N205 BusSpecificData;
}
//C } DeviceSpecific;
union _N201
{
_N202 DiskInfo;
_N203 RemovableDiskInfo;
_N204 TapeInfo;
}
//C } DEVICE_MEDIA_INFO,*PDEVICE_MEDIA_INFO;
struct _DEVICE_MEDIA_INFO
{
_N201 DeviceSpecific;
}
alias _DEVICE_MEDIA_INFO DEVICE_MEDIA_INFO;
alias _DEVICE_MEDIA_INFO *PDEVICE_MEDIA_INFO;
//C typedef struct _GET_MEDIA_TYPES {
//C DWORD DeviceType;
//C DWORD MediaInfoCount;
//C DEVICE_MEDIA_INFO MediaInfo[1];
//C } GET_MEDIA_TYPES,*PGET_MEDIA_TYPES;
struct _GET_MEDIA_TYPES
{
DWORD DeviceType;
DWORD MediaInfoCount;
DEVICE_MEDIA_INFO [1]MediaInfo;
}
alias _GET_MEDIA_TYPES GET_MEDIA_TYPES;
alias _GET_MEDIA_TYPES *PGET_MEDIA_TYPES;
//C typedef struct _STORAGE_PREDICT_FAILURE {
//C DWORD PredictFailure;
//C BYTE VendorSpecific[512];
//C } STORAGE_PREDICT_FAILURE,*PSTORAGE_PREDICT_FAILURE;
struct _STORAGE_PREDICT_FAILURE
{
DWORD PredictFailure;
BYTE [512]VendorSpecific;
}
alias _STORAGE_PREDICT_FAILURE STORAGE_PREDICT_FAILURE;
alias _STORAGE_PREDICT_FAILURE *PSTORAGE_PREDICT_FAILURE;
//C typedef enum _MEDIA_TYPE {
//C Unknown,F5_1Pt2_512,F3_1Pt44_512,F3_2Pt88_512,F3_20Pt8_512,F3_720_512,F5_360_512,F5_320_512,F5_320_1024,F5_180_512,F5_160_512,
//C RemovableMedia,FixedMedia,F3_120M_512,F3_640_512,F5_640_512,F5_720_512,F3_1Pt2_512,F3_1Pt23_1024,F5_1Pt23_1024,F3_128Mb_512,
//C F3_230Mb_512,F8_256_128,F3_200Mb_512,F3_240M_512,F3_32M_512
//C } MEDIA_TYPE,*PMEDIA_TYPE;
enum _MEDIA_TYPE
{
Unknown,
F5_1Pt2_512,
F3_1Pt44_512,
F3_2Pt88_512,
F3_20Pt8_512,
F3_720_512,
F5_360_512,
F5_320_512,
F5_320_1024,
F5_180_512,
F5_160_512,
RemovableMedia,
FixedMedia,
F3_120M_512,
F3_640_512,
F5_640_512,
F5_720_512,
F3_1Pt2_512,
F3_1Pt23_1024,
F5_1Pt23_1024,
F3_128Mb_512,
F3_230Mb_512,
F8_256_128,
F3_200Mb_512,
F3_240M_512,
F3_32M_512,
}
alias _MEDIA_TYPE MEDIA_TYPE;
alias _MEDIA_TYPE *PMEDIA_TYPE;
//C typedef struct _FORMAT_PARAMETERS {
//C MEDIA_TYPE MediaType;
//C DWORD StartCylinderNumber;
//C DWORD EndCylinderNumber;
//C DWORD StartHeadNumber;
//C DWORD EndHeadNumber;
//C } FORMAT_PARAMETERS,*PFORMAT_PARAMETERS;
struct _FORMAT_PARAMETERS
{
MEDIA_TYPE MediaType;
DWORD StartCylinderNumber;
DWORD EndCylinderNumber;
DWORD StartHeadNumber;
DWORD EndHeadNumber;
}
alias _FORMAT_PARAMETERS FORMAT_PARAMETERS;
alias _FORMAT_PARAMETERS *PFORMAT_PARAMETERS;
//C typedef WORD BAD_TRACK_NUMBER;
alias WORD BAD_TRACK_NUMBER;
//C typedef WORD *PBAD_TRACK_NUMBER;
alias WORD *PBAD_TRACK_NUMBER;
//C typedef struct _FORMAT_EX_PARAMETERS {
//C MEDIA_TYPE MediaType;
//C DWORD StartCylinderNumber;
//C DWORD EndCylinderNumber;
//C DWORD StartHeadNumber;
//C DWORD EndHeadNumber;
//C WORD FormatGapLength;
//C WORD SectorsPerTrack;
//C WORD SectorNumber[1];
//C } FORMAT_EX_PARAMETERS,*PFORMAT_EX_PARAMETERS;
struct _FORMAT_EX_PARAMETERS
{
MEDIA_TYPE MediaType;
DWORD StartCylinderNumber;
DWORD EndCylinderNumber;
DWORD StartHeadNumber;
DWORD EndHeadNumber;
WORD FormatGapLength;
WORD SectorsPerTrack;
WORD [1]SectorNumber;
}
alias _FORMAT_EX_PARAMETERS FORMAT_EX_PARAMETERS;
alias _FORMAT_EX_PARAMETERS *PFORMAT_EX_PARAMETERS;
//C typedef struct _DISK_GEOMETRY {
//C LARGE_INTEGER Cylinders;
//C MEDIA_TYPE MediaType;
//C DWORD TracksPerCylinder;
//C DWORD SectorsPerTrack;
//C DWORD BytesPerSector;
//C } DISK_GEOMETRY,*PDISK_GEOMETRY;
struct _DISK_GEOMETRY
{
LARGE_INTEGER Cylinders;
MEDIA_TYPE MediaType;
DWORD TracksPerCylinder;
DWORD SectorsPerTrack;
DWORD BytesPerSector;
}
alias _DISK_GEOMETRY DISK_GEOMETRY;
alias _DISK_GEOMETRY *PDISK_GEOMETRY;
//C typedef struct _PARTITION_INFORMATION {
//C LARGE_INTEGER StartingOffset;
//C LARGE_INTEGER PartitionLength;
//C DWORD HiddenSectors;
//C DWORD PartitionNumber;
//C BYTE PartitionType;
//C BOOLEAN BootIndicator;
//C BOOLEAN RecognizedPartition;
//C BOOLEAN RewritePartition;
//C } PARTITION_INFORMATION,*PPARTITION_INFORMATION;
struct _PARTITION_INFORMATION
{
LARGE_INTEGER StartingOffset;
LARGE_INTEGER PartitionLength;
DWORD HiddenSectors;
DWORD PartitionNumber;
BYTE PartitionType;
BOOLEAN BootIndicator;
BOOLEAN RecognizedPartition;
BOOLEAN RewritePartition;
}
alias _PARTITION_INFORMATION PARTITION_INFORMATION;
alias _PARTITION_INFORMATION *PPARTITION_INFORMATION;
//C typedef struct _SET_PARTITION_INFORMATION {
//C BYTE PartitionType;
//C } SET_PARTITION_INFORMATION,*PSET_PARTITION_INFORMATION;
struct _SET_PARTITION_INFORMATION
{
BYTE PartitionType;
}
alias _SET_PARTITION_INFORMATION SET_PARTITION_INFORMATION;
alias _SET_PARTITION_INFORMATION *PSET_PARTITION_INFORMATION;
//C typedef struct _DRIVE_LAYOUT_INFORMATION {
//C DWORD PartitionCount;
//C DWORD Signature;
//C PARTITION_INFORMATION PartitionEntry[1];
//C } DRIVE_LAYOUT_INFORMATION,*PDRIVE_LAYOUT_INFORMATION;
struct _DRIVE_LAYOUT_INFORMATION
{
DWORD PartitionCount;
DWORD Signature;
PARTITION_INFORMATION [1]PartitionEntry;
}
alias _DRIVE_LAYOUT_INFORMATION DRIVE_LAYOUT_INFORMATION;
alias _DRIVE_LAYOUT_INFORMATION *PDRIVE_LAYOUT_INFORMATION;
//C typedef struct _VERIFY_INFORMATION {
//C LARGE_INTEGER StartingOffset;
//C DWORD Length;
//C } VERIFY_INFORMATION,*PVERIFY_INFORMATION;
struct _VERIFY_INFORMATION
{
LARGE_INTEGER StartingOffset;
DWORD Length;
}
alias _VERIFY_INFORMATION VERIFY_INFORMATION;
alias _VERIFY_INFORMATION *PVERIFY_INFORMATION;
//C typedef struct _REASSIGN_BLOCKS {
//C WORD Reserved;
//C WORD Count;
//C DWORD BlockNumber[1];
//C } REASSIGN_BLOCKS,*PREASSIGN_BLOCKS;
struct _REASSIGN_BLOCKS
{
WORD Reserved;
WORD Count;
DWORD [1]BlockNumber;
}
alias _REASSIGN_BLOCKS REASSIGN_BLOCKS;
alias _REASSIGN_BLOCKS *PREASSIGN_BLOCKS;
//C typedef struct _REASSIGN_BLOCKS_EX {
//C WORD Reserved;
//C WORD Count;
//C LARGE_INTEGER BlockNumber[1];
//C } REASSIGN_BLOCKS_EX,*PREASSIGN_BLOCKS_EX;
struct _REASSIGN_BLOCKS_EX
{
WORD Reserved;
WORD Count;
LARGE_INTEGER [1]BlockNumber;
}
alias _REASSIGN_BLOCKS_EX REASSIGN_BLOCKS_EX;
alias _REASSIGN_BLOCKS_EX *PREASSIGN_BLOCKS_EX;
//C typedef enum _PARTITION_STYLE {
//C PARTITION_STYLE_MBR,PARTITION_STYLE_GPT,PARTITION_STYLE_RAW
//C } PARTITION_STYLE;
enum _PARTITION_STYLE
{
PARTITION_STYLE_MBR,
PARTITION_STYLE_GPT,
PARTITION_STYLE_RAW,
}
alias _PARTITION_STYLE PARTITION_STYLE;
//C typedef struct _PARTITION_INFORMATION_GPT {
//C GUID PartitionType;
//C GUID PartitionId;
//C DWORD64 Attributes;
//C WCHAR Name [36];
//C } PARTITION_INFORMATION_GPT,*PPARTITION_INFORMATION_GPT;
struct _PARTITION_INFORMATION_GPT
{
GUID PartitionType;
GUID PartitionId;
DWORD64 Attributes;
WCHAR [36]Name;
}
alias _PARTITION_INFORMATION_GPT PARTITION_INFORMATION_GPT;
alias _PARTITION_INFORMATION_GPT *PPARTITION_INFORMATION_GPT;
//C typedef struct _PARTITION_INFORMATION_MBR {
//C BYTE PartitionType;
//C BOOLEAN BootIndicator;
//C BOOLEAN RecognizedPartition;
//C DWORD HiddenSectors;
//C } PARTITION_INFORMATION_MBR,*PPARTITION_INFORMATION_MBR;
struct _PARTITION_INFORMATION_MBR
{
BYTE PartitionType;
BOOLEAN BootIndicator;
BOOLEAN RecognizedPartition;
DWORD HiddenSectors;
}
alias _PARTITION_INFORMATION_MBR PARTITION_INFORMATION_MBR;
alias _PARTITION_INFORMATION_MBR *PPARTITION_INFORMATION_MBR;
//C typedef SET_PARTITION_INFORMATION SET_PARTITION_INFORMATION_MBR;
alias SET_PARTITION_INFORMATION SET_PARTITION_INFORMATION_MBR;
//C typedef PARTITION_INFORMATION_GPT SET_PARTITION_INFORMATION_GPT;
alias PARTITION_INFORMATION_GPT SET_PARTITION_INFORMATION_GPT;
//C typedef struct _SET_PARTITION_INFORMATION_EX {
//C PARTITION_STYLE PartitionStyle;
//C union {
//C SET_PARTITION_INFORMATION_MBR Mbr;
//C SET_PARTITION_INFORMATION_GPT Gpt;
//C } ;
union _N207
{
SET_PARTITION_INFORMATION_MBR Mbr;
SET_PARTITION_INFORMATION_GPT Gpt;
}
//C } SET_PARTITION_INFORMATION_EX,*PSET_PARTITION_INFORMATION_EX;
struct _SET_PARTITION_INFORMATION_EX
{
PARTITION_STYLE PartitionStyle;
SET_PARTITION_INFORMATION_MBR Mbr;
SET_PARTITION_INFORMATION_GPT Gpt;
}
alias _SET_PARTITION_INFORMATION_EX SET_PARTITION_INFORMATION_EX;
alias _SET_PARTITION_INFORMATION_EX *PSET_PARTITION_INFORMATION_EX;
//C typedef struct _CREATE_DISK_GPT {
//C GUID DiskId;
//C DWORD MaxPartitionCount;
//C } CREATE_DISK_GPT,*PCREATE_DISK_GPT;
struct _CREATE_DISK_GPT
{
GUID DiskId;
DWORD MaxPartitionCount;
}
alias _CREATE_DISK_GPT CREATE_DISK_GPT;
alias _CREATE_DISK_GPT *PCREATE_DISK_GPT;
//C typedef struct _CREATE_DISK_MBR {
//C DWORD Signature;
//C } CREATE_DISK_MBR,*PCREATE_DISK_MBR;
struct _CREATE_DISK_MBR
{
DWORD Signature;
}
alias _CREATE_DISK_MBR CREATE_DISK_MBR;
alias _CREATE_DISK_MBR *PCREATE_DISK_MBR;
//C typedef struct _CREATE_DISK {
//C PARTITION_STYLE PartitionStyle;
//C union {
//C CREATE_DISK_MBR Mbr;
//C CREATE_DISK_GPT Gpt;
//C } ;
union _N208
{
CREATE_DISK_MBR Mbr;
CREATE_DISK_GPT Gpt;
}
//C } CREATE_DISK,*PCREATE_DISK;
struct _CREATE_DISK
{
PARTITION_STYLE PartitionStyle;
CREATE_DISK_MBR Mbr;
CREATE_DISK_GPT Gpt;
}
alias _CREATE_DISK CREATE_DISK;
alias _CREATE_DISK *PCREATE_DISK;
//C typedef struct _GET_LENGTH_INFORMATION {
//C LARGE_INTEGER Length;
//C } GET_LENGTH_INFORMATION,*PGET_LENGTH_INFORMATION;
struct _GET_LENGTH_INFORMATION
{
LARGE_INTEGER Length;
}
alias _GET_LENGTH_INFORMATION GET_LENGTH_INFORMATION;
alias _GET_LENGTH_INFORMATION *PGET_LENGTH_INFORMATION;
//C typedef struct _PARTITION_INFORMATION_EX {
//C PARTITION_STYLE PartitionStyle;
//C LARGE_INTEGER StartingOffset;
//C LARGE_INTEGER PartitionLength;
//C DWORD PartitionNumber;
//C BOOLEAN RewritePartition;
//C union {
//C PARTITION_INFORMATION_MBR Mbr;
//C PARTITION_INFORMATION_GPT Gpt;
//C } ;
union _N209
{
PARTITION_INFORMATION_MBR Mbr;
PARTITION_INFORMATION_GPT Gpt;
}
//C } PARTITION_INFORMATION_EX,*PPARTITION_INFORMATION_EX;
struct _PARTITION_INFORMATION_EX
{
PARTITION_STYLE PartitionStyle;
LARGE_INTEGER StartingOffset;
LARGE_INTEGER PartitionLength;
DWORD PartitionNumber;
BOOLEAN RewritePartition;
PARTITION_INFORMATION_MBR Mbr;
PARTITION_INFORMATION_GPT Gpt;
}
alias _PARTITION_INFORMATION_EX PARTITION_INFORMATION_EX;
alias _PARTITION_INFORMATION_EX *PPARTITION_INFORMATION_EX;
//C typedef struct _DRIVE_LAYOUT_INFORMATION_GPT {
//C GUID DiskId;
//C LARGE_INTEGER StartingUsableOffset;
//C LARGE_INTEGER UsableLength;
//C DWORD MaxPartitionCount;
//C } DRIVE_LAYOUT_INFORMATION_GPT,*PDRIVE_LAYOUT_INFORMATION_GPT;
struct _DRIVE_LAYOUT_INFORMATION_GPT
{
GUID DiskId;
LARGE_INTEGER StartingUsableOffset;
LARGE_INTEGER UsableLength;
DWORD MaxPartitionCount;
}
alias _DRIVE_LAYOUT_INFORMATION_GPT DRIVE_LAYOUT_INFORMATION_GPT;
alias _DRIVE_LAYOUT_INFORMATION_GPT *PDRIVE_LAYOUT_INFORMATION_GPT;
//C typedef struct _DRIVE_LAYOUT_INFORMATION_MBR {
//C DWORD Signature;
//C } DRIVE_LAYOUT_INFORMATION_MBR,*PDRIVE_LAYOUT_INFORMATION_MBR;
struct _DRIVE_LAYOUT_INFORMATION_MBR
{
DWORD Signature;
}
alias _DRIVE_LAYOUT_INFORMATION_MBR DRIVE_LAYOUT_INFORMATION_MBR;
alias _DRIVE_LAYOUT_INFORMATION_MBR *PDRIVE_LAYOUT_INFORMATION_MBR;
//C typedef struct _DRIVE_LAYOUT_INFORMATION_EX {
//C DWORD PartitionStyle;
//C DWORD PartitionCount;
//C union {
//C DRIVE_LAYOUT_INFORMATION_MBR Mbr;
//C DRIVE_LAYOUT_INFORMATION_GPT Gpt;
//C } ;
union _N210
{
DRIVE_LAYOUT_INFORMATION_MBR Mbr;
DRIVE_LAYOUT_INFORMATION_GPT Gpt;
}
//C PARTITION_INFORMATION_EX PartitionEntry[1];
//C } DRIVE_LAYOUT_INFORMATION_EX,*PDRIVE_LAYOUT_INFORMATION_EX;
struct _DRIVE_LAYOUT_INFORMATION_EX
{
DWORD PartitionStyle;
DWORD PartitionCount;
DRIVE_LAYOUT_INFORMATION_MBR Mbr;
DRIVE_LAYOUT_INFORMATION_GPT Gpt;
PARTITION_INFORMATION_EX [1]PartitionEntry;
}
alias _DRIVE_LAYOUT_INFORMATION_EX DRIVE_LAYOUT_INFORMATION_EX;
alias _DRIVE_LAYOUT_INFORMATION_EX *PDRIVE_LAYOUT_INFORMATION_EX;
//C typedef enum _DETECTION_TYPE {
//C DetectNone,DetectInt13,DetectExInt13
//C } DETECTION_TYPE;
enum _DETECTION_TYPE
{
DetectNone,
DetectInt13,
DetectExInt13,
}
alias _DETECTION_TYPE DETECTION_TYPE;
//C typedef struct _DISK_INT13_INFO {
//C WORD DriveSelect;
//C DWORD MaxCylinders;
//C WORD SectorsPerTrack;
//C WORD MaxHeads;
//C WORD NumberDrives;
//C } DISK_INT13_INFO,*PDISK_INT13_INFO;
struct _DISK_INT13_INFO
{
WORD DriveSelect;
DWORD MaxCylinders;
WORD SectorsPerTrack;
WORD MaxHeads;
WORD NumberDrives;
}
alias _DISK_INT13_INFO DISK_INT13_INFO;
alias _DISK_INT13_INFO *PDISK_INT13_INFO;
//C typedef struct _DISK_EX_INT13_INFO {
//C WORD ExBufferSize;
//C WORD ExFlags;
//C DWORD ExCylinders;
//C DWORD ExHeads;
//C DWORD ExSectorsPerTrack;
//C DWORD64 ExSectorsPerDrive;
//C WORD ExSectorSize;
//C WORD ExReserved;
//C } DISK_EX_INT13_INFO,*PDISK_EX_INT13_INFO;
struct _DISK_EX_INT13_INFO
{
WORD ExBufferSize;
WORD ExFlags;
DWORD ExCylinders;
DWORD ExHeads;
DWORD ExSectorsPerTrack;
DWORD64 ExSectorsPerDrive;
WORD ExSectorSize;
WORD ExReserved;
}
alias _DISK_EX_INT13_INFO DISK_EX_INT13_INFO;
alias _DISK_EX_INT13_INFO *PDISK_EX_INT13_INFO;
//C typedef struct _DISK_DETECTION_INFO {
//C DWORD SizeOfDetectInfo;
//C DETECTION_TYPE DetectionType;
//C union {
//C struct {
//C DISK_INT13_INFO Int13;
//C DISK_EX_INT13_INFO ExInt13;
//C } ;
struct _N212
{
DISK_INT13_INFO Int13;
DISK_EX_INT13_INFO ExInt13;
}
//C } ;
union _N211
{
DISK_INT13_INFO Int13;
DISK_EX_INT13_INFO ExInt13;
}
//C } DISK_DETECTION_INFO,*PDISK_DETECTION_INFO;
struct _DISK_DETECTION_INFO
{
DWORD SizeOfDetectInfo;
DETECTION_TYPE DetectionType;
DISK_INT13_INFO Int13;
DISK_EX_INT13_INFO ExInt13;
}
alias _DISK_DETECTION_INFO DISK_DETECTION_INFO;
alias _DISK_DETECTION_INFO *PDISK_DETECTION_INFO;
//C typedef struct _DISK_PARTITION_INFO {
//C DWORD SizeOfPartitionInfo;
//C PARTITION_STYLE PartitionStyle;
//C union {
//C struct {
//C DWORD Signature;
//C DWORD CheckSum;
//C } Mbr;
struct _N214
{
DWORD Signature;
DWORD CheckSum;
}
//C struct {
//C GUID DiskId;
//C } Gpt;
struct _N215
{
GUID DiskId;
}
//C } ;
union _N213
{
_N214 Mbr;
_N215 Gpt;
}
//C } DISK_PARTITION_INFO,*PDISK_PARTITION_INFO;
struct _DISK_PARTITION_INFO
{
DWORD SizeOfPartitionInfo;
PARTITION_STYLE PartitionStyle;
_N214 Mbr;
_N215 Gpt;
}
alias _DISK_PARTITION_INFO DISK_PARTITION_INFO;
alias _DISK_PARTITION_INFO *PDISK_PARTITION_INFO;
//C typedef struct _DISK_GEOMETRY_EX {
//C DISK_GEOMETRY Geometry;
//C LARGE_INTEGER DiskSize;
//C BYTE Data[1];
//C } DISK_GEOMETRY_EX,*PDISK_GEOMETRY_EX;
struct _DISK_GEOMETRY_EX
{
DISK_GEOMETRY Geometry;
LARGE_INTEGER DiskSize;
BYTE [1]Data;
}
alias _DISK_GEOMETRY_EX DISK_GEOMETRY_EX;
alias _DISK_GEOMETRY_EX *PDISK_GEOMETRY_EX;
//C typedef struct _DISK_CONTROLLER_NUMBER {
//C DWORD ControllerNumber;
//C DWORD DiskNumber;
//C } DISK_CONTROLLER_NUMBER,*PDISK_CONTROLLER_NUMBER;
struct _DISK_CONTROLLER_NUMBER
{
DWORD ControllerNumber;
DWORD DiskNumber;
}
alias _DISK_CONTROLLER_NUMBER DISK_CONTROLLER_NUMBER;
alias _DISK_CONTROLLER_NUMBER *PDISK_CONTROLLER_NUMBER;
//C typedef enum {
//C EqualPriority,KeepPrefetchedData,KeepReadData
//C } DISK_CACHE_RETENTION_PRIORITY;
enum
{
EqualPriority,
KeepPrefetchedData,
KeepReadData,
}
alias int DISK_CACHE_RETENTION_PRIORITY;
//C typedef struct _DISK_CACHE_INFORMATION {
//C BOOLEAN ParametersSavable;
//C BOOLEAN ReadCacheEnabled;
//C BOOLEAN WriteCacheEnabled;
//C DISK_CACHE_RETENTION_PRIORITY ReadRetentionPriority;
//C DISK_CACHE_RETENTION_PRIORITY WriteRetentionPriority;
//C WORD DisablePrefetchTransferLength;
//C BOOLEAN PrefetchScalar;
//C union {
//C struct {
//C WORD Minimum;
//C WORD Maximum;
//C WORD MaximumBlocks;
//C } ScalarPrefetch;
struct _N218
{
WORD Minimum;
WORD Maximum;
WORD MaximumBlocks;
}
//C struct {
//C WORD Minimum;
//C WORD Maximum;
//C } BlockPrefetch;
struct _N219
{
WORD Minimum;
WORD Maximum;
}
//C } ;
union _N217
{
_N218 ScalarPrefetch;
_N219 BlockPrefetch;
}
//C } DISK_CACHE_INFORMATION,*PDISK_CACHE_INFORMATION;
struct _DISK_CACHE_INFORMATION
{
BOOLEAN ParametersSavable;
BOOLEAN ReadCacheEnabled;
BOOLEAN WriteCacheEnabled;
DISK_CACHE_RETENTION_PRIORITY ReadRetentionPriority;
DISK_CACHE_RETENTION_PRIORITY WriteRetentionPriority;
WORD DisablePrefetchTransferLength;
BOOLEAN PrefetchScalar;
_N218 ScalarPrefetch;
_N219 BlockPrefetch;
}
alias _DISK_CACHE_INFORMATION DISK_CACHE_INFORMATION;
alias _DISK_CACHE_INFORMATION *PDISK_CACHE_INFORMATION;
//C typedef struct _DISK_GROW_PARTITION {
//C DWORD PartitionNumber;
//C LARGE_INTEGER BytesToGrow;
//C } DISK_GROW_PARTITION,*PDISK_GROW_PARTITION;
struct _DISK_GROW_PARTITION
{
DWORD PartitionNumber;
LARGE_INTEGER BytesToGrow;
}
alias _DISK_GROW_PARTITION DISK_GROW_PARTITION;
alias _DISK_GROW_PARTITION *PDISK_GROW_PARTITION;
//C typedef struct _HISTOGRAM_BUCKET {
//C DWORD Reads;
//C DWORD Writes;
//C } HISTOGRAM_BUCKET,*PHISTOGRAM_BUCKET;
struct _HISTOGRAM_BUCKET
{
DWORD Reads;
DWORD Writes;
}
alias _HISTOGRAM_BUCKET HISTOGRAM_BUCKET;
alias _HISTOGRAM_BUCKET *PHISTOGRAM_BUCKET;
//C typedef struct _DISK_HISTOGRAM {
//C LARGE_INTEGER DiskSize;
//C LARGE_INTEGER Start;
//C LARGE_INTEGER End;
//C LARGE_INTEGER Average;
//C LARGE_INTEGER AverageRead;
//C LARGE_INTEGER AverageWrite;
//C DWORD Granularity;
//C DWORD Size;
//C DWORD ReadCount;
//C DWORD WriteCount;
//C PHISTOGRAM_BUCKET Histogram;
//C } DISK_HISTOGRAM,*PDISK_HISTOGRAM;
struct _DISK_HISTOGRAM
{
LARGE_INTEGER DiskSize;
LARGE_INTEGER Start;
LARGE_INTEGER End;
LARGE_INTEGER Average;
LARGE_INTEGER AverageRead;
LARGE_INTEGER AverageWrite;
DWORD Granularity;
DWORD Size;
DWORD ReadCount;
DWORD WriteCount;
PHISTOGRAM_BUCKET Histogram;
}
alias _DISK_HISTOGRAM DISK_HISTOGRAM;
alias _DISK_HISTOGRAM *PDISK_HISTOGRAM;
//C typedef struct _DISK_PERFORMANCE {
//C LARGE_INTEGER BytesRead;
//C LARGE_INTEGER BytesWritten;
//C LARGE_INTEGER ReadTime;
//C LARGE_INTEGER WriteTime;
//C LARGE_INTEGER IdleTime;
//C DWORD ReadCount;
//C DWORD WriteCount;
//C DWORD QueueDepth;
//C DWORD SplitCount;
//C LARGE_INTEGER QueryTime;
//C DWORD StorageDeviceNumber;
//C WCHAR StorageManagerName[8];
//C } DISK_PERFORMANCE,*PDISK_PERFORMANCE;
struct _DISK_PERFORMANCE
{
LARGE_INTEGER BytesRead;
LARGE_INTEGER BytesWritten;
LARGE_INTEGER ReadTime;
LARGE_INTEGER WriteTime;
LARGE_INTEGER IdleTime;
DWORD ReadCount;
DWORD WriteCount;
DWORD QueueDepth;
DWORD SplitCount;
LARGE_INTEGER QueryTime;
DWORD StorageDeviceNumber;
WCHAR [8]StorageManagerName;
}
alias _DISK_PERFORMANCE DISK_PERFORMANCE;
alias _DISK_PERFORMANCE *PDISK_PERFORMANCE;
//C typedef struct _DISK_RECORD {
//C LARGE_INTEGER ByteOffset;
//C LARGE_INTEGER StartTime;
//C LARGE_INTEGER EndTime;
//C PVOID VirtualAddress;
//C DWORD NumberOfBytes;
//C BYTE DeviceNumber;
//C BOOLEAN ReadRequest;
//C } DISK_RECORD,*PDISK_RECORD;
struct _DISK_RECORD
{
LARGE_INTEGER ByteOffset;
LARGE_INTEGER StartTime;
LARGE_INTEGER EndTime;
PVOID VirtualAddress;
DWORD NumberOfBytes;
BYTE DeviceNumber;
BOOLEAN ReadRequest;
}
alias _DISK_RECORD DISK_RECORD;
alias _DISK_RECORD *PDISK_RECORD;
//C typedef struct _DISK_LOGGING {
//C BYTE Function;
//C PVOID BufferAddress;
//C DWORD BufferSize;
//C } DISK_LOGGING,*PDISK_LOGGING;
struct _DISK_LOGGING
{
BYTE Function;
PVOID BufferAddress;
DWORD BufferSize;
}
alias _DISK_LOGGING DISK_LOGGING;
alias _DISK_LOGGING *PDISK_LOGGING;
//C typedef enum _BIN_TYPES {
//C RequestSize,RequestLocation
//C } BIN_TYPES;
enum _BIN_TYPES
{
RequestSize,
RequestLocation,
}
alias _BIN_TYPES BIN_TYPES;
//C typedef struct _BIN_RANGE {
//C LARGE_INTEGER StartValue;
//C LARGE_INTEGER Length;
//C } BIN_RANGE,*PBIN_RANGE;
struct _BIN_RANGE
{
LARGE_INTEGER StartValue;
LARGE_INTEGER Length;
}
alias _BIN_RANGE BIN_RANGE;
alias _BIN_RANGE *PBIN_RANGE;
//C typedef struct _PERF_BIN {
//C DWORD NumberOfBins;
//C DWORD TypeOfBin;
//C BIN_RANGE BinsRanges[1];
//C } PERF_BIN,*PPERF_BIN;
struct _PERF_BIN
{
DWORD NumberOfBins;
DWORD TypeOfBin;
BIN_RANGE [1]BinsRanges;
}
alias _PERF_BIN PERF_BIN;
alias _PERF_BIN *PPERF_BIN;
//C typedef struct _BIN_COUNT {
//C BIN_RANGE BinRange;
//C DWORD BinCount;
//C } BIN_COUNT,*PBIN_COUNT;
struct _BIN_COUNT
{
BIN_RANGE BinRange;
DWORD BinCount;
}
alias _BIN_COUNT BIN_COUNT;
alias _BIN_COUNT *PBIN_COUNT;
//C typedef struct _BIN_RESULTS {
//C DWORD NumberOfBins;
//C BIN_COUNT BinCounts[1];
//C } BIN_RESULTS,*PBIN_RESULTS;
struct _BIN_RESULTS
{
DWORD NumberOfBins;
BIN_COUNT [1]BinCounts;
}
alias _BIN_RESULTS BIN_RESULTS;
alias _BIN_RESULTS *PBIN_RESULTS;
//C typedef struct _GETVERSIONINPARAMS {
//C BYTE bVersion;
//C BYTE bRevision;
//C BYTE bReserved;
//C BYTE bIDEDeviceMap;
//C DWORD fCapabilities;
//C DWORD dwReserved[4];
//C } GETVERSIONINPARAMS,*PGETVERSIONINPARAMS,*LPGETVERSIONINPARAMS;
struct _GETVERSIONINPARAMS
{
BYTE bVersion;
BYTE bRevision;
BYTE bReserved;
BYTE bIDEDeviceMap;
DWORD fCapabilities;
DWORD [4]dwReserved;
}
alias _GETVERSIONINPARAMS GETVERSIONINPARAMS;
alias _GETVERSIONINPARAMS *PGETVERSIONINPARAMS;
alias _GETVERSIONINPARAMS *LPGETVERSIONINPARAMS;
//C typedef struct _IDEREGS {
//C BYTE bFeaturesReg;
//C BYTE bSectorCountReg;
//C BYTE bSectorNumberReg;
//C BYTE bCylLowReg;
//C BYTE bCylHighReg;
//C BYTE bDriveHeadReg;
//C BYTE bCommandReg;
//C BYTE bReserved;
//C } IDEREGS,*PIDEREGS,*LPIDEREGS;
struct _IDEREGS
{
BYTE bFeaturesReg;
BYTE bSectorCountReg;
BYTE bSectorNumberReg;
BYTE bCylLowReg;
BYTE bCylHighReg;
BYTE bDriveHeadReg;
BYTE bCommandReg;
BYTE bReserved;
}
alias _IDEREGS IDEREGS;
alias _IDEREGS *PIDEREGS;
alias _IDEREGS *LPIDEREGS;
//C typedef struct _SENDCMDINPARAMS {
//C DWORD cBufferSize;
//C IDEREGS irDriveRegs;
//C BYTE bDriveNumber;
//C BYTE bReserved[3];
//C DWORD dwReserved[4];
//C BYTE bBuffer[1];
//C } SENDCMDINPARAMS,*PSENDCMDINPARAMS,*LPSENDCMDINPARAMS;
struct _SENDCMDINPARAMS
{
DWORD cBufferSize;
IDEREGS irDriveRegs;
BYTE bDriveNumber;
BYTE [3]bReserved;
DWORD [4]dwReserved;
BYTE [1]bBuffer;
}
alias _SENDCMDINPARAMS SENDCMDINPARAMS;
alias _SENDCMDINPARAMS *PSENDCMDINPARAMS;
alias _SENDCMDINPARAMS *LPSENDCMDINPARAMS;
//C typedef struct _DRIVERSTATUS {
//C BYTE bDriverError;
//C BYTE bIDEError;
//C BYTE bReserved[2];
//C DWORD dwReserved[2];
//C } DRIVERSTATUS,*PDRIVERSTATUS,*LPDRIVERSTATUS;
struct _DRIVERSTATUS
{
BYTE bDriverError;
BYTE bIDEError;
BYTE [2]bReserved;
DWORD [2]dwReserved;
}
alias _DRIVERSTATUS DRIVERSTATUS;
alias _DRIVERSTATUS *PDRIVERSTATUS;
alias _DRIVERSTATUS *LPDRIVERSTATUS;
//C typedef struct _SENDCMDOUTPARAMS {
//C DWORD cBufferSize;
//C DRIVERSTATUS DriverStatus;
//C BYTE bBuffer[1];
//C } SENDCMDOUTPARAMS,*PSENDCMDOUTPARAMS,*LPSENDCMDOUTPARAMS;
struct _SENDCMDOUTPARAMS
{
DWORD cBufferSize;
DRIVERSTATUS DriverStatus;
BYTE [1]bBuffer;
}
alias _SENDCMDOUTPARAMS SENDCMDOUTPARAMS;
alias _SENDCMDOUTPARAMS *PSENDCMDOUTPARAMS;
alias _SENDCMDOUTPARAMS *LPSENDCMDOUTPARAMS;
//C typedef enum _ELEMENT_TYPE {
//C AllElements,ChangerTransport,ChangerSlot,ChangerIEPort,ChangerDrive,ChangerDoor,ChangerKeypad,ChangerMaxElement
//C } ELEMENT_TYPE,*PELEMENT_TYPE;
enum _ELEMENT_TYPE
{
AllElements,
ChangerTransport,
ChangerSlot,
ChangerIEPort,
ChangerDrive,
ChangerDoor,
ChangerKeypad,
ChangerMaxElement,
}
alias _ELEMENT_TYPE ELEMENT_TYPE;
alias _ELEMENT_TYPE *PELEMENT_TYPE;
//C typedef struct _CHANGER_ELEMENT {
//C ELEMENT_TYPE ElementType;
//C DWORD ElementAddress;
//C } CHANGER_ELEMENT,*PCHANGER_ELEMENT;
struct _CHANGER_ELEMENT
{
ELEMENT_TYPE ElementType;
DWORD ElementAddress;
}
alias _CHANGER_ELEMENT CHANGER_ELEMENT;
alias _CHANGER_ELEMENT *PCHANGER_ELEMENT;
//C typedef struct _CHANGER_ELEMENT_LIST {
//C CHANGER_ELEMENT Element;
//C DWORD NumberOfElements;
//C } CHANGER_ELEMENT_LIST ,*PCHANGER_ELEMENT_LIST;
struct _CHANGER_ELEMENT_LIST
{
CHANGER_ELEMENT Element;
DWORD NumberOfElements;
}
alias _CHANGER_ELEMENT_LIST CHANGER_ELEMENT_LIST;
alias _CHANGER_ELEMENT_LIST *PCHANGER_ELEMENT_LIST;
//C typedef struct _GET_CHANGER_PARAMETERS {
//C DWORD Size;
//C WORD NumberTransportElements;
//C WORD NumberStorageElements;
//C WORD NumberCleanerSlots;
//C WORD NumberIEElements;
//C WORD NumberDataTransferElements;
//C WORD NumberOfDoors;
//C WORD FirstSlotNumber;
//C WORD FirstDriveNumber;
//C WORD FirstTransportNumber;
//C WORD FirstIEPortNumber;
//C WORD FirstCleanerSlotAddress;
//C WORD MagazineSize;
//C DWORD DriveCleanTimeout;
//C DWORD Features0;
//C DWORD Features1;
//C BYTE MoveFromTransport;
//C BYTE MoveFromSlot;
//C BYTE MoveFromIePort;
//C BYTE MoveFromDrive;
//C BYTE ExchangeFromTransport;
//C BYTE ExchangeFromSlot;
//C BYTE ExchangeFromIePort;
//C BYTE ExchangeFromDrive;
//C BYTE LockUnlockCapabilities;
//C BYTE PositionCapabilities;
//C BYTE Reserved1[2];
//C DWORD Reserved2[2];
//C } GET_CHANGER_PARAMETERS,*PGET_CHANGER_PARAMETERS;
struct _GET_CHANGER_PARAMETERS
{
DWORD Size;
WORD NumberTransportElements;
WORD NumberStorageElements;
WORD NumberCleanerSlots;
WORD NumberIEElements;
WORD NumberDataTransferElements;
WORD NumberOfDoors;
WORD FirstSlotNumber;
WORD FirstDriveNumber;
WORD FirstTransportNumber;
WORD FirstIEPortNumber;
WORD FirstCleanerSlotAddress;
WORD MagazineSize;
DWORD DriveCleanTimeout;
DWORD Features0;
DWORD Features1;
BYTE MoveFromTransport;
BYTE MoveFromSlot;
BYTE MoveFromIePort;
BYTE MoveFromDrive;
BYTE ExchangeFromTransport;
BYTE ExchangeFromSlot;
BYTE ExchangeFromIePort;
BYTE ExchangeFromDrive;
BYTE LockUnlockCapabilities;
BYTE PositionCapabilities;
BYTE [2]Reserved1;
DWORD [2]Reserved2;
}
alias _GET_CHANGER_PARAMETERS GET_CHANGER_PARAMETERS;
alias _GET_CHANGER_PARAMETERS *PGET_CHANGER_PARAMETERS;
//C typedef struct _CHANGER_PRODUCT_DATA {
//C BYTE VendorId[8];
//C BYTE ProductId[16];
//C BYTE Revision[4];
//C BYTE SerialNumber[32];
//C BYTE DeviceType;
//C } CHANGER_PRODUCT_DATA,*PCHANGER_PRODUCT_DATA;
struct _CHANGER_PRODUCT_DATA
{
BYTE [8]VendorId;
BYTE [16]ProductId;
BYTE [4]Revision;
BYTE [32]SerialNumber;
BYTE DeviceType;
}
alias _CHANGER_PRODUCT_DATA CHANGER_PRODUCT_DATA;
alias _CHANGER_PRODUCT_DATA *PCHANGER_PRODUCT_DATA;
//C typedef struct _CHANGER_SET_ACCESS {
//C CHANGER_ELEMENT Element;
//C DWORD Control;
//C } CHANGER_SET_ACCESS,*PCHANGER_SET_ACCESS;
struct _CHANGER_SET_ACCESS
{
CHANGER_ELEMENT Element;
DWORD Control;
}
alias _CHANGER_SET_ACCESS CHANGER_SET_ACCESS;
alias _CHANGER_SET_ACCESS *PCHANGER_SET_ACCESS;
//C typedef struct _CHANGER_READ_ELEMENT_STATUS {
//C CHANGER_ELEMENT_LIST ElementList;
//C BOOLEAN VolumeTagInfo;
//C } CHANGER_READ_ELEMENT_STATUS,*PCHANGER_READ_ELEMENT_STATUS;
struct _CHANGER_READ_ELEMENT_STATUS
{
CHANGER_ELEMENT_LIST ElementList;
BOOLEAN VolumeTagInfo;
}
alias _CHANGER_READ_ELEMENT_STATUS CHANGER_READ_ELEMENT_STATUS;
alias _CHANGER_READ_ELEMENT_STATUS *PCHANGER_READ_ELEMENT_STATUS;
//C typedef struct _CHANGER_ELEMENT_STATUS {
//C CHANGER_ELEMENT Element;
//C CHANGER_ELEMENT SrcElementAddress;
//C DWORD Flags;
//C DWORD ExceptionCode;
//C BYTE TargetId;
//C BYTE Lun;
//C WORD Reserved;
//C BYTE PrimaryVolumeID[36];
//C BYTE AlternateVolumeID[36];
//C } CHANGER_ELEMENT_STATUS,*PCHANGER_ELEMENT_STATUS;
struct _CHANGER_ELEMENT_STATUS
{
CHANGER_ELEMENT Element;
CHANGER_ELEMENT SrcElementAddress;
DWORD Flags;
DWORD ExceptionCode;
BYTE TargetId;
BYTE Lun;
WORD Reserved;
BYTE [36]PrimaryVolumeID;
BYTE [36]AlternateVolumeID;
}
alias _CHANGER_ELEMENT_STATUS CHANGER_ELEMENT_STATUS;
alias _CHANGER_ELEMENT_STATUS *PCHANGER_ELEMENT_STATUS;
//C typedef struct _CHANGER_ELEMENT_STATUS_EX {
//C CHANGER_ELEMENT Element;
//C CHANGER_ELEMENT SrcElementAddress;
//C DWORD Flags;
//C DWORD ExceptionCode;
//C BYTE TargetId;
//C BYTE Lun;
//C WORD Reserved;
//C BYTE PrimaryVolumeID[36];
//C BYTE AlternateVolumeID[36];
//C BYTE VendorIdentification[8];
//C BYTE ProductIdentification[16];
//C BYTE SerialNumber[32];
//C } CHANGER_ELEMENT_STATUS_EX,*PCHANGER_ELEMENT_STATUS_EX;
struct _CHANGER_ELEMENT_STATUS_EX
{
CHANGER_ELEMENT Element;
CHANGER_ELEMENT SrcElementAddress;
DWORD Flags;
DWORD ExceptionCode;
BYTE TargetId;
BYTE Lun;
WORD Reserved;
BYTE [36]PrimaryVolumeID;
BYTE [36]AlternateVolumeID;
BYTE [8]VendorIdentification;
BYTE [16]ProductIdentification;
BYTE [32]SerialNumber;
}
alias _CHANGER_ELEMENT_STATUS_EX CHANGER_ELEMENT_STATUS_EX;
alias _CHANGER_ELEMENT_STATUS_EX *PCHANGER_ELEMENT_STATUS_EX;
//C typedef struct _CHANGER_INITIALIZE_ELEMENT_STATUS {
//C CHANGER_ELEMENT_LIST ElementList;
//C BOOLEAN BarCodeScan;
//C } CHANGER_INITIALIZE_ELEMENT_STATUS,*PCHANGER_INITIALIZE_ELEMENT_STATUS;
struct _CHANGER_INITIALIZE_ELEMENT_STATUS
{
CHANGER_ELEMENT_LIST ElementList;
BOOLEAN BarCodeScan;
}
alias _CHANGER_INITIALIZE_ELEMENT_STATUS CHANGER_INITIALIZE_ELEMENT_STATUS;
alias _CHANGER_INITIALIZE_ELEMENT_STATUS *PCHANGER_INITIALIZE_ELEMENT_STATUS;
//C typedef struct _CHANGER_SET_POSITION {
//C CHANGER_ELEMENT Transport;
//C CHANGER_ELEMENT Destination;
//C BOOLEAN Flip;
//C } CHANGER_SET_POSITION,*PCHANGER_SET_POSITION;
struct _CHANGER_SET_POSITION
{
CHANGER_ELEMENT Transport;
CHANGER_ELEMENT Destination;
BOOLEAN Flip;
}
alias _CHANGER_SET_POSITION CHANGER_SET_POSITION;
alias _CHANGER_SET_POSITION *PCHANGER_SET_POSITION;
//C typedef struct _CHANGER_EXCHANGE_MEDIUM {
//C CHANGER_ELEMENT Transport;
//C CHANGER_ELEMENT Source;
//C CHANGER_ELEMENT Destination1;
//C CHANGER_ELEMENT Destination2;
//C BOOLEAN Flip1;
//C BOOLEAN Flip2;
//C } CHANGER_EXCHANGE_MEDIUM,*PCHANGER_EXCHANGE_MEDIUM;
struct _CHANGER_EXCHANGE_MEDIUM
{
CHANGER_ELEMENT Transport;
CHANGER_ELEMENT Source;
CHANGER_ELEMENT Destination1;
CHANGER_ELEMENT Destination2;
BOOLEAN Flip1;
BOOLEAN Flip2;
}
alias _CHANGER_EXCHANGE_MEDIUM CHANGER_EXCHANGE_MEDIUM;
alias _CHANGER_EXCHANGE_MEDIUM *PCHANGER_EXCHANGE_MEDIUM;
//C typedef struct _CHANGER_MOVE_MEDIUM {
//C CHANGER_ELEMENT Transport;
//C CHANGER_ELEMENT Source;
//C CHANGER_ELEMENT Destination;
//C BOOLEAN Flip;
//C } CHANGER_MOVE_MEDIUM,*PCHANGER_MOVE_MEDIUM;
struct _CHANGER_MOVE_MEDIUM
{
CHANGER_ELEMENT Transport;
CHANGER_ELEMENT Source;
CHANGER_ELEMENT Destination;
BOOLEAN Flip;
}
alias _CHANGER_MOVE_MEDIUM CHANGER_MOVE_MEDIUM;
alias _CHANGER_MOVE_MEDIUM *PCHANGER_MOVE_MEDIUM;
//C typedef struct _CHANGER_SEND_VOLUME_TAG_INFORMATION {
//C CHANGER_ELEMENT StartingElement;
//C DWORD ActionCode;
//C BYTE VolumeIDTemplate[40];
//C } CHANGER_SEND_VOLUME_TAG_INFORMATION,*PCHANGER_SEND_VOLUME_TAG_INFORMATION;
struct _CHANGER_SEND_VOLUME_TAG_INFORMATION
{
CHANGER_ELEMENT StartingElement;
DWORD ActionCode;
BYTE [40]VolumeIDTemplate;
}
alias _CHANGER_SEND_VOLUME_TAG_INFORMATION CHANGER_SEND_VOLUME_TAG_INFORMATION;
alias _CHANGER_SEND_VOLUME_TAG_INFORMATION *PCHANGER_SEND_VOLUME_TAG_INFORMATION;
//C typedef struct _READ_ELEMENT_ADDRESS_INFO {
//C DWORD NumberOfElements;
//C CHANGER_ELEMENT_STATUS ElementStatus[1];
//C } READ_ELEMENT_ADDRESS_INFO,*PREAD_ELEMENT_ADDRESS_INFO;
struct _READ_ELEMENT_ADDRESS_INFO
{
DWORD NumberOfElements;
CHANGER_ELEMENT_STATUS [1]ElementStatus;
}
alias _READ_ELEMENT_ADDRESS_INFO READ_ELEMENT_ADDRESS_INFO;
alias _READ_ELEMENT_ADDRESS_INFO *PREAD_ELEMENT_ADDRESS_INFO;
//C typedef enum _CHANGER_DEVICE_PROBLEM_TYPE {
//C DeviceProblemNone,DeviceProblemHardware,DeviceProblemCHMError,DeviceProblemDoorOpen,DeviceProblemCalibrationError,DeviceProblemTargetFailure,
//C DeviceProblemCHMMoveError,DeviceProblemCHMZeroError,DeviceProblemCartridgeInsertError,DeviceProblemPositionError,DeviceProblemSensorError,
//C DeviceProblemCartridgeEjectError,DeviceProblemGripperError,DeviceProblemDriveError
//C } CHANGER_DEVICE_PROBLEM_TYPE,*PCHANGER_DEVICE_PROBLEM_TYPE;
enum _CHANGER_DEVICE_PROBLEM_TYPE
{
DeviceProblemNone,
DeviceProblemHardware,
DeviceProblemCHMError,
DeviceProblemDoorOpen,
DeviceProblemCalibrationError,
DeviceProblemTargetFailure,
DeviceProblemCHMMoveError,
DeviceProblemCHMZeroError,
DeviceProblemCartridgeInsertError,
DeviceProblemPositionError,
DeviceProblemSensorError,
DeviceProblemCartridgeEjectError,
DeviceProblemGripperError,
DeviceProblemDriveError,
}
alias _CHANGER_DEVICE_PROBLEM_TYPE CHANGER_DEVICE_PROBLEM_TYPE;
alias _CHANGER_DEVICE_PROBLEM_TYPE *PCHANGER_DEVICE_PROBLEM_TYPE;
//C typedef struct _PATHNAME_BUFFER {
//C DWORD PathNameLength;
//C WCHAR Name[1];
//C } PATHNAME_BUFFER,*PPATHNAME_BUFFER;
struct _PATHNAME_BUFFER
{
DWORD PathNameLength;
WCHAR [1]Name;
}
alias _PATHNAME_BUFFER PATHNAME_BUFFER;
alias _PATHNAME_BUFFER *PPATHNAME_BUFFER;
//C typedef struct _FSCTL_QUERY_FAT_BPB_BUFFER {
//C BYTE First0x24BytesOfBootSector[0x24];
//C } FSCTL_QUERY_FAT_BPB_BUFFER,*PFSCTL_QUERY_FAT_BPB_BUFFER;
struct _FSCTL_QUERY_FAT_BPB_BUFFER
{
BYTE [36]First0x24BytesOfBootSector;
}
alias _FSCTL_QUERY_FAT_BPB_BUFFER FSCTL_QUERY_FAT_BPB_BUFFER;
alias _FSCTL_QUERY_FAT_BPB_BUFFER *PFSCTL_QUERY_FAT_BPB_BUFFER;
//C typedef struct {
//C LARGE_INTEGER VolumeSerialNumber;
//C LARGE_INTEGER NumberSectors;
//C LARGE_INTEGER TotalClusters;
//C LARGE_INTEGER FreeClusters;
//C LARGE_INTEGER TotalReserved;
//C DWORD BytesPerSector;
//C DWORD BytesPerCluster;
//C DWORD BytesPerFileRecordSegment;
//C DWORD ClustersPerFileRecordSegment;
//C LARGE_INTEGER MftValidDataLength;
//C LARGE_INTEGER MftStartLcn;
//C LARGE_INTEGER Mft2StartLcn;
//C LARGE_INTEGER MftZoneStart;
//C LARGE_INTEGER MftZoneEnd;
//C } NTFS_VOLUME_DATA_BUFFER,*PNTFS_VOLUME_DATA_BUFFER;
struct _N220
{
LARGE_INTEGER VolumeSerialNumber;
LARGE_INTEGER NumberSectors;
LARGE_INTEGER TotalClusters;
LARGE_INTEGER FreeClusters;
LARGE_INTEGER TotalReserved;
DWORD BytesPerSector;
DWORD BytesPerCluster;
DWORD BytesPerFileRecordSegment;
DWORD ClustersPerFileRecordSegment;
LARGE_INTEGER MftValidDataLength;
LARGE_INTEGER MftStartLcn;
LARGE_INTEGER Mft2StartLcn;
LARGE_INTEGER MftZoneStart;
LARGE_INTEGER MftZoneEnd;
}
alias _N220 NTFS_VOLUME_DATA_BUFFER;
alias _N220 *PNTFS_VOLUME_DATA_BUFFER;
//C typedef struct {
//C DWORD ByteCount;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C } NTFS_EXTENDED_VOLUME_DATA,*PNTFS_EXTENDED_VOLUME_DATA;
struct _N221
{
DWORD ByteCount;
WORD MajorVersion;
WORD MinorVersion;
}
alias _N221 NTFS_EXTENDED_VOLUME_DATA;
alias _N221 *PNTFS_EXTENDED_VOLUME_DATA;
//C typedef struct {
//C LARGE_INTEGER StartingLcn;
//C } STARTING_LCN_INPUT_BUFFER,*PSTARTING_LCN_INPUT_BUFFER;
struct _N222
{
LARGE_INTEGER StartingLcn;
}
alias _N222 STARTING_LCN_INPUT_BUFFER;
alias _N222 *PSTARTING_LCN_INPUT_BUFFER;
//C typedef struct {
//C LARGE_INTEGER StartingLcn;
//C LARGE_INTEGER BitmapSize;
//C BYTE Buffer[1];
//C } VOLUME_BITMAP_BUFFER,*PVOLUME_BITMAP_BUFFER;
struct _N223
{
LARGE_INTEGER StartingLcn;
LARGE_INTEGER BitmapSize;
BYTE [1]Buffer;
}
alias _N223 VOLUME_BITMAP_BUFFER;
alias _N223 *PVOLUME_BITMAP_BUFFER;
//C typedef struct {
//C LARGE_INTEGER StartingVcn;
//C } STARTING_VCN_INPUT_BUFFER,*PSTARTING_VCN_INPUT_BUFFER;
struct _N224
{
LARGE_INTEGER StartingVcn;
}
alias _N224 STARTING_VCN_INPUT_BUFFER;
alias _N224 *PSTARTING_VCN_INPUT_BUFFER;
//C typedef struct RETRIEVAL_POINTERS_BUFFER {
//C DWORD ExtentCount;
//C LARGE_INTEGER StartingVcn;
//C struct {
//C LARGE_INTEGER NextVcn;
//C LARGE_INTEGER Lcn;
//C } Extents[1];
struct _N225
{
LARGE_INTEGER NextVcn;
LARGE_INTEGER Lcn;
}
//C } RETRIEVAL_POINTERS_BUFFER,*PRETRIEVAL_POINTERS_BUFFER;
struct RETRIEVAL_POINTERS_BUFFER
{
DWORD ExtentCount;
LARGE_INTEGER StartingVcn;
_N225 [1]Extents;
}
alias RETRIEVAL_POINTERS_BUFFER *PRETRIEVAL_POINTERS_BUFFER;
//C typedef struct {
//C LARGE_INTEGER FileReferenceNumber;
//C } NTFS_FILE_RECORD_INPUT_BUFFER,*PNTFS_FILE_RECORD_INPUT_BUFFER;
struct _N226
{
LARGE_INTEGER FileReferenceNumber;
}
alias _N226 NTFS_FILE_RECORD_INPUT_BUFFER;
alias _N226 *PNTFS_FILE_RECORD_INPUT_BUFFER;
//C typedef struct {
//C LARGE_INTEGER FileReferenceNumber;
//C DWORD FileRecordLength;
//C BYTE FileRecordBuffer[1];
//C } NTFS_FILE_RECORD_OUTPUT_BUFFER,*PNTFS_FILE_RECORD_OUTPUT_BUFFER;
struct _N227
{
LARGE_INTEGER FileReferenceNumber;
DWORD FileRecordLength;
BYTE [1]FileRecordBuffer;
}
alias _N227 NTFS_FILE_RECORD_OUTPUT_BUFFER;
alias _N227 *PNTFS_FILE_RECORD_OUTPUT_BUFFER;
//C typedef struct {
//C HANDLE FileHandle;
//C LARGE_INTEGER StartingVcn;
//C LARGE_INTEGER StartingLcn;
//C DWORD ClusterCount;
//C } MOVE_FILE_DATA,*PMOVE_FILE_DATA;
struct _N228
{
HANDLE FileHandle;
LARGE_INTEGER StartingVcn;
LARGE_INTEGER StartingLcn;
DWORD ClusterCount;
}
alias _N228 MOVE_FILE_DATA;
alias _N228 *PMOVE_FILE_DATA;
//C typedef struct _MOVE_FILE_DATA32 {
//C UINT32 FileHandle;
//C LARGE_INTEGER StartingVcn;
//C LARGE_INTEGER StartingLcn;
//C DWORD ClusterCount;
//C } MOVE_FILE_DATA32,*PMOVE_FILE_DATA32;
struct _MOVE_FILE_DATA32
{
UINT32 FileHandle;
LARGE_INTEGER StartingVcn;
LARGE_INTEGER StartingLcn;
DWORD ClusterCount;
}
alias _MOVE_FILE_DATA32 MOVE_FILE_DATA32;
alias _MOVE_FILE_DATA32 *PMOVE_FILE_DATA32;
//C typedef struct {
//C DWORD Restart;
//C SID Sid;
//C } FIND_BY_SID_DATA,*PFIND_BY_SID_DATA;
struct _N229
{
DWORD Restart;
SID Sid;
}
alias _N229 FIND_BY_SID_DATA;
alias _N229 *PFIND_BY_SID_DATA;
//C typedef struct {
//C DWORD NextEntryOffset;
//C DWORD FileIndex;
//C DWORD FileNameLength;
//C WCHAR FileName[1];
//C } FIND_BY_SID_OUTPUT,*PFIND_BY_SID_OUTPUT;
struct _N230
{
DWORD NextEntryOffset;
DWORD FileIndex;
DWORD FileNameLength;
WCHAR [1]FileName;
}
alias _N230 FIND_BY_SID_OUTPUT;
alias _N230 *PFIND_BY_SID_OUTPUT;
//C typedef struct {
//C DWORDLONG StartFileReferenceNumber;
//C USN LowUsn;
//C USN HighUsn;
//C } MFT_ENUM_DATA,*PMFT_ENUM_DATA;
struct _N231
{
DWORDLONG StartFileReferenceNumber;
USN LowUsn;
USN HighUsn;
}
alias _N231 MFT_ENUM_DATA;
alias _N231 *PMFT_ENUM_DATA;
//C typedef struct {
//C DWORDLONG MaximumSize;
//C DWORDLONG AllocationDelta;
//C } CREATE_USN_JOURNAL_DATA,*PCREATE_USN_JOURNAL_DATA;
struct _N232
{
DWORDLONG MaximumSize;
DWORDLONG AllocationDelta;
}
alias _N232 CREATE_USN_JOURNAL_DATA;
alias _N232 *PCREATE_USN_JOURNAL_DATA;
//C typedef struct {
//C USN StartUsn;
//C DWORD ReasonMask;
//C DWORD ReturnOnlyOnClose;
//C DWORDLONG Timeout;
//C DWORDLONG BytesToWaitFor;
//C DWORDLONG UsnJournalID;
//C } READ_USN_JOURNAL_DATA,*PREAD_USN_JOURNAL_DATA;
struct _N233
{
USN StartUsn;
DWORD ReasonMask;
DWORD ReturnOnlyOnClose;
DWORDLONG Timeout;
DWORDLONG BytesToWaitFor;
DWORDLONG UsnJournalID;
}
alias _N233 READ_USN_JOURNAL_DATA;
alias _N233 *PREAD_USN_JOURNAL_DATA;
//C typedef struct {
//C DWORD RecordLength;
//C WORD MajorVersion;
//C WORD MinorVersion;
//C DWORDLONG FileReferenceNumber;
//C DWORDLONG ParentFileReferenceNumber;
//C USN Usn;
//C LARGE_INTEGER TimeStamp;
//C DWORD Reason;
//C DWORD SourceInfo;
//C DWORD SecurityId;
//C DWORD FileAttributes;
//C WORD FileNameLength;
//C WORD FileNameOffset;
//C WCHAR FileName[1];
//C } USN_RECORD,*PUSN_RECORD;
struct _N234
{
DWORD RecordLength;
WORD MajorVersion;
WORD MinorVersion;
DWORDLONG FileReferenceNumber;
DWORDLONG ParentFileReferenceNumber;
USN Usn;
LARGE_INTEGER TimeStamp;
DWORD Reason;
DWORD SourceInfo;
DWORD SecurityId;
DWORD FileAttributes;
WORD FileNameLength;
WORD FileNameOffset;
WCHAR [1]FileName;
}
alias _N234 USN_RECORD;
alias _N234 *PUSN_RECORD;
//C typedef struct {
//C DWORDLONG UsnJournalID;
//C USN FirstUsn;
//C USN NextUsn;
//C USN LowestValidUsn;
//C USN MaxUsn;
//C DWORDLONG MaximumSize;
//C DWORDLONG AllocationDelta;
//C } USN_JOURNAL_DATA,*PUSN_JOURNAL_DATA;
struct _N235
{
DWORDLONG UsnJournalID;
USN FirstUsn;
USN NextUsn;
USN LowestValidUsn;
USN MaxUsn;
DWORDLONG MaximumSize;
DWORDLONG AllocationDelta;
}
alias _N235 USN_JOURNAL_DATA;
alias _N235 *PUSN_JOURNAL_DATA;
//C typedef struct {
//C DWORDLONG UsnJournalID;
//C DWORD DeleteFlags;
//C } DELETE_USN_JOURNAL_DATA,*PDELETE_USN_JOURNAL_DATA;
struct _N236
{
DWORDLONG UsnJournalID;
DWORD DeleteFlags;
}
alias _N236 DELETE_USN_JOURNAL_DATA;
alias _N236 *PDELETE_USN_JOURNAL_DATA;
//C typedef struct {
//C DWORD UsnSourceInfo;
//C HANDLE VolumeHandle;
//C DWORD HandleInfo;
//C } MARK_HANDLE_INFO,*PMARK_HANDLE_INFO;
struct _N237
{
DWORD UsnSourceInfo;
HANDLE VolumeHandle;
DWORD HandleInfo;
}
alias _N237 MARK_HANDLE_INFO;
alias _N237 *PMARK_HANDLE_INFO;
//C typedef struct {
//C DWORD UsnSourceInfo;
//C UINT32 VolumeHandle;
//C DWORD HandleInfo;
//C } MARK_HANDLE_INFO32,*PMARK_HANDLE_INFO32;
struct _N238
{
DWORD UsnSourceInfo;
UINT32 VolumeHandle;
DWORD HandleInfo;
}
alias _N238 MARK_HANDLE_INFO32;
alias _N238 *PMARK_HANDLE_INFO32;
//C typedef struct {
//C ACCESS_MASK DesiredAccess;
//C DWORD SecurityIds[1];
//C } BULK_SECURITY_TEST_DATA,*PBULK_SECURITY_TEST_DATA;
struct _N239
{
ACCESS_MASK DesiredAccess;
DWORD [1]SecurityIds;
}
alias _N239 BULK_SECURITY_TEST_DATA;
alias _N239 *PBULK_SECURITY_TEST_DATA;
//C typedef struct _FILE_PREFETCH {
//C DWORD Type;
//C DWORD Count;
//C DWORDLONG Prefetch[1];
//C } FILE_PREFETCH,*PFILE_PREFETCH;
struct _FILE_PREFETCH
{
DWORD Type;
DWORD Count;
DWORDLONG [1]Prefetch;
}
alias _FILE_PREFETCH FILE_PREFETCH;
alias _FILE_PREFETCH *PFILE_PREFETCH;
//C typedef struct _FILESYSTEM_STATISTICS {
//C WORD FileSystemType;
//C WORD Version;
//C DWORD SizeOfCompleteStructure;
//C DWORD UserFileReads;
//C DWORD UserFileReadBytes;
//C DWORD UserDiskReads;
//C DWORD UserFileWrites;
//C DWORD UserFileWriteBytes;
//C DWORD UserDiskWrites;
//C DWORD MetaDataReads;
//C DWORD MetaDataReadBytes;
//C DWORD MetaDataDiskReads;
//C DWORD MetaDataWrites;
//C DWORD MetaDataWriteBytes;
//C DWORD MetaDataDiskWrites;
//C } FILESYSTEM_STATISTICS,*PFILESYSTEM_STATISTICS;
struct _FILESYSTEM_STATISTICS
{
WORD FileSystemType;
WORD Version;
DWORD SizeOfCompleteStructure;
DWORD UserFileReads;
DWORD UserFileReadBytes;
DWORD UserDiskReads;
DWORD UserFileWrites;
DWORD UserFileWriteBytes;
DWORD UserDiskWrites;
DWORD MetaDataReads;
DWORD MetaDataReadBytes;
DWORD MetaDataDiskReads;
DWORD MetaDataWrites;
DWORD MetaDataWriteBytes;
DWORD MetaDataDiskWrites;
}
alias _FILESYSTEM_STATISTICS FILESYSTEM_STATISTICS;
alias _FILESYSTEM_STATISTICS *PFILESYSTEM_STATISTICS;
//C typedef struct _FAT_STATISTICS {
//C DWORD CreateHits;
//C DWORD SuccessfulCreates;
//C DWORD FailedCreates;
//C DWORD NonCachedReads;
//C DWORD NonCachedReadBytes;
//C DWORD NonCachedWrites;
//C DWORD NonCachedWriteBytes;
//C DWORD NonCachedDiskReads;
//C DWORD NonCachedDiskWrites;
//C } FAT_STATISTICS,*PFAT_STATISTICS;
struct _FAT_STATISTICS
{
DWORD CreateHits;
DWORD SuccessfulCreates;
DWORD FailedCreates;
DWORD NonCachedReads;
DWORD NonCachedReadBytes;
DWORD NonCachedWrites;
DWORD NonCachedWriteBytes;
DWORD NonCachedDiskReads;
DWORD NonCachedDiskWrites;
}
alias _FAT_STATISTICS FAT_STATISTICS;
alias _FAT_STATISTICS *PFAT_STATISTICS;
//C typedef struct _EXFAT_STATISTICS {
//C DWORD CreateHits;
//C DWORD SuccessfulCreates;
//C DWORD FailedCreates;
//C DWORD NonCachedReads;
//C DWORD NonCachedReadBytes;
//C DWORD NonCachedWrites;
//C DWORD NonCachedWriteBytes;
//C DWORD NonCachedDiskReads;
//C DWORD NonCachedDiskWrites;
//C } EXFAT_STATISTICS,*PEXFAT_STATISTICS;
struct _EXFAT_STATISTICS
{
DWORD CreateHits;
DWORD SuccessfulCreates;
DWORD FailedCreates;
DWORD NonCachedReads;
DWORD NonCachedReadBytes;
DWORD NonCachedWrites;
DWORD NonCachedWriteBytes;
DWORD NonCachedDiskReads;
DWORD NonCachedDiskWrites;
}
alias _EXFAT_STATISTICS EXFAT_STATISTICS;
alias _EXFAT_STATISTICS *PEXFAT_STATISTICS;
//C typedef struct _NTFS_STATISTICS {
//C DWORD LogFileFullExceptions;
//C DWORD OtherExceptions;
//C DWORD MftReads;
//C DWORD MftReadBytes;
//C DWORD MftWrites;
//C DWORD MftWriteBytes;
//C struct {
//C WORD Write;
//C WORD Create;
//C WORD SetInfo;
//C WORD Flush;
//C } MftWritesUserLevel;
struct _N240
{
WORD Write;
WORD Create;
WORD SetInfo;
WORD Flush;
}
//C WORD MftWritesFlushForLogFileFull;
//C WORD MftWritesLazyWriter;
//C WORD MftWritesUserRequest;
//C DWORD Mft2Writes;
//C DWORD Mft2WriteBytes;
//C struct {
//C WORD Write;
//C WORD Create;
//C WORD SetInfo;
//C WORD Flush;
//C } Mft2WritesUserLevel;
struct _N241
{
WORD Write;
WORD Create;
WORD SetInfo;
WORD Flush;
}
//C WORD Mft2WritesFlushForLogFileFull;
//C WORD Mft2WritesLazyWriter;
//C WORD Mft2WritesUserRequest;
//C DWORD RootIndexReads;
//C DWORD RootIndexReadBytes;
//C DWORD RootIndexWrites;
//C DWORD RootIndexWriteBytes;
//C DWORD BitmapReads;
//C DWORD BitmapReadBytes;
//C DWORD BitmapWrites;
//C DWORD BitmapWriteBytes;
//C WORD BitmapWritesFlushForLogFileFull;
//C WORD BitmapWritesLazyWriter;
//C WORD BitmapWritesUserRequest;
//C struct {
//C WORD Write;
//C WORD Create;
//C WORD SetInfo;
//C } BitmapWritesUserLevel;
struct _N242
{
WORD Write;
WORD Create;
WORD SetInfo;
}
//C DWORD MftBitmapReads;
//C DWORD MftBitmapReadBytes;
//C DWORD MftBitmapWrites;
//C DWORD MftBitmapWriteBytes;
//C WORD MftBitmapWritesFlushForLogFileFull;
//C WORD MftBitmapWritesLazyWriter;
//C WORD MftBitmapWritesUserRequest;
//C struct {
//C WORD Write;
//C WORD Create;
//C WORD SetInfo;
//C WORD Flush;
//C } MftBitmapWritesUserLevel;
struct _N243
{
WORD Write;
WORD Create;
WORD SetInfo;
WORD Flush;
}
//C DWORD UserIndexReads;
//C DWORD UserIndexReadBytes;
//C DWORD UserIndexWrites;
//C DWORD UserIndexWriteBytes;
//C DWORD LogFileReads;
//C DWORD LogFileReadBytes;
//C DWORD LogFileWrites;
//C DWORD LogFileWriteBytes;
//C struct {
//C DWORD Calls;
//C DWORD Clusters;
//C DWORD Hints;
//C DWORD RunsReturned;
//C DWORD HintsHonored;
//C DWORD HintsClusters;
//C DWORD Cache;
//C DWORD CacheClusters;
//C DWORD CacheMiss;
//C DWORD CacheMissClusters;
//C } Allocate;
struct _N244
{
DWORD Calls;
DWORD Clusters;
DWORD Hints;
DWORD RunsReturned;
DWORD HintsHonored;
DWORD HintsClusters;
DWORD Cache;
DWORD CacheClusters;
DWORD CacheMiss;
DWORD CacheMissClusters;
}
//C } NTFS_STATISTICS,*PNTFS_STATISTICS;
struct _NTFS_STATISTICS
{
DWORD LogFileFullExceptions;
DWORD OtherExceptions;
DWORD MftReads;
DWORD MftReadBytes;
DWORD MftWrites;
DWORD MftWriteBytes;
_N240 MftWritesUserLevel;
WORD MftWritesFlushForLogFileFull;
WORD MftWritesLazyWriter;
WORD MftWritesUserRequest;
DWORD Mft2Writes;
DWORD Mft2WriteBytes;
_N241 Mft2WritesUserLevel;
WORD Mft2WritesFlushForLogFileFull;
WORD Mft2WritesLazyWriter;
WORD Mft2WritesUserRequest;
DWORD RootIndexReads;
DWORD RootIndexReadBytes;
DWORD RootIndexWrites;
DWORD RootIndexWriteBytes;
DWORD BitmapReads;
DWORD BitmapReadBytes;
DWORD BitmapWrites;
DWORD BitmapWriteBytes;
WORD BitmapWritesFlushForLogFileFull;
WORD BitmapWritesLazyWriter;
WORD BitmapWritesUserRequest;
_N242 BitmapWritesUserLevel;
DWORD MftBitmapReads;
DWORD MftBitmapReadBytes;
DWORD MftBitmapWrites;
DWORD MftBitmapWriteBytes;
WORD MftBitmapWritesFlushForLogFileFull;
WORD MftBitmapWritesLazyWriter;
WORD MftBitmapWritesUserRequest;
_N243 MftBitmapWritesUserLevel;
DWORD UserIndexReads;
DWORD UserIndexReadBytes;
DWORD UserIndexWrites;
DWORD UserIndexWriteBytes;
DWORD LogFileReads;
DWORD LogFileReadBytes;
DWORD LogFileWrites;
DWORD LogFileWriteBytes;
_N244 Allocate;
}
alias _NTFS_STATISTICS NTFS_STATISTICS;
alias _NTFS_STATISTICS *PNTFS_STATISTICS;
//C typedef struct _FILE_OBJECTID_BUFFER {
//C BYTE ObjectId[16];
//C union {
//C struct {
//C BYTE BirthVolumeId[16];
//C BYTE BirthObjectId[16];
//C BYTE DomainId[16];
//C } ;
struct _N246
{
BYTE [16]BirthVolumeId;
BYTE [16]BirthObjectId;
BYTE [16]DomainId;
}
//C BYTE ExtendedInfo[48];
//C } ;
union _N245
{
BYTE [16]BirthVolumeId;
BYTE [16]BirthObjectId;
BYTE [16]DomainId;
BYTE [48]ExtendedInfo;
}
//C } FILE_OBJECTID_BUFFER,*PFILE_OBJECTID_BUFFER;
struct _FILE_OBJECTID_BUFFER
{
BYTE [16]ObjectId;
BYTE [16]BirthVolumeId;
BYTE [16]BirthObjectId;
BYTE [16]DomainId;
BYTE [48]ExtendedInfo;
}
alias _FILE_OBJECTID_BUFFER FILE_OBJECTID_BUFFER;
alias _FILE_OBJECTID_BUFFER *PFILE_OBJECTID_BUFFER;
//C typedef struct _FILE_SET_SPARSE_BUFFER {
//C BOOLEAN SetSparse;
//C } FILE_SET_SPARSE_BUFFER,*PFILE_SET_SPARSE_BUFFER;
struct _FILE_SET_SPARSE_BUFFER
{
BOOLEAN SetSparse;
}
alias _FILE_SET_SPARSE_BUFFER FILE_SET_SPARSE_BUFFER;
alias _FILE_SET_SPARSE_BUFFER *PFILE_SET_SPARSE_BUFFER;
//C typedef struct _FILE_ZERO_DATA_INFORMATION {
//C LARGE_INTEGER FileOffset;
//C LARGE_INTEGER BeyondFinalZero;
//C } FILE_ZERO_DATA_INFORMATION,*PFILE_ZERO_DATA_INFORMATION;
struct _FILE_ZERO_DATA_INFORMATION
{
LARGE_INTEGER FileOffset;
LARGE_INTEGER BeyondFinalZero;
}
alias _FILE_ZERO_DATA_INFORMATION FILE_ZERO_DATA_INFORMATION;
alias _FILE_ZERO_DATA_INFORMATION *PFILE_ZERO_DATA_INFORMATION;
//C typedef struct _FILE_ALLOCATED_RANGE_BUFFER {
//C LARGE_INTEGER FileOffset;
//C LARGE_INTEGER Length;
//C } FILE_ALLOCATED_RANGE_BUFFER,*PFILE_ALLOCATED_RANGE_BUFFER;
struct _FILE_ALLOCATED_RANGE_BUFFER
{
LARGE_INTEGER FileOffset;
LARGE_INTEGER Length;
}
alias _FILE_ALLOCATED_RANGE_BUFFER FILE_ALLOCATED_RANGE_BUFFER;
alias _FILE_ALLOCATED_RANGE_BUFFER *PFILE_ALLOCATED_RANGE_BUFFER;
//C typedef struct _ENCRYPTION_BUFFER {
//C DWORD EncryptionOperation;
//C BYTE Private[1];
//C } ENCRYPTION_BUFFER,*PENCRYPTION_BUFFER;
struct _ENCRYPTION_BUFFER
{
DWORD EncryptionOperation;
BYTE [1]Private;
}
alias _ENCRYPTION_BUFFER ENCRYPTION_BUFFER;
alias _ENCRYPTION_BUFFER *PENCRYPTION_BUFFER;
//C typedef struct _DECRYPTION_STATUS_BUFFER {
//C BOOLEAN NoEncryptedStreams;
//C } DECRYPTION_STATUS_BUFFER,*PDECRYPTION_STATUS_BUFFER;
struct _DECRYPTION_STATUS_BUFFER
{
BOOLEAN NoEncryptedStreams;
}
alias _DECRYPTION_STATUS_BUFFER DECRYPTION_STATUS_BUFFER;
alias _DECRYPTION_STATUS_BUFFER *PDECRYPTION_STATUS_BUFFER;
//C typedef struct _REQUEST_RAW_ENCRYPTED_DATA {
//C LONGLONG FileOffset;
//C DWORD Length;
//C } REQUEST_RAW_ENCRYPTED_DATA,*PREQUEST_RAW_ENCRYPTED_DATA;
struct _REQUEST_RAW_ENCRYPTED_DATA
{
LONGLONG FileOffset;
DWORD Length;
}
alias _REQUEST_RAW_ENCRYPTED_DATA REQUEST_RAW_ENCRYPTED_DATA;
alias _REQUEST_RAW_ENCRYPTED_DATA *PREQUEST_RAW_ENCRYPTED_DATA;
//C typedef struct _ENCRYPTED_DATA_INFO {
//C DWORDLONG StartingFileOffset;
//C DWORD OutputBufferOffset;
//C DWORD BytesWithinFileSize;
//C DWORD BytesWithinValidDataLength;
//C WORD CompressionFormat;
//C BYTE DataUnitShift;
//C BYTE ChunkShift;
//C BYTE ClusterShift;
//C BYTE EncryptionFormat;
//C WORD NumberOfDataBlocks;
//C DWORD DataBlockSize[1];
//C } ENCRYPTED_DATA_INFO;
struct _ENCRYPTED_DATA_INFO
{
DWORDLONG StartingFileOffset;
DWORD OutputBufferOffset;
DWORD BytesWithinFileSize;
DWORD BytesWithinValidDataLength;
WORD CompressionFormat;
BYTE DataUnitShift;
BYTE ChunkShift;
BYTE ClusterShift;
BYTE EncryptionFormat;
WORD NumberOfDataBlocks;
DWORD [1]DataBlockSize;
}
alias _ENCRYPTED_DATA_INFO ENCRYPTED_DATA_INFO;
//C typedef ENCRYPTED_DATA_INFO *PENCRYPTED_DATA_INFO;
alias ENCRYPTED_DATA_INFO *PENCRYPTED_DATA_INFO;
//C typedef struct _PLEX_READ_DATA_REQUEST {
//C LARGE_INTEGER ByteOffset;
//C DWORD ByteLength;
//C DWORD PlexNumber;
//C } PLEX_READ_DATA_REQUEST,*PPLEX_READ_DATA_REQUEST;
struct _PLEX_READ_DATA_REQUEST
{
LARGE_INTEGER ByteOffset;
DWORD ByteLength;
DWORD PlexNumber;
}
alias _PLEX_READ_DATA_REQUEST PLEX_READ_DATA_REQUEST;
alias _PLEX_READ_DATA_REQUEST *PPLEX_READ_DATA_REQUEST;
//C typedef struct _SI_COPYFILE {
//C DWORD SourceFileNameLength;
//C DWORD DestinationFileNameLength;
//C DWORD Flags;
//C WCHAR FileNameBuffer[1];
//C } SI_COPYFILE,*PSI_COPYFILE;
struct _SI_COPYFILE
{
DWORD SourceFileNameLength;
DWORD DestinationFileNameLength;
DWORD Flags;
WCHAR [1]FileNameBuffer;
}
alias _SI_COPYFILE SI_COPYFILE;
alias _SI_COPYFILE *PSI_COPYFILE;
//C typedef struct _STORAGE_DESCRIPTOR_HEADER {
//C DWORD Version;
//C DWORD Size;
//C } STORAGE_DESCRIPTOR_HEADER,*PSTORAGE_DESCRIPTOR_HEADER;
struct _STORAGE_DESCRIPTOR_HEADER
{
DWORD Version;
DWORD Size;
}
alias _STORAGE_DESCRIPTOR_HEADER STORAGE_DESCRIPTOR_HEADER;
alias _STORAGE_DESCRIPTOR_HEADER *PSTORAGE_DESCRIPTOR_HEADER;
//C typedef enum _STORAGE_PROPERTY_ID {
//C StorageDeviceProperty = 0,
//C StorageAdapterProperty = 1,
//C StorageDeviceIdProperty = 2,
//C StorageDeviceUniqueIdProperty = 3,
//C StorageDeviceWriteCacheProperty = 4,
//C StorageMiniportProperty = 5,
//C StorageAccessAlignmentProperty = 6,
//C StorageDeviceSeekPenaltyProperty = 7,
//C StorageDeviceTrimProperty = 8
//C } STORAGE_PROPERTY_ID,*PSTORAGE_PROPERTY_ID;
enum _STORAGE_PROPERTY_ID
{
StorageDeviceProperty,
StorageAdapterProperty,
StorageDeviceIdProperty,
StorageDeviceUniqueIdProperty,
StorageDeviceWriteCacheProperty,
StorageMiniportProperty,
StorageAccessAlignmentProperty,
StorageDeviceSeekPenaltyProperty,
StorageDeviceTrimProperty,
}
alias _STORAGE_PROPERTY_ID STORAGE_PROPERTY_ID;
alias _STORAGE_PROPERTY_ID *PSTORAGE_PROPERTY_ID;
//C typedef enum _STORAGE_QUERY_TYPE {
//C PropertyStandardQuery = 0,
//C PropertyExistsQuery = 1,
//C PropertyMaskQuery = 2,
//C PropertyQueryMaxDefined = 3
//C } STORAGE_QUERY_TYPE,*PSTORAGE_QUERY_TYPE;
enum _STORAGE_QUERY_TYPE
{
PropertyStandardQuery,
PropertyExistsQuery,
PropertyMaskQuery,
PropertyQueryMaxDefined,
}
alias _STORAGE_QUERY_TYPE STORAGE_QUERY_TYPE;
alias _STORAGE_QUERY_TYPE *PSTORAGE_QUERY_TYPE;
//C typedef struct _STORAGE_PROPERTY_QUERY {
//C STORAGE_PROPERTY_ID PropertyId;
//C STORAGE_QUERY_TYPE QueryType;
//C BYTE AdditionalParameters[1];
//C } STORAGE_PROPERTY_QUERY,*PSTORAGE_PROPERTY_QUERY;
struct _STORAGE_PROPERTY_QUERY
{
STORAGE_PROPERTY_ID PropertyId;
STORAGE_QUERY_TYPE QueryType;
BYTE [1]AdditionalParameters;
}
alias _STORAGE_PROPERTY_QUERY STORAGE_PROPERTY_QUERY;
alias _STORAGE_PROPERTY_QUERY *PSTORAGE_PROPERTY_QUERY;
//C typedef struct _STORAGE_DEVICE_DESCRIPTOR {
//C DWORD Version;
//C DWORD Size;
//C BYTE DeviceType;
//C BYTE DeviceTypeModifier;
//C BOOLEAN RemovableMedia;
//C BOOLEAN CommandQueueing;
//C DWORD VendorIdOffset;
//C DWORD ProductIdOffset;
//C DWORD ProductRevisionOffset;
//C DWORD SerialNumberOffset;
//C STORAGE_BUS_TYPE BusType;
//C DWORD RawPropertiesLength;
//C BYTE RawDeviceProperties[1];
//C } STORAGE_DEVICE_DESCRIPTOR,*PSTORAGE_DEVICE_DESCRIPTOR;
struct _STORAGE_DEVICE_DESCRIPTOR
{
DWORD Version;
DWORD Size;
BYTE DeviceType;
BYTE DeviceTypeModifier;
BOOLEAN RemovableMedia;
BOOLEAN CommandQueueing;
DWORD VendorIdOffset;
DWORD ProductIdOffset;
DWORD ProductRevisionOffset;
DWORD SerialNumberOffset;
STORAGE_BUS_TYPE BusType;
DWORD RawPropertiesLength;
BYTE [1]RawDeviceProperties;
}
alias _STORAGE_DEVICE_DESCRIPTOR STORAGE_DEVICE_DESCRIPTOR;
alias _STORAGE_DEVICE_DESCRIPTOR *PSTORAGE_DEVICE_DESCRIPTOR;
//C typedef struct _STORAGE_ADAPTER_DESCRIPTOR {
//C DWORD Version;
//C DWORD Size;
//C DWORD MaximumTransferLength;
//C DWORD MaximumPhysicalPages;
//C DWORD AlignmentMask;
//C BOOLEAN AdapterUsesPio;
//C BOOLEAN AdapterScansDown;
//C BOOLEAN CommandQueueing;
//C BOOLEAN AcceleratedTransfer;
//C BYTE BusType;
//C WORD BusMajorVersion;
//C WORD BusMinorVersion;
//C } STORAGE_ADAPTER_DESCRIPTOR,*PSTORAGE_ADAPTER_DESCRIPTOR;
struct _STORAGE_ADAPTER_DESCRIPTOR
{
DWORD Version;
DWORD Size;
DWORD MaximumTransferLength;
DWORD MaximumPhysicalPages;
DWORD AlignmentMask;
BOOLEAN AdapterUsesPio;
BOOLEAN AdapterScansDown;
BOOLEAN CommandQueueing;
BOOLEAN AcceleratedTransfer;
BYTE BusType;
WORD BusMajorVersion;
WORD BusMinorVersion;
}
alias _STORAGE_ADAPTER_DESCRIPTOR STORAGE_ADAPTER_DESCRIPTOR;
alias _STORAGE_ADAPTER_DESCRIPTOR *PSTORAGE_ADAPTER_DESCRIPTOR;
//C typedef struct _STORAGE_DEVICE_ID_DESCRIPTOR {
//C DWORD Version;
//C DWORD Size;
//C DWORD NumberOfIdentifiers;
//C BYTE Identifiers[1];
//C } STORAGE_DEVICE_ID_DESCRIPTOR,*PSTORAGE_DEVICE_ID_DESCRIPTOR;
struct _STORAGE_DEVICE_ID_DESCRIPTOR
{
DWORD Version;
DWORD Size;
DWORD NumberOfIdentifiers;
BYTE [1]Identifiers;
}
alias _STORAGE_DEVICE_ID_DESCRIPTOR STORAGE_DEVICE_ID_DESCRIPTOR;
alias _STORAGE_DEVICE_ID_DESCRIPTOR *PSTORAGE_DEVICE_ID_DESCRIPTOR;
//C typedef struct _VOLUME_GET_GPT_ATTRIBUTES_INFORMATION {
//C ULONGLONG GptAttributes;
//C } VOLUME_GET_GPT_ATTRIBUTES_INFORMATION,*PVOLUME_GET_GPT_ATTRIBUTES_INFORMATION;
struct _VOLUME_GET_GPT_ATTRIBUTES_INFORMATION
{
ULONGLONG GptAttributes;
}
alias _VOLUME_GET_GPT_ATTRIBUTES_INFORMATION VOLUME_GET_GPT_ATTRIBUTES_INFORMATION;
alias _VOLUME_GET_GPT_ATTRIBUTES_INFORMATION *PVOLUME_GET_GPT_ATTRIBUTES_INFORMATION;
//C typedef struct _DISK_EXTENT {
//C DWORD DiskNumber;
//C LARGE_INTEGER StartingOffset;
//C LARGE_INTEGER ExtentLength;
//C } DISK_EXTENT,*PDISK_EXTENT;
struct _DISK_EXTENT
{
DWORD DiskNumber;
LARGE_INTEGER StartingOffset;
LARGE_INTEGER ExtentLength;
}
alias _DISK_EXTENT DISK_EXTENT;
alias _DISK_EXTENT *PDISK_EXTENT;
//C typedef struct _VOLUME_DISK_EXTENTS {
//C DWORD NumberOfDiskExtents;
//C DISK_EXTENT Extents[1];
//C } VOLUME_DISK_EXTENTS,*PVOLUME_DISK_EXTENTS;
struct _VOLUME_DISK_EXTENTS
{
DWORD NumberOfDiskExtents;
DISK_EXTENT [1]Extents;
}
alias _VOLUME_DISK_EXTENTS VOLUME_DISK_EXTENTS;
alias _VOLUME_DISK_EXTENTS *PVOLUME_DISK_EXTENTS;
//C typedef WORD UWORD;
alias WORD UWORD;
//C typedef struct _SCARD_IO_REQUEST {
//C DWORD dwProtocol;
//C DWORD cbPciLength;
//C } SCARD_IO_REQUEST,*PSCARD_IO_REQUEST,*LPSCARD_IO_REQUEST;
struct _SCARD_IO_REQUEST
{
DWORD dwProtocol;
DWORD cbPciLength;
}
alias _SCARD_IO_REQUEST SCARD_IO_REQUEST;
alias _SCARD_IO_REQUEST *PSCARD_IO_REQUEST;
alias _SCARD_IO_REQUEST *LPSCARD_IO_REQUEST;
//C typedef const SCARD_IO_REQUEST *LPCSCARD_IO_REQUEST;
alias SCARD_IO_REQUEST *LPCSCARD_IO_REQUEST;
//C typedef struct {
//C BYTE
//C bCla,bIns,bP1,bP2,bP3;
//C } SCARD_T0_COMMAND,*LPSCARD_T0_COMMAND;
struct _N247
{
BYTE bCla;
BYTE bIns;
BYTE bP1;
BYTE bP2;
BYTE bP3;
}
alias _N247 SCARD_T0_COMMAND;
alias _N247 *LPSCARD_T0_COMMAND;
//C typedef struct {
//C SCARD_IO_REQUEST ioRequest;
//C BYTE bSw1,bSw2;
//C union {
//C SCARD_T0_COMMAND CmdBytes;
//C BYTE rgbHeader[5];
//C };
union _N249
{
SCARD_T0_COMMAND CmdBytes;
BYTE [5]rgbHeader;
}
//C } SCARD_T0_REQUEST;
struct _N248
{
SCARD_IO_REQUEST ioRequest;
BYTE bSw1;
BYTE bSw2;
SCARD_T0_COMMAND CmdBytes;
BYTE [5]rgbHeader;
}
alias _N248 SCARD_T0_REQUEST;
//C typedef SCARD_T0_REQUEST *PSCARD_T0_REQUEST,*LPSCARD_T0_REQUEST;
alias SCARD_T0_REQUEST *PSCARD_T0_REQUEST;
alias SCARD_T0_REQUEST *LPSCARD_T0_REQUEST;
//C typedef struct {
//C SCARD_IO_REQUEST ioRequest;
//C } SCARD_T1_REQUEST;
struct _N250
{
SCARD_IO_REQUEST ioRequest;
}
alias _N250 SCARD_T1_REQUEST;
//C typedef SCARD_T1_REQUEST *PSCARD_T1_REQUEST,*LPSCARD_T1_REQUEST;
alias SCARD_T1_REQUEST *PSCARD_T1_REQUEST;
alias SCARD_T1_REQUEST *LPSCARD_T1_REQUEST;
//C typedef const BYTE *LPCBYTE;
alias BYTE *LPCBYTE;
//C extern const SCARD_IO_REQUEST g_rgSCardT0Pci,g_rgSCardT1Pci,g_rgSCardRawPci;
extern const SCARD_IO_REQUEST g_rgSCardT0Pci;
extern const SCARD_IO_REQUEST g_rgSCardT1Pci;
extern const SCARD_IO_REQUEST g_rgSCardRawPci;
//C typedef ULONG_PTR SCARDCONTEXT;
alias ULONG_PTR SCARDCONTEXT;
//C typedef SCARDCONTEXT *PSCARDCONTEXT,*LPSCARDCONTEXT;
alias SCARDCONTEXT *PSCARDCONTEXT;
alias SCARDCONTEXT *LPSCARDCONTEXT;
//C typedef ULONG_PTR SCARDHANDLE;
alias ULONG_PTR SCARDHANDLE;
//C typedef SCARDHANDLE *PSCARDHANDLE,*LPSCARDHANDLE;
alias SCARDHANDLE *PSCARDHANDLE;
alias SCARDHANDLE *LPSCARDHANDLE;
//C extern LONG SCardEstablishContext(DWORD dwScope,LPCVOID pvReserved1,LPCVOID pvReserved2,LPSCARDCONTEXT phContext);
LONG SCardEstablishContext(DWORD dwScope, LPCVOID pvReserved1, LPCVOID pvReserved2, LPSCARDCONTEXT phContext);
//C extern LONG SCardReleaseContext(SCARDCONTEXT hContext);
LONG SCardReleaseContext(SCARDCONTEXT hContext);
//C extern LONG SCardIsValidContext(SCARDCONTEXT hContext);
LONG SCardIsValidContext(SCARDCONTEXT hContext);
//C extern LONG SCardListReaderGroupsA(SCARDCONTEXT hContext,LPSTR mszGroups,LPDWORD pcchGroups);
LONG SCardListReaderGroupsA(SCARDCONTEXT hContext, LPSTR mszGroups, LPDWORD pcchGroups);
//C extern LONG SCardListReaderGroupsW(SCARDCONTEXT hContext,LPWSTR mszGroups,LPDWORD pcchGroups);
LONG SCardListReaderGroupsW(SCARDCONTEXT hContext, LPWSTR mszGroups, LPDWORD pcchGroups);
//C extern LONG SCardListReadersA(SCARDCONTEXT hContext,LPCSTR mszGroups,LPSTR mszReaders,LPDWORD pcchReaders);
LONG SCardListReadersA(SCARDCONTEXT hContext, LPCSTR mszGroups, LPSTR mszReaders, LPDWORD pcchReaders);
//C extern LONG SCardListReadersW(SCARDCONTEXT hContext,LPCWSTR mszGroups,LPWSTR mszReaders,LPDWORD pcchReaders);
LONG SCardListReadersW(SCARDCONTEXT hContext, LPCWSTR mszGroups, LPWSTR mszReaders, LPDWORD pcchReaders);
//C extern LONG SCardListCardsA(SCARDCONTEXT hContext,LPCBYTE pbAtr,LPCGUID rgquidInterfaces,DWORD cguidInterfaceCount,LPSTR mszCards,LPDWORD pcchCards);
LONG SCardListCardsA(SCARDCONTEXT hContext, LPCBYTE pbAtr, LPCGUID rgquidInterfaces, DWORD cguidInterfaceCount, LPSTR mszCards, LPDWORD pcchCards);
//C extern LONG SCardListCardsW(SCARDCONTEXT hContext,LPCBYTE pbAtr,LPCGUID rgquidInterfaces,DWORD cguidInterfaceCount,LPWSTR mszCards,LPDWORD pcchCards);
LONG SCardListCardsW(SCARDCONTEXT hContext, LPCBYTE pbAtr, LPCGUID rgquidInterfaces, DWORD cguidInterfaceCount, LPWSTR mszCards, LPDWORD pcchCards);
//C extern LONG SCardListInterfacesA(SCARDCONTEXT hContext,LPCSTR szCard,LPGUID pguidInterfaces,LPDWORD pcguidInterfaces);
LONG SCardListInterfacesA(SCARDCONTEXT hContext, LPCSTR szCard, LPGUID pguidInterfaces, LPDWORD pcguidInterfaces);
//C extern LONG SCardListInterfacesW(SCARDCONTEXT hContext,LPCWSTR szCard,LPGUID pguidInterfaces,LPDWORD pcguidInterfaces);
LONG SCardListInterfacesW(SCARDCONTEXT hContext, LPCWSTR szCard, LPGUID pguidInterfaces, LPDWORD pcguidInterfaces);
//C extern LONG SCardGetProviderIdA(SCARDCONTEXT hContext,LPCSTR szCard,LPGUID pguidProviderId);
LONG SCardGetProviderIdA(SCARDCONTEXT hContext, LPCSTR szCard, LPGUID pguidProviderId);
//C extern LONG SCardGetProviderIdW(SCARDCONTEXT hContext,LPCWSTR szCard,LPGUID pguidProviderId);
LONG SCardGetProviderIdW(SCARDCONTEXT hContext, LPCWSTR szCard, LPGUID pguidProviderId);
//C extern LONG SCardGetCardTypeProviderNameA(SCARDCONTEXT hContext,LPCSTR szCardName,DWORD dwProviderId,LPSTR szProvider,LPDWORD pcchProvider);
LONG SCardGetCardTypeProviderNameA(SCARDCONTEXT hContext, LPCSTR szCardName, DWORD dwProviderId, LPSTR szProvider, LPDWORD pcchProvider);
//C extern LONG SCardGetCardTypeProviderNameW(SCARDCONTEXT hContext,LPCWSTR szCardName,DWORD dwProviderId,LPWSTR szProvider,LPDWORD pcchProvider);
LONG SCardGetCardTypeProviderNameW(SCARDCONTEXT hContext, LPCWSTR szCardName, DWORD dwProviderId, LPWSTR szProvider, LPDWORD pcchProvider);
//C extern LONG SCardIntroduceReaderGroupA(SCARDCONTEXT hContext,LPCSTR szGroupName);
LONG SCardIntroduceReaderGroupA(SCARDCONTEXT hContext, LPCSTR szGroupName);
//C extern LONG SCardIntroduceReaderGroupW(SCARDCONTEXT hContext,LPCWSTR szGroupName);
LONG SCardIntroduceReaderGroupW(SCARDCONTEXT hContext, LPCWSTR szGroupName);
//C extern LONG SCardForgetReaderGroupA(SCARDCONTEXT hContext,LPCSTR szGroupName);
LONG SCardForgetReaderGroupA(SCARDCONTEXT hContext, LPCSTR szGroupName);
//C extern LONG SCardForgetReaderGroupW(SCARDCONTEXT hContext,LPCWSTR szGroupName);
LONG SCardForgetReaderGroupW(SCARDCONTEXT hContext, LPCWSTR szGroupName);
//C extern LONG SCardIntroduceReaderA(SCARDCONTEXT hContext,LPCSTR szReaderName,LPCSTR szDeviceName);
LONG SCardIntroduceReaderA(SCARDCONTEXT hContext, LPCSTR szReaderName, LPCSTR szDeviceName);
//C extern LONG SCardIntroduceReaderW(SCARDCONTEXT hContext,LPCWSTR szReaderName,LPCWSTR szDeviceName);
LONG SCardIntroduceReaderW(SCARDCONTEXT hContext, LPCWSTR szReaderName, LPCWSTR szDeviceName);
//C extern LONG SCardForgetReaderA(SCARDCONTEXT hContext,LPCSTR szReaderName);
LONG SCardForgetReaderA(SCARDCONTEXT hContext, LPCSTR szReaderName);
//C extern LONG SCardForgetReaderW(SCARDCONTEXT hContext,LPCWSTR szReaderName);
LONG SCardForgetReaderW(SCARDCONTEXT hContext, LPCWSTR szReaderName);
//C extern LONG SCardAddReaderToGroupA(SCARDCONTEXT hContext,LPCSTR szReaderName,LPCSTR szGroupName);
LONG SCardAddReaderToGroupA(SCARDCONTEXT hContext, LPCSTR szReaderName, LPCSTR szGroupName);
//C extern LONG SCardAddReaderToGroupW(SCARDCONTEXT hContext,LPCWSTR szReaderName,LPCWSTR szGroupName);
LONG SCardAddReaderToGroupW(SCARDCONTEXT hContext, LPCWSTR szReaderName, LPCWSTR szGroupName);
//C extern LONG SCardRemoveReaderFromGroupA(SCARDCONTEXT hContext,LPCSTR szReaderName,LPCSTR szGroupName);
LONG SCardRemoveReaderFromGroupA(SCARDCONTEXT hContext, LPCSTR szReaderName, LPCSTR szGroupName);
//C extern LONG SCardRemoveReaderFromGroupW(SCARDCONTEXT hContext,LPCWSTR szReaderName,LPCWSTR szGroupName);
LONG SCardRemoveReaderFromGroupW(SCARDCONTEXT hContext, LPCWSTR szReaderName, LPCWSTR szGroupName);
//C extern LONG SCardIntroduceCardTypeA(SCARDCONTEXT hContext,LPCSTR szCardName,LPCGUID pguidPrimaryProvider,LPCGUID rgguidInterfaces,DWORD dwInterfaceCount,LPCBYTE pbAtr,LPCBYTE pbAtrMask,DWORD cbAtrLen);
LONG SCardIntroduceCardTypeA(SCARDCONTEXT hContext, LPCSTR szCardName, LPCGUID pguidPrimaryProvider, LPCGUID rgguidInterfaces, DWORD dwInterfaceCount, LPCBYTE pbAtr, LPCBYTE pbAtrMask, DWORD cbAtrLen);
//C extern LONG SCardIntroduceCardTypeW(SCARDCONTEXT hContext,LPCWSTR szCardName,LPCGUID pguidPrimaryProvider,LPCGUID rgguidInterfaces,DWORD dwInterfaceCount,LPCBYTE pbAtr,LPCBYTE pbAtrMask,DWORD cbAtrLen);
LONG SCardIntroduceCardTypeW(SCARDCONTEXT hContext, LPCWSTR szCardName, LPCGUID pguidPrimaryProvider, LPCGUID rgguidInterfaces, DWORD dwInterfaceCount, LPCBYTE pbAtr, LPCBYTE pbAtrMask, DWORD cbAtrLen);
//C extern LONG SCardSetCardTypeProviderNameA(SCARDCONTEXT hContext,LPCSTR szCardName,DWORD dwProviderId,LPCSTR szProvider);
LONG SCardSetCardTypeProviderNameA(SCARDCONTEXT hContext, LPCSTR szCardName, DWORD dwProviderId, LPCSTR szProvider);
//C extern LONG SCardSetCardTypeProviderNameW(SCARDCONTEXT hContext,LPCWSTR szCardName,DWORD dwProviderId,LPCWSTR szProvider);
LONG SCardSetCardTypeProviderNameW(SCARDCONTEXT hContext, LPCWSTR szCardName, DWORD dwProviderId, LPCWSTR szProvider);
//C extern LONG SCardForgetCardTypeA(SCARDCONTEXT hContext,LPCSTR szCardName);
LONG SCardForgetCardTypeA(SCARDCONTEXT hContext, LPCSTR szCardName);
//C extern LONG SCardForgetCardTypeW(SCARDCONTEXT hContext,LPCWSTR szCardName);
LONG SCardForgetCardTypeW(SCARDCONTEXT hContext, LPCWSTR szCardName);
//C extern LONG SCardFreeMemory(SCARDCONTEXT hContext,LPCVOID pvMem);
LONG SCardFreeMemory(SCARDCONTEXT hContext, LPCVOID pvMem);
//C extern HANDLE SCardAccessStartedEvent(void);
HANDLE SCardAccessStartedEvent();
//C extern void SCardReleaseStartedEvent(void);
void SCardReleaseStartedEvent();
//C typedef struct {
//C LPCSTR szReader;
//C LPVOID pvUserData;
//C DWORD dwCurrentState;
//C DWORD dwEventState;
//C DWORD cbAtr;
//C BYTE rgbAtr[36];
//C } SCARD_READERSTATEA,*PSCARD_READERSTATEA,*LPSCARD_READERSTATEA;
struct _N251
{
LPCSTR szReader;
LPVOID pvUserData;
DWORD dwCurrentState;
DWORD dwEventState;
DWORD cbAtr;
BYTE [36]rgbAtr;
}
alias _N251 SCARD_READERSTATEA;
alias _N251 *PSCARD_READERSTATEA;
alias _N251 *LPSCARD_READERSTATEA;
//C typedef struct {
//C LPCWSTR szReader;
//C LPVOID pvUserData;
//C DWORD dwCurrentState;
//C DWORD dwEventState;
//C DWORD cbAtr;
//C BYTE rgbAtr[36];
//C } SCARD_READERSTATEW,*PSCARD_READERSTATEW,*LPSCARD_READERSTATEW;
struct _N252
{
LPCWSTR szReader;
LPVOID pvUserData;
DWORD dwCurrentState;
DWORD dwEventState;
DWORD cbAtr;
BYTE [36]rgbAtr;
}
alias _N252 SCARD_READERSTATEW;
alias _N252 *PSCARD_READERSTATEW;
alias _N252 *LPSCARD_READERSTATEW;
//C typedef SCARD_READERSTATEA SCARD_READERSTATE;
alias SCARD_READERSTATEA SCARD_READERSTATE;
//C typedef PSCARD_READERSTATEA PSCARD_READERSTATE;
alias PSCARD_READERSTATEA PSCARD_READERSTATE;
//C typedef LPSCARD_READERSTATEA LPSCARD_READERSTATE;
alias LPSCARD_READERSTATEA LPSCARD_READERSTATE;
//C extern LONG SCardLocateCardsA(SCARDCONTEXT hContext,LPCSTR mszCards,LPSCARD_READERSTATEA rgReaderStates,DWORD cReaders);
LONG SCardLocateCardsA(SCARDCONTEXT hContext, LPCSTR mszCards, LPSCARD_READERSTATEA rgReaderStates, DWORD cReaders);
//C extern LONG SCardLocateCardsW(SCARDCONTEXT hContext,LPCWSTR mszCards,LPSCARD_READERSTATEW rgReaderStates,DWORD cReaders);
LONG SCardLocateCardsW(SCARDCONTEXT hContext, LPCWSTR mszCards, LPSCARD_READERSTATEW rgReaderStates, DWORD cReaders);
//C typedef struct _SCARD_ATRMASK {
//C DWORD cbAtr;
//C BYTE rgbAtr[36];
//C BYTE rgbMask[36];
//C } SCARD_ATRMASK,*PSCARD_ATRMASK,*LPSCARD_ATRMASK;
struct _SCARD_ATRMASK
{
DWORD cbAtr;
BYTE [36]rgbAtr;
BYTE [36]rgbMask;
}
alias _SCARD_ATRMASK SCARD_ATRMASK;
alias _SCARD_ATRMASK *PSCARD_ATRMASK;
alias _SCARD_ATRMASK *LPSCARD_ATRMASK;
//C extern LONG SCardLocateCardsByATRA(SCARDCONTEXT hContext,LPSCARD_ATRMASK rgAtrMasks,DWORD cAtrs,LPSCARD_READERSTATEA rgReaderStates,DWORD cReaders);
LONG SCardLocateCardsByATRA(SCARDCONTEXT hContext, LPSCARD_ATRMASK rgAtrMasks, DWORD cAtrs, LPSCARD_READERSTATEA rgReaderStates, DWORD cReaders);
//C extern LONG SCardLocateCardsByATRW(SCARDCONTEXT hContext,LPSCARD_ATRMASK rgAtrMasks,DWORD cAtrs,LPSCARD_READERSTATEW rgReaderStates,DWORD cReaders);
LONG SCardLocateCardsByATRW(SCARDCONTEXT hContext, LPSCARD_ATRMASK rgAtrMasks, DWORD cAtrs, LPSCARD_READERSTATEW rgReaderStates, DWORD cReaders);
//C extern LONG SCardGetStatusChangeA(SCARDCONTEXT hContext,DWORD dwTimeout,LPSCARD_READERSTATEA rgReaderStates,DWORD cReaders);
LONG SCardGetStatusChangeA(SCARDCONTEXT hContext, DWORD dwTimeout, LPSCARD_READERSTATEA rgReaderStates, DWORD cReaders);
//C extern LONG SCardGetStatusChangeW(SCARDCONTEXT hContext,DWORD dwTimeout,LPSCARD_READERSTATEW rgReaderStates,DWORD cReaders);
LONG SCardGetStatusChangeW(SCARDCONTEXT hContext, DWORD dwTimeout, LPSCARD_READERSTATEW rgReaderStates, DWORD cReaders);
//C extern LONG SCardCancel(SCARDCONTEXT hContext);
LONG SCardCancel(SCARDCONTEXT hContext);
//C extern LONG SCardConnectA(SCARDCONTEXT hContext,LPCSTR szReader,DWORD dwShareMode,DWORD dwPreferredProtocols,LPSCARDHANDLE phCard,LPDWORD pdwActiveProtocol);
LONG SCardConnectA(SCARDCONTEXT hContext, LPCSTR szReader, DWORD dwShareMode, DWORD dwPreferredProtocols, LPSCARDHANDLE phCard, LPDWORD pdwActiveProtocol);
//C extern LONG SCardConnectW(SCARDCONTEXT hContext,LPCWSTR szReader,DWORD dwShareMode,DWORD dwPreferredProtocols,LPSCARDHANDLE phCard,LPDWORD pdwActiveProtocol);
LONG SCardConnectW(SCARDCONTEXT hContext, LPCWSTR szReader, DWORD dwShareMode, DWORD dwPreferredProtocols, LPSCARDHANDLE phCard, LPDWORD pdwActiveProtocol);
//C extern LONG SCardReconnect(SCARDHANDLE hCard,DWORD dwShareMode,DWORD dwPreferredProtocols,DWORD dwInitialization,LPDWORD pdwActiveProtocol);
LONG SCardReconnect(SCARDHANDLE hCard, DWORD dwShareMode, DWORD dwPreferredProtocols, DWORD dwInitialization, LPDWORD pdwActiveProtocol);
//C extern LONG SCardDisconnect(SCARDHANDLE hCard,DWORD dwDisposition);
LONG SCardDisconnect(SCARDHANDLE hCard, DWORD dwDisposition);
//C extern LONG SCardBeginTransaction(SCARDHANDLE hCard);
LONG SCardBeginTransaction(SCARDHANDLE hCard);
//C extern LONG SCardEndTransaction(SCARDHANDLE hCard,DWORD dwDisposition);
LONG SCardEndTransaction(SCARDHANDLE hCard, DWORD dwDisposition);
//C extern LONG SCardCancelTransaction(SCARDHANDLE hCard);
LONG SCardCancelTransaction(SCARDHANDLE hCard);
//C extern LONG SCardState(SCARDHANDLE hCard,LPDWORD pdwState,LPDWORD pdwProtocol,LPBYTE pbAtr,LPDWORD pcbAtrLen);
LONG SCardState(SCARDHANDLE hCard, LPDWORD pdwState, LPDWORD pdwProtocol, LPBYTE pbAtr, LPDWORD pcbAtrLen);
//C extern LONG SCardStatusA(SCARDHANDLE hCard,LPSTR szReaderName,LPDWORD pcchReaderLen,LPDWORD pdwState,LPDWORD pdwProtocol,LPBYTE pbAtr,LPDWORD pcbAtrLen);
LONG SCardStatusA(SCARDHANDLE hCard, LPSTR szReaderName, LPDWORD pcchReaderLen, LPDWORD pdwState, LPDWORD pdwProtocol, LPBYTE pbAtr, LPDWORD pcbAtrLen);
//C extern LONG SCardStatusW(SCARDHANDLE hCard,LPWSTR szReaderName,LPDWORD pcchReaderLen,LPDWORD pdwState,LPDWORD pdwProtocol,LPBYTE pbAtr,LPDWORD pcbAtrLen);
LONG SCardStatusW(SCARDHANDLE hCard, LPWSTR szReaderName, LPDWORD pcchReaderLen, LPDWORD pdwState, LPDWORD pdwProtocol, LPBYTE pbAtr, LPDWORD pcbAtrLen);
//C extern LONG SCardTransmit(SCARDHANDLE hCard,LPCSCARD_IO_REQUEST pioSendPci,LPCBYTE pbSendBuffer,DWORD cbSendLength,LPSCARD_IO_REQUEST pioRecvPci,LPBYTE pbRecvBuffer,LPDWORD pcbRecvLength);
LONG SCardTransmit(SCARDHANDLE hCard, LPCSCARD_IO_REQUEST pioSendPci, LPCBYTE pbSendBuffer, DWORD cbSendLength, LPSCARD_IO_REQUEST pioRecvPci, LPBYTE pbRecvBuffer, LPDWORD pcbRecvLength);
//C extern LONG SCardControl(SCARDHANDLE hCard,DWORD dwControlCode,LPCVOID lpInBuffer,DWORD nInBufferSize,LPVOID lpOutBuffer,DWORD nOutBufferSize,LPDWORD lpBytesReturned);
LONG SCardControl(SCARDHANDLE hCard, DWORD dwControlCode, LPCVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesReturned);
//C extern LONG SCardGetAttrib(SCARDHANDLE hCard,DWORD dwAttrId,LPBYTE pbAttr,LPDWORD pcbAttrLen);
LONG SCardGetAttrib(SCARDHANDLE hCard, DWORD dwAttrId, LPBYTE pbAttr, LPDWORD pcbAttrLen);
//C extern LONG SCardSetAttrib(SCARDHANDLE hCard,DWORD dwAttrId,LPCBYTE pbAttr,DWORD cbAttrLen);
LONG SCardSetAttrib(SCARDHANDLE hCard, DWORD dwAttrId, LPCBYTE pbAttr, DWORD cbAttrLen);
//C typedef SCARDHANDLE ( *LPOCNCONNPROCA) (SCARDCONTEXT,LPSTR,LPSTR,PVOID);
alias SCARDHANDLE function(SCARDCONTEXT , LPSTR , LPSTR , PVOID )LPOCNCONNPROCA;
//C typedef SCARDHANDLE ( *LPOCNCONNPROCW) (SCARDCONTEXT,LPWSTR,LPWSTR,PVOID);
alias SCARDHANDLE function(SCARDCONTEXT , LPWSTR , LPWSTR , PVOID )LPOCNCONNPROCW;
//C typedef WINBOOL ( *LPOCNCHKPROC) (SCARDCONTEXT,SCARDHANDLE,PVOID);
alias WINBOOL function(SCARDCONTEXT , SCARDHANDLE , PVOID )LPOCNCHKPROC;
//C typedef void ( *LPOCNDSCPROC) (SCARDCONTEXT,SCARDHANDLE,PVOID);
alias void function(SCARDCONTEXT , SCARDHANDLE , PVOID )LPOCNDSCPROC;
//C typedef struct {
//C DWORD dwStructSize;
//C LPSTR lpstrGroupNames;
//C DWORD nMaxGroupNames;
//C LPCGUID rgguidInterfaces;
//C DWORD cguidInterfaces;
//C LPSTR lpstrCardNames;
//C DWORD nMaxCardNames;
//C LPOCNCHKPROC lpfnCheck;
//C LPOCNCONNPROCA lpfnConnect;
//C LPOCNDSCPROC lpfnDisconnect;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C } OPENCARD_SEARCH_CRITERIAA,*POPENCARD_SEARCH_CRITERIAA,*LPOPENCARD_SEARCH_CRITERIAA;
struct _N253
{
DWORD dwStructSize;
LPSTR lpstrGroupNames;
DWORD nMaxGroupNames;
LPCGUID rgguidInterfaces;
DWORD cguidInterfaces;
LPSTR lpstrCardNames;
DWORD nMaxCardNames;
LPOCNCHKPROC lpfnCheck;
LPOCNCONNPROCA lpfnConnect;
LPOCNDSCPROC lpfnDisconnect;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
}
alias _N253 OPENCARD_SEARCH_CRITERIAA;
alias _N253 *POPENCARD_SEARCH_CRITERIAA;
alias _N253 *LPOPENCARD_SEARCH_CRITERIAA;
//C typedef struct {
//C DWORD dwStructSize;
//C LPWSTR lpstrGroupNames;
//C DWORD nMaxGroupNames;
//C LPCGUID rgguidInterfaces;
//C DWORD cguidInterfaces;
//C LPWSTR lpstrCardNames;
//C DWORD nMaxCardNames;
//C LPOCNCHKPROC lpfnCheck;
//C LPOCNCONNPROCW lpfnConnect;
//C LPOCNDSCPROC lpfnDisconnect;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C } OPENCARD_SEARCH_CRITERIAW,*POPENCARD_SEARCH_CRITERIAW,*LPOPENCARD_SEARCH_CRITERIAW;
struct _N254
{
DWORD dwStructSize;
LPWSTR lpstrGroupNames;
DWORD nMaxGroupNames;
LPCGUID rgguidInterfaces;
DWORD cguidInterfaces;
LPWSTR lpstrCardNames;
DWORD nMaxCardNames;
LPOCNCHKPROC lpfnCheck;
LPOCNCONNPROCW lpfnConnect;
LPOCNDSCPROC lpfnDisconnect;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
}
alias _N254 OPENCARD_SEARCH_CRITERIAW;
alias _N254 *POPENCARD_SEARCH_CRITERIAW;
alias _N254 *LPOPENCARD_SEARCH_CRITERIAW;
//C typedef OPENCARD_SEARCH_CRITERIAA OPENCARD_SEARCH_CRITERIA;
alias OPENCARD_SEARCH_CRITERIAA OPENCARD_SEARCH_CRITERIA;
//C typedef POPENCARD_SEARCH_CRITERIAA POPENCARD_SEARCH_CRITERIA;
alias POPENCARD_SEARCH_CRITERIAA POPENCARD_SEARCH_CRITERIA;
//C typedef LPOPENCARD_SEARCH_CRITERIAA LPOPENCARD_SEARCH_CRITERIA;
alias LPOPENCARD_SEARCH_CRITERIAA LPOPENCARD_SEARCH_CRITERIA;
//C typedef struct {
//C DWORD dwStructSize;
//C SCARDCONTEXT hSCardContext;
//C HWND hwndOwner;
//C DWORD dwFlags;
//C LPCSTR lpstrTitle;
//C LPCSTR lpstrSearchDesc;
//C HICON hIcon;
//C POPENCARD_SEARCH_CRITERIAA pOpenCardSearchCriteria;
//C LPOCNCONNPROCA lpfnConnect;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C LPSTR lpstrRdr;
//C DWORD nMaxRdr;
//C LPSTR lpstrCard;
//C DWORD nMaxCard;
//C DWORD dwActiveProtocol;
//C SCARDHANDLE hCardHandle;
//C } OPENCARDNAME_EXA,*POPENCARDNAME_EXA,*LPOPENCARDNAME_EXA;
struct _N255
{
DWORD dwStructSize;
SCARDCONTEXT hSCardContext;
HWND hwndOwner;
DWORD dwFlags;
LPCSTR lpstrTitle;
LPCSTR lpstrSearchDesc;
HICON hIcon;
POPENCARD_SEARCH_CRITERIAA pOpenCardSearchCriteria;
LPOCNCONNPROCA lpfnConnect;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
LPSTR lpstrRdr;
DWORD nMaxRdr;
LPSTR lpstrCard;
DWORD nMaxCard;
DWORD dwActiveProtocol;
SCARDHANDLE hCardHandle;
}
alias _N255 OPENCARDNAME_EXA;
alias _N255 *POPENCARDNAME_EXA;
alias _N255 *LPOPENCARDNAME_EXA;
//C typedef struct {
//C DWORD dwStructSize;
//C SCARDCONTEXT hSCardContext;
//C HWND hwndOwner;
//C DWORD dwFlags;
//C LPCWSTR lpstrTitle;
//C LPCWSTR lpstrSearchDesc;
//C HICON hIcon;
//C POPENCARD_SEARCH_CRITERIAW pOpenCardSearchCriteria;
//C LPOCNCONNPROCW lpfnConnect;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C LPWSTR lpstrRdr;
//C DWORD nMaxRdr;
//C LPWSTR lpstrCard;
//C DWORD nMaxCard;
//C DWORD dwActiveProtocol;
//C SCARDHANDLE hCardHandle;
//C } OPENCARDNAME_EXW,*POPENCARDNAME_EXW,*LPOPENCARDNAME_EXW;
struct _N256
{
DWORD dwStructSize;
SCARDCONTEXT hSCardContext;
HWND hwndOwner;
DWORD dwFlags;
LPCWSTR lpstrTitle;
LPCWSTR lpstrSearchDesc;
HICON hIcon;
POPENCARD_SEARCH_CRITERIAW pOpenCardSearchCriteria;
LPOCNCONNPROCW lpfnConnect;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
LPWSTR lpstrRdr;
DWORD nMaxRdr;
LPWSTR lpstrCard;
DWORD nMaxCard;
DWORD dwActiveProtocol;
SCARDHANDLE hCardHandle;
}
alias _N256 OPENCARDNAME_EXW;
alias _N256 *POPENCARDNAME_EXW;
alias _N256 *LPOPENCARDNAME_EXW;
//C typedef OPENCARDNAME_EXA OPENCARDNAME_EX;
alias OPENCARDNAME_EXA OPENCARDNAME_EX;
//C typedef POPENCARDNAME_EXA POPENCARDNAME_EX;
alias POPENCARDNAME_EXA POPENCARDNAME_EX;
//C typedef LPOPENCARDNAME_EXA LPOPENCARDNAME_EX;
alias LPOPENCARDNAME_EXA LPOPENCARDNAME_EX;
//C extern LONG SCardUIDlgSelectCardA(LPOPENCARDNAME_EXA);
LONG SCardUIDlgSelectCardA(LPOPENCARDNAME_EXA );
//C extern LONG SCardUIDlgSelectCardW(LPOPENCARDNAME_EXW);
LONG SCardUIDlgSelectCardW(LPOPENCARDNAME_EXW );
//C typedef struct {
//C DWORD dwStructSize;
//C HWND hwndOwner;
//C SCARDCONTEXT hSCardContext;
//C LPSTR lpstrGroupNames;
//C DWORD nMaxGroupNames;
//C LPSTR lpstrCardNames;
//C DWORD nMaxCardNames;
//C LPCGUID rgguidInterfaces;
//C DWORD cguidInterfaces;
//C LPSTR lpstrRdr;
//C DWORD nMaxRdr;
//C LPSTR lpstrCard;
//C DWORD nMaxCard;
//C LPCSTR lpstrTitle;
//C DWORD dwFlags;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C DWORD dwActiveProtocol;
//C LPOCNCONNPROCA lpfnConnect;
//C LPOCNCHKPROC lpfnCheck;
//C LPOCNDSCPROC lpfnDisconnect;
//C SCARDHANDLE hCardHandle;
//C } OPENCARDNAMEA,*POPENCARDNAMEA,*LPOPENCARDNAMEA;
struct _N257
{
DWORD dwStructSize;
HWND hwndOwner;
SCARDCONTEXT hSCardContext;
LPSTR lpstrGroupNames;
DWORD nMaxGroupNames;
LPSTR lpstrCardNames;
DWORD nMaxCardNames;
LPCGUID rgguidInterfaces;
DWORD cguidInterfaces;
LPSTR lpstrRdr;
DWORD nMaxRdr;
LPSTR lpstrCard;
DWORD nMaxCard;
LPCSTR lpstrTitle;
DWORD dwFlags;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
DWORD dwActiveProtocol;
LPOCNCONNPROCA lpfnConnect;
LPOCNCHKPROC lpfnCheck;
LPOCNDSCPROC lpfnDisconnect;
SCARDHANDLE hCardHandle;
}
alias _N257 OPENCARDNAMEA;
alias _N257 *POPENCARDNAMEA;
alias _N257 *LPOPENCARDNAMEA;
//C typedef struct {
//C DWORD dwStructSize;
//C HWND hwndOwner;
//C SCARDCONTEXT hSCardContext;
//C LPWSTR lpstrGroupNames;
//C DWORD nMaxGroupNames;
//C LPWSTR lpstrCardNames;
//C DWORD nMaxCardNames;
//C LPCGUID rgguidInterfaces;
//C DWORD cguidInterfaces;
//C LPWSTR lpstrRdr;
//C DWORD nMaxRdr;
//C LPWSTR lpstrCard;
//C DWORD nMaxCard;
//C LPCWSTR lpstrTitle;
//C DWORD dwFlags;
//C LPVOID pvUserData;
//C DWORD dwShareMode;
//C DWORD dwPreferredProtocols;
//C DWORD dwActiveProtocol;
//C LPOCNCONNPROCW lpfnConnect;
//C LPOCNCHKPROC lpfnCheck;
//C LPOCNDSCPROC lpfnDisconnect;
//C SCARDHANDLE hCardHandle;
//C } OPENCARDNAMEW,*POPENCARDNAMEW,*LPOPENCARDNAMEW;
struct _N258
{
DWORD dwStructSize;
HWND hwndOwner;
SCARDCONTEXT hSCardContext;
LPWSTR lpstrGroupNames;
DWORD nMaxGroupNames;
LPWSTR lpstrCardNames;
DWORD nMaxCardNames;
LPCGUID rgguidInterfaces;
DWORD cguidInterfaces;
LPWSTR lpstrRdr;
DWORD nMaxRdr;
LPWSTR lpstrCard;
DWORD nMaxCard;
LPCWSTR lpstrTitle;
DWORD dwFlags;
LPVOID pvUserData;
DWORD dwShareMode;
DWORD dwPreferredProtocols;
DWORD dwActiveProtocol;
LPOCNCONNPROCW lpfnConnect;
LPOCNCHKPROC lpfnCheck;
LPOCNDSCPROC lpfnDisconnect;
SCARDHANDLE hCardHandle;
}
alias _N258 OPENCARDNAMEW;
alias _N258 *POPENCARDNAMEW;
alias _N258 *LPOPENCARDNAMEW;
//C typedef OPENCARDNAMEA OPENCARDNAME;
alias OPENCARDNAMEA OPENCARDNAME;
//C typedef POPENCARDNAMEA POPENCARDNAME;
alias POPENCARDNAMEA POPENCARDNAME;
//C typedef LPOPENCARDNAMEA LPOPENCARDNAME;
alias LPOPENCARDNAMEA LPOPENCARDNAME;
//C extern LONG GetOpenCardNameA(LPOPENCARDNAMEA);
LONG GetOpenCardNameA(LPOPENCARDNAMEA );
//C extern LONG GetOpenCardNameW(LPOPENCARDNAMEW);
LONG GetOpenCardNameW(LPOPENCARDNAMEW );
//C extern LONG SCardDlgExtendedError(void);
LONG SCardDlgExtendedError();
//C struct _PSP;
//C struct _PROPSHEETPAGEA;
//C struct _PROPSHEETPAGEW;
//C typedef struct _PSP *HPROPSHEETPAGE;
alias _PSP *HPROPSHEETPAGE;
//C typedef UINT ( *LPFNPSPCALLBACKA)(HWND hwnd,UINT uMsg,struct _PROPSHEETPAGEA *ppsp);
alias UINT function(HWND hwnd, UINT uMsg, _PROPSHEETPAGEA *ppsp)LPFNPSPCALLBACKA;
//C typedef UINT ( *LPFNPSPCALLBACKW)(HWND hwnd,UINT uMsg,struct _PROPSHEETPAGEW *ppsp);
alias UINT function(HWND hwnd, UINT uMsg, _PROPSHEETPAGEW *ppsp)LPFNPSPCALLBACKW;
//C typedef LPCDLGTEMPLATE PROPSHEETPAGE_RESOURCE;
alias LPCDLGTEMPLATE PROPSHEETPAGE_RESOURCE;
//C typedef struct _PROPSHEETPAGEA_V1 {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCSTR pszIcon; } ; LPCSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKA pfnCallback; UINT *pcRefParent;
union _N259
{
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N260
{
HICON hIcon;
LPCSTR pszIcon;
}
//C } PROPSHEETPAGEA_V1,*LPPROPSHEETPAGEA_V1;
struct _PROPSHEETPAGEA_V1
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCSTR pszIcon;
LPCSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKA pfnCallback;
UINT *pcRefParent;
}
alias _PROPSHEETPAGEA_V1 PROPSHEETPAGEA_V1;
alias _PROPSHEETPAGEA_V1 *LPPROPSHEETPAGEA_V1;
//C typedef const PROPSHEETPAGEA_V1 *LPCPROPSHEETPAGEA_V1;
alias PROPSHEETPAGEA_V1 *LPCPROPSHEETPAGEA_V1;
//C typedef struct _PROPSHEETPAGEA_V2 {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCSTR pszIcon; } ; LPCSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKA pfnCallback; UINT *pcRefParent;
union _N261
{
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N262
{
HICON hIcon;
LPCSTR pszIcon;
}
//C LPCSTR pszHeaderTitle;
//C LPCSTR pszHeaderSubTitle;
//C } PROPSHEETPAGEA_V2,*LPPROPSHEETPAGEA_V2;
struct _PROPSHEETPAGEA_V2
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCSTR pszIcon;
LPCSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKA pfnCallback;
UINT *pcRefParent;
LPCSTR pszHeaderTitle;
LPCSTR pszHeaderSubTitle;
}
alias _PROPSHEETPAGEA_V2 PROPSHEETPAGEA_V2;
alias _PROPSHEETPAGEA_V2 *LPPROPSHEETPAGEA_V2;
//C typedef const PROPSHEETPAGEA_V2 *LPCPROPSHEETPAGEA_V2;
alias PROPSHEETPAGEA_V2 *LPCPROPSHEETPAGEA_V2;
//C typedef struct _PROPSHEETPAGEA {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCSTR pszIcon; } ; LPCSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKA pfnCallback; UINT *pcRefParent;
union _N263
{
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N264
{
HICON hIcon;
LPCSTR pszIcon;
}
//C LPCSTR pszHeaderTitle;
//C LPCSTR pszHeaderSubTitle;
//C HANDLE hActCtx;
//C } PROPSHEETPAGEA_V3,*LPPROPSHEETPAGEA_V3;
struct _PROPSHEETPAGEA
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCSTR pszIcon;
LPCSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKA pfnCallback;
UINT *pcRefParent;
LPCSTR pszHeaderTitle;
LPCSTR pszHeaderSubTitle;
HANDLE hActCtx;
}
alias _PROPSHEETPAGEA PROPSHEETPAGEA_V3;
alias _PROPSHEETPAGEA *LPPROPSHEETPAGEA_V3;
//C typedef const PROPSHEETPAGEA_V3 *LPCPROPSHEETPAGEA_V3;
alias PROPSHEETPAGEA_V3 *LPCPROPSHEETPAGEA_V3;
//C typedef struct _PROPSHEETPAGEW_V1 {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCWSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCWSTR pszIcon; } ; LPCWSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKW pfnCallback; UINT *pcRefParent;
union _N265
{
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N266
{
HICON hIcon;
LPCWSTR pszIcon;
}
//C } PROPSHEETPAGEW_V1,*LPPROPSHEETPAGEW_V1;
struct _PROPSHEETPAGEW_V1
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCWSTR pszIcon;
LPCWSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKW pfnCallback;
UINT *pcRefParent;
}
alias _PROPSHEETPAGEW_V1 PROPSHEETPAGEW_V1;
alias _PROPSHEETPAGEW_V1 *LPPROPSHEETPAGEW_V1;
//C typedef const PROPSHEETPAGEW_V1 *LPCPROPSHEETPAGEW_V1;
alias PROPSHEETPAGEW_V1 *LPCPROPSHEETPAGEW_V1;
//C typedef struct _PROPSHEETPAGEW_V2 {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCWSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCWSTR pszIcon; } ; LPCWSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKW pfnCallback; UINT *pcRefParent;
union _N267
{
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N268
{
HICON hIcon;
LPCWSTR pszIcon;
}
//C LPCWSTR pszHeaderTitle;
//C LPCWSTR pszHeaderSubTitle;
//C } PROPSHEETPAGEW_V2,*LPPROPSHEETPAGEW_V2;
struct _PROPSHEETPAGEW_V2
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCWSTR pszIcon;
LPCWSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKW pfnCallback;
UINT *pcRefParent;
LPCWSTR pszHeaderTitle;
LPCWSTR pszHeaderSubTitle;
}
alias _PROPSHEETPAGEW_V2 PROPSHEETPAGEW_V2;
alias _PROPSHEETPAGEW_V2 *LPPROPSHEETPAGEW_V2;
//C typedef const PROPSHEETPAGEW_V2 *LPCPROPSHEETPAGEW_V2;
alias PROPSHEETPAGEW_V2 *LPCPROPSHEETPAGEW_V2;
//C typedef struct _PROPSHEETPAGEW {
//C DWORD dwSize,dwFlags; HINSTANCE hInstance; union { LPCWSTR pszTemplate; PROPSHEETPAGE_RESOURCE pResource; } ; union { HICON hIcon; LPCWSTR pszIcon; } ; LPCWSTR pszTitle; DLGPROC pfnDlgProc; LPARAM lParam; LPFNPSPCALLBACKW pfnCallback; UINT *pcRefParent;
union _N269
{
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
}
union _N270
{
HICON hIcon;
LPCWSTR pszIcon;
}
//C LPCWSTR pszHeaderTitle;
//C LPCWSTR pszHeaderSubTitle;
//C HANDLE hActCtx;
//C } PROPSHEETPAGEW_V3,*LPPROPSHEETPAGEW_V3;
struct _PROPSHEETPAGEW
{
DWORD dwSize;
DWORD dwFlags;
HINSTANCE hInstance;
LPCWSTR pszTemplate;
PROPSHEETPAGE_RESOURCE pResource;
HICON hIcon;
LPCWSTR pszIcon;
LPCWSTR pszTitle;
DLGPROC pfnDlgProc;
LPARAM lParam;
LPFNPSPCALLBACKW pfnCallback;
UINT *pcRefParent;
LPCWSTR pszHeaderTitle;
LPCWSTR pszHeaderSubTitle;
HANDLE hActCtx;
}
alias _PROPSHEETPAGEW PROPSHEETPAGEW_V3;
alias _PROPSHEETPAGEW *LPPROPSHEETPAGEW_V3;
//C typedef const PROPSHEETPAGEW_V3 *LPCPROPSHEETPAGEW_V3;
alias PROPSHEETPAGEW_V3 *LPCPROPSHEETPAGEW_V3;
//C typedef PROPSHEETPAGEA_V3 PROPSHEETPAGEA_LATEST;
alias PROPSHEETPAGEA_V3 PROPSHEETPAGEA_LATEST;
//C typedef PROPSHEETPAGEW_V3 PROPSHEETPAGEW_LATEST;
alias PROPSHEETPAGEW_V3 PROPSHEETPAGEW_LATEST;
//C typedef LPPROPSHEETPAGEA_V3 LPPROPSHEETPAGEA_LATEST;
alias LPPROPSHEETPAGEA_V3 LPPROPSHEETPAGEA_LATEST;
//C typedef LPPROPSHEETPAGEW_V3 LPPROPSHEETPAGEW_LATEST;
alias LPPROPSHEETPAGEW_V3 LPPROPSHEETPAGEW_LATEST;
//C typedef LPCPROPSHEETPAGEA_V3 LPCPROPSHEETPAGEA_LATEST;
alias LPCPROPSHEETPAGEA_V3 LPCPROPSHEETPAGEA_LATEST;
//C typedef LPCPROPSHEETPAGEW_V3 LPCPROPSHEETPAGEW_LATEST;
alias LPCPROPSHEETPAGEW_V3 LPCPROPSHEETPAGEW_LATEST;
//C typedef PROPSHEETPAGEA_V3 PROPSHEETPAGEA;
alias PROPSHEETPAGEA_V3 PROPSHEETPAGEA;
//C typedef PROPSHEETPAGEW_V3 PROPSHEETPAGEW;
alias PROPSHEETPAGEW_V3 PROPSHEETPAGEW;
//C typedef LPPROPSHEETPAGEA_V3 LPPROPSHEETPAGEA;
alias LPPROPSHEETPAGEA_V3 LPPROPSHEETPAGEA;
//C typedef LPPROPSHEETPAGEW_V3 LPPROPSHEETPAGEW;
alias LPPROPSHEETPAGEW_V3 LPPROPSHEETPAGEW;
//C typedef LPCPROPSHEETPAGEA_V3 LPCPROPSHEETPAGEA;
alias LPCPROPSHEETPAGEA_V3 LPCPROPSHEETPAGEA;
//C typedef LPCPROPSHEETPAGEW_V3 LPCPROPSHEETPAGEW;
alias LPCPROPSHEETPAGEW_V3 LPCPROPSHEETPAGEW;
//C typedef int ( *PFNPROPSHEETCALLBACK)(HWND,UINT,LPARAM);
alias int function(HWND , UINT , LPARAM )PFNPROPSHEETCALLBACK;
//C typedef struct _PROPSHEETHEADERA {
//C DWORD dwSize;
//C DWORD dwFlags;
//C HWND hwndParent;
//C HINSTANCE hInstance;
//C union {
//C HICON hIcon;
//C LPCSTR pszIcon;
//C } ;
union _N271
{
HICON hIcon;
LPCSTR pszIcon;
}
//C LPCSTR pszCaption;
//C UINT nPages;
//C union {
//C UINT nStartPage;
//C LPCSTR pStartPage;
//C } ;
union _N272
{
UINT nStartPage;
LPCSTR pStartPage;
}
//C union {
//C LPCPROPSHEETPAGEA ppsp;
//C HPROPSHEETPAGE *phpage;
//C } ;
union _N273
{
LPCPROPSHEETPAGEA ppsp;
HPROPSHEETPAGE *phpage;
}
//C PFNPROPSHEETCALLBACK pfnCallback;
//C union {
//C HBITMAP hbmWatermark;
//C LPCSTR pszbmWatermark;
//C } ;
union _N274
{
HBITMAP hbmWatermark;
LPCSTR pszbmWatermark;
}
//C HPALETTE hplWatermark;
//C union {
//C HBITMAP hbmHeader;
//C LPCSTR pszbmHeader;
//C } ;
union _N275
{
HBITMAP hbmHeader;
LPCSTR pszbmHeader;
}
//C } PROPSHEETHEADERA,*LPPROPSHEETHEADERA;
struct _PROPSHEETHEADERA
{
DWORD dwSize;
DWORD dwFlags;
HWND hwndParent;
HINSTANCE hInstance;
HICON hIcon;
LPCSTR pszIcon;
LPCSTR pszCaption;
UINT nPages;
UINT nStartPage;
LPCSTR pStartPage;
LPCPROPSHEETPAGEA ppsp;
HPROPSHEETPAGE *phpage;
PFNPROPSHEETCALLBACK pfnCallback;
HBITMAP hbmWatermark;
LPCSTR pszbmWatermark;
HPALETTE hplWatermark;
HBITMAP hbmHeader;
LPCSTR pszbmHeader;
}
alias _PROPSHEETHEADERA PROPSHEETHEADERA;
alias _PROPSHEETHEADERA *LPPROPSHEETHEADERA;
//C typedef const PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
alias PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
//C typedef struct _PROPSHEETHEADERW {
//C DWORD dwSize;
//C DWORD dwFlags;
//C HWND hwndParent;
//C HINSTANCE hInstance;
//C union {
//C HICON hIcon;
//C LPCWSTR pszIcon;
//C } ;
union _N276
{
HICON hIcon;
LPCWSTR pszIcon;
}
//C LPCWSTR pszCaption;
//C UINT nPages;
//C union {
//C UINT nStartPage;
//C LPCWSTR pStartPage;
//C } ;
union _N277
{
UINT nStartPage;
LPCWSTR pStartPage;
}
//C union {
//C LPCPROPSHEETPAGEW ppsp;
//C HPROPSHEETPAGE *phpage;
//C } ;
union _N278
{
LPCPROPSHEETPAGEW ppsp;
HPROPSHEETPAGE *phpage;
}
//C PFNPROPSHEETCALLBACK pfnCallback;
//C union {
//C HBITMAP hbmWatermark;
//C LPCWSTR pszbmWatermark;
//C } ;
union _N279
{
HBITMAP hbmWatermark;
LPCWSTR pszbmWatermark;
}
//C HPALETTE hplWatermark;
//C union {
//C HBITMAP hbmHeader;
//C LPCWSTR pszbmHeader;
//C } ;
union _N280
{
HBITMAP hbmHeader;
LPCWSTR pszbmHeader;
}
//C } PROPSHEETHEADERW,*LPPROPSHEETHEADERW;
struct _PROPSHEETHEADERW
{
DWORD dwSize;
DWORD dwFlags;
HWND hwndParent;
HINSTANCE hInstance;
HICON hIcon;
LPCWSTR pszIcon;
LPCWSTR pszCaption;
UINT nPages;
UINT nStartPage;
LPCWSTR pStartPage;
LPCPROPSHEETPAGEW ppsp;
HPROPSHEETPAGE *phpage;
PFNPROPSHEETCALLBACK pfnCallback;
HBITMAP hbmWatermark;
LPCWSTR pszbmWatermark;
HPALETTE hplWatermark;
HBITMAP hbmHeader;
LPCWSTR pszbmHeader;
}
alias _PROPSHEETHEADERW PROPSHEETHEADERW;
alias _PROPSHEETHEADERW *LPPROPSHEETHEADERW;
//C typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
alias PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
//C HPROPSHEETPAGE CreatePropertySheetPageA(LPCPROPSHEETPAGEA constPropSheetPagePointer);
HPROPSHEETPAGE CreatePropertySheetPageA(LPCPROPSHEETPAGEA constPropSheetPagePointer);
//C HPROPSHEETPAGE CreatePropertySheetPageW(LPCPROPSHEETPAGEW constPropSheetPagePointer);
HPROPSHEETPAGE CreatePropertySheetPageW(LPCPROPSHEETPAGEW constPropSheetPagePointer);
//C WINBOOL DestroyPropertySheetPage(HPROPSHEETPAGE);
WINBOOL DestroyPropertySheetPage(HPROPSHEETPAGE );
//C INT_PTR PropertySheetA(LPCPROPSHEETHEADERA);
INT_PTR PropertySheetA(LPCPROPSHEETHEADERA );
//C INT_PTR PropertySheetW(LPCPROPSHEETHEADERW);
INT_PTR PropertySheetW(LPCPROPSHEETHEADERW );
//C typedef WINBOOL ( *LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE,LPARAM);
alias WINBOOL function(HPROPSHEETPAGE , LPARAM )LPFNADDPROPSHEETPAGE;
//C typedef WINBOOL ( *LPFNADDPROPSHEETPAGES)(LPVOID,LPFNADDPROPSHEETPAGE,LPARAM);
alias WINBOOL function(LPVOID , LPFNADDPROPSHEETPAGE , LPARAM )LPFNADDPROPSHEETPAGES;
//C typedef struct _PSHNOTIFY {
//C NMHDR hdr;
//C LPARAM lParam;
//C } PSHNOTIFY,*LPPSHNOTIFY;
struct _PSHNOTIFY
{
NMHDR hdr;
LPARAM lParam;
}
alias _PSHNOTIFY PSHNOTIFY;
alias _PSHNOTIFY *LPPSHNOTIFY;
//C typedef struct _PRINTER_INFO_1A {
//C DWORD Flags;
//C LPSTR pDescription;
//C LPSTR pName;
//C LPSTR pComment;
//C } PRINTER_INFO_1A,*PPRINTER_INFO_1A,*LPPRINTER_INFO_1A;
struct _PRINTER_INFO_1A
{
DWORD Flags;
LPSTR pDescription;
LPSTR pName;
LPSTR pComment;
}
alias _PRINTER_INFO_1A PRINTER_INFO_1A;
alias _PRINTER_INFO_1A *PPRINTER_INFO_1A;
alias _PRINTER_INFO_1A *LPPRINTER_INFO_1A;
//C typedef struct _PRINTER_INFO_1W {
//C DWORD Flags;
//C LPWSTR pDescription;
//C LPWSTR pName;
//C LPWSTR pComment;
//C } PRINTER_INFO_1W,*PPRINTER_INFO_1W,*LPPRINTER_INFO_1W;
struct _PRINTER_INFO_1W
{
DWORD Flags;
LPWSTR pDescription;
LPWSTR pName;
LPWSTR pComment;
}
alias _PRINTER_INFO_1W PRINTER_INFO_1W;
alias _PRINTER_INFO_1W *PPRINTER_INFO_1W;
alias _PRINTER_INFO_1W *LPPRINTER_INFO_1W;
//C typedef PRINTER_INFO_1A PRINTER_INFO_1;
alias PRINTER_INFO_1A PRINTER_INFO_1;
//C typedef PPRINTER_INFO_1A PPRINTER_INFO_1;
alias PPRINTER_INFO_1A PPRINTER_INFO_1;
//C typedef LPPRINTER_INFO_1A LPPRINTER_INFO_1;
alias LPPRINTER_INFO_1A LPPRINTER_INFO_1;
//C typedef struct _PRINTER_INFO_2A {
//C LPSTR pServerName;
//C LPSTR pPrinterName;
//C LPSTR pShareName;
//C LPSTR pPortName;
//C LPSTR pDriverName;
//C LPSTR pComment;
//C LPSTR pLocation;
//C LPDEVMODEA pDevMode;
//C LPSTR pSepFile;
//C LPSTR pPrintProcessor;
//C LPSTR pDatatype;
//C LPSTR pParameters;
//C PSECURITY_DESCRIPTOR pSecurityDescriptor;
//C DWORD Attributes;
//C DWORD Priority;
//C DWORD DefaultPriority;
//C DWORD StartTime;
//C DWORD UntilTime;
//C DWORD Status;
//C DWORD cJobs;
//C DWORD AveragePPM;
//C } PRINTER_INFO_2A,*PPRINTER_INFO_2A,*LPPRINTER_INFO_2A;
struct _PRINTER_INFO_2A
{
LPSTR pServerName;
LPSTR pPrinterName;
LPSTR pShareName;
LPSTR pPortName;
LPSTR pDriverName;
LPSTR pComment;
LPSTR pLocation;
LPDEVMODEA pDevMode;
LPSTR pSepFile;
LPSTR pPrintProcessor;
LPSTR pDatatype;
LPSTR pParameters;
PSECURITY_DESCRIPTOR pSecurityDescriptor;
DWORD Attributes;
DWORD Priority;
DWORD DefaultPriority;
DWORD StartTime;
DWORD UntilTime;
DWORD Status;
DWORD cJobs;
DWORD AveragePPM;
}
alias _PRINTER_INFO_2A PRINTER_INFO_2A;
alias _PRINTER_INFO_2A *PPRINTER_INFO_2A;
alias _PRINTER_INFO_2A *LPPRINTER_INFO_2A;
//C typedef struct _PRINTER_INFO_2W {
//C LPWSTR pServerName;
//C LPWSTR pPrinterName;
//C LPWSTR pShareName;
//C LPWSTR pPortName;
//C LPWSTR pDriverName;
//C LPWSTR pComment;
//C LPWSTR pLocation;
//C LPDEVMODEW pDevMode;
//C LPWSTR pSepFile;
//C LPWSTR pPrintProcessor;
//C LPWSTR pDatatype;
//C LPWSTR pParameters;
//C PSECURITY_DESCRIPTOR pSecurityDescriptor;
//C DWORD Attributes;
//C DWORD Priority;
//C DWORD DefaultPriority;
//C DWORD StartTime;
//C DWORD UntilTime;
//C DWORD Status;
//C DWORD cJobs;
//C DWORD AveragePPM;
//C } PRINTER_INFO_2W,*PPRINTER_INFO_2W,*LPPRINTER_INFO_2W;
struct _PRINTER_INFO_2W
{
LPWSTR pServerName;
LPWSTR pPrinterName;
LPWSTR pShareName;
LPWSTR pPortName;
LPWSTR pDriverName;
LPWSTR pComment;
LPWSTR pLocation;
LPDEVMODEW pDevMode;
LPWSTR pSepFile;
LPWSTR pPrintProcessor;
LPWSTR pDatatype;
LPWSTR pParameters;
PSECURITY_DESCRIPTOR pSecurityDescriptor;
DWORD Attributes;
DWORD Priority;
DWORD DefaultPriority;
DWORD StartTime;
DWORD UntilTime;
DWORD Status;
DWORD cJobs;
DWORD AveragePPM;
}
alias _PRINTER_INFO_2W PRINTER_INFO_2W;
alias _PRINTER_INFO_2W *PPRINTER_INFO_2W;
alias _PRINTER_INFO_2W *LPPRINTER_INFO_2W;
//C typedef PRINTER_INFO_2A PRINTER_INFO_2;
alias PRINTER_INFO_2A PRINTER_INFO_2;
//C typedef PPRINTER_INFO_2A PPRINTER_INFO_2;
alias PPRINTER_INFO_2A PPRINTER_INFO_2;
//C typedef LPPRINTER_INFO_2A LPPRINTER_INFO_2;
alias LPPRINTER_INFO_2A LPPRINTER_INFO_2;
//C typedef struct _PRINTER_INFO_3 {
//C PSECURITY_DESCRIPTOR pSecurityDescriptor;
//C } PRINTER_INFO_3,*PPRINTER_INFO_3,*LPPRINTER_INFO_3;
struct _PRINTER_INFO_3
{
PSECURITY_DESCRIPTOR pSecurityDescriptor;
}
alias _PRINTER_INFO_3 PRINTER_INFO_3;
alias _PRINTER_INFO_3 *PPRINTER_INFO_3;
alias _PRINTER_INFO_3 *LPPRINTER_INFO_3;
//C typedef struct _PRINTER_INFO_4A {
//C LPSTR pPrinterName;
//C LPSTR pServerName;
//C DWORD Attributes;
//C } PRINTER_INFO_4A,*PPRINTER_INFO_4A,*LPPRINTER_INFO_4A;
struct _PRINTER_INFO_4A
{
LPSTR pPrinterName;
LPSTR pServerName;
DWORD Attributes;
}
alias _PRINTER_INFO_4A PRINTER_INFO_4A;
alias _PRINTER_INFO_4A *PPRINTER_INFO_4A;
alias _PRINTER_INFO_4A *LPPRINTER_INFO_4A;
//C typedef struct _PRINTER_INFO_4W {
//C LPWSTR pPrinterName;
//C LPWSTR pServerName;
//C DWORD Attributes;
//C } PRINTER_INFO_4W,*PPRINTER_INFO_4W,*LPPRINTER_INFO_4W;
struct _PRINTER_INFO_4W
{
LPWSTR pPrinterName;
LPWSTR pServerName;
DWORD Attributes;
}
alias _PRINTER_INFO_4W PRINTER_INFO_4W;
alias _PRINTER_INFO_4W *PPRINTER_INFO_4W;
alias _PRINTER_INFO_4W *LPPRINTER_INFO_4W;
//C typedef PRINTER_INFO_4A PRINTER_INFO_4;
alias PRINTER_INFO_4A PRINTER_INFO_4;
//C typedef PPRINTER_INFO_4A PPRINTER_INFO_4;
alias PPRINTER_INFO_4A PPRINTER_INFO_4;
//C typedef LPPRINTER_INFO_4A LPPRINTER_INFO_4;
alias LPPRINTER_INFO_4A LPPRINTER_INFO_4;
//C typedef struct _PRINTER_INFO_5A {
//C LPSTR pPrinterName;
//C LPSTR pPortName;
//C DWORD Attributes;
//C DWORD DeviceNotSelectedTimeout;
//C DWORD TransmissionRetryTimeout;
//C } PRINTER_INFO_5A,*PPRINTER_INFO_5A,*LPPRINTER_INFO_5A;
struct _PRINTER_INFO_5A
{
LPSTR pPrinterName;
LPSTR pPortName;
DWORD Attributes;
DWORD DeviceNotSelectedTimeout;
DWORD TransmissionRetryTimeout;
}
alias _PRINTER_INFO_5A PRINTER_INFO_5A;
alias _PRINTER_INFO_5A *PPRINTER_INFO_5A;
alias _PRINTER_INFO_5A *LPPRINTER_INFO_5A;
//C typedef struct _PRINTER_INFO_5W {
//C LPWSTR pPrinterName;
//C LPWSTR pPortName;
//C DWORD Attributes;
//C DWORD DeviceNotSelectedTimeout;
//C DWORD TransmissionRetryTimeout;
//C } PRINTER_INFO_5W,*PPRINTER_INFO_5W,*LPPRINTER_INFO_5W;
struct _PRINTER_INFO_5W
{
LPWSTR pPrinterName;
LPWSTR pPortName;
DWORD Attributes;
DWORD DeviceNotSelectedTimeout;
DWORD TransmissionRetryTimeout;
}
alias _PRINTER_INFO_5W PRINTER_INFO_5W;
alias _PRINTER_INFO_5W *PPRINTER_INFO_5W;
alias _PRINTER_INFO_5W *LPPRINTER_INFO_5W;
//C typedef PRINTER_INFO_5A PRINTER_INFO_5;
alias PRINTER_INFO_5A PRINTER_INFO_5;
//C typedef PPRINTER_INFO_5A PPRINTER_INFO_5;
alias PPRINTER_INFO_5A PPRINTER_INFO_5;
//C typedef LPPRINTER_INFO_5A LPPRINTER_INFO_5;
alias LPPRINTER_INFO_5A LPPRINTER_INFO_5;
//C typedef struct _PRINTER_INFO_6 {
//C DWORD dwStatus;
//C } PRINTER_INFO_6,*PPRINTER_INFO_6,*LPPRINTER_INFO_6;
struct _PRINTER_INFO_6
{
DWORD dwStatus;
}
alias _PRINTER_INFO_6 PRINTER_INFO_6;
alias _PRINTER_INFO_6 *PPRINTER_INFO_6;
alias _PRINTER_INFO_6 *LPPRINTER_INFO_6;
//C typedef struct _PRINTER_INFO_7A {
//C LPSTR pszObjectGUID;
//C DWORD dwAction;
//C } PRINTER_INFO_7A,*PPRINTER_INFO_7A,*LPPRINTER_INFO_7A;
struct _PRINTER_INFO_7A
{
LPSTR pszObjectGUID;
DWORD dwAction;
}
alias _PRINTER_INFO_7A PRINTER_INFO_7A;
alias _PRINTER_INFO_7A *PPRINTER_INFO_7A;
alias _PRINTER_INFO_7A *LPPRINTER_INFO_7A;
//C typedef struct _PRINTER_INFO_7W {
//C LPWSTR pszObjectGUID;
//C DWORD dwAction;
//C } PRINTER_INFO_7W,*PPRINTER_INFO_7W,*LPPRINTER_INFO_7W;
struct _PRINTER_INFO_7W
{
LPWSTR pszObjectGUID;
DWORD dwAction;
}
alias _PRINTER_INFO_7W PRINTER_INFO_7W;
alias _PRINTER_INFO_7W *PPRINTER_INFO_7W;
alias _PRINTER_INFO_7W *LPPRINTER_INFO_7W;
//C typedef PRINTER_INFO_7A PRINTER_INFO_7;
alias PRINTER_INFO_7A PRINTER_INFO_7;
//C typedef PPRINTER_INFO_7A PPRINTER_INFO_7;
alias PPRINTER_INFO_7A PPRINTER_INFO_7;
//C typedef LPPRINTER_INFO_7A LPPRINTER_INFO_7;
alias LPPRINTER_INFO_7A LPPRINTER_INFO_7;
//C typedef struct _PRINTER_INFO_8A {
//C LPDEVMODEA pDevMode;
//C } PRINTER_INFO_8A,*PPRINTER_INFO_8A,*LPPRINTER_INFO_8A;
struct _PRINTER_INFO_8A
{
LPDEVMODEA pDevMode;
}
alias _PRINTER_INFO_8A PRINTER_INFO_8A;
alias _PRINTER_INFO_8A *PPRINTER_INFO_8A;
alias _PRINTER_INFO_8A *LPPRINTER_INFO_8A;
//C typedef struct _PRINTER_INFO_8W {
//C LPDEVMODEW pDevMode;
//C } PRINTER_INFO_8W,*PPRINTER_INFO_8W,*LPPRINTER_INFO_8W;
struct _PRINTER_INFO_8W
{
LPDEVMODEW pDevMode;
}
alias _PRINTER_INFO_8W PRINTER_INFO_8W;
alias _PRINTER_INFO_8W *PPRINTER_INFO_8W;
alias _PRINTER_INFO_8W *LPPRINTER_INFO_8W;
//C typedef PRINTER_INFO_8A PRINTER_INFO_8;
alias PRINTER_INFO_8A PRINTER_INFO_8;
//C typedef PPRINTER_INFO_8A PPRINTER_INFO_8;
alias PPRINTER_INFO_8A PPRINTER_INFO_8;
//C typedef LPPRINTER_INFO_8A LPPRINTER_INFO_8;
alias LPPRINTER_INFO_8A LPPRINTER_INFO_8;
//C typedef struct _PRINTER_INFO_9A {
//C LPDEVMODEA pDevMode;
//C } PRINTER_INFO_9A,*PPRINTER_INFO_9A,*LPPRINTER_INFO_9A;
struct _PRINTER_INFO_9A
{
LPDEVMODEA pDevMode;
}
alias _PRINTER_INFO_9A PRINTER_INFO_9A;
alias _PRINTER_INFO_9A *PPRINTER_INFO_9A;
alias _PRINTER_INFO_9A *LPPRINTER_INFO_9A;
//C typedef struct _PRINTER_INFO_9W {
//C LPDEVMODEW pDevMode;
//C } PRINTER_INFO_9W,*PPRINTER_INFO_9W,*LPPRINTER_INFO_9W;
struct _PRINTER_INFO_9W
{
LPDEVMODEW pDevMode;
}
alias _PRINTER_INFO_9W PRINTER_INFO_9W;
alias _PRINTER_INFO_9W *PPRINTER_INFO_9W;
alias _PRINTER_INFO_9W *LPPRINTER_INFO_9W;
//C typedef PRINTER_INFO_9A PRINTER_INFO_9;
alias PRINTER_INFO_9A PRINTER_INFO_9;
//C typedef PPRINTER_INFO_9A PPRINTER_INFO_9;
alias PPRINTER_INFO_9A PPRINTER_INFO_9;
//C typedef LPPRINTER_INFO_9A LPPRINTER_INFO_9;
alias LPPRINTER_INFO_9A LPPRINTER_INFO_9;
//C typedef struct _JOB_INFO_1A {
//C DWORD JobId;
//C LPSTR pPrinterName;
//C LPSTR pMachineName;
//C LPSTR pUserName;
//C LPSTR pDocument;
//C LPSTR pDatatype;
//C LPSTR pStatus;
//C DWORD Status;
//C DWORD Priority;
//C DWORD Position;
//C DWORD TotalPages;
//C DWORD PagesPrinted;
//C SYSTEMTIME Submitted;
//C } JOB_INFO_1A,*PJOB_INFO_1A,*LPJOB_INFO_1A;
struct _JOB_INFO_1A
{
DWORD JobId;
LPSTR pPrinterName;
LPSTR pMachineName;
LPSTR pUserName;
LPSTR pDocument;
LPSTR pDatatype;
LPSTR pStatus;
DWORD Status;
DWORD Priority;
DWORD Position;
DWORD TotalPages;
DWORD PagesPrinted;
SYSTEMTIME Submitted;
}
alias _JOB_INFO_1A JOB_INFO_1A;
alias _JOB_INFO_1A *PJOB_INFO_1A;
alias _JOB_INFO_1A *LPJOB_INFO_1A;
//C typedef struct _JOB_INFO_1W {
//C DWORD JobId;
//C LPWSTR pPrinterName;
//C LPWSTR pMachineName;
//C LPWSTR pUserName;
//C LPWSTR pDocument;
//C LPWSTR pDatatype;
//C LPWSTR pStatus;
//C DWORD Status;
//C DWORD Priority;
//C DWORD Position;
//C DWORD TotalPages;
//C DWORD PagesPrinted;
//C SYSTEMTIME Submitted;
//C } JOB_INFO_1W,*PJOB_INFO_1W,*LPJOB_INFO_1W;
struct _JOB_INFO_1W
{
DWORD JobId;
LPWSTR pPrinterName;
LPWSTR pMachineName;
LPWSTR pUserName;
LPWSTR pDocument;
LPWSTR pDatatype;
LPWSTR pStatus;
DWORD Status;
DWORD Priority;
DWORD Position;
DWORD TotalPages;
DWORD PagesPrinted;
SYSTEMTIME Submitted;
}
alias _JOB_INFO_1W JOB_INFO_1W;
alias _JOB_INFO_1W *PJOB_INFO_1W;
alias _JOB_INFO_1W *LPJOB_INFO_1W;
//C typedef JOB_INFO_1A JOB_INFO_1;
alias JOB_INFO_1A JOB_INFO_1;
//C typedef PJOB_INFO_1A PJOB_INFO_1;
alias PJOB_INFO_1A PJOB_INFO_1;
//C typedef LPJOB_INFO_1A LPJOB_INFO_1;
alias LPJOB_INFO_1A LPJOB_INFO_1;
//C typedef struct _JOB_INFO_2A {
//C DWORD JobId;
//C LPSTR pPrinterName;
//C LPSTR pMachineName;
//C LPSTR pUserName;
//C LPSTR pDocument;
//C LPSTR pNotifyName;
//C LPSTR pDatatype;
//C LPSTR pPrintProcessor;
//C LPSTR pParameters;
//C LPSTR pDriverName;
//C LPDEVMODEA pDevMode;
//C LPSTR pStatus;
//C PSECURITY_DESCRIPTOR pSecurityDescriptor;
//C DWORD Status;
//C DWORD Priority;
//C DWORD Position;
//C DWORD StartTime;
//C DWORD UntilTime;
//C DWORD TotalPages;
//C DWORD Size;
//C SYSTEMTIME Submitted;
//C DWORD Time;
//C DWORD PagesPrinted;
//C } JOB_INFO_2A,*PJOB_INFO_2A,*LPJOB_INFO_2A;
struct _JOB_INFO_2A
{
DWORD JobId;
LPSTR pPrinterName;
LPSTR pMachineName;
LPSTR pUserName;
LPSTR pDocument;
LPSTR pNotifyName;
LPSTR pDatatype;
LPSTR pPrintProcessor;
LPSTR pParameters;
LPSTR pDriverName;
LPDEVMODEA pDevMode;
LPSTR pStatus;
PSECURITY_DESCRIPTOR pSecurityDescriptor;
DWORD Status;
DWORD Priority;
DWORD Position;
DWORD StartTime;
DWORD UntilTime;
DWORD TotalPages;
DWORD Size;
SYSTEMTIME Submitted;
DWORD Time;
DWORD PagesPrinted;
}
alias _JOB_INFO_2A JOB_INFO_2A;
alias _JOB_INFO_2A *PJOB_INFO_2A;
alias _JOB_INFO_2A *LPJOB_INFO_2A;
//C typedef struct _JOB_INFO_2W {
//C DWORD JobId;
//C LPWSTR pPrinterName;
//C LPWSTR pMachineName;
//C LPWSTR pUserName;
//C LPWSTR pDocument;
//C LPWSTR pNotifyName;
//C LPWSTR pDatatype;
//C LPWSTR pPrintProcessor;
//C LPWSTR pParameters;
//C LPWSTR pDriverName;
//C LPDEVMODEW pDevMode;
//C LPWSTR pStatus;
//C PSECURITY_DESCRIPTOR pSecurityDescriptor;
//C DWORD Status;
//C DWORD Priority;
//C DWORD Position;
//C DWORD StartTime;
//C DWORD UntilTime;
//C DWORD TotalPages;
//C DWORD Size;
//C SYSTEMTIME Submitted;
//C DWORD Time;
//C DWORD PagesPrinted;
//C } JOB_INFO_2W,*PJOB_INFO_2W,*LPJOB_INFO_2W;
struct _JOB_INFO_2W
{
DWORD JobId;
LPWSTR pPrinterName;
LPWSTR pMachineName;
LPWSTR pUserName;
LPWSTR pDocument;
LPWSTR pNotifyName;
LPWSTR pDatatype;
LPWSTR pPrintProcessor;
LPWSTR pParameters;
LPWSTR pDriverName;
LPDEVMODEW pDevMode;
LPWSTR pStatus;
PSECURITY_DESCRIPTOR pSecurityDescriptor;
DWORD Status;
DWORD Priority;
DWORD Position;
DWORD StartTime;
DWORD UntilTime;
DWORD TotalPages;
DWORD Size;
SYSTEMTIME Submitted;
DWORD Time;
DWORD PagesPrinted;
}
alias _JOB_INFO_2W JOB_INFO_2W;
alias _JOB_INFO_2W *PJOB_INFO_2W;
alias _JOB_INFO_2W *LPJOB_INFO_2W;
//C typedef JOB_INFO_2A JOB_INFO_2;
alias JOB_INFO_2A JOB_INFO_2;
//C typedef PJOB_INFO_2A PJOB_INFO_2;
alias PJOB_INFO_2A PJOB_INFO_2;
//C typedef LPJOB_INFO_2A LPJOB_INFO_2;
alias LPJOB_INFO_2A LPJOB_INFO_2;
//C typedef struct _JOB_INFO_3 {
//C DWORD JobId;
//C DWORD NextJobId;
//C DWORD Reserved;
//C } JOB_INFO_3,*PJOB_INFO_3,*LPJOB_INFO_3;
struct _JOB_INFO_3
{
DWORD JobId;
DWORD NextJobId;
DWORD Reserved;
}
alias _JOB_INFO_3 JOB_INFO_3;
alias _JOB_INFO_3 *PJOB_INFO_3;
alias _JOB_INFO_3 *LPJOB_INFO_3;
//C typedef struct _ADDJOB_INFO_1A {
//C LPSTR Path;
//C DWORD JobId;
//C } ADDJOB_INFO_1A,*PADDJOB_INFO_1A,*LPADDJOB_INFO_1A;
struct _ADDJOB_INFO_1A
{
LPSTR Path;
DWORD JobId;
}
alias _ADDJOB_INFO_1A ADDJOB_INFO_1A;
alias _ADDJOB_INFO_1A *PADDJOB_INFO_1A;
alias _ADDJOB_INFO_1A *LPADDJOB_INFO_1A;
//C typedef struct _ADDJOB_INFO_1W {
//C LPWSTR Path;
//C DWORD JobId;
//C } ADDJOB_INFO_1W,*PADDJOB_INFO_1W,*LPADDJOB_INFO_1W;
struct _ADDJOB_INFO_1W
{
LPWSTR Path;
DWORD JobId;
}
alias _ADDJOB_INFO_1W ADDJOB_INFO_1W;
alias _ADDJOB_INFO_1W *PADDJOB_INFO_1W;
alias _ADDJOB_INFO_1W *LPADDJOB_INFO_1W;
//C typedef ADDJOB_INFO_1A ADDJOB_INFO_1;
alias ADDJOB_INFO_1A ADDJOB_INFO_1;
//C typedef PADDJOB_INFO_1A PADDJOB_INFO_1;
alias PADDJOB_INFO_1A PADDJOB_INFO_1;
//C typedef LPADDJOB_INFO_1A LPADDJOB_INFO_1;
alias LPADDJOB_INFO_1A LPADDJOB_INFO_1;
//C typedef struct _DRIVER_INFO_1A {
//C LPSTR pName;
//C } DRIVER_INFO_1A,*PDRIVER_INFO_1A,*LPDRIVER_INFO_1A;
struct _DRIVER_INFO_1A
{
LPSTR pName;
}
alias _DRIVER_INFO_1A DRIVER_INFO_1A;
alias _DRIVER_INFO_1A *PDRIVER_INFO_1A;
alias _DRIVER_INFO_1A *LPDRIVER_INFO_1A;
//C typedef struct _DRIVER_INFO_1W {
//C LPWSTR pName;
//C } DRIVER_INFO_1W,*PDRIVER_INFO_1W,*LPDRIVER_INFO_1W;
struct _DRIVER_INFO_1W
{
LPWSTR pName;
}
alias _DRIVER_INFO_1W DRIVER_INFO_1W;
alias _DRIVER_INFO_1W *PDRIVER_INFO_1W;
alias _DRIVER_INFO_1W *LPDRIVER_INFO_1W;
//C typedef DRIVER_INFO_1A DRIVER_INFO_1;
alias DRIVER_INFO_1A DRIVER_INFO_1;
//C typedef PDRIVER_INFO_1A PDRIVER_INFO_1;
alias PDRIVER_INFO_1A PDRIVER_INFO_1;
//C typedef LPDRIVER_INFO_1A LPDRIVER_INFO_1;
alias LPDRIVER_INFO_1A LPDRIVER_INFO_1;
//C typedef struct _DRIVER_INFO_2A {
//C DWORD cVersion;
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDriverPath;
//C LPSTR pDataFile;
//C LPSTR pConfigFile;
//C } DRIVER_INFO_2A,*PDRIVER_INFO_2A,*LPDRIVER_INFO_2A;
struct _DRIVER_INFO_2A
{
DWORD cVersion;
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDriverPath;
LPSTR pDataFile;
LPSTR pConfigFile;
}
alias _DRIVER_INFO_2A DRIVER_INFO_2A;
alias _DRIVER_INFO_2A *PDRIVER_INFO_2A;
alias _DRIVER_INFO_2A *LPDRIVER_INFO_2A;
//C typedef struct _DRIVER_INFO_2W {
//C DWORD cVersion;
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDriverPath;
//C LPWSTR pDataFile;
//C LPWSTR pConfigFile;
//C } DRIVER_INFO_2W,*PDRIVER_INFO_2W,*LPDRIVER_INFO_2W;
struct _DRIVER_INFO_2W
{
DWORD cVersion;
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDriverPath;
LPWSTR pDataFile;
LPWSTR pConfigFile;
}
alias _DRIVER_INFO_2W DRIVER_INFO_2W;
alias _DRIVER_INFO_2W *PDRIVER_INFO_2W;
alias _DRIVER_INFO_2W *LPDRIVER_INFO_2W;
//C typedef DRIVER_INFO_2A DRIVER_INFO_2;
alias DRIVER_INFO_2A DRIVER_INFO_2;
//C typedef PDRIVER_INFO_2A PDRIVER_INFO_2;
alias PDRIVER_INFO_2A PDRIVER_INFO_2;
//C typedef LPDRIVER_INFO_2A LPDRIVER_INFO_2;
alias LPDRIVER_INFO_2A LPDRIVER_INFO_2;
//C typedef struct _DRIVER_INFO_3A {
//C DWORD cVersion;
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDriverPath;
//C LPSTR pDataFile;
//C LPSTR pConfigFile;
//C LPSTR pHelpFile;
//C LPSTR pDependentFiles;
//C LPSTR pMonitorName;
//C LPSTR pDefaultDataType;
//C } DRIVER_INFO_3A,*PDRIVER_INFO_3A,*LPDRIVER_INFO_3A;
struct _DRIVER_INFO_3A
{
DWORD cVersion;
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDriverPath;
LPSTR pDataFile;
LPSTR pConfigFile;
LPSTR pHelpFile;
LPSTR pDependentFiles;
LPSTR pMonitorName;
LPSTR pDefaultDataType;
}
alias _DRIVER_INFO_3A DRIVER_INFO_3A;
alias _DRIVER_INFO_3A *PDRIVER_INFO_3A;
alias _DRIVER_INFO_3A *LPDRIVER_INFO_3A;
//C typedef struct _DRIVER_INFO_3W {
//C DWORD cVersion;
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDriverPath;
//C LPWSTR pDataFile;
//C LPWSTR pConfigFile;
//C LPWSTR pHelpFile;
//C LPWSTR pDependentFiles;
//C LPWSTR pMonitorName;
//C LPWSTR pDefaultDataType;
//C } DRIVER_INFO_3W,*PDRIVER_INFO_3W,*LPDRIVER_INFO_3W;
struct _DRIVER_INFO_3W
{
DWORD cVersion;
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDriverPath;
LPWSTR pDataFile;
LPWSTR pConfigFile;
LPWSTR pHelpFile;
LPWSTR pDependentFiles;
LPWSTR pMonitorName;
LPWSTR pDefaultDataType;
}
alias _DRIVER_INFO_3W DRIVER_INFO_3W;
alias _DRIVER_INFO_3W *PDRIVER_INFO_3W;
alias _DRIVER_INFO_3W *LPDRIVER_INFO_3W;
//C typedef DRIVER_INFO_3A DRIVER_INFO_3;
alias DRIVER_INFO_3A DRIVER_INFO_3;
//C typedef PDRIVER_INFO_3A PDRIVER_INFO_3;
alias PDRIVER_INFO_3A PDRIVER_INFO_3;
//C typedef LPDRIVER_INFO_3A LPDRIVER_INFO_3;
alias LPDRIVER_INFO_3A LPDRIVER_INFO_3;
//C typedef struct _DRIVER_INFO_4A {
//C DWORD cVersion;
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDriverPath;
//C LPSTR pDataFile;
//C LPSTR pConfigFile;
//C LPSTR pHelpFile;
//C LPSTR pDependentFiles;
//C LPSTR pMonitorName;
//C LPSTR pDefaultDataType;
//C LPSTR pszzPreviousNames;
//C } DRIVER_INFO_4A,*PDRIVER_INFO_4A,*LPDRIVER_INFO_4A;
struct _DRIVER_INFO_4A
{
DWORD cVersion;
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDriverPath;
LPSTR pDataFile;
LPSTR pConfigFile;
LPSTR pHelpFile;
LPSTR pDependentFiles;
LPSTR pMonitorName;
LPSTR pDefaultDataType;
LPSTR pszzPreviousNames;
}
alias _DRIVER_INFO_4A DRIVER_INFO_4A;
alias _DRIVER_INFO_4A *PDRIVER_INFO_4A;
alias _DRIVER_INFO_4A *LPDRIVER_INFO_4A;
//C typedef struct _DRIVER_INFO_4W {
//C DWORD cVersion;
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDriverPath;
//C LPWSTR pDataFile;
//C LPWSTR pConfigFile;
//C LPWSTR pHelpFile;
//C LPWSTR pDependentFiles;
//C LPWSTR pMonitorName;
//C LPWSTR pDefaultDataType;
//C LPWSTR pszzPreviousNames;
//C } DRIVER_INFO_4W,*PDRIVER_INFO_4W,*LPDRIVER_INFO_4W;
struct _DRIVER_INFO_4W
{
DWORD cVersion;
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDriverPath;
LPWSTR pDataFile;
LPWSTR pConfigFile;
LPWSTR pHelpFile;
LPWSTR pDependentFiles;
LPWSTR pMonitorName;
LPWSTR pDefaultDataType;
LPWSTR pszzPreviousNames;
}
alias _DRIVER_INFO_4W DRIVER_INFO_4W;
alias _DRIVER_INFO_4W *PDRIVER_INFO_4W;
alias _DRIVER_INFO_4W *LPDRIVER_INFO_4W;
//C typedef DRIVER_INFO_4A DRIVER_INFO_4;
alias DRIVER_INFO_4A DRIVER_INFO_4;
//C typedef PDRIVER_INFO_4A PDRIVER_INFO_4;
alias PDRIVER_INFO_4A PDRIVER_INFO_4;
//C typedef LPDRIVER_INFO_4A LPDRIVER_INFO_4;
alias LPDRIVER_INFO_4A LPDRIVER_INFO_4;
//C typedef struct _DRIVER_INFO_5A {
//C DWORD cVersion;
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDriverPath;
//C LPSTR pDataFile;
//C LPSTR pConfigFile;
//C DWORD dwDriverAttributes;
//C DWORD dwConfigVersion;
//C DWORD dwDriverVersion;
//C } DRIVER_INFO_5A,*PDRIVER_INFO_5A,*LPDRIVER_INFO_5A;
struct _DRIVER_INFO_5A
{
DWORD cVersion;
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDriverPath;
LPSTR pDataFile;
LPSTR pConfigFile;
DWORD dwDriverAttributes;
DWORD dwConfigVersion;
DWORD dwDriverVersion;
}
alias _DRIVER_INFO_5A DRIVER_INFO_5A;
alias _DRIVER_INFO_5A *PDRIVER_INFO_5A;
alias _DRIVER_INFO_5A *LPDRIVER_INFO_5A;
//C typedef struct _DRIVER_INFO_5W {
//C DWORD cVersion;
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDriverPath;
//C LPWSTR pDataFile;
//C LPWSTR pConfigFile;
//C DWORD dwDriverAttributes;
//C DWORD dwConfigVersion;
//C DWORD dwDriverVersion;
//C } DRIVER_INFO_5W,*PDRIVER_INFO_5W,*LPDRIVER_INFO_5W;
struct _DRIVER_INFO_5W
{
DWORD cVersion;
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDriverPath;
LPWSTR pDataFile;
LPWSTR pConfigFile;
DWORD dwDriverAttributes;
DWORD dwConfigVersion;
DWORD dwDriverVersion;
}
alias _DRIVER_INFO_5W DRIVER_INFO_5W;
alias _DRIVER_INFO_5W *PDRIVER_INFO_5W;
alias _DRIVER_INFO_5W *LPDRIVER_INFO_5W;
//C typedef DRIVER_INFO_5A DRIVER_INFO_5;
alias DRIVER_INFO_5A DRIVER_INFO_5;
//C typedef PDRIVER_INFO_5A PDRIVER_INFO_5;
alias PDRIVER_INFO_5A PDRIVER_INFO_5;
//C typedef LPDRIVER_INFO_5A LPDRIVER_INFO_5;
alias LPDRIVER_INFO_5A LPDRIVER_INFO_5;
//C typedef struct _DRIVER_INFO_6A {
//C DWORD cVersion;
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDriverPath;
//C LPSTR pDataFile;
//C LPSTR pConfigFile;
//C LPSTR pHelpFile;
//C LPSTR pDependentFiles;
//C LPSTR pMonitorName;
//C LPSTR pDefaultDataType;
//C LPSTR pszzPreviousNames;
//C FILETIME ftDriverDate;
//C DWORDLONG dwlDriverVersion;
//C LPSTR pszMfgName;
//C LPSTR pszOEMUrl;
//C LPSTR pszHardwareID;
//C LPSTR pszProvider;
//C } DRIVER_INFO_6A,*PDRIVER_INFO_6A,*LPDRIVER_INFO_6A;
struct _DRIVER_INFO_6A
{
DWORD cVersion;
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDriverPath;
LPSTR pDataFile;
LPSTR pConfigFile;
LPSTR pHelpFile;
LPSTR pDependentFiles;
LPSTR pMonitorName;
LPSTR pDefaultDataType;
LPSTR pszzPreviousNames;
FILETIME ftDriverDate;
DWORDLONG dwlDriverVersion;
LPSTR pszMfgName;
LPSTR pszOEMUrl;
LPSTR pszHardwareID;
LPSTR pszProvider;
}
alias _DRIVER_INFO_6A DRIVER_INFO_6A;
alias _DRIVER_INFO_6A *PDRIVER_INFO_6A;
alias _DRIVER_INFO_6A *LPDRIVER_INFO_6A;
//C typedef struct _DRIVER_INFO_6W {
//C DWORD cVersion;
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDriverPath;
//C LPWSTR pDataFile;
//C LPWSTR pConfigFile;
//C LPWSTR pHelpFile;
//C LPWSTR pDependentFiles;
//C LPWSTR pMonitorName;
//C LPWSTR pDefaultDataType;
//C LPWSTR pszzPreviousNames;
//C FILETIME ftDriverDate;
//C DWORDLONG dwlDriverVersion;
//C LPWSTR pszMfgName;
//C LPWSTR pszOEMUrl;
//C LPWSTR pszHardwareID;
//C LPWSTR pszProvider;
//C } DRIVER_INFO_6W,*PDRIVER_INFO_6W,*LPDRIVER_INFO_6W;
struct _DRIVER_INFO_6W
{
DWORD cVersion;
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDriverPath;
LPWSTR pDataFile;
LPWSTR pConfigFile;
LPWSTR pHelpFile;
LPWSTR pDependentFiles;
LPWSTR pMonitorName;
LPWSTR pDefaultDataType;
LPWSTR pszzPreviousNames;
FILETIME ftDriverDate;
DWORDLONG dwlDriverVersion;
LPWSTR pszMfgName;
LPWSTR pszOEMUrl;
LPWSTR pszHardwareID;
LPWSTR pszProvider;
}
alias _DRIVER_INFO_6W DRIVER_INFO_6W;
alias _DRIVER_INFO_6W *PDRIVER_INFO_6W;
alias _DRIVER_INFO_6W *LPDRIVER_INFO_6W;
//C typedef DRIVER_INFO_6A DRIVER_INFO_6;
alias DRIVER_INFO_6A DRIVER_INFO_6;
//C typedef PDRIVER_INFO_6A PDRIVER_INFO_6;
alias PDRIVER_INFO_6A PDRIVER_INFO_6;
//C typedef LPDRIVER_INFO_6A LPDRIVER_INFO_6;
alias LPDRIVER_INFO_6A LPDRIVER_INFO_6;
//C typedef struct _DOC_INFO_1A {
//C LPSTR pDocName;
//C LPSTR pOutputFile;
//C LPSTR pDatatype;
//C } DOC_INFO_1A,*PDOC_INFO_1A,*LPDOC_INFO_1A;
struct _DOC_INFO_1A
{
LPSTR pDocName;
LPSTR pOutputFile;
LPSTR pDatatype;
}
alias _DOC_INFO_1A DOC_INFO_1A;
alias _DOC_INFO_1A *PDOC_INFO_1A;
alias _DOC_INFO_1A *LPDOC_INFO_1A;
//C typedef struct _DOC_INFO_1W {
//C LPWSTR pDocName;
//C LPWSTR pOutputFile;
//C LPWSTR pDatatype;
//C } DOC_INFO_1W,*PDOC_INFO_1W,*LPDOC_INFO_1W;
struct _DOC_INFO_1W
{
LPWSTR pDocName;
LPWSTR pOutputFile;
LPWSTR pDatatype;
}
alias _DOC_INFO_1W DOC_INFO_1W;
alias _DOC_INFO_1W *PDOC_INFO_1W;
alias _DOC_INFO_1W *LPDOC_INFO_1W;
//C typedef DOC_INFO_1A DOC_INFO_1;
alias DOC_INFO_1A DOC_INFO_1;
//C typedef PDOC_INFO_1A PDOC_INFO_1;
alias PDOC_INFO_1A PDOC_INFO_1;
//C typedef LPDOC_INFO_1A LPDOC_INFO_1;
alias LPDOC_INFO_1A LPDOC_INFO_1;
//C typedef struct _FORM_INFO_1A {
//C DWORD Flags;
//C LPSTR pName;
//C SIZEL Size;
//C RECTL ImageableArea;
//C } FORM_INFO_1A,*PFORM_INFO_1A,*LPFORM_INFO_1A;
struct _FORM_INFO_1A
{
DWORD Flags;
LPSTR pName;
SIZEL Size;
RECTL ImageableArea;
}
alias _FORM_INFO_1A FORM_INFO_1A;
alias _FORM_INFO_1A *PFORM_INFO_1A;
alias _FORM_INFO_1A *LPFORM_INFO_1A;
//C typedef struct _FORM_INFO_1W {
//C DWORD Flags;
//C LPWSTR pName;
//C SIZEL Size;
//C RECTL ImageableArea;
//C } FORM_INFO_1W,*PFORM_INFO_1W,*LPFORM_INFO_1W;
struct _FORM_INFO_1W
{
DWORD Flags;
LPWSTR pName;
SIZEL Size;
RECTL ImageableArea;
}
alias _FORM_INFO_1W FORM_INFO_1W;
alias _FORM_INFO_1W *PFORM_INFO_1W;
alias _FORM_INFO_1W *LPFORM_INFO_1W;
//C typedef FORM_INFO_1A FORM_INFO_1;
alias FORM_INFO_1A FORM_INFO_1;
//C typedef PFORM_INFO_1A PFORM_INFO_1;
alias PFORM_INFO_1A PFORM_INFO_1;
//C typedef LPFORM_INFO_1A LPFORM_INFO_1;
alias LPFORM_INFO_1A LPFORM_INFO_1;
//C typedef struct _DOC_INFO_2A {
//C LPSTR pDocName;
//C LPSTR pOutputFile;
//C LPSTR pDatatype;
//C DWORD dwMode;
//C DWORD JobId;
//C } DOC_INFO_2A,*PDOC_INFO_2A,*LPDOC_INFO_2A;
struct _DOC_INFO_2A
{
LPSTR pDocName;
LPSTR pOutputFile;
LPSTR pDatatype;
DWORD dwMode;
DWORD JobId;
}
alias _DOC_INFO_2A DOC_INFO_2A;
alias _DOC_INFO_2A *PDOC_INFO_2A;
alias _DOC_INFO_2A *LPDOC_INFO_2A;
//C typedef struct _DOC_INFO_2W {
//C LPWSTR pDocName;
//C LPWSTR pOutputFile;
//C LPWSTR pDatatype;
//C DWORD dwMode;
//C DWORD JobId;
//C } DOC_INFO_2W,*PDOC_INFO_2W,*LPDOC_INFO_2W;
struct _DOC_INFO_2W
{
LPWSTR pDocName;
LPWSTR pOutputFile;
LPWSTR pDatatype;
DWORD dwMode;
DWORD JobId;
}
alias _DOC_INFO_2W DOC_INFO_2W;
alias _DOC_INFO_2W *PDOC_INFO_2W;
alias _DOC_INFO_2W *LPDOC_INFO_2W;
//C typedef DOC_INFO_2A DOC_INFO_2;
alias DOC_INFO_2A DOC_INFO_2;
//C typedef PDOC_INFO_2A PDOC_INFO_2;
alias PDOC_INFO_2A PDOC_INFO_2;
//C typedef LPDOC_INFO_2A LPDOC_INFO_2;
alias LPDOC_INFO_2A LPDOC_INFO_2;
//C typedef struct _DOC_INFO_3A {
//C LPSTR pDocName;
//C LPSTR pOutputFile;
//C LPSTR pDatatype;
//C DWORD dwFlags;
//C } DOC_INFO_3A,*PDOC_INFO_3A,*LPDOC_INFO_3A;
struct _DOC_INFO_3A
{
LPSTR pDocName;
LPSTR pOutputFile;
LPSTR pDatatype;
DWORD dwFlags;
}
alias _DOC_INFO_3A DOC_INFO_3A;
alias _DOC_INFO_3A *PDOC_INFO_3A;
alias _DOC_INFO_3A *LPDOC_INFO_3A;
//C typedef struct _DOC_INFO_3W {
//C LPWSTR pDocName;
//C LPWSTR pOutputFile;
//C LPWSTR pDatatype;
//C DWORD dwFlags;
//C } DOC_INFO_3W,*PDOC_INFO_3W,*LPDOC_INFO_3W;
struct _DOC_INFO_3W
{
LPWSTR pDocName;
LPWSTR pOutputFile;
LPWSTR pDatatype;
DWORD dwFlags;
}
alias _DOC_INFO_3W DOC_INFO_3W;
alias _DOC_INFO_3W *PDOC_INFO_3W;
alias _DOC_INFO_3W *LPDOC_INFO_3W;
//C typedef DOC_INFO_3A DOC_INFO_3;
alias DOC_INFO_3A DOC_INFO_3;
//C typedef PDOC_INFO_3A PDOC_INFO_3;
alias PDOC_INFO_3A PDOC_INFO_3;
//C typedef LPDOC_INFO_3A LPDOC_INFO_3;
alias LPDOC_INFO_3A LPDOC_INFO_3;
//C typedef struct _PRINTPROCESSOR_INFO_1A {
//C LPSTR pName;
//C } PRINTPROCESSOR_INFO_1A,*PPRINTPROCESSOR_INFO_1A,*LPPRINTPROCESSOR_INFO_1A;
struct _PRINTPROCESSOR_INFO_1A
{
LPSTR pName;
}
alias _PRINTPROCESSOR_INFO_1A PRINTPROCESSOR_INFO_1A;
alias _PRINTPROCESSOR_INFO_1A *PPRINTPROCESSOR_INFO_1A;
alias _PRINTPROCESSOR_INFO_1A *LPPRINTPROCESSOR_INFO_1A;
//C typedef struct _PRINTPROCESSOR_INFO_1W {
//C LPWSTR pName;
//C } PRINTPROCESSOR_INFO_1W,*PPRINTPROCESSOR_INFO_1W,*LPPRINTPROCESSOR_INFO_1W;
struct _PRINTPROCESSOR_INFO_1W
{
LPWSTR pName;
}
alias _PRINTPROCESSOR_INFO_1W PRINTPROCESSOR_INFO_1W;
alias _PRINTPROCESSOR_INFO_1W *PPRINTPROCESSOR_INFO_1W;
alias _PRINTPROCESSOR_INFO_1W *LPPRINTPROCESSOR_INFO_1W;
//C typedef PRINTPROCESSOR_INFO_1A PRINTPROCESSOR_INFO_1;
alias PRINTPROCESSOR_INFO_1A PRINTPROCESSOR_INFO_1;
//C typedef PPRINTPROCESSOR_INFO_1A PPRINTPROCESSOR_INFO_1;
alias PPRINTPROCESSOR_INFO_1A PPRINTPROCESSOR_INFO_1;
//C typedef LPPRINTPROCESSOR_INFO_1A LPPRINTPROCESSOR_INFO_1;
alias LPPRINTPROCESSOR_INFO_1A LPPRINTPROCESSOR_INFO_1;
//C typedef struct _PRINTPROCESSOR_CAPS_1 {
//C DWORD dwLevel;
//C DWORD dwNupOptions;
//C DWORD dwPageOrderFlags;
//C DWORD dwNumberOfCopies;
//C } PRINTPROCESSOR_CAPS_1,*PPRINTPROCESSOR_CAPS_1;
struct _PRINTPROCESSOR_CAPS_1
{
DWORD dwLevel;
DWORD dwNupOptions;
DWORD dwPageOrderFlags;
DWORD dwNumberOfCopies;
}
alias _PRINTPROCESSOR_CAPS_1 PRINTPROCESSOR_CAPS_1;
alias _PRINTPROCESSOR_CAPS_1 *PPRINTPROCESSOR_CAPS_1;
//C typedef struct _PORT_INFO_1A {
//C LPSTR pName;
//C } PORT_INFO_1A,*PPORT_INFO_1A,*LPPORT_INFO_1A;
struct _PORT_INFO_1A
{
LPSTR pName;
}
alias _PORT_INFO_1A PORT_INFO_1A;
alias _PORT_INFO_1A *PPORT_INFO_1A;
alias _PORT_INFO_1A *LPPORT_INFO_1A;
//C typedef struct _PORT_INFO_1W {
//C LPWSTR pName;
//C } PORT_INFO_1W,*PPORT_INFO_1W,*LPPORT_INFO_1W;
struct _PORT_INFO_1W
{
LPWSTR pName;
}
alias _PORT_INFO_1W PORT_INFO_1W;
alias _PORT_INFO_1W *PPORT_INFO_1W;
alias _PORT_INFO_1W *LPPORT_INFO_1W;
//C typedef PORT_INFO_1A PORT_INFO_1;
alias PORT_INFO_1A PORT_INFO_1;
//C typedef PPORT_INFO_1A PPORT_INFO_1;
alias PPORT_INFO_1A PPORT_INFO_1;
//C typedef LPPORT_INFO_1A LPPORT_INFO_1;
alias LPPORT_INFO_1A LPPORT_INFO_1;
//C typedef struct _PORT_INFO_2A {
//C LPSTR pPortName;
//C LPSTR pMonitorName;
//C LPSTR pDescription;
//C DWORD fPortType;
//C DWORD Reserved;
//C } PORT_INFO_2A,*PPORT_INFO_2A,*LPPORT_INFO_2A;
struct _PORT_INFO_2A
{
LPSTR pPortName;
LPSTR pMonitorName;
LPSTR pDescription;
DWORD fPortType;
DWORD Reserved;
}
alias _PORT_INFO_2A PORT_INFO_2A;
alias _PORT_INFO_2A *PPORT_INFO_2A;
alias _PORT_INFO_2A *LPPORT_INFO_2A;
//C typedef struct _PORT_INFO_2W {
//C LPWSTR pPortName;
//C LPWSTR pMonitorName;
//C LPWSTR pDescription;
//C DWORD fPortType;
//C DWORD Reserved;
//C } PORT_INFO_2W,*PPORT_INFO_2W,*LPPORT_INFO_2W;
struct _PORT_INFO_2W
{
LPWSTR pPortName;
LPWSTR pMonitorName;
LPWSTR pDescription;
DWORD fPortType;
DWORD Reserved;
}
alias _PORT_INFO_2W PORT_INFO_2W;
alias _PORT_INFO_2W *PPORT_INFO_2W;
alias _PORT_INFO_2W *LPPORT_INFO_2W;
//C typedef PORT_INFO_2A PORT_INFO_2;
alias PORT_INFO_2A PORT_INFO_2;
//C typedef PPORT_INFO_2A PPORT_INFO_2;
alias PPORT_INFO_2A PPORT_INFO_2;
//C typedef LPPORT_INFO_2A LPPORT_INFO_2;
alias LPPORT_INFO_2A LPPORT_INFO_2;
//C typedef struct _PORT_INFO_3A {
//C DWORD dwStatus;
//C LPSTR pszStatus;
//C DWORD dwSeverity;
//C } PORT_INFO_3A,*PPORT_INFO_3A,*LPPORT_INFO_3A;
struct _PORT_INFO_3A
{
DWORD dwStatus;
LPSTR pszStatus;
DWORD dwSeverity;
}
alias _PORT_INFO_3A PORT_INFO_3A;
alias _PORT_INFO_3A *PPORT_INFO_3A;
alias _PORT_INFO_3A *LPPORT_INFO_3A;
//C typedef struct _PORT_INFO_3W {
//C DWORD dwStatus;
//C LPWSTR pszStatus;
//C DWORD dwSeverity;
//C } PORT_INFO_3W,*PPORT_INFO_3W,*LPPORT_INFO_3W;
struct _PORT_INFO_3W
{
DWORD dwStatus;
LPWSTR pszStatus;
DWORD dwSeverity;
}
alias _PORT_INFO_3W PORT_INFO_3W;
alias _PORT_INFO_3W *PPORT_INFO_3W;
alias _PORT_INFO_3W *LPPORT_INFO_3W;
//C typedef PORT_INFO_3A PORT_INFO_3;
alias PORT_INFO_3A PORT_INFO_3;
//C typedef PPORT_INFO_3A PPORT_INFO_3;
alias PPORT_INFO_3A PPORT_INFO_3;
//C typedef LPPORT_INFO_3A LPPORT_INFO_3;
alias LPPORT_INFO_3A LPPORT_INFO_3;
//C typedef struct _MONITOR_INFO_1A{
//C LPSTR pName;
//C } MONITOR_INFO_1A,*PMONITOR_INFO_1A,*LPMONITOR_INFO_1A;
struct _MONITOR_INFO_1A
{
LPSTR pName;
}
alias _MONITOR_INFO_1A MONITOR_INFO_1A;
alias _MONITOR_INFO_1A *PMONITOR_INFO_1A;
alias _MONITOR_INFO_1A *LPMONITOR_INFO_1A;
//C typedef struct _MONITOR_INFO_1W{
//C LPWSTR pName;
//C } MONITOR_INFO_1W,*PMONITOR_INFO_1W,*LPMONITOR_INFO_1W;
struct _MONITOR_INFO_1W
{
LPWSTR pName;
}
alias _MONITOR_INFO_1W MONITOR_INFO_1W;
alias _MONITOR_INFO_1W *PMONITOR_INFO_1W;
alias _MONITOR_INFO_1W *LPMONITOR_INFO_1W;
//C typedef MONITOR_INFO_1A MONITOR_INFO_1;
alias MONITOR_INFO_1A MONITOR_INFO_1;
//C typedef PMONITOR_INFO_1A PMONITOR_INFO_1;
alias PMONITOR_INFO_1A PMONITOR_INFO_1;
//C typedef LPMONITOR_INFO_1A LPMONITOR_INFO_1;
alias LPMONITOR_INFO_1A LPMONITOR_INFO_1;
//C typedef struct _MONITOR_INFO_2A {
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDLLName;
//C } MONITOR_INFO_2A,*PMONITOR_INFO_2A,*LPMONITOR_INFO_2A;
struct _MONITOR_INFO_2A
{
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDLLName;
}
alias _MONITOR_INFO_2A MONITOR_INFO_2A;
alias _MONITOR_INFO_2A *PMONITOR_INFO_2A;
alias _MONITOR_INFO_2A *LPMONITOR_INFO_2A;
//C typedef struct _MONITOR_INFO_2W {
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDLLName;
//C } MONITOR_INFO_2W,*PMONITOR_INFO_2W,*LPMONITOR_INFO_2W;
struct _MONITOR_INFO_2W
{
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDLLName;
}
alias _MONITOR_INFO_2W MONITOR_INFO_2W;
alias _MONITOR_INFO_2W *PMONITOR_INFO_2W;
alias _MONITOR_INFO_2W *LPMONITOR_INFO_2W;
//C typedef MONITOR_INFO_2A MONITOR_INFO_2;
alias MONITOR_INFO_2A MONITOR_INFO_2;
//C typedef PMONITOR_INFO_2A PMONITOR_INFO_2;
alias PMONITOR_INFO_2A PMONITOR_INFO_2;
//C typedef LPMONITOR_INFO_2A LPMONITOR_INFO_2;
alias LPMONITOR_INFO_2A LPMONITOR_INFO_2;
//C typedef struct _DATATYPES_INFO_1A {
//C LPSTR pName;
//C } DATATYPES_INFO_1A,*PDATATYPES_INFO_1A,*LPDATATYPES_INFO_1A;
struct _DATATYPES_INFO_1A
{
LPSTR pName;
}
alias _DATATYPES_INFO_1A DATATYPES_INFO_1A;
alias _DATATYPES_INFO_1A *PDATATYPES_INFO_1A;
alias _DATATYPES_INFO_1A *LPDATATYPES_INFO_1A;
//C typedef struct _DATATYPES_INFO_1W {
//C LPWSTR pName;
//C } DATATYPES_INFO_1W,*PDATATYPES_INFO_1W,*LPDATATYPES_INFO_1W;
struct _DATATYPES_INFO_1W
{
LPWSTR pName;
}
alias _DATATYPES_INFO_1W DATATYPES_INFO_1W;
alias _DATATYPES_INFO_1W *PDATATYPES_INFO_1W;
alias _DATATYPES_INFO_1W *LPDATATYPES_INFO_1W;
//C typedef DATATYPES_INFO_1A DATATYPES_INFO_1;
alias DATATYPES_INFO_1A DATATYPES_INFO_1;
//C typedef PDATATYPES_INFO_1A PDATATYPES_INFO_1;
alias PDATATYPES_INFO_1A PDATATYPES_INFO_1;
//C typedef LPDATATYPES_INFO_1A LPDATATYPES_INFO_1;
alias LPDATATYPES_INFO_1A LPDATATYPES_INFO_1;
//C typedef struct _PRINTER_DEFAULTSA {
//C LPSTR pDatatype;
//C LPDEVMODEA pDevMode;
//C ACCESS_MASK DesiredAccess;
//C } PRINTER_DEFAULTSA,*PPRINTER_DEFAULTSA,*LPPRINTER_DEFAULTSA;
struct _PRINTER_DEFAULTSA
{
LPSTR pDatatype;
LPDEVMODEA pDevMode;
ACCESS_MASK DesiredAccess;
}
alias _PRINTER_DEFAULTSA PRINTER_DEFAULTSA;
alias _PRINTER_DEFAULTSA *PPRINTER_DEFAULTSA;
alias _PRINTER_DEFAULTSA *LPPRINTER_DEFAULTSA;
//C typedef struct _PRINTER_DEFAULTSW {
//C LPWSTR pDatatype;
//C LPDEVMODEW pDevMode;
//C ACCESS_MASK DesiredAccess;
//C } PRINTER_DEFAULTSW,*PPRINTER_DEFAULTSW,*LPPRINTER_DEFAULTSW;
struct _PRINTER_DEFAULTSW
{
LPWSTR pDatatype;
LPDEVMODEW pDevMode;
ACCESS_MASK DesiredAccess;
}
alias _PRINTER_DEFAULTSW PRINTER_DEFAULTSW;
alias _PRINTER_DEFAULTSW *PPRINTER_DEFAULTSW;
alias _PRINTER_DEFAULTSW *LPPRINTER_DEFAULTSW;
//C typedef PRINTER_DEFAULTSA PRINTER_DEFAULTS;
alias PRINTER_DEFAULTSA PRINTER_DEFAULTS;
//C typedef PPRINTER_DEFAULTSA PPRINTER_DEFAULTS;
alias PPRINTER_DEFAULTSA PPRINTER_DEFAULTS;
//C typedef LPPRINTER_DEFAULTSA LPPRINTER_DEFAULTS;
alias LPPRINTER_DEFAULTSA LPPRINTER_DEFAULTS;
//C typedef struct _PRINTER_ENUM_VALUESA {
//C LPSTR pValueName;
//C DWORD cbValueName;
//C DWORD dwType;
//C LPBYTE pData;
//C DWORD cbData;
//C } PRINTER_ENUM_VALUESA,*PPRINTER_ENUM_VALUESA,*LPPRINTER_ENUM_VALUESA;
struct _PRINTER_ENUM_VALUESA
{
LPSTR pValueName;
DWORD cbValueName;
DWORD dwType;
LPBYTE pData;
DWORD cbData;
}
alias _PRINTER_ENUM_VALUESA PRINTER_ENUM_VALUESA;
alias _PRINTER_ENUM_VALUESA *PPRINTER_ENUM_VALUESA;
alias _PRINTER_ENUM_VALUESA *LPPRINTER_ENUM_VALUESA;
//C typedef struct _PRINTER_ENUM_VALUESW {
//C LPWSTR pValueName;
//C DWORD cbValueName;
//C DWORD dwType;
//C LPBYTE pData;
//C DWORD cbData;
//C } PRINTER_ENUM_VALUESW,*PPRINTER_ENUM_VALUESW,*LPPRINTER_ENUM_VALUESW;
struct _PRINTER_ENUM_VALUESW
{
LPWSTR pValueName;
DWORD cbValueName;
DWORD dwType;
LPBYTE pData;
DWORD cbData;
}
alias _PRINTER_ENUM_VALUESW PRINTER_ENUM_VALUESW;
alias _PRINTER_ENUM_VALUESW *PPRINTER_ENUM_VALUESW;
alias _PRINTER_ENUM_VALUESW *LPPRINTER_ENUM_VALUESW;
//C typedef PRINTER_ENUM_VALUESA PRINTER_ENUM_VALUES;
alias PRINTER_ENUM_VALUESA PRINTER_ENUM_VALUES;
//C typedef PPRINTER_ENUM_VALUESA PPRINTER_ENUM_VALUES;
alias PPRINTER_ENUM_VALUESA PPRINTER_ENUM_VALUES;
//C typedef LPPRINTER_ENUM_VALUESA LPPRINTER_ENUM_VALUES;
alias LPPRINTER_ENUM_VALUESA LPPRINTER_ENUM_VALUES;
//C WINBOOL EnumPrintersA(DWORD Flags,LPSTR Name,DWORD Level,LPBYTE pPrinterEnum,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintersA(DWORD Flags, LPSTR Name, DWORD Level, LPBYTE pPrinterEnum, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumPrintersW(DWORD Flags,LPWSTR Name,DWORD Level,LPBYTE pPrinterEnum,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintersW(DWORD Flags, LPWSTR Name, DWORD Level, LPBYTE pPrinterEnum, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL OpenPrinterA(LPSTR pPrinterName,LPHANDLE phPrinter,LPPRINTER_DEFAULTSA pDefault);
WINBOOL OpenPrinterA(LPSTR pPrinterName, LPHANDLE phPrinter, LPPRINTER_DEFAULTSA pDefault);
//C WINBOOL OpenPrinterW(LPWSTR pPrinterName,LPHANDLE phPrinter,LPPRINTER_DEFAULTSW pDefault);
WINBOOL OpenPrinterW(LPWSTR pPrinterName, LPHANDLE phPrinter, LPPRINTER_DEFAULTSW pDefault);
//C WINBOOL ResetPrinterA(HANDLE hPrinter,LPPRINTER_DEFAULTSA pDefault);
WINBOOL ResetPrinterA(HANDLE hPrinter, LPPRINTER_DEFAULTSA pDefault);
//C WINBOOL ResetPrinterW(HANDLE hPrinter,LPPRINTER_DEFAULTSW pDefault);
WINBOOL ResetPrinterW(HANDLE hPrinter, LPPRINTER_DEFAULTSW pDefault);
//C WINBOOL SetJobA(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD Command);
WINBOOL SetJobA(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob, DWORD Command);
//C WINBOOL SetJobW(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD Command);
WINBOOL SetJobW(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob, DWORD Command);
//C WINBOOL GetJobA(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetJobA(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetJobW(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetJobW(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL EnumJobsA(HANDLE hPrinter,DWORD FirstJob,DWORD NoJobs,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumJobsA(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs, DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumJobsW(HANDLE hPrinter,DWORD FirstJob,DWORD NoJobs,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumJobsW(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs, DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C HANDLE AddPrinterA(LPSTR pName,DWORD Level,LPBYTE pPrinter);
HANDLE AddPrinterA(LPSTR pName, DWORD Level, LPBYTE pPrinter);
//C HANDLE AddPrinterW(LPWSTR pName,DWORD Level,LPBYTE pPrinter);
HANDLE AddPrinterW(LPWSTR pName, DWORD Level, LPBYTE pPrinter);
//C WINBOOL DeletePrinter(HANDLE hPrinter);
WINBOOL DeletePrinter(HANDLE hPrinter);
//C WINBOOL SetPrinterA(HANDLE hPrinter,DWORD Level,LPBYTE pPrinter,DWORD Command);
WINBOOL SetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, DWORD Command);
//C WINBOOL SetPrinterW(HANDLE hPrinter,DWORD Level,LPBYTE pPrinter,DWORD Command);
WINBOOL SetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, DWORD Command);
//C WINBOOL GetPrinterA(HANDLE hPrinter,DWORD Level,LPBYTE pPrinter,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetPrinterW(HANDLE hPrinter,DWORD Level,LPBYTE pPrinter,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL AddPrinterDriverA(LPSTR pName,DWORD Level,LPBYTE pDriverInfo);
WINBOOL AddPrinterDriverA(LPSTR pName, DWORD Level, LPBYTE pDriverInfo);
//C WINBOOL AddPrinterDriverW(LPWSTR pName,DWORD Level,LPBYTE pDriverInfo);
WINBOOL AddPrinterDriverW(LPWSTR pName, DWORD Level, LPBYTE pDriverInfo);
//C WINBOOL AddPrinterDriverExA(LPSTR pName,DWORD Level,LPBYTE pDriverInfo,DWORD dwFileCopyFlags);
WINBOOL AddPrinterDriverExA(LPSTR pName, DWORD Level, LPBYTE pDriverInfo, DWORD dwFileCopyFlags);
//C WINBOOL AddPrinterDriverExW(LPWSTR pName,DWORD Level,LPBYTE pDriverInfo,DWORD dwFileCopyFlags);
WINBOOL AddPrinterDriverExW(LPWSTR pName, DWORD Level, LPBYTE pDriverInfo, DWORD dwFileCopyFlags);
//C WINBOOL EnumPrinterDriversA(LPSTR pName,LPSTR pEnvironment,DWORD Level,LPBYTE pDriverInfo,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrinterDriversA(LPSTR pName, LPSTR pEnvironment, DWORD Level, LPBYTE pDriverInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumPrinterDriversW(LPWSTR pName,LPWSTR pEnvironment,DWORD Level,LPBYTE pDriverInfo,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrinterDriversW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level, LPBYTE pDriverInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL GetPrinterDriverA(HANDLE hPrinter,LPSTR pEnvironment,DWORD Level,LPBYTE pDriverInfo,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterDriverA(HANDLE hPrinter, LPSTR pEnvironment, DWORD Level, LPBYTE pDriverInfo, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetPrinterDriverW(HANDLE hPrinter,LPWSTR pEnvironment,DWORD Level,LPBYTE pDriverInfo,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterDriverW(HANDLE hPrinter, LPWSTR pEnvironment, DWORD Level, LPBYTE pDriverInfo, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetPrinterDriverDirectoryA(LPSTR pName,LPSTR pEnvironment,DWORD Level,LPBYTE pDriverDirectory,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterDriverDirectoryA(LPSTR pName, LPSTR pEnvironment, DWORD Level, LPBYTE pDriverDirectory, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetPrinterDriverDirectoryW(LPWSTR pName,LPWSTR pEnvironment,DWORD Level,LPBYTE pDriverDirectory,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrinterDriverDirectoryW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level, LPBYTE pDriverDirectory, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL DeletePrinterDriverA(LPSTR pName,LPSTR pEnvironment,LPSTR pDriverName);
WINBOOL DeletePrinterDriverA(LPSTR pName, LPSTR pEnvironment, LPSTR pDriverName);
//C WINBOOL DeletePrinterDriverW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pDriverName);
WINBOOL DeletePrinterDriverW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pDriverName);
//C WINBOOL DeletePrinterDriverExA(LPSTR pName,LPSTR pEnvironment,LPSTR pDriverName,DWORD dwDeleteFlag,DWORD dwVersionFlag);
WINBOOL DeletePrinterDriverExA(LPSTR pName, LPSTR pEnvironment, LPSTR pDriverName, DWORD dwDeleteFlag, DWORD dwVersionFlag);
//C WINBOOL DeletePrinterDriverExW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pDriverName,DWORD dwDeleteFlag,DWORD dwVersionFlag);
WINBOOL DeletePrinterDriverExW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pDriverName, DWORD dwDeleteFlag, DWORD dwVersionFlag);
//C WINBOOL AddPrintProcessorA(LPSTR pName,LPSTR pEnvironment,LPSTR pPathName,LPSTR pPrintProcessorName);
WINBOOL AddPrintProcessorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPathName, LPSTR pPrintProcessorName);
//C WINBOOL AddPrintProcessorW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pPathName,LPWSTR pPrintProcessorName);
WINBOOL AddPrintProcessorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPathName, LPWSTR pPrintProcessorName);
//C WINBOOL EnumPrintProcessorsA(LPSTR pName,LPSTR pEnvironment,DWORD Level,LPBYTE pPrintProcessorInfo,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintProcessorsA(LPSTR pName, LPSTR pEnvironment, DWORD Level, LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumPrintProcessorsW(LPWSTR pName,LPWSTR pEnvironment,DWORD Level,LPBYTE pPrintProcessorInfo,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintProcessorsW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level, LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL GetPrintProcessorDirectoryA(LPSTR pName,LPSTR pEnvironment,DWORD Level,LPBYTE pPrintProcessorInfo,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrintProcessorDirectoryA(LPSTR pName, LPSTR pEnvironment, DWORD Level, LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetPrintProcessorDirectoryW(LPWSTR pName,LPWSTR pEnvironment,DWORD Level,LPBYTE pPrintProcessorInfo,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetPrintProcessorDirectoryW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level, LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL EnumPrintProcessorDatatypesA(LPSTR pName,LPSTR pPrintProcessorName,DWORD Level,LPBYTE pDatatypes,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintProcessorDatatypesA(LPSTR pName, LPSTR pPrintProcessorName, DWORD Level, LPBYTE pDatatypes, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumPrintProcessorDatatypesW(LPWSTR pName,LPWSTR pPrintProcessorName,DWORD Level,LPBYTE pDatatypes,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPrintProcessorDatatypesW(LPWSTR pName, LPWSTR pPrintProcessorName, DWORD Level, LPBYTE pDatatypes, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL DeletePrintProcessorA(LPSTR pName,LPSTR pEnvironment,LPSTR pPrintProcessorName);
WINBOOL DeletePrintProcessorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPrintProcessorName);
//C WINBOOL DeletePrintProcessorW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pPrintProcessorName);
WINBOOL DeletePrintProcessorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPrintProcessorName);
//C DWORD StartDocPrinterA(HANDLE hPrinter,DWORD Level,LPBYTE pDocInfo);
DWORD StartDocPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo);
//C DWORD StartDocPrinterW(HANDLE hPrinter,DWORD Level,LPBYTE pDocInfo);
DWORD StartDocPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo);
//C WINBOOL StartPagePrinter(HANDLE hPrinter);
WINBOOL StartPagePrinter(HANDLE hPrinter);
//C WINBOOL WritePrinter(HANDLE hPrinter,LPVOID pBuf,DWORD cbBuf,LPDWORD pcWritten);
WINBOOL WritePrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf, LPDWORD pcWritten);
//C WINBOOL FlushPrinter(HANDLE hPrinter,LPVOID pBuf,DWORD cbBuf,LPDWORD pcWritten,DWORD cSleep);
WINBOOL FlushPrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf, LPDWORD pcWritten, DWORD cSleep);
//C WINBOOL EndPagePrinter(HANDLE hPrinter);
WINBOOL EndPagePrinter(HANDLE hPrinter);
//C WINBOOL AbortPrinter(HANDLE hPrinter);
WINBOOL AbortPrinter(HANDLE hPrinter);
//C WINBOOL ReadPrinter(HANDLE hPrinter,LPVOID pBuf,DWORD cbBuf,LPDWORD pNoBytesRead);
WINBOOL ReadPrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf, LPDWORD pNoBytesRead);
//C WINBOOL EndDocPrinter(HANDLE hPrinter);
WINBOOL EndDocPrinter(HANDLE hPrinter);
//C WINBOOL AddJobA(HANDLE hPrinter,DWORD Level,LPBYTE pData,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL AddJobA(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL AddJobW(HANDLE hPrinter,DWORD Level,LPBYTE pData,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL AddJobW(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL ScheduleJob(HANDLE hPrinter,DWORD JobId);
WINBOOL ScheduleJob(HANDLE hPrinter, DWORD JobId);
//C WINBOOL PrinterProperties(HWND hWnd,HANDLE hPrinter);
WINBOOL PrinterProperties(HWND hWnd, HANDLE hPrinter);
//C LONG DocumentPropertiesA(HWND hWnd,HANDLE hPrinter,LPSTR pDeviceName,PDEVMODEA pDevModeOutput,PDEVMODEA pDevModeInput,DWORD fMode);
LONG DocumentPropertiesA(HWND hWnd, HANDLE hPrinter, LPSTR pDeviceName, PDEVMODEA pDevModeOutput, PDEVMODEA pDevModeInput, DWORD fMode);
//C LONG DocumentPropertiesW(HWND hWnd,HANDLE hPrinter,LPWSTR pDeviceName,PDEVMODEW pDevModeOutput,PDEVMODEW pDevModeInput,DWORD fMode);
LONG DocumentPropertiesW(HWND hWnd, HANDLE hPrinter, LPWSTR pDeviceName, PDEVMODEW pDevModeOutput, PDEVMODEW pDevModeInput, DWORD fMode);
//C LONG AdvancedDocumentPropertiesA(HWND hWnd,HANDLE hPrinter,LPSTR pDeviceName,PDEVMODEA pDevModeOutput,PDEVMODEA pDevModeInput);
LONG AdvancedDocumentPropertiesA(HWND hWnd, HANDLE hPrinter, LPSTR pDeviceName, PDEVMODEA pDevModeOutput, PDEVMODEA pDevModeInput);
//C LONG AdvancedDocumentPropertiesW(HWND hWnd,HANDLE hPrinter,LPWSTR pDeviceName,PDEVMODEW pDevModeOutput,PDEVMODEW pDevModeInput);
LONG AdvancedDocumentPropertiesW(HWND hWnd, HANDLE hPrinter, LPWSTR pDeviceName, PDEVMODEW pDevModeOutput, PDEVMODEW pDevModeInput);
//C LONG ExtDeviceMode(HWND hWnd,HANDLE hInst,LPDEVMODEA pDevModeOutput,LPSTR pDeviceName,LPSTR pPort,LPDEVMODEA pDevModeInput,LPSTR pProfile,DWORD fMode);
LONG ExtDeviceMode(HWND hWnd, HANDLE hInst, LPDEVMODEA pDevModeOutput, LPSTR pDeviceName, LPSTR pPort, LPDEVMODEA pDevModeInput, LPSTR pProfile, DWORD fMode);
//C DWORD GetPrinterDataA(HANDLE hPrinter,LPSTR pValueName,LPDWORD pType,LPBYTE pData,DWORD nSize,LPDWORD pcbNeeded);
DWORD GetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, LPDWORD pType, LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
//C DWORD GetPrinterDataW(HANDLE hPrinter,LPWSTR pValueName,LPDWORD pType,LPBYTE pData,DWORD nSize,LPDWORD pcbNeeded);
DWORD GetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, LPDWORD pType, LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
//C DWORD GetPrinterDataExA(HANDLE hPrinter,LPCSTR pKeyName,LPCSTR pValueName,LPDWORD pType,LPBYTE pData,DWORD nSize,LPDWORD pcbNeeded);
DWORD GetPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, LPCSTR pValueName, LPDWORD pType, LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
//C DWORD GetPrinterDataExW(HANDLE hPrinter,LPCWSTR pKeyName,LPCWSTR pValueName,LPDWORD pType,LPBYTE pData,DWORD nSize,LPDWORD pcbNeeded);
DWORD GetPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName, LPCWSTR pValueName, LPDWORD pType, LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded);
//C DWORD EnumPrinterDataA(HANDLE hPrinter,DWORD dwIndex,LPSTR pValueName,DWORD cbValueName,LPDWORD pcbValueName,LPDWORD pType,LPBYTE pData,DWORD cbData,LPDWORD pcbData);
DWORD EnumPrinterDataA(HANDLE hPrinter, DWORD dwIndex, LPSTR pValueName, DWORD cbValueName, LPDWORD pcbValueName, LPDWORD pType, LPBYTE pData, DWORD cbData, LPDWORD pcbData);
//C DWORD EnumPrinterDataW(HANDLE hPrinter,DWORD dwIndex,LPWSTR pValueName,DWORD cbValueName,LPDWORD pcbValueName,LPDWORD pType,LPBYTE pData,DWORD cbData,LPDWORD pcbData);
DWORD EnumPrinterDataW(HANDLE hPrinter, DWORD dwIndex, LPWSTR pValueName, DWORD cbValueName, LPDWORD pcbValueName, LPDWORD pType, LPBYTE pData, DWORD cbData, LPDWORD pcbData);
//C DWORD EnumPrinterDataExA(HANDLE hPrinter,LPCSTR pKeyName,LPBYTE pEnumValues,DWORD cbEnumValues,LPDWORD pcbEnumValues,LPDWORD pnEnumValues);
DWORD EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, LPBYTE pEnumValues, DWORD cbEnumValues, LPDWORD pcbEnumValues, LPDWORD pnEnumValues);
//C DWORD EnumPrinterDataExW(HANDLE hPrinter,LPCWSTR pKeyName,LPBYTE pEnumValues,DWORD cbEnumValues,LPDWORD pcbEnumValues,LPDWORD pnEnumValues);
DWORD EnumPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName, LPBYTE pEnumValues, DWORD cbEnumValues, LPDWORD pcbEnumValues, LPDWORD pnEnumValues);
//C DWORD EnumPrinterKeyA(HANDLE hPrinter,LPCSTR pKeyName,LPSTR pSubkey,DWORD cbSubkey,LPDWORD pcbSubkey);
DWORD EnumPrinterKeyA(HANDLE hPrinter, LPCSTR pKeyName, LPSTR pSubkey, DWORD cbSubkey, LPDWORD pcbSubkey);
//C DWORD EnumPrinterKeyW(HANDLE hPrinter,LPCWSTR pKeyName,LPWSTR pSubkey,DWORD cbSubkey,LPDWORD pcbSubkey);
DWORD EnumPrinterKeyW(HANDLE hPrinter, LPCWSTR pKeyName, LPWSTR pSubkey, DWORD cbSubkey, LPDWORD pcbSubkey);
//C DWORD SetPrinterDataA(HANDLE hPrinter,LPSTR pValueName,DWORD Type,LPBYTE pData,DWORD cbData);
DWORD SetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, DWORD Type, LPBYTE pData, DWORD cbData);
//C DWORD SetPrinterDataW(HANDLE hPrinter,LPWSTR pValueName,DWORD Type,LPBYTE pData,DWORD cbData);
DWORD SetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, DWORD Type, LPBYTE pData, DWORD cbData);
//C DWORD SetPrinterDataExA(HANDLE hPrinter,LPCSTR pKeyName,LPCSTR pValueName,DWORD Type,LPBYTE pData,DWORD cbData);
DWORD SetPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, LPCSTR pValueName, DWORD Type, LPBYTE pData, DWORD cbData);
//C DWORD SetPrinterDataExW(HANDLE hPrinter,LPCWSTR pKeyName,LPCWSTR pValueName,DWORD Type,LPBYTE pData,DWORD cbData);
DWORD SetPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName, LPCWSTR pValueName, DWORD Type, LPBYTE pData, DWORD cbData);
//C DWORD DeletePrinterDataA(HANDLE hPrinter,LPSTR pValueName);
DWORD DeletePrinterDataA(HANDLE hPrinter, LPSTR pValueName);
//C DWORD DeletePrinterDataW(HANDLE hPrinter,LPWSTR pValueName);
DWORD DeletePrinterDataW(HANDLE hPrinter, LPWSTR pValueName);
//C DWORD DeletePrinterDataExA(HANDLE hPrinter,LPCSTR pKeyName,LPCSTR pValueName);
DWORD DeletePrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, LPCSTR pValueName);
//C DWORD DeletePrinterDataExW(HANDLE hPrinter,LPCWSTR pKeyName,LPCWSTR pValueName);
DWORD DeletePrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName, LPCWSTR pValueName);
//C DWORD DeletePrinterKeyA(HANDLE hPrinter,LPCSTR pKeyName);
DWORD DeletePrinterKeyA(HANDLE hPrinter, LPCSTR pKeyName);
//C DWORD DeletePrinterKeyW(HANDLE hPrinter,LPCWSTR pKeyName);
DWORD DeletePrinterKeyW(HANDLE hPrinter, LPCWSTR pKeyName);
//C typedef struct _PRINTER_NOTIFY_OPTIONS_TYPE {
//C WORD Type;
//C WORD Reserved0;
//C DWORD Reserved1;
//C DWORD Reserved2;
//C DWORD Count;
//C PWORD pFields;
//C } PRINTER_NOTIFY_OPTIONS_TYPE,*PPRINTER_NOTIFY_OPTIONS_TYPE,*LPPRINTER_NOTIFY_OPTIONS_TYPE;
struct _PRINTER_NOTIFY_OPTIONS_TYPE
{
WORD Type;
WORD Reserved0;
DWORD Reserved1;
DWORD Reserved2;
DWORD Count;
PWORD pFields;
}
alias _PRINTER_NOTIFY_OPTIONS_TYPE PRINTER_NOTIFY_OPTIONS_TYPE;
alias _PRINTER_NOTIFY_OPTIONS_TYPE *PPRINTER_NOTIFY_OPTIONS_TYPE;
alias _PRINTER_NOTIFY_OPTIONS_TYPE *LPPRINTER_NOTIFY_OPTIONS_TYPE;
//C typedef struct _PRINTER_NOTIFY_OPTIONS {
//C DWORD Version;
//C DWORD Flags;
//C DWORD Count;
//C PPRINTER_NOTIFY_OPTIONS_TYPE pTypes;
//C } PRINTER_NOTIFY_OPTIONS,*PPRINTER_NOTIFY_OPTIONS,*LPPRINTER_NOTIFY_OPTIONS;
struct _PRINTER_NOTIFY_OPTIONS
{
DWORD Version;
DWORD Flags;
DWORD Count;
PPRINTER_NOTIFY_OPTIONS_TYPE pTypes;
}
alias _PRINTER_NOTIFY_OPTIONS PRINTER_NOTIFY_OPTIONS;
alias _PRINTER_NOTIFY_OPTIONS *PPRINTER_NOTIFY_OPTIONS;
alias _PRINTER_NOTIFY_OPTIONS *LPPRINTER_NOTIFY_OPTIONS;
//C typedef struct _PRINTER_NOTIFY_INFO_DATA {
//C WORD Type;
//C WORD Field;
//C DWORD Reserved;
//C DWORD Id;
//C union {
//C DWORD adwData[2];
//C struct {
//C DWORD cbBuf;
//C LPVOID pBuf;
//C } Data;
struct _N282
{
DWORD cbBuf;
LPVOID pBuf;
}
//C } NotifyData;
union _N281
{
DWORD [2]adwData;
_N282 Data;
}
//C } PRINTER_NOTIFY_INFO_DATA,*PPRINTER_NOTIFY_INFO_DATA,*LPPRINTER_NOTIFY_INFO_DATA;
struct _PRINTER_NOTIFY_INFO_DATA
{
WORD Type;
WORD Field;
DWORD Reserved;
DWORD Id;
_N281 NotifyData;
}
alias _PRINTER_NOTIFY_INFO_DATA PRINTER_NOTIFY_INFO_DATA;
alias _PRINTER_NOTIFY_INFO_DATA *PPRINTER_NOTIFY_INFO_DATA;
alias _PRINTER_NOTIFY_INFO_DATA *LPPRINTER_NOTIFY_INFO_DATA;
//C typedef struct _PRINTER_NOTIFY_INFO {
//C DWORD Version;
//C DWORD Flags;
//C DWORD Count;
//C PRINTER_NOTIFY_INFO_DATA aData[1];
//C } PRINTER_NOTIFY_INFO,*PPRINTER_NOTIFY_INFO,*LPPRINTER_NOTIFY_INFO;
struct _PRINTER_NOTIFY_INFO
{
DWORD Version;
DWORD Flags;
DWORD Count;
PRINTER_NOTIFY_INFO_DATA [1]aData;
}
alias _PRINTER_NOTIFY_INFO PRINTER_NOTIFY_INFO;
alias _PRINTER_NOTIFY_INFO *PPRINTER_NOTIFY_INFO;
alias _PRINTER_NOTIFY_INFO *LPPRINTER_NOTIFY_INFO;
//C typedef struct _BINARY_CONTAINER{
//C DWORD cbBuf;
//C LPBYTE pData;
//C } BINARY_CONTAINER,*PBINARY_CONTAINER;
struct _BINARY_CONTAINER
{
DWORD cbBuf;
LPBYTE pData;
}
alias _BINARY_CONTAINER BINARY_CONTAINER;
alias _BINARY_CONTAINER *PBINARY_CONTAINER;
//C typedef struct _BIDI_DATA{
//C DWORD dwBidiType;
//C union {
//C WINBOOL bData;
//C LONG iData;
//C LPWSTR sData;
//C FLOAT fData;
//C BINARY_CONTAINER biData;
//C } u;
union _N283
{
WINBOOL bData;
LONG iData;
LPWSTR sData;
FLOAT fData;
BINARY_CONTAINER biData;
}
//C } BIDI_DATA,*PBIDI_DATA,*LPBIDI_DATA;
struct _BIDI_DATA
{
DWORD dwBidiType;
_N283 u;
}
alias _BIDI_DATA BIDI_DATA;
alias _BIDI_DATA *PBIDI_DATA;
alias _BIDI_DATA *LPBIDI_DATA;
//C typedef struct _BIDI_REQUEST_DATA{
//C DWORD dwReqNumber;
//C LPWSTR pSchema;
//C BIDI_DATA data;
//C } BIDI_REQUEST_DATA ,*PBIDI_REQUEST_DATA ,*LPBIDI_REQUEST_DATA;
struct _BIDI_REQUEST_DATA
{
DWORD dwReqNumber;
LPWSTR pSchema;
BIDI_DATA data;
}
alias _BIDI_REQUEST_DATA BIDI_REQUEST_DATA;
alias _BIDI_REQUEST_DATA *PBIDI_REQUEST_DATA;
alias _BIDI_REQUEST_DATA *LPBIDI_REQUEST_DATA;
//C typedef struct _BIDI_REQUEST_CONTAINER{
//C DWORD Version;
//C DWORD Flags;
//C DWORD Count;
//C BIDI_REQUEST_DATA aData[1 ];
//C }BIDI_REQUEST_CONTAINER,*PBIDI_REQUEST_CONTAINER,*LPBIDI_REQUEST_CONTAINER;
struct _BIDI_REQUEST_CONTAINER
{
DWORD Version;
DWORD Flags;
DWORD Count;
BIDI_REQUEST_DATA [1]aData;
}
alias _BIDI_REQUEST_CONTAINER BIDI_REQUEST_CONTAINER;
alias _BIDI_REQUEST_CONTAINER *PBIDI_REQUEST_CONTAINER;
alias _BIDI_REQUEST_CONTAINER *LPBIDI_REQUEST_CONTAINER;
//C typedef struct _BIDI_RESPONSE_DATA{
//C DWORD dwResult;
//C DWORD dwReqNumber;
//C LPWSTR pSchema;
//C BIDI_DATA data;
//C } BIDI_RESPONSE_DATA,*PBIDI_RESPONSE_DATA,*LPBIDI_RESPONSE_DATA;
struct _BIDI_RESPONSE_DATA
{
DWORD dwResult;
DWORD dwReqNumber;
LPWSTR pSchema;
BIDI_DATA data;
}
alias _BIDI_RESPONSE_DATA BIDI_RESPONSE_DATA;
alias _BIDI_RESPONSE_DATA *PBIDI_RESPONSE_DATA;
alias _BIDI_RESPONSE_DATA *LPBIDI_RESPONSE_DATA;
//C typedef struct _BIDI_RESPONSE_CONTAINER{
//C DWORD Version;
//C DWORD Flags;
//C DWORD Count;
//C BIDI_RESPONSE_DATA aData[1 ];
//C } BIDI_RESPONSE_CONTAINER,*PBIDI_RESPONSE_CONTAINER,*LPBIDI_RESPONSE_CONTAINER;
struct _BIDI_RESPONSE_CONTAINER
{
DWORD Version;
DWORD Flags;
DWORD Count;
BIDI_RESPONSE_DATA [1]aData;
}
alias _BIDI_RESPONSE_CONTAINER BIDI_RESPONSE_CONTAINER;
alias _BIDI_RESPONSE_CONTAINER *PBIDI_RESPONSE_CONTAINER;
alias _BIDI_RESPONSE_CONTAINER *LPBIDI_RESPONSE_CONTAINER;
//C typedef enum {
//C BIDI_NULL = 0,BIDI_INT = 1,BIDI_FLOAT = 2,BIDI_BOOL = 3,BIDI_STRING = 4,BIDI_TEXT = 5,BIDI_ENUM = 6,BIDI_BLOB = 7
//C } BIDI_TYPE;
enum
{
BIDI_NULL,
BIDI_INT,
BIDI_FLOAT,
BIDI_BOOL,
BIDI_STRING,
BIDI_TEXT,
BIDI_ENUM,
BIDI_BLOB,
}
alias int BIDI_TYPE;
//C DWORD WaitForPrinterChange(HANDLE hPrinter,DWORD Flags);
DWORD WaitForPrinterChange(HANDLE hPrinter, DWORD Flags);
//C HANDLE FindFirstPrinterChangeNotification(HANDLE hPrinter,DWORD fdwFlags,DWORD fdwOptions,LPVOID pPrinterNotifyOptions);
HANDLE FindFirstPrinterChangeNotification(HANDLE hPrinter, DWORD fdwFlags, DWORD fdwOptions, LPVOID pPrinterNotifyOptions);
//C WINBOOL FindNextPrinterChangeNotification(HANDLE hChange,PDWORD pdwChange,LPVOID pPrinterNotifyOptions,LPVOID *ppPrinterNotifyInfo);
WINBOOL FindNextPrinterChangeNotification(HANDLE hChange, PDWORD pdwChange, LPVOID pPrinterNotifyOptions, LPVOID *ppPrinterNotifyInfo);
//C WINBOOL FreePrinterNotifyInfo (PPRINTER_NOTIFY_INFO pPrinterNotifyInfo);
WINBOOL FreePrinterNotifyInfo(PPRINTER_NOTIFY_INFO pPrinterNotifyInfo);
//C WINBOOL FindClosePrinterChangeNotification(HANDLE hChange);
WINBOOL FindClosePrinterChangeNotification(HANDLE hChange);
//C DWORD PrinterMessageBoxA(HANDLE hPrinter,DWORD Error,HWND hWnd,LPSTR pText,LPSTR pCaption,DWORD dwType);
DWORD PrinterMessageBoxA(HANDLE hPrinter, DWORD Error, HWND hWnd, LPSTR pText, LPSTR pCaption, DWORD dwType);
//C DWORD PrinterMessageBoxW(HANDLE hPrinter,DWORD Error,HWND hWnd,LPWSTR pText,LPWSTR pCaption,DWORD dwType);
DWORD PrinterMessageBoxW(HANDLE hPrinter, DWORD Error, HWND hWnd, LPWSTR pText, LPWSTR pCaption, DWORD dwType);
//C WINBOOL ClosePrinter(HANDLE hPrinter);
WINBOOL ClosePrinter(HANDLE hPrinter);
//C WINBOOL AddFormA(HANDLE hPrinter,DWORD Level,LPBYTE pForm);
WINBOOL AddFormA(HANDLE hPrinter, DWORD Level, LPBYTE pForm);
//C WINBOOL AddFormW(HANDLE hPrinter,DWORD Level,LPBYTE pForm);
WINBOOL AddFormW(HANDLE hPrinter, DWORD Level, LPBYTE pForm);
//C WINBOOL DeleteFormA(HANDLE hPrinter,LPSTR pFormName);
WINBOOL DeleteFormA(HANDLE hPrinter, LPSTR pFormName);
//C WINBOOL DeleteFormW(HANDLE hPrinter,LPWSTR pFormName);
WINBOOL DeleteFormW(HANDLE hPrinter, LPWSTR pFormName);
//C WINBOOL GetFormA(HANDLE hPrinter,LPSTR pFormName,DWORD Level,LPBYTE pForm,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level, LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL GetFormW(HANDLE hPrinter,LPWSTR pFormName,DWORD Level,LPBYTE pForm,DWORD cbBuf,LPDWORD pcbNeeded);
WINBOOL GetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level, LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded);
//C WINBOOL SetFormA(HANDLE hPrinter,LPSTR pFormName,DWORD Level,LPBYTE pForm);
WINBOOL SetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level, LPBYTE pForm);
//C WINBOOL SetFormW(HANDLE hPrinter,LPWSTR pFormName,DWORD Level,LPBYTE pForm);
WINBOOL SetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level, LPBYTE pForm);
//C WINBOOL EnumFormsA(HANDLE hPrinter,DWORD Level,LPBYTE pForm,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumFormsA(HANDLE hPrinter, DWORD Level, LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumFormsW(HANDLE hPrinter,DWORD Level,LPBYTE pForm,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumFormsW(HANDLE hPrinter, DWORD Level, LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumMonitorsA(LPSTR pName,DWORD Level,LPBYTE pMonitor,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumMonitorsA(LPSTR pName, DWORD Level, LPBYTE pMonitor, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumMonitorsW(LPWSTR pName,DWORD Level,LPBYTE pMonitor,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumMonitorsW(LPWSTR pName, DWORD Level, LPBYTE pMonitor, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL AddMonitorA(LPSTR pName,DWORD Level,LPBYTE pMonitorInfo);
WINBOOL AddMonitorA(LPSTR pName, DWORD Level, LPBYTE pMonitorInfo);
//C WINBOOL AddMonitorW(LPWSTR pName,DWORD Level,LPBYTE pMonitorInfo);
WINBOOL AddMonitorW(LPWSTR pName, DWORD Level, LPBYTE pMonitorInfo);
//C WINBOOL DeleteMonitorA(LPSTR pName,LPSTR pEnvironment,LPSTR pMonitorName);
WINBOOL DeleteMonitorA(LPSTR pName, LPSTR pEnvironment, LPSTR pMonitorName);
//C WINBOOL DeleteMonitorW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pMonitorName);
WINBOOL DeleteMonitorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pMonitorName);
//C WINBOOL EnumPortsA(LPSTR pName,DWORD Level,LPBYTE pPorts,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPortsA(LPSTR pName, DWORD Level, LPBYTE pPorts, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL EnumPortsW(LPWSTR pName,DWORD Level,LPBYTE pPorts,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
WINBOOL EnumPortsW(LPWSTR pName, DWORD Level, LPBYTE pPorts, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned);
//C WINBOOL AddPortA(LPSTR pName,HWND hWnd,LPSTR pMonitorName);
WINBOOL AddPortA(LPSTR pName, HWND hWnd, LPSTR pMonitorName);
//C WINBOOL AddPortW(LPWSTR pName,HWND hWnd,LPWSTR pMonitorName);
WINBOOL AddPortW(LPWSTR pName, HWND hWnd, LPWSTR pMonitorName);
//C WINBOOL ConfigurePortA(LPSTR pName,HWND hWnd,LPSTR pPortName);
WINBOOL ConfigurePortA(LPSTR pName, HWND hWnd, LPSTR pPortName);
//C WINBOOL ConfigurePortW(LPWSTR pName,HWND hWnd,LPWSTR pPortName);
WINBOOL ConfigurePortW(LPWSTR pName, HWND hWnd, LPWSTR pPortName);
//C WINBOOL DeletePortA(LPSTR pName,HWND hWnd,LPSTR pPortName);
WINBOOL DeletePortA(LPSTR pName, HWND hWnd, LPSTR pPortName);
//C WINBOOL DeletePortW(LPWSTR pName,HWND hWnd,LPWSTR pPortName);
WINBOOL DeletePortW(LPWSTR pName, HWND hWnd, LPWSTR pPortName);
//C WINBOOL XcvDataW(HANDLE hXcv,PCWSTR pszDataName,PBYTE pInputData,DWORD cbInputData,PBYTE pOutputData,DWORD cbOutputData,PDWORD pcbOutputNeeded,PDWORD pdwStatus);
WINBOOL XcvDataW(HANDLE hXcv, PCWSTR pszDataName, PBYTE pInputData, DWORD cbInputData, PBYTE pOutputData, DWORD cbOutputData, PDWORD pcbOutputNeeded, PDWORD pdwStatus);
//C WINBOOL GetDefaultPrinterA(LPSTR pszBuffer,LPDWORD pcchBuffer);
WINBOOL GetDefaultPrinterA(LPSTR pszBuffer, LPDWORD pcchBuffer);
//C WINBOOL GetDefaultPrinterW(LPWSTR pszBuffer,LPDWORD pcchBuffer);
WINBOOL GetDefaultPrinterW(LPWSTR pszBuffer, LPDWORD pcchBuffer);
//C WINBOOL SetDefaultPrinterA(LPCSTR pszPrinter);
WINBOOL SetDefaultPrinterA(LPCSTR pszPrinter);
//C WINBOOL SetDefaultPrinterW(LPCWSTR pszPrinter);
WINBOOL SetDefaultPrinterW(LPCWSTR pszPrinter);
//C WINBOOL SetPortA(LPSTR pName,LPSTR pPortName,DWORD dwLevel,LPBYTE pPortInfo);
WINBOOL SetPortA(LPSTR pName, LPSTR pPortName, DWORD dwLevel, LPBYTE pPortInfo);
//C WINBOOL SetPortW(LPWSTR pName,LPWSTR pPortName,DWORD dwLevel,LPBYTE pPortInfo);
WINBOOL SetPortW(LPWSTR pName, LPWSTR pPortName, DWORD dwLevel, LPBYTE pPortInfo);
//C WINBOOL AddPrinterConnectionA(LPSTR pName);
WINBOOL AddPrinterConnectionA(LPSTR pName);
//C WINBOOL AddPrinterConnectionW(LPWSTR pName);
WINBOOL AddPrinterConnectionW(LPWSTR pName);
//C WINBOOL DeletePrinterConnectionA(LPSTR pName);
WINBOOL DeletePrinterConnectionA(LPSTR pName);
//C WINBOOL DeletePrinterConnectionW(LPWSTR pName);
WINBOOL DeletePrinterConnectionW(LPWSTR pName);
//C HANDLE ConnectToPrinterDlg(HWND hwnd,DWORD Flags);
HANDLE ConnectToPrinterDlg(HWND hwnd, DWORD Flags);
//C typedef struct _PROVIDOR_INFO_1A{
//C LPSTR pName;
//C LPSTR pEnvironment;
//C LPSTR pDLLName;
//C } PROVIDOR_INFO_1A,*PPROVIDOR_INFO_1A,*LPPROVIDOR_INFO_1A;
struct _PROVIDOR_INFO_1A
{
LPSTR pName;
LPSTR pEnvironment;
LPSTR pDLLName;
}
alias _PROVIDOR_INFO_1A PROVIDOR_INFO_1A;
alias _PROVIDOR_INFO_1A *PPROVIDOR_INFO_1A;
alias _PROVIDOR_INFO_1A *LPPROVIDOR_INFO_1A;
//C typedef struct _PROVIDOR_INFO_1W{
//C LPWSTR pName;
//C LPWSTR pEnvironment;
//C LPWSTR pDLLName;
//C } PROVIDOR_INFO_1W,*PPROVIDOR_INFO_1W,*LPPROVIDOR_INFO_1W;
struct _PROVIDOR_INFO_1W
{
LPWSTR pName;
LPWSTR pEnvironment;
LPWSTR pDLLName;
}
alias _PROVIDOR_INFO_1W PROVIDOR_INFO_1W;
alias _PROVIDOR_INFO_1W *PPROVIDOR_INFO_1W;
alias _PROVIDOR_INFO_1W *LPPROVIDOR_INFO_1W;
//C typedef PROVIDOR_INFO_1A PROVIDOR_INFO_1;
alias PROVIDOR_INFO_1A PROVIDOR_INFO_1;
//C typedef PPROVIDOR_INFO_1A PPROVIDOR_INFO_1;
alias PPROVIDOR_INFO_1A PPROVIDOR_INFO_1;
//C typedef LPPROVIDOR_INFO_1A LPPROVIDOR_INFO_1;
alias LPPROVIDOR_INFO_1A LPPROVIDOR_INFO_1;
//C typedef struct _PROVIDOR_INFO_2A{
//C LPSTR pOrder;
//C } PROVIDOR_INFO_2A,*PPROVIDOR_INFO_2A,*LPPROVIDOR_INFO_2A;
struct _PROVIDOR_INFO_2A
{
LPSTR pOrder;
}
alias _PROVIDOR_INFO_2A PROVIDOR_INFO_2A;
alias _PROVIDOR_INFO_2A *PPROVIDOR_INFO_2A;
alias _PROVIDOR_INFO_2A *LPPROVIDOR_INFO_2A;
//C typedef struct _PROVIDOR_INFO_2W{
//C LPWSTR pOrder;
//C } PROVIDOR_INFO_2W,*PPROVIDOR_INFO_2W,*LPPROVIDOR_INFO_2W;
struct _PROVIDOR_INFO_2W
{
LPWSTR pOrder;
}
alias _PROVIDOR_INFO_2W PROVIDOR_INFO_2W;
alias _PROVIDOR_INFO_2W *PPROVIDOR_INFO_2W;
alias _PROVIDOR_INFO_2W *LPPROVIDOR_INFO_2W;
//C typedef PROVIDOR_INFO_2A PROVIDOR_INFO_2;
alias PROVIDOR_INFO_2A PROVIDOR_INFO_2;
//C typedef PPROVIDOR_INFO_2A PPROVIDOR_INFO_2;
alias PPROVIDOR_INFO_2A PPROVIDOR_INFO_2;
//C typedef LPPROVIDOR_INFO_2A LPPROVIDOR_INFO_2;
alias LPPROVIDOR_INFO_2A LPPROVIDOR_INFO_2;
//C WINBOOL AddPrintProvidorA(LPSTR pName,DWORD level,LPBYTE pProvidorInfo);
WINBOOL AddPrintProvidorA(LPSTR pName, DWORD level, LPBYTE pProvidorInfo);
//C WINBOOL AddPrintProvidorW(LPWSTR pName,DWORD level,LPBYTE pProvidorInfo);
WINBOOL AddPrintProvidorW(LPWSTR pName, DWORD level, LPBYTE pProvidorInfo);
//C WINBOOL DeletePrintProvidorA(LPSTR pName,LPSTR pEnvironment,LPSTR pPrintProvidorName);
WINBOOL DeletePrintProvidorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPrintProvidorName);
//C WINBOOL DeletePrintProvidorW(LPWSTR pName,LPWSTR pEnvironment,LPWSTR pPrintProvidorName);
WINBOOL DeletePrintProvidorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPrintProvidorName);
//C WINBOOL IsValidDevmodeA (PDEVMODEA pDevmode,size_t DevmodeSize);
WINBOOL IsValidDevmodeA(PDEVMODEA pDevmode, size_t DevmodeSize);
//C WINBOOL IsValidDevmodeW (PDEVMODEW pDevmode,size_t DevmodeSize);
WINBOOL IsValidDevmodeW(PDEVMODEW pDevmode, size_t DevmodeSize);
//C typedef UINT_PTR ( *LPOFNHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPOFNHOOKPROC;
//C typedef struct tagOFN_NT4A {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCSTR lpstrFilter;
//C LPSTR lpstrCustomFilter;
//C DWORD nMaxCustFilter;
//C DWORD nFilterIndex;
//C LPSTR lpstrFile;
//C DWORD nMaxFile;
//C LPSTR lpstrFileTitle;
//C DWORD nMaxFileTitle;
//C LPCSTR lpstrInitialDir;
//C LPCSTR lpstrTitle;
//C DWORD Flags;
//C WORD nFileOffset;
//C WORD nFileExtension;
//C LPCSTR lpstrDefExt;
//C LPARAM lCustData;
//C LPOFNHOOKPROC lpfnHook;
//C LPCSTR lpTemplateName;
//C } OPENFILENAME_NT4A,*LPOPENFILENAME_NT4A;
struct tagOFN_NT4A
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCSTR lpstrFilter;
LPSTR lpstrCustomFilter;
DWORD nMaxCustFilter;
DWORD nFilterIndex;
LPSTR lpstrFile;
DWORD nMaxFile;
LPSTR lpstrFileTitle;
DWORD nMaxFileTitle;
LPCSTR lpstrInitialDir;
LPCSTR lpstrTitle;
DWORD Flags;
WORD nFileOffset;
WORD nFileExtension;
LPCSTR lpstrDefExt;
LPARAM lCustData;
LPOFNHOOKPROC lpfnHook;
LPCSTR lpTemplateName;
}
alias tagOFN_NT4A OPENFILENAME_NT4A;
alias tagOFN_NT4A *LPOPENFILENAME_NT4A;
//C typedef struct tagOFN_NT4W {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCWSTR lpstrFilter;
//C LPWSTR lpstrCustomFilter;
//C DWORD nMaxCustFilter;
//C DWORD nFilterIndex;
//C LPWSTR lpstrFile;
//C DWORD nMaxFile;
//C LPWSTR lpstrFileTitle;
//C DWORD nMaxFileTitle;
//C LPCWSTR lpstrInitialDir;
//C LPCWSTR lpstrTitle;
//C DWORD Flags;
//C WORD nFileOffset;
//C WORD nFileExtension;
//C LPCWSTR lpstrDefExt;
//C LPARAM lCustData;
//C LPOFNHOOKPROC lpfnHook;
//C LPCWSTR lpTemplateName;
//C } OPENFILENAME_NT4W,*LPOPENFILENAME_NT4W;
struct tagOFN_NT4W
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCWSTR lpstrFilter;
LPWSTR lpstrCustomFilter;
DWORD nMaxCustFilter;
DWORD nFilterIndex;
LPWSTR lpstrFile;
DWORD nMaxFile;
LPWSTR lpstrFileTitle;
DWORD nMaxFileTitle;
LPCWSTR lpstrInitialDir;
LPCWSTR lpstrTitle;
DWORD Flags;
WORD nFileOffset;
WORD nFileExtension;
LPCWSTR lpstrDefExt;
LPARAM lCustData;
LPOFNHOOKPROC lpfnHook;
LPCWSTR lpTemplateName;
}
alias tagOFN_NT4W OPENFILENAME_NT4W;
alias tagOFN_NT4W *LPOPENFILENAME_NT4W;
//C typedef OPENFILENAME_NT4A OPENFILENAME_NT4;
alias OPENFILENAME_NT4A OPENFILENAME_NT4;
//C typedef LPOPENFILENAME_NT4A LPOPENFILENAME_NT4;
alias LPOPENFILENAME_NT4A LPOPENFILENAME_NT4;
//C typedef struct tagOFNA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCSTR lpstrFilter;
//C LPSTR lpstrCustomFilter;
//C DWORD nMaxCustFilter;
//C DWORD nFilterIndex;
//C LPSTR lpstrFile;
//C DWORD nMaxFile;
//C LPSTR lpstrFileTitle;
//C DWORD nMaxFileTitle;
//C LPCSTR lpstrInitialDir;
//C LPCSTR lpstrTitle;
//C DWORD Flags;
//C WORD nFileOffset;
//C WORD nFileExtension;
//C LPCSTR lpstrDefExt;
//C LPARAM lCustData;
//C LPOFNHOOKPROC lpfnHook;
//C LPCSTR lpTemplateName;
//C void *pvReserved;
//C DWORD dwReserved;
//C DWORD FlagsEx;
//C } OPENFILENAMEA,*LPOPENFILENAMEA;
struct tagOFNA
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCSTR lpstrFilter;
LPSTR lpstrCustomFilter;
DWORD nMaxCustFilter;
DWORD nFilterIndex;
LPSTR lpstrFile;
DWORD nMaxFile;
LPSTR lpstrFileTitle;
DWORD nMaxFileTitle;
LPCSTR lpstrInitialDir;
LPCSTR lpstrTitle;
DWORD Flags;
WORD nFileOffset;
WORD nFileExtension;
LPCSTR lpstrDefExt;
LPARAM lCustData;
LPOFNHOOKPROC lpfnHook;
LPCSTR lpTemplateName;
void *pvReserved;
DWORD dwReserved;
DWORD FlagsEx;
}
alias tagOFNA OPENFILENAMEA;
alias tagOFNA *LPOPENFILENAMEA;
//C typedef struct tagOFNW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C LPCWSTR lpstrFilter;
//C LPWSTR lpstrCustomFilter;
//C DWORD nMaxCustFilter;
//C DWORD nFilterIndex;
//C LPWSTR lpstrFile;
//C DWORD nMaxFile;
//C LPWSTR lpstrFileTitle;
//C DWORD nMaxFileTitle;
//C LPCWSTR lpstrInitialDir;
//C LPCWSTR lpstrTitle;
//C DWORD Flags;
//C WORD nFileOffset;
//C WORD nFileExtension;
//C LPCWSTR lpstrDefExt;
//C LPARAM lCustData;
//C LPOFNHOOKPROC lpfnHook;
//C LPCWSTR lpTemplateName;
//C void *pvReserved;
//C DWORD dwReserved;
//C DWORD FlagsEx;
//C } OPENFILENAMEW,*LPOPENFILENAMEW;
struct tagOFNW
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
LPCWSTR lpstrFilter;
LPWSTR lpstrCustomFilter;
DWORD nMaxCustFilter;
DWORD nFilterIndex;
LPWSTR lpstrFile;
DWORD nMaxFile;
LPWSTR lpstrFileTitle;
DWORD nMaxFileTitle;
LPCWSTR lpstrInitialDir;
LPCWSTR lpstrTitle;
DWORD Flags;
WORD nFileOffset;
WORD nFileExtension;
LPCWSTR lpstrDefExt;
LPARAM lCustData;
LPOFNHOOKPROC lpfnHook;
LPCWSTR lpTemplateName;
void *pvReserved;
DWORD dwReserved;
DWORD FlagsEx;
}
alias tagOFNW OPENFILENAMEW;
alias tagOFNW *LPOPENFILENAMEW;
//C typedef OPENFILENAMEA OPENFILENAME;
alias OPENFILENAMEA OPENFILENAME;
//C typedef LPOPENFILENAMEA LPOPENFILENAME;
alias LPOPENFILENAMEA LPOPENFILENAME;
//C WINBOOL GetOpenFileNameA(LPOPENFILENAMEA);
WINBOOL GetOpenFileNameA(LPOPENFILENAMEA );
//C WINBOOL GetOpenFileNameW(LPOPENFILENAMEW);
WINBOOL GetOpenFileNameW(LPOPENFILENAMEW );
//C WINBOOL GetSaveFileNameA(LPOPENFILENAMEA);
WINBOOL GetSaveFileNameA(LPOPENFILENAMEA );
//C WINBOOL GetSaveFileNameW(LPOPENFILENAMEW);
WINBOOL GetSaveFileNameW(LPOPENFILENAMEW );
//C short GetFileTitleA(LPCSTR,LPSTR,WORD);
short GetFileTitleA(LPCSTR , LPSTR , WORD );
//C short GetFileTitleW(LPCWSTR,LPWSTR,WORD);
short GetFileTitleW(LPCWSTR , LPWSTR , WORD );
//C typedef UINT_PTR ( *LPCCHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPCCHOOKPROC;
//C typedef struct _OFNOTIFYA {
//C NMHDR hdr;
//C LPOPENFILENAMEA lpOFN;
//C LPSTR pszFile;
//C } OFNOTIFYA,*LPOFNOTIFYA;
struct _OFNOTIFYA
{
NMHDR hdr;
LPOPENFILENAMEA lpOFN;
LPSTR pszFile;
}
alias _OFNOTIFYA OFNOTIFYA;
alias _OFNOTIFYA *LPOFNOTIFYA;
//C typedef struct _OFNOTIFYW {
//C NMHDR hdr;
//C LPOPENFILENAMEW lpOFN;
//C LPWSTR pszFile;
//C } OFNOTIFYW,*LPOFNOTIFYW;
struct _OFNOTIFYW
{
NMHDR hdr;
LPOPENFILENAMEW lpOFN;
LPWSTR pszFile;
}
alias _OFNOTIFYW OFNOTIFYW;
alias _OFNOTIFYW *LPOFNOTIFYW;
//C typedef OFNOTIFYA OFNOTIFY;
alias OFNOTIFYA OFNOTIFY;
//C typedef LPOFNOTIFYA LPOFNOTIFY;
alias LPOFNOTIFYA LPOFNOTIFY;
//C typedef struct _OFNOTIFYEXA {
//C NMHDR hdr;
//C LPOPENFILENAMEA lpOFN;
//C LPVOID psf;
//C LPVOID pidl;
//C } OFNOTIFYEXA,*LPOFNOTIFYEXA;
struct _OFNOTIFYEXA
{
NMHDR hdr;
LPOPENFILENAMEA lpOFN;
LPVOID psf;
LPVOID pidl;
}
alias _OFNOTIFYEXA OFNOTIFYEXA;
alias _OFNOTIFYEXA *LPOFNOTIFYEXA;
//C typedef struct _OFNOTIFYEXW {
//C NMHDR hdr;
//C LPOPENFILENAMEW lpOFN;
//C LPVOID psf;
//C LPVOID pidl;
//C } OFNOTIFYEXW,*LPOFNOTIFYEXW;
struct _OFNOTIFYEXW
{
NMHDR hdr;
LPOPENFILENAMEW lpOFN;
LPVOID psf;
LPVOID pidl;
}
alias _OFNOTIFYEXW OFNOTIFYEXW;
alias _OFNOTIFYEXW *LPOFNOTIFYEXW;
//C typedef OFNOTIFYEXA OFNOTIFYEX;
alias OFNOTIFYEXA OFNOTIFYEX;
//C typedef LPOFNOTIFYEXA LPOFNOTIFYEX;
alias LPOFNOTIFYEXA LPOFNOTIFYEX;
//C typedef struct tagCHOOSECOLORA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HWND hInstance;
//C COLORREF rgbResult;
//C COLORREF *lpCustColors;
//C DWORD Flags;
//C LPARAM lCustData;
//C LPCCHOOKPROC lpfnHook;
//C LPCSTR lpTemplateName;
//C } CHOOSECOLORA,*LPCHOOSECOLORA;
struct tagCHOOSECOLORA
{
DWORD lStructSize;
HWND hwndOwner;
HWND hInstance;
COLORREF rgbResult;
COLORREF *lpCustColors;
DWORD Flags;
LPARAM lCustData;
LPCCHOOKPROC lpfnHook;
LPCSTR lpTemplateName;
}
alias tagCHOOSECOLORA CHOOSECOLORA;
alias tagCHOOSECOLORA *LPCHOOSECOLORA;
//C typedef struct tagCHOOSECOLORW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HWND hInstance;
//C COLORREF rgbResult;
//C COLORREF *lpCustColors;
//C DWORD Flags;
//C LPARAM lCustData;
//C LPCCHOOKPROC lpfnHook;
//C LPCWSTR lpTemplateName;
//C } CHOOSECOLORW,*LPCHOOSECOLORW;
struct tagCHOOSECOLORW
{
DWORD lStructSize;
HWND hwndOwner;
HWND hInstance;
COLORREF rgbResult;
COLORREF *lpCustColors;
DWORD Flags;
LPARAM lCustData;
LPCCHOOKPROC lpfnHook;
LPCWSTR lpTemplateName;
}
alias tagCHOOSECOLORW CHOOSECOLORW;
alias tagCHOOSECOLORW *LPCHOOSECOLORW;
//C typedef CHOOSECOLORA CHOOSECOLOR;
alias CHOOSECOLORA CHOOSECOLOR;
//C typedef LPCHOOSECOLORA LPCHOOSECOLOR;
alias LPCHOOSECOLORA LPCHOOSECOLOR;
//C WINBOOL ChooseColorA(LPCHOOSECOLORA);
WINBOOL ChooseColorA(LPCHOOSECOLORA );
//C WINBOOL ChooseColorW(LPCHOOSECOLORW);
WINBOOL ChooseColorW(LPCHOOSECOLORW );
//C typedef UINT_PTR ( *LPFRHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPFRHOOKPROC;
//C typedef struct tagFINDREPLACEA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C DWORD Flags;
//C LPSTR lpstrFindWhat;
//C LPSTR lpstrReplaceWith;
//C WORD wFindWhatLen;
//C WORD wReplaceWithLen;
//C LPARAM lCustData;
//C LPFRHOOKPROC lpfnHook;
//C LPCSTR lpTemplateName;
//C } FINDREPLACEA,*LPFINDREPLACEA;
struct tagFINDREPLACEA
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
DWORD Flags;
LPSTR lpstrFindWhat;
LPSTR lpstrReplaceWith;
WORD wFindWhatLen;
WORD wReplaceWithLen;
LPARAM lCustData;
LPFRHOOKPROC lpfnHook;
LPCSTR lpTemplateName;
}
alias tagFINDREPLACEA FINDREPLACEA;
alias tagFINDREPLACEA *LPFINDREPLACEA;
//C typedef struct tagFINDREPLACEW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HINSTANCE hInstance;
//C DWORD Flags;
//C LPWSTR lpstrFindWhat;
//C LPWSTR lpstrReplaceWith;
//C WORD wFindWhatLen;
//C WORD wReplaceWithLen;
//C LPARAM lCustData;
//C LPFRHOOKPROC lpfnHook;
//C LPCWSTR lpTemplateName;
//C } FINDREPLACEW,*LPFINDREPLACEW;
struct tagFINDREPLACEW
{
DWORD lStructSize;
HWND hwndOwner;
HINSTANCE hInstance;
DWORD Flags;
LPWSTR lpstrFindWhat;
LPWSTR lpstrReplaceWith;
WORD wFindWhatLen;
WORD wReplaceWithLen;
LPARAM lCustData;
LPFRHOOKPROC lpfnHook;
LPCWSTR lpTemplateName;
}
alias tagFINDREPLACEW FINDREPLACEW;
alias tagFINDREPLACEW *LPFINDREPLACEW;
//C typedef FINDREPLACEA FINDREPLACE;
alias FINDREPLACEA FINDREPLACE;
//C typedef LPFINDREPLACEA LPFINDREPLACE;
alias LPFINDREPLACEA LPFINDREPLACE;
//C HWND FindTextA(LPFINDREPLACEA);
HWND FindTextA(LPFINDREPLACEA );
//C HWND FindTextW(LPFINDREPLACEW);
HWND FindTextW(LPFINDREPLACEW );
//C HWND ReplaceTextA(LPFINDREPLACEA);
HWND ReplaceTextA(LPFINDREPLACEA );
//C HWND ReplaceTextW(LPFINDREPLACEW);
HWND ReplaceTextW(LPFINDREPLACEW );
//C typedef UINT_PTR ( *LPCFHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPCFHOOKPROC;
//C typedef struct tagCHOOSEFONTA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HDC hDC;
//C LPLOGFONTA lpLogFont;
//C INT iPointSize;
//C DWORD Flags;
//C COLORREF rgbColors;
//C LPARAM lCustData;
//C LPCFHOOKPROC lpfnHook;
//C LPCSTR lpTemplateName;
//C HINSTANCE hInstance;
//C LPSTR lpszStyle;
//C WORD nFontType;
//C WORD ___MISSING_ALIGNMENT__;
//C INT nSizeMin;
//C INT nSizeMax;
//C } CHOOSEFONTA,*LPCHOOSEFONTA;
struct tagCHOOSEFONTA
{
DWORD lStructSize;
HWND hwndOwner;
HDC hDC;
LPLOGFONTA lpLogFont;
INT iPointSize;
DWORD Flags;
COLORREF rgbColors;
LPARAM lCustData;
LPCFHOOKPROC lpfnHook;
LPCSTR lpTemplateName;
HINSTANCE hInstance;
LPSTR lpszStyle;
WORD nFontType;
WORD ___MISSING_ALIGNMENT__;
INT nSizeMin;
INT nSizeMax;
}
alias tagCHOOSEFONTA CHOOSEFONTA;
alias tagCHOOSEFONTA *LPCHOOSEFONTA;
//C typedef struct tagCHOOSEFONTW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HDC hDC;
//C LPLOGFONTW lpLogFont;
//C INT iPointSize;
//C DWORD Flags;
//C COLORREF rgbColors;
//C LPARAM lCustData;
//C LPCFHOOKPROC lpfnHook;
//C LPCWSTR lpTemplateName;
//C HINSTANCE hInstance;
//C LPWSTR lpszStyle;
//C WORD nFontType;
//C WORD ___MISSING_ALIGNMENT__;
//C INT nSizeMin;
//C INT nSizeMax;
//C } CHOOSEFONTW,*LPCHOOSEFONTW;
struct tagCHOOSEFONTW
{
DWORD lStructSize;
HWND hwndOwner;
HDC hDC;
LPLOGFONTW lpLogFont;
INT iPointSize;
DWORD Flags;
COLORREF rgbColors;
LPARAM lCustData;
LPCFHOOKPROC lpfnHook;
LPCWSTR lpTemplateName;
HINSTANCE hInstance;
LPWSTR lpszStyle;
WORD nFontType;
WORD ___MISSING_ALIGNMENT__;
INT nSizeMin;
INT nSizeMax;
}
alias tagCHOOSEFONTW CHOOSEFONTW;
alias tagCHOOSEFONTW *LPCHOOSEFONTW;
//C typedef CHOOSEFONTA CHOOSEFONT;
alias CHOOSEFONTA CHOOSEFONT;
//C typedef LPCHOOSEFONTA LPCHOOSEFONT;
alias LPCHOOSEFONTA LPCHOOSEFONT;
//C WINBOOL ChooseFontA(LPCHOOSEFONTA);
WINBOOL ChooseFontA(LPCHOOSEFONTA );
//C WINBOOL ChooseFontW(LPCHOOSEFONTW);
WINBOOL ChooseFontW(LPCHOOSEFONTW );
//C typedef UINT_PTR ( *LPPRINTHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPPRINTHOOKPROC;
//C typedef UINT_PTR ( *LPSETUPHOOKPROC) (HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPSETUPHOOKPROC;
//C typedef struct tagPDA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C HDC hDC;
//C DWORD Flags;
//C WORD nFromPage;
//C WORD nToPage;
//C WORD nMinPage;
//C WORD nMaxPage;
//C WORD nCopies;
//C HINSTANCE hInstance;
//C LPARAM lCustData;
//C LPPRINTHOOKPROC lpfnPrintHook;
//C LPSETUPHOOKPROC lpfnSetupHook;
//C LPCSTR lpPrintTemplateName;
//C LPCSTR lpSetupTemplateName;
//C HGLOBAL hPrintTemplate;
//C HGLOBAL hSetupTemplate;
//C } PRINTDLGA,*LPPRINTDLGA;
struct tagPDA
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
HDC hDC;
DWORD Flags;
WORD nFromPage;
WORD nToPage;
WORD nMinPage;
WORD nMaxPage;
WORD nCopies;
HINSTANCE hInstance;
LPARAM lCustData;
LPPRINTHOOKPROC lpfnPrintHook;
LPSETUPHOOKPROC lpfnSetupHook;
LPCSTR lpPrintTemplateName;
LPCSTR lpSetupTemplateName;
HGLOBAL hPrintTemplate;
HGLOBAL hSetupTemplate;
}
alias tagPDA PRINTDLGA;
alias tagPDA *LPPRINTDLGA;
//C typedef struct tagPDW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C HDC hDC;
//C DWORD Flags;
//C WORD nFromPage;
//C WORD nToPage;
//C WORD nMinPage;
//C WORD nMaxPage;
//C WORD nCopies;
//C HINSTANCE hInstance;
//C LPARAM lCustData;
//C LPPRINTHOOKPROC lpfnPrintHook;
//C LPSETUPHOOKPROC lpfnSetupHook;
//C LPCWSTR lpPrintTemplateName;
//C LPCWSTR lpSetupTemplateName;
//C HGLOBAL hPrintTemplate;
//C HGLOBAL hSetupTemplate;
//C } PRINTDLGW,*LPPRINTDLGW;
struct tagPDW
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
HDC hDC;
DWORD Flags;
WORD nFromPage;
WORD nToPage;
WORD nMinPage;
WORD nMaxPage;
WORD nCopies;
HINSTANCE hInstance;
LPARAM lCustData;
LPPRINTHOOKPROC lpfnPrintHook;
LPSETUPHOOKPROC lpfnSetupHook;
LPCWSTR lpPrintTemplateName;
LPCWSTR lpSetupTemplateName;
HGLOBAL hPrintTemplate;
HGLOBAL hSetupTemplate;
}
alias tagPDW PRINTDLGW;
alias tagPDW *LPPRINTDLGW;
//C typedef PRINTDLGA PRINTDLG;
alias PRINTDLGA PRINTDLG;
//C typedef LPPRINTDLGA LPPRINTDLG;
alias LPPRINTDLGA LPPRINTDLG;
//C WINBOOL PrintDlgA(LPPRINTDLGA);
WINBOOL PrintDlgA(LPPRINTDLGA );
//C WINBOOL PrintDlgW(LPPRINTDLGW);
WINBOOL PrintDlgW(LPPRINTDLGW );
//C typedef struct IPrintDialogCallback { struct IPrintDialogCallbackVtbl *lpVtbl; } IPrintDialogCallback; typedef struct IPrintDialogCallbackVtbl IPrintDialogCallbackVtbl; struct IPrintDialogCallbackVtbl {
struct IPrintDialogCallback
{
IPrintDialogCallbackVtbl *lpVtbl;
}
//C HRESULT ( *QueryInterface) (IPrintDialogCallback *This,const IID *const riid,LPVOID *ppvObj) ;
//C ULONG ( *AddRef) (IPrintDialogCallback *This) ;
//C ULONG ( *Release) (IPrintDialogCallback *This) ;
//C HRESULT ( *InitDone) (IPrintDialogCallback *This) ;
//C HRESULT ( *SelectionChange) (IPrintDialogCallback *This) ;
//C HRESULT ( *HandleMessage) (IPrintDialogCallback *This,HWND hDlg,UINT uMsg,WPARAM wParam,LPARAM lParam,LRESULT *pResult) ;
//C };
struct IPrintDialogCallbackVtbl
{
HRESULT function(IPrintDialogCallback *This, IID *riid, LPVOID *ppvObj)QueryInterface;
ULONG function(IPrintDialogCallback *This)AddRef;
ULONG function(IPrintDialogCallback *This)Release;
HRESULT function(IPrintDialogCallback *This)InitDone;
HRESULT function(IPrintDialogCallback *This)SelectionChange;
HRESULT function(IPrintDialogCallback *This, HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *pResult)HandleMessage;
}
//C typedef struct IPrintDialogServices { struct IPrintDialogServicesVtbl *lpVtbl; } IPrintDialogServices; typedef struct IPrintDialogServicesVtbl IPrintDialogServicesVtbl; struct IPrintDialogServicesVtbl {
struct IPrintDialogServices
{
IPrintDialogServicesVtbl *lpVtbl;
}
//C HRESULT ( *QueryInterface) (IPrintDialogServices *This,const IID *const riid,LPVOID *ppvObj) ;
//C ULONG ( *AddRef) (IPrintDialogServices *This) ;
//C ULONG ( *Release) (IPrintDialogServices *This) ;
//C HRESULT ( *GetCurrentDevMode) (IPrintDialogServices *This,LPDEVMODE pDevMode,UINT *pcbSize) ;
//C HRESULT ( *GetCurrentPrinterName) (IPrintDialogServices *This,LPTSTR pPrinterName,UINT *pcchSize) ;
//C HRESULT ( *GetCurrentPortName) (IPrintDialogServices *This,LPTSTR pPortName,UINT *pcchSize) ;
//C };
struct IPrintDialogServicesVtbl
{
HRESULT function(IPrintDialogServices *This, IID *riid, LPVOID *ppvObj)QueryInterface;
ULONG function(IPrintDialogServices *This)AddRef;
ULONG function(IPrintDialogServices *This)Release;
HRESULT function(IPrintDialogServices *This, LPDEVMODE pDevMode, UINT *pcbSize)GetCurrentDevMode;
HRESULT function(IPrintDialogServices *This, LPTSTR pPrinterName, UINT *pcchSize)GetCurrentPrinterName;
HRESULT function(IPrintDialogServices *This, LPTSTR pPortName, UINT *pcchSize)GetCurrentPortName;
}
//C typedef struct tagPRINTPAGERANGE {
//C DWORD nFromPage;
//C DWORD nToPage;
//C } PRINTPAGERANGE,*LPPRINTPAGERANGE;
struct tagPRINTPAGERANGE
{
DWORD nFromPage;
DWORD nToPage;
}
alias tagPRINTPAGERANGE PRINTPAGERANGE;
alias tagPRINTPAGERANGE *LPPRINTPAGERANGE;
//C typedef struct tagPDEXA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C HDC hDC;
//C DWORD Flags;
//C DWORD Flags2;
//C DWORD ExclusionFlags;
//C DWORD nPageRanges;
//C DWORD nMaxPageRanges;
//C LPPRINTPAGERANGE lpPageRanges;
//C DWORD nMinPage;
//C DWORD nMaxPage;
//C DWORD nCopies;
//C HINSTANCE hInstance;
//C LPCSTR lpPrintTemplateName;
//C LPUNKNOWN lpCallback;
//C DWORD nPropertyPages;
//C HPROPSHEETPAGE *lphPropertyPages;
//C DWORD nStartPage;
//C DWORD dwResultAction;
//C } PRINTDLGEXA,*LPPRINTDLGEXA;
struct tagPDEXA
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
HDC hDC;
DWORD Flags;
DWORD Flags2;
DWORD ExclusionFlags;
DWORD nPageRanges;
DWORD nMaxPageRanges;
LPPRINTPAGERANGE lpPageRanges;
DWORD nMinPage;
DWORD nMaxPage;
DWORD nCopies;
HINSTANCE hInstance;
LPCSTR lpPrintTemplateName;
LPUNKNOWN lpCallback;
DWORD nPropertyPages;
HPROPSHEETPAGE *lphPropertyPages;
DWORD nStartPage;
DWORD dwResultAction;
}
alias tagPDEXA PRINTDLGEXA;
alias tagPDEXA *LPPRINTDLGEXA;
//C typedef struct tagPDEXW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C HDC hDC;
//C DWORD Flags;
//C DWORD Flags2;
//C DWORD ExclusionFlags;
//C DWORD nPageRanges;
//C DWORD nMaxPageRanges;
//C LPPRINTPAGERANGE lpPageRanges;
//C DWORD nMinPage;
//C DWORD nMaxPage;
//C DWORD nCopies;
//C HINSTANCE hInstance;
//C LPCWSTR lpPrintTemplateName;
//C LPUNKNOWN lpCallback;
//C DWORD nPropertyPages;
//C HPROPSHEETPAGE *lphPropertyPages;
//C DWORD nStartPage;
//C DWORD dwResultAction;
//C } PRINTDLGEXW,*LPPRINTDLGEXW;
struct tagPDEXW
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
HDC hDC;
DWORD Flags;
DWORD Flags2;
DWORD ExclusionFlags;
DWORD nPageRanges;
DWORD nMaxPageRanges;
LPPRINTPAGERANGE lpPageRanges;
DWORD nMinPage;
DWORD nMaxPage;
DWORD nCopies;
HINSTANCE hInstance;
LPCWSTR lpPrintTemplateName;
LPUNKNOWN lpCallback;
DWORD nPropertyPages;
HPROPSHEETPAGE *lphPropertyPages;
DWORD nStartPage;
DWORD dwResultAction;
}
alias tagPDEXW PRINTDLGEXW;
alias tagPDEXW *LPPRINTDLGEXW;
//C typedef PRINTDLGEXA PRINTDLGEX;
alias PRINTDLGEXA PRINTDLGEX;
//C typedef LPPRINTDLGEXA LPPRINTDLGEX;
alias LPPRINTDLGEXA LPPRINTDLGEX;
//C HRESULT PrintDlgExA(LPPRINTDLGEXA);
HRESULT PrintDlgExA(LPPRINTDLGEXA );
//C HRESULT PrintDlgExW(LPPRINTDLGEXW);
HRESULT PrintDlgExW(LPPRINTDLGEXW );
//C typedef struct tagDEVNAMES {
//C WORD wDriverOffset;
//C WORD wDeviceOffset;
//C WORD wOutputOffset;
//C WORD wDefault;
//C } DEVNAMES,*LPDEVNAMES;
struct tagDEVNAMES
{
WORD wDriverOffset;
WORD wDeviceOffset;
WORD wOutputOffset;
WORD wDefault;
}
alias tagDEVNAMES DEVNAMES;
alias tagDEVNAMES *LPDEVNAMES;
//C DWORD CommDlgExtendedError(void);
DWORD CommDlgExtendedError();
//C typedef UINT_PTR ( *LPPAGEPAINTHOOK)(HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPPAGEPAINTHOOK;
//C typedef UINT_PTR ( *LPPAGESETUPHOOK)(HWND,UINT,WPARAM,LPARAM);
alias UINT_PTR function(HWND , UINT , WPARAM , LPARAM )LPPAGESETUPHOOK;
//C typedef struct tagPSDA {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C DWORD Flags;
//C POINT ptPaperSize;
//C RECT rtMinMargin;
//C RECT rtMargin;
//C HINSTANCE hInstance;
//C LPARAM lCustData;
//C LPPAGESETUPHOOK lpfnPageSetupHook;
//C LPPAGEPAINTHOOK lpfnPagePaintHook;
//C LPCSTR lpPageSetupTemplateName;
//C HGLOBAL hPageSetupTemplate;
//C } PAGESETUPDLGA,*LPPAGESETUPDLGA;
struct tagPSDA
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
DWORD Flags;
POINT ptPaperSize;
RECT rtMinMargin;
RECT rtMargin;
HINSTANCE hInstance;
LPARAM lCustData;
LPPAGESETUPHOOK lpfnPageSetupHook;
LPPAGEPAINTHOOK lpfnPagePaintHook;
LPCSTR lpPageSetupTemplateName;
HGLOBAL hPageSetupTemplate;
}
alias tagPSDA PAGESETUPDLGA;
alias tagPSDA *LPPAGESETUPDLGA;
//C typedef struct tagPSDW {
//C DWORD lStructSize;
//C HWND hwndOwner;
//C HGLOBAL hDevMode;
//C HGLOBAL hDevNames;
//C DWORD Flags;
//C POINT ptPaperSize;
//C RECT rtMinMargin;
//C RECT rtMargin;
//C HINSTANCE hInstance;
//C LPARAM lCustData;
//C LPPAGESETUPHOOK lpfnPageSetupHook;
//C LPPAGEPAINTHOOK lpfnPagePaintHook;
//C LPCWSTR lpPageSetupTemplateName;
//C HGLOBAL hPageSetupTemplate;
//C } PAGESETUPDLGW,*LPPAGESETUPDLGW;
struct tagPSDW
{
DWORD lStructSize;
HWND hwndOwner;
HGLOBAL hDevMode;
HGLOBAL hDevNames;
DWORD Flags;
POINT ptPaperSize;
RECT rtMinMargin;
RECT rtMargin;
HINSTANCE hInstance;
LPARAM lCustData;
LPPAGESETUPHOOK lpfnPageSetupHook;
LPPAGEPAINTHOOK lpfnPagePaintHook;
LPCWSTR lpPageSetupTemplateName;
HGLOBAL hPageSetupTemplate;
}
alias tagPSDW PAGESETUPDLGW;
alias tagPSDW *LPPAGESETUPDLGW;
//C typedef PAGESETUPDLGA PAGESETUPDLG;
alias PAGESETUPDLGA PAGESETUPDLG;
//C typedef LPPAGESETUPDLGA LPPAGESETUPDLG;
alias LPPAGESETUPDLGA LPPAGESETUPDLG;
//C WINBOOL PageSetupDlgA(LPPAGESETUPDLGA);
WINBOOL PageSetupDlgA(LPPAGESETUPDLGA );
//C WINBOOL PageSetupDlgW(LPPAGESETUPDLGW);
WINBOOL PageSetupDlgW(LPPAGESETUPDLGW );
//C LPUWSTR uaw_CharUpperW(LPUWSTR String);
LPUWSTR uaw_CharUpperW(LPUWSTR String);
//C int uaw_lstrcmpW(PCUWSTR String1,PCUWSTR String2);
int uaw_lstrcmpW(PCUWSTR String1, PCUWSTR String2);
//C int uaw_lstrcmpiW(PCUWSTR String1,PCUWSTR String2);
int uaw_lstrcmpiW(PCUWSTR String1, PCUWSTR String2);
//C int uaw_lstrlenW(LPCUWSTR String);
int uaw_lstrlenW(LPCUWSTR String);
//C PUWSTR uaw_wcschr(PCUWSTR String,WCHAR Character);
PUWSTR uaw_wcschr(PCUWSTR String, WCHAR Character);
//C PUWSTR uaw_wcscpy(PUWSTR Destination,PCUWSTR Source);
PUWSTR uaw_wcscpy(PUWSTR Destination, PCUWSTR Source);
//C int uaw_wcsicmp(PCUWSTR String1,PCUWSTR String2);
int uaw_wcsicmp(PCUWSTR String1, PCUWSTR String2);
//C size_t uaw_wcslen(PCUWSTR String);
size_t uaw_wcslen(PCUWSTR String);
//C PUWSTR uaw_wcsrchr(PCUWSTR String,WCHAR Character);
PUWSTR uaw_wcsrchr(PCUWSTR String, WCHAR Character);
//C LPUWSTR ua_CharUpperW(LPUWSTR String);
LPUWSTR ua_CharUpperW(LPUWSTR String);
//C int ua_lstrcmpW(LPCUWSTR String1,LPCUWSTR String2);
int ua_lstrcmpW(LPCUWSTR String1, LPCUWSTR String2);
//C int ua_lstrcmpiW(LPCUWSTR String1,LPCUWSTR String2);
int ua_lstrcmpiW(LPCUWSTR String1, LPCUWSTR String2);
//C int ua_lstrlenW(LPCUWSTR String);
int ua_lstrlenW(LPCUWSTR String);
//C typedef WCHAR *PUWSTR_C;
alias WCHAR *PUWSTR_C;
//C PUWSTR_C ua_wcschr(PCUWSTR String,WCHAR Character);
PUWSTR_C ua_wcschr(PCUWSTR String, WCHAR Character);
//C PUWSTR_C ua_wcsrchr(PCUWSTR String,WCHAR Character);
PUWSTR_C ua_wcsrchr(PCUWSTR String, WCHAR Character);
//C PUWSTR ua_wcscpy(PUWSTR Destination,PCUWSTR Source);
PUWSTR ua_wcscpy(PUWSTR Destination, PCUWSTR Source);
//C size_t ua_wcslen(PCUWSTR String);
size_t ua_wcslen(PCUWSTR String);
//C int ua_wcsicmp(LPCUWSTR String1,LPCUWSTR String2);
int ua_wcsicmp(LPCUWSTR String1, LPCUWSTR String2);
//C typedef struct _SERVICE_DESCRIPTIONA {
//C LPSTR lpDescription;
//C } SERVICE_DESCRIPTIONA,*LPSERVICE_DESCRIPTIONA;
struct _SERVICE_DESCRIPTIONA
{
LPSTR lpDescription;
}
alias _SERVICE_DESCRIPTIONA SERVICE_DESCRIPTIONA;
alias _SERVICE_DESCRIPTIONA *LPSERVICE_DESCRIPTIONA;
//C typedef struct _SERVICE_DESCRIPTIONW {
//C LPWSTR lpDescription;
//C } SERVICE_DESCRIPTIONW,*LPSERVICE_DESCRIPTIONW;
struct _SERVICE_DESCRIPTIONW
{
LPWSTR lpDescription;
}
alias _SERVICE_DESCRIPTIONW SERVICE_DESCRIPTIONW;
alias _SERVICE_DESCRIPTIONW *LPSERVICE_DESCRIPTIONW;
//C typedef SERVICE_DESCRIPTIONA SERVICE_DESCRIPTION;
alias SERVICE_DESCRIPTIONA SERVICE_DESCRIPTION;
//C typedef LPSERVICE_DESCRIPTIONA LPSERVICE_DESCRIPTION;
alias LPSERVICE_DESCRIPTIONA LPSERVICE_DESCRIPTION;
//C typedef enum _SC_ACTION_TYPE {
//C SC_ACTION_NONE = 0,SC_ACTION_RESTART = 1,SC_ACTION_REBOOT = 2,SC_ACTION_RUN_COMMAND = 3
//C } SC_ACTION_TYPE;
enum _SC_ACTION_TYPE
{
SC_ACTION_NONE,
SC_ACTION_RESTART,
SC_ACTION_REBOOT,
SC_ACTION_RUN_COMMAND,
}
alias _SC_ACTION_TYPE SC_ACTION_TYPE;
//C typedef struct _SC_ACTION {
//C SC_ACTION_TYPE Type;
//C DWORD Delay;
//C } SC_ACTION,*LPSC_ACTION;
struct _SC_ACTION
{
SC_ACTION_TYPE Type;
DWORD Delay;
}
alias _SC_ACTION SC_ACTION;
alias _SC_ACTION *LPSC_ACTION;
//C typedef struct _SERVICE_FAILURE_ACTIONSA {
//C DWORD dwResetPeriod;
//C LPSTR lpRebootMsg;
//C LPSTR lpCommand;
//C DWORD cActions;
//C SC_ACTION *lpsaActions;
//C } SERVICE_FAILURE_ACTIONSA,*LPSERVICE_FAILURE_ACTIONSA;
struct _SERVICE_FAILURE_ACTIONSA
{
DWORD dwResetPeriod;
LPSTR lpRebootMsg;
LPSTR lpCommand;
DWORD cActions;
SC_ACTION *lpsaActions;
}
alias _SERVICE_FAILURE_ACTIONSA SERVICE_FAILURE_ACTIONSA;
alias _SERVICE_FAILURE_ACTIONSA *LPSERVICE_FAILURE_ACTIONSA;
//C typedef struct _SERVICE_FAILURE_ACTIONSW {
//C DWORD dwResetPeriod;
//C LPWSTR lpRebootMsg;
//C LPWSTR lpCommand;
//C DWORD cActions;
//C SC_ACTION *lpsaActions;
//C } SERVICE_FAILURE_ACTIONSW,*LPSERVICE_FAILURE_ACTIONSW;
struct _SERVICE_FAILURE_ACTIONSW
{
DWORD dwResetPeriod;
LPWSTR lpRebootMsg;
LPWSTR lpCommand;
DWORD cActions;
SC_ACTION *lpsaActions;
}
alias _SERVICE_FAILURE_ACTIONSW SERVICE_FAILURE_ACTIONSW;
alias _SERVICE_FAILURE_ACTIONSW *LPSERVICE_FAILURE_ACTIONSW;
//C typedef SERVICE_FAILURE_ACTIONSA SERVICE_FAILURE_ACTIONS;
alias SERVICE_FAILURE_ACTIONSA SERVICE_FAILURE_ACTIONS;
//C typedef LPSERVICE_FAILURE_ACTIONSA LPSERVICE_FAILURE_ACTIONS;
alias LPSERVICE_FAILURE_ACTIONSA LPSERVICE_FAILURE_ACTIONS;
//C struct SC_HANDLE__ { int unused; }; typedef struct SC_HANDLE__ *SC_HANDLE;
struct SC_HANDLE__
{
int unused;
}
alias SC_HANDLE__ *SC_HANDLE;
//C typedef SC_HANDLE *LPSC_HANDLE;
alias SC_HANDLE *LPSC_HANDLE;
//C struct SERVICE_STATUS_HANDLE__ { int unused; }; typedef struct SERVICE_STATUS_HANDLE__ *SERVICE_STATUS_HANDLE;
struct SERVICE_STATUS_HANDLE__
{
int unused;
}
alias SERVICE_STATUS_HANDLE__ *SERVICE_STATUS_HANDLE;
//C typedef enum _SC_STATUS_TYPE {
//C SC_STATUS_PROCESS_INFO = 0
//C } SC_STATUS_TYPE;
enum _SC_STATUS_TYPE
{
SC_STATUS_PROCESS_INFO,
}
alias _SC_STATUS_TYPE SC_STATUS_TYPE;
//C typedef enum _SC_ENUM_TYPE {
//C SC_ENUM_PROCESS_INFO = 0
//C } SC_ENUM_TYPE;
enum _SC_ENUM_TYPE
{
SC_ENUM_PROCESS_INFO,
}
alias _SC_ENUM_TYPE SC_ENUM_TYPE;
//C typedef struct _SERVICE_STATUS {
//C DWORD dwServiceType;
//C DWORD dwCurrentState;
//C DWORD dwControlsAccepted;
//C DWORD dwWin32ExitCode;
//C DWORD dwServiceSpecificExitCode;
//C DWORD dwCheckPoint;
//C DWORD dwWaitHint;
//C } SERVICE_STATUS,*LPSERVICE_STATUS;
struct _SERVICE_STATUS
{
DWORD dwServiceType;
DWORD dwCurrentState;
DWORD dwControlsAccepted;
DWORD dwWin32ExitCode;
DWORD dwServiceSpecificExitCode;
DWORD dwCheckPoint;
DWORD dwWaitHint;
}
alias _SERVICE_STATUS SERVICE_STATUS;
alias _SERVICE_STATUS *LPSERVICE_STATUS;
//C typedef struct _SERVICE_STATUS_PROCESS {
//C DWORD dwServiceType;
//C DWORD dwCurrentState;
//C DWORD dwControlsAccepted;
//C DWORD dwWin32ExitCode;
//C DWORD dwServiceSpecificExitCode;
//C DWORD dwCheckPoint;
//C DWORD dwWaitHint;
//C DWORD dwProcessId;
//C DWORD dwServiceFlags;
//C } SERVICE_STATUS_PROCESS,*LPSERVICE_STATUS_PROCESS;
struct _SERVICE_STATUS_PROCESS
{
DWORD dwServiceType;
DWORD dwCurrentState;
DWORD dwControlsAccepted;
DWORD dwWin32ExitCode;
DWORD dwServiceSpecificExitCode;
DWORD dwCheckPoint;
DWORD dwWaitHint;
DWORD dwProcessId;
DWORD dwServiceFlags;
}
alias _SERVICE_STATUS_PROCESS SERVICE_STATUS_PROCESS;
alias _SERVICE_STATUS_PROCESS *LPSERVICE_STATUS_PROCESS;
//C typedef struct _ENUM_SERVICE_STATUSA {
//C LPSTR lpServiceName;
//C LPSTR lpDisplayName;
//C SERVICE_STATUS ServiceStatus;
//C } ENUM_SERVICE_STATUSA,*LPENUM_SERVICE_STATUSA;
struct _ENUM_SERVICE_STATUSA
{
LPSTR lpServiceName;
LPSTR lpDisplayName;
SERVICE_STATUS ServiceStatus;
}
alias _ENUM_SERVICE_STATUSA ENUM_SERVICE_STATUSA;
alias _ENUM_SERVICE_STATUSA *LPENUM_SERVICE_STATUSA;
//C typedef struct _ENUM_SERVICE_STATUSW {
//C LPWSTR lpServiceName;
//C LPWSTR lpDisplayName;
//C SERVICE_STATUS ServiceStatus;
//C } ENUM_SERVICE_STATUSW,*LPENUM_SERVICE_STATUSW;
struct _ENUM_SERVICE_STATUSW
{
LPWSTR lpServiceName;
LPWSTR lpDisplayName;
SERVICE_STATUS ServiceStatus;
}
alias _ENUM_SERVICE_STATUSW ENUM_SERVICE_STATUSW;
alias _ENUM_SERVICE_STATUSW *LPENUM_SERVICE_STATUSW;
//C typedef ENUM_SERVICE_STATUSA ENUM_SERVICE_STATUS;
alias ENUM_SERVICE_STATUSA ENUM_SERVICE_STATUS;
//C typedef LPENUM_SERVICE_STATUSA LPENUM_SERVICE_STATUS;
alias LPENUM_SERVICE_STATUSA LPENUM_SERVICE_STATUS;
//C typedef struct _ENUM_SERVICE_STATUS_PROCESSA {
//C LPSTR lpServiceName;
//C LPSTR lpDisplayName;
//C SERVICE_STATUS_PROCESS ServiceStatusProcess;
//C } ENUM_SERVICE_STATUS_PROCESSA,*LPENUM_SERVICE_STATUS_PROCESSA;
struct _ENUM_SERVICE_STATUS_PROCESSA
{
LPSTR lpServiceName;
LPSTR lpDisplayName;
SERVICE_STATUS_PROCESS ServiceStatusProcess;
}
alias _ENUM_SERVICE_STATUS_PROCESSA ENUM_SERVICE_STATUS_PROCESSA;
alias _ENUM_SERVICE_STATUS_PROCESSA *LPENUM_SERVICE_STATUS_PROCESSA;
//C typedef struct _ENUM_SERVICE_STATUS_PROCESSW {
//C LPWSTR lpServiceName;
//C LPWSTR lpDisplayName;
//C SERVICE_STATUS_PROCESS ServiceStatusProcess;
//C } ENUM_SERVICE_STATUS_PROCESSW,*LPENUM_SERVICE_STATUS_PROCESSW;
struct _ENUM_SERVICE_STATUS_PROCESSW
{
LPWSTR lpServiceName;
LPWSTR lpDisplayName;
SERVICE_STATUS_PROCESS ServiceStatusProcess;
}
alias _ENUM_SERVICE_STATUS_PROCESSW ENUM_SERVICE_STATUS_PROCESSW;
alias _ENUM_SERVICE_STATUS_PROCESSW *LPENUM_SERVICE_STATUS_PROCESSW;
//C typedef ENUM_SERVICE_STATUS_PROCESSA ENUM_SERVICE_STATUS_PROCESS;
alias ENUM_SERVICE_STATUS_PROCESSA ENUM_SERVICE_STATUS_PROCESS;
//C typedef LPENUM_SERVICE_STATUS_PROCESSA LPENUM_SERVICE_STATUS_PROCESS;
alias LPENUM_SERVICE_STATUS_PROCESSA LPENUM_SERVICE_STATUS_PROCESS;
//C typedef LPVOID SC_LOCK;
alias LPVOID SC_LOCK;
//C typedef struct _QUERY_SERVICE_LOCK_STATUSA {
//C DWORD fIsLocked;
//C LPSTR lpLockOwner;
//C DWORD dwLockDuration;
//C } QUERY_SERVICE_LOCK_STATUSA,*LPQUERY_SERVICE_LOCK_STATUSA;
struct _QUERY_SERVICE_LOCK_STATUSA
{
DWORD fIsLocked;
LPSTR lpLockOwner;
DWORD dwLockDuration;
}
alias _QUERY_SERVICE_LOCK_STATUSA QUERY_SERVICE_LOCK_STATUSA;
alias _QUERY_SERVICE_LOCK_STATUSA *LPQUERY_SERVICE_LOCK_STATUSA;
//C typedef struct _QUERY_SERVICE_LOCK_STATUSW {
//C DWORD fIsLocked;
//C LPWSTR lpLockOwner;
//C DWORD dwLockDuration;
//C } QUERY_SERVICE_LOCK_STATUSW,*LPQUERY_SERVICE_LOCK_STATUSW;
struct _QUERY_SERVICE_LOCK_STATUSW
{
DWORD fIsLocked;
LPWSTR lpLockOwner;
DWORD dwLockDuration;
}
alias _QUERY_SERVICE_LOCK_STATUSW QUERY_SERVICE_LOCK_STATUSW;
alias _QUERY_SERVICE_LOCK_STATUSW *LPQUERY_SERVICE_LOCK_STATUSW;
//C typedef QUERY_SERVICE_LOCK_STATUSA QUERY_SERVICE_LOCK_STATUS;
alias QUERY_SERVICE_LOCK_STATUSA QUERY_SERVICE_LOCK_STATUS;
//C typedef LPQUERY_SERVICE_LOCK_STATUSA LPQUERY_SERVICE_LOCK_STATUS;
alias LPQUERY_SERVICE_LOCK_STATUSA LPQUERY_SERVICE_LOCK_STATUS;
//C typedef struct _QUERY_SERVICE_CONFIGA {
//C DWORD dwServiceType;
//C DWORD dwStartType;
//C DWORD dwErrorControl;
//C LPSTR lpBinaryPathName;
//C LPSTR lpLoadOrderGroup;
//C DWORD dwTagId;
//C LPSTR lpDependencies;
//C LPSTR lpServiceStartName;
//C LPSTR lpDisplayName;
//C } QUERY_SERVICE_CONFIGA,*LPQUERY_SERVICE_CONFIGA;
struct _QUERY_SERVICE_CONFIGA
{
DWORD dwServiceType;
DWORD dwStartType;
DWORD dwErrorControl;
LPSTR lpBinaryPathName;
LPSTR lpLoadOrderGroup;
DWORD dwTagId;
LPSTR lpDependencies;
LPSTR lpServiceStartName;
LPSTR lpDisplayName;
}
alias _QUERY_SERVICE_CONFIGA QUERY_SERVICE_CONFIGA;
alias _QUERY_SERVICE_CONFIGA *LPQUERY_SERVICE_CONFIGA;
//C typedef struct _QUERY_SERVICE_CONFIGW {
//C DWORD dwServiceType;
//C DWORD dwStartType;
//C DWORD dwErrorControl;
//C LPWSTR lpBinaryPathName;
//C LPWSTR lpLoadOrderGroup;
//C DWORD dwTagId;
//C LPWSTR lpDependencies;
//C LPWSTR lpServiceStartName;
//C LPWSTR lpDisplayName;
//C } QUERY_SERVICE_CONFIGW,*LPQUERY_SERVICE_CONFIGW;
struct _QUERY_SERVICE_CONFIGW
{
DWORD dwServiceType;
DWORD dwStartType;
DWORD dwErrorControl;
LPWSTR lpBinaryPathName;
LPWSTR lpLoadOrderGroup;
DWORD dwTagId;
LPWSTR lpDependencies;
LPWSTR lpServiceStartName;
LPWSTR lpDisplayName;
}
alias _QUERY_SERVICE_CONFIGW QUERY_SERVICE_CONFIGW;
alias _QUERY_SERVICE_CONFIGW *LPQUERY_SERVICE_CONFIGW;
//C typedef QUERY_SERVICE_CONFIGA QUERY_SERVICE_CONFIG;
alias QUERY_SERVICE_CONFIGA QUERY_SERVICE_CONFIG;
//C typedef LPQUERY_SERVICE_CONFIGA LPQUERY_SERVICE_CONFIG;
alias LPQUERY_SERVICE_CONFIGA LPQUERY_SERVICE_CONFIG;
//C typedef void ( *LPSERVICE_MAIN_FUNCTIONW)(DWORD dwNumServicesArgs,LPWSTR *lpServiceArgVectors);
alias void function(DWORD dwNumServicesArgs, LPWSTR *lpServiceArgVectors)LPSERVICE_MAIN_FUNCTIONW;
//C typedef void ( *LPSERVICE_MAIN_FUNCTIONA)(DWORD dwNumServicesArgs,LPSTR *lpServiceArgVectors);
alias void function(DWORD dwNumServicesArgs, LPSTR *lpServiceArgVectors)LPSERVICE_MAIN_FUNCTIONA;
//C typedef struct _SERVICE_TABLE_ENTRYA {
//C LPSTR lpServiceName;
//C LPSERVICE_MAIN_FUNCTIONA lpServiceProc;
//C } SERVICE_TABLE_ENTRYA,*LPSERVICE_TABLE_ENTRYA;
struct _SERVICE_TABLE_ENTRYA
{
LPSTR lpServiceName;
LPSERVICE_MAIN_FUNCTIONA lpServiceProc;
}
alias _SERVICE_TABLE_ENTRYA SERVICE_TABLE_ENTRYA;
alias _SERVICE_TABLE_ENTRYA *LPSERVICE_TABLE_ENTRYA;
//C typedef struct _SERVICE_TABLE_ENTRYW {
//C LPWSTR lpServiceName;
//C LPSERVICE_MAIN_FUNCTIONW lpServiceProc;
//C } SERVICE_TABLE_ENTRYW,*LPSERVICE_TABLE_ENTRYW;
struct _SERVICE_TABLE_ENTRYW
{
LPWSTR lpServiceName;
LPSERVICE_MAIN_FUNCTIONW lpServiceProc;
}
alias _SERVICE_TABLE_ENTRYW SERVICE_TABLE_ENTRYW;
alias _SERVICE_TABLE_ENTRYW *LPSERVICE_TABLE_ENTRYW;
//C typedef SERVICE_TABLE_ENTRYA SERVICE_TABLE_ENTRY;
alias SERVICE_TABLE_ENTRYA SERVICE_TABLE_ENTRY;
//C typedef LPSERVICE_TABLE_ENTRYA LPSERVICE_TABLE_ENTRY;
alias LPSERVICE_TABLE_ENTRYA LPSERVICE_TABLE_ENTRY;
//C typedef void ( *LPHANDLER_FUNCTION)(DWORD dwControl);
alias void function(DWORD dwControl)LPHANDLER_FUNCTION;
//C typedef DWORD ( *LPHANDLER_FUNCTION_EX)(DWORD dwControl,DWORD dwEventType,LPVOID lpEventData,LPVOID lpContext);
alias DWORD function(DWORD dwControl, DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext)LPHANDLER_FUNCTION_EX;
//C WINBOOL ChangeServiceConfigA(SC_HANDLE hService,DWORD dwServiceType,DWORD dwStartType,DWORD dwErrorControl,LPCSTR lpBinaryPathName,LPCSTR lpLoadOrderGroup,LPDWORD lpdwTagId,LPCSTR lpDependencies,LPCSTR lpServiceStartName,LPCSTR lpPassword,LPCSTR lpDisplayName);
WINBOOL ChangeServiceConfigA(SC_HANDLE hService, DWORD dwServiceType, DWORD dwStartType, DWORD dwErrorControl, LPCSTR lpBinaryPathName, LPCSTR lpLoadOrderGroup, LPDWORD lpdwTagId, LPCSTR lpDependencies, LPCSTR lpServiceStartName, LPCSTR lpPassword, LPCSTR lpDisplayName);
//C WINBOOL ChangeServiceConfigW(SC_HANDLE hService,DWORD dwServiceType,DWORD dwStartType,DWORD dwErrorControl,LPCWSTR lpBinaryPathName,LPCWSTR lpLoadOrderGroup,LPDWORD lpdwTagId,LPCWSTR lpDependencies,LPCWSTR lpServiceStartName,LPCWSTR lpPassword,LPCWSTR lpDisplayName);
WINBOOL ChangeServiceConfigW(SC_HANDLE hService, DWORD dwServiceType, DWORD dwStartType, DWORD dwErrorControl, LPCWSTR lpBinaryPathName, LPCWSTR lpLoadOrderGroup, LPDWORD lpdwTagId, LPCWSTR lpDependencies, LPCWSTR lpServiceStartName, LPCWSTR lpPassword, LPCWSTR lpDisplayName);
//C WINBOOL ChangeServiceConfig2A(SC_HANDLE hService,DWORD dwInfoLevel,LPVOID lpInfo);
WINBOOL ChangeServiceConfig2A(SC_HANDLE hService, DWORD dwInfoLevel, LPVOID lpInfo);
//C WINBOOL ChangeServiceConfig2W(SC_HANDLE hService,DWORD dwInfoLevel,LPVOID lpInfo);
WINBOOL ChangeServiceConfig2W(SC_HANDLE hService, DWORD dwInfoLevel, LPVOID lpInfo);
//C WINBOOL CloseServiceHandle(SC_HANDLE hSCObject);
WINBOOL CloseServiceHandle(SC_HANDLE hSCObject);
//C WINBOOL ControlService(SC_HANDLE hService,DWORD dwControl,LPSERVICE_STATUS lpServiceStatus);
WINBOOL ControlService(SC_HANDLE hService, DWORD dwControl, LPSERVICE_STATUS lpServiceStatus);
//C SC_HANDLE CreateServiceA(SC_HANDLE hSCManager,LPCSTR lpServiceName,LPCSTR lpDisplayName,DWORD dwDesiredAccess,DWORD dwServiceType,DWORD dwStartType,DWORD dwErrorControl,LPCSTR lpBinaryPathName,LPCSTR lpLoadOrderGroup,LPDWORD lpdwTagId,LPCSTR lpDependencies,LPCSTR lpServiceStartName,LPCSTR lpPassword);
SC_HANDLE CreateServiceA(SC_HANDLE hSCManager, LPCSTR lpServiceName, LPCSTR lpDisplayName, DWORD dwDesiredAccess, DWORD dwServiceType, DWORD dwStartType, DWORD dwErrorControl, LPCSTR lpBinaryPathName, LPCSTR lpLoadOrderGroup, LPDWORD lpdwTagId, LPCSTR lpDependencies, LPCSTR lpServiceStartName, LPCSTR lpPassword);
//C SC_HANDLE CreateServiceW(SC_HANDLE hSCManager,LPCWSTR lpServiceName,LPCWSTR lpDisplayName,DWORD dwDesiredAccess,DWORD dwServiceType,DWORD dwStartType,DWORD dwErrorControl,LPCWSTR lpBinaryPathName,LPCWSTR lpLoadOrderGroup,LPDWORD lpdwTagId,LPCWSTR lpDependencies,LPCWSTR lpServiceStartName,LPCWSTR lpPassword);
SC_HANDLE CreateServiceW(SC_HANDLE hSCManager, LPCWSTR lpServiceName, LPCWSTR lpDisplayName, DWORD dwDesiredAccess, DWORD dwServiceType, DWORD dwStartType, DWORD dwErrorControl, LPCWSTR lpBinaryPathName, LPCWSTR lpLoadOrderGroup, LPDWORD lpdwTagId, LPCWSTR lpDependencies, LPCWSTR lpServiceStartName, LPCWSTR lpPassword);
//C WINBOOL DeleteService(SC_HANDLE hService);
WINBOOL DeleteService(SC_HANDLE hService);
//C WINBOOL EnumDependentServicesA(SC_HANDLE hService,DWORD dwServiceState,LPENUM_SERVICE_STATUSA lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned);
WINBOOL EnumDependentServicesA(SC_HANDLE hService, DWORD dwServiceState, LPENUM_SERVICE_STATUSA lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned);
//C WINBOOL EnumDependentServicesW(SC_HANDLE hService,DWORD dwServiceState,LPENUM_SERVICE_STATUSW lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned);
WINBOOL EnumDependentServicesW(SC_HANDLE hService, DWORD dwServiceState, LPENUM_SERVICE_STATUSW lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned);
//C WINBOOL EnumServicesStatusA(SC_HANDLE hSCManager,DWORD dwServiceType,DWORD dwServiceState,LPENUM_SERVICE_STATUSA lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned,LPDWORD lpResumeHandle);
WINBOOL EnumServicesStatusA(SC_HANDLE hSCManager, DWORD dwServiceType, DWORD dwServiceState, LPENUM_SERVICE_STATUSA lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned, LPDWORD lpResumeHandle);
//C WINBOOL EnumServicesStatusW(SC_HANDLE hSCManager,DWORD dwServiceType,DWORD dwServiceState,LPENUM_SERVICE_STATUSW lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned,LPDWORD lpResumeHandle);
WINBOOL EnumServicesStatusW(SC_HANDLE hSCManager, DWORD dwServiceType, DWORD dwServiceState, LPENUM_SERVICE_STATUSW lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned, LPDWORD lpResumeHandle);
//C WINBOOL EnumServicesStatusExA(SC_HANDLE hSCManager,SC_ENUM_TYPE InfoLevel,DWORD dwServiceType,DWORD dwServiceState,LPBYTE lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned,LPDWORD lpResumeHandle,LPCSTR pszGroupName);
WINBOOL EnumServicesStatusExA(SC_HANDLE hSCManager, SC_ENUM_TYPE InfoLevel, DWORD dwServiceType, DWORD dwServiceState, LPBYTE lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned, LPDWORD lpResumeHandle, LPCSTR pszGroupName);
//C WINBOOL EnumServicesStatusExW(SC_HANDLE hSCManager,SC_ENUM_TYPE InfoLevel,DWORD dwServiceType,DWORD dwServiceState,LPBYTE lpServices,DWORD cbBufSize,LPDWORD pcbBytesNeeded,LPDWORD lpServicesReturned,LPDWORD lpResumeHandle,LPCWSTR pszGroupName);
WINBOOL EnumServicesStatusExW(SC_HANDLE hSCManager, SC_ENUM_TYPE InfoLevel, DWORD dwServiceType, DWORD dwServiceState, LPBYTE lpServices, DWORD cbBufSize, LPDWORD pcbBytesNeeded, LPDWORD lpServicesReturned, LPDWORD lpResumeHandle, LPCWSTR pszGroupName);
//C WINBOOL GetServiceKeyNameA(SC_HANDLE hSCManager,LPCSTR lpDisplayName,LPSTR lpServiceName,LPDWORD lpcchBuffer);
WINBOOL GetServiceKeyNameA(SC_HANDLE hSCManager, LPCSTR lpDisplayName, LPSTR lpServiceName, LPDWORD lpcchBuffer);
//C WINBOOL GetServiceKeyNameW(SC_HANDLE hSCManager,LPCWSTR lpDisplayName,LPWSTR lpServiceName,LPDWORD lpcchBuffer);
WINBOOL GetServiceKeyNameW(SC_HANDLE hSCManager, LPCWSTR lpDisplayName, LPWSTR lpServiceName, LPDWORD lpcchBuffer);
//C WINBOOL GetServiceDisplayNameA(SC_HANDLE hSCManager,LPCSTR lpServiceName,LPSTR lpDisplayName,LPDWORD lpcchBuffer);
WINBOOL GetServiceDisplayNameA(SC_HANDLE hSCManager, LPCSTR lpServiceName, LPSTR lpDisplayName, LPDWORD lpcchBuffer);
//C WINBOOL GetServiceDisplayNameW(SC_HANDLE hSCManager,LPCWSTR lpServiceName,LPWSTR lpDisplayName,LPDWORD lpcchBuffer);
WINBOOL GetServiceDisplayNameW(SC_HANDLE hSCManager, LPCWSTR lpServiceName, LPWSTR lpDisplayName, LPDWORD lpcchBuffer);
//C SC_LOCK LockServiceDatabase(SC_HANDLE hSCManager);
SC_LOCK LockServiceDatabase(SC_HANDLE hSCManager);
//C WINBOOL NotifyBootConfigStatus(WINBOOL BootAcceptable);
WINBOOL NotifyBootConfigStatus(WINBOOL BootAcceptable);
//C SC_HANDLE OpenSCManagerA(LPCSTR lpMachineName,LPCSTR lpDatabaseName,DWORD dwDesiredAccess);
SC_HANDLE OpenSCManagerA(LPCSTR lpMachineName, LPCSTR lpDatabaseName, DWORD dwDesiredAccess);
//C SC_HANDLE OpenSCManagerW(LPCWSTR lpMachineName,LPCWSTR lpDatabaseName,DWORD dwDesiredAccess);
SC_HANDLE OpenSCManagerW(LPCWSTR lpMachineName, LPCWSTR lpDatabaseName, DWORD dwDesiredAccess);
//C SC_HANDLE OpenServiceA(SC_HANDLE hSCManager,LPCSTR lpServiceName,DWORD dwDesiredAccess);
SC_HANDLE OpenServiceA(SC_HANDLE hSCManager, LPCSTR lpServiceName, DWORD dwDesiredAccess);
//C SC_HANDLE OpenServiceW(SC_HANDLE hSCManager,LPCWSTR lpServiceName,DWORD dwDesiredAccess);
SC_HANDLE OpenServiceW(SC_HANDLE hSCManager, LPCWSTR lpServiceName, DWORD dwDesiredAccess);
//C WINBOOL QueryServiceConfigA(SC_HANDLE hService,LPQUERY_SERVICE_CONFIGA lpServiceConfig,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceConfigA(SC_HANDLE hService, LPQUERY_SERVICE_CONFIGA lpServiceConfig, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceConfigW(SC_HANDLE hService,LPQUERY_SERVICE_CONFIGW lpServiceConfig,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceConfigW(SC_HANDLE hService, LPQUERY_SERVICE_CONFIGW lpServiceConfig, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceConfig2A(SC_HANDLE hService,DWORD dwInfoLevel,LPBYTE lpBuffer,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceConfig2A(SC_HANDLE hService, DWORD dwInfoLevel, LPBYTE lpBuffer, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceConfig2W(SC_HANDLE hService,DWORD dwInfoLevel,LPBYTE lpBuffer,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceConfig2W(SC_HANDLE hService, DWORD dwInfoLevel, LPBYTE lpBuffer, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceLockStatusA(SC_HANDLE hSCManager,LPQUERY_SERVICE_LOCK_STATUSA lpLockStatus,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceLockStatusA(SC_HANDLE hSCManager, LPQUERY_SERVICE_LOCK_STATUSA lpLockStatus, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceLockStatusW(SC_HANDLE hSCManager,LPQUERY_SERVICE_LOCK_STATUSW lpLockStatus,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceLockStatusW(SC_HANDLE hSCManager, LPQUERY_SERVICE_LOCK_STATUSW lpLockStatus, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceObjectSecurity(SC_HANDLE hService,SECURITY_INFORMATION dwSecurityInformation,PSECURITY_DESCRIPTOR lpSecurityDescriptor,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceObjectSecurity(SC_HANDLE hService, SECURITY_INFORMATION dwSecurityInformation, PSECURITY_DESCRIPTOR lpSecurityDescriptor, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C WINBOOL QueryServiceStatus(SC_HANDLE hService,LPSERVICE_STATUS lpServiceStatus);
WINBOOL QueryServiceStatus(SC_HANDLE hService, LPSERVICE_STATUS lpServiceStatus);
//C WINBOOL QueryServiceStatusEx(SC_HANDLE hService,SC_STATUS_TYPE InfoLevel,LPBYTE lpBuffer,DWORD cbBufSize,LPDWORD pcbBytesNeeded);
WINBOOL QueryServiceStatusEx(SC_HANDLE hService, SC_STATUS_TYPE InfoLevel, LPBYTE lpBuffer, DWORD cbBufSize, LPDWORD pcbBytesNeeded);
//C SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerA(LPCSTR lpServiceName,LPHANDLER_FUNCTION lpHandlerProc);
SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerA(LPCSTR lpServiceName, LPHANDLER_FUNCTION lpHandlerProc);
//C SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerW(LPCWSTR lpServiceName,LPHANDLER_FUNCTION lpHandlerProc);
SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerW(LPCWSTR lpServiceName, LPHANDLER_FUNCTION lpHandlerProc);
//C SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerExA(LPCSTR lpServiceName,LPHANDLER_FUNCTION_EX lpHandlerProc,LPVOID lpContext);
SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerExA(LPCSTR lpServiceName, LPHANDLER_FUNCTION_EX lpHandlerProc, LPVOID lpContext);
//C SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerExW(LPCWSTR lpServiceName,LPHANDLER_FUNCTION_EX lpHandlerProc,LPVOID lpContext);
SERVICE_STATUS_HANDLE RegisterServiceCtrlHandlerExW(LPCWSTR lpServiceName, LPHANDLER_FUNCTION_EX lpHandlerProc, LPVOID lpContext);
//C WINBOOL SetServiceObjectSecurity(SC_HANDLE hService,SECURITY_INFORMATION dwSecurityInformation,PSECURITY_DESCRIPTOR lpSecurityDescriptor);
WINBOOL SetServiceObjectSecurity(SC_HANDLE hService, SECURITY_INFORMATION dwSecurityInformation, PSECURITY_DESCRIPTOR lpSecurityDescriptor);
//C WINBOOL SetServiceStatus(SERVICE_STATUS_HANDLE hServiceStatus,LPSERVICE_STATUS lpServiceStatus);
WINBOOL SetServiceStatus(SERVICE_STATUS_HANDLE hServiceStatus, LPSERVICE_STATUS lpServiceStatus);
//C WINBOOL StartServiceCtrlDispatcherA(const SERVICE_TABLE_ENTRYA *lpServiceStartTable);
WINBOOL StartServiceCtrlDispatcherA(SERVICE_TABLE_ENTRYA *lpServiceStartTable);
//C WINBOOL StartServiceCtrlDispatcherW(const SERVICE_TABLE_ENTRYW *lpServiceStartTable);
WINBOOL StartServiceCtrlDispatcherW(SERVICE_TABLE_ENTRYW *lpServiceStartTable);
//C WINBOOL StartServiceA(SC_HANDLE hService,DWORD dwNumServiceArgs,LPCSTR *lpServiceArgVectors);
WINBOOL StartServiceA(SC_HANDLE hService, DWORD dwNumServiceArgs, LPCSTR *lpServiceArgVectors);
//C WINBOOL StartServiceW(SC_HANDLE hService,DWORD dwNumServiceArgs,LPCWSTR *lpServiceArgVectors);
WINBOOL StartServiceW(SC_HANDLE hService, DWORD dwNumServiceArgs, LPCWSTR *lpServiceArgVectors);
//C WINBOOL UnlockServiceDatabase(SC_LOCK ScLock);
WINBOOL UnlockServiceDatabase(SC_LOCK ScLock);
//C typedef struct _MODEMDEVCAPS {
//C DWORD dwActualSize;
//C DWORD dwRequiredSize;
//C DWORD dwDevSpecificOffset;
//C DWORD dwDevSpecificSize;
//C DWORD dwModemProviderVersion;
//C DWORD dwModemManufacturerOffset;
//C DWORD dwModemManufacturerSize;
//C DWORD dwModemModelOffset;
//C DWORD dwModemModelSize;
//C DWORD dwModemVersionOffset;
//C DWORD dwModemVersionSize;
//C DWORD dwDialOptions;
//C DWORD dwCallSetupFailTimer;
//C DWORD dwInactivityTimeout;
//C DWORD dwSpeakerVolume;
//C DWORD dwSpeakerMode;
//C DWORD dwModemOptions;
//C DWORD dwMaxDTERate;
//C DWORD dwMaxDCERate;
//C BYTE abVariablePortion[1];
//C } MODEMDEVCAPS,*PMODEMDEVCAPS,*LPMODEMDEVCAPS;
struct _MODEMDEVCAPS
{
DWORD dwActualSize;
DWORD dwRequiredSize;
DWORD dwDevSpecificOffset;
DWORD dwDevSpecificSize;
DWORD dwModemProviderVersion;
DWORD dwModemManufacturerOffset;
DWORD dwModemManufacturerSize;
DWORD dwModemModelOffset;
DWORD dwModemModelSize;
DWORD dwModemVersionOffset;
DWORD dwModemVersionSize;
DWORD dwDialOptions;
DWORD dwCallSetupFailTimer;
DWORD dwInactivityTimeout;
DWORD dwSpeakerVolume;
DWORD dwSpeakerMode;
DWORD dwModemOptions;
DWORD dwMaxDTERate;
DWORD dwMaxDCERate;
BYTE [1]abVariablePortion;
}
alias _MODEMDEVCAPS MODEMDEVCAPS;
alias _MODEMDEVCAPS *PMODEMDEVCAPS;
alias _MODEMDEVCAPS *LPMODEMDEVCAPS;
//C typedef struct _MODEMSETTINGS {
//C DWORD dwActualSize;
//C DWORD dwRequiredSize;
//C DWORD dwDevSpecificOffset;
//C DWORD dwDevSpecificSize;
//C DWORD dwCallSetupFailTimer;
//C DWORD dwInactivityTimeout;
//C DWORD dwSpeakerVolume;
//C DWORD dwSpeakerMode;
//C DWORD dwPreferredModemOptions;
//C DWORD dwNegotiatedModemOptions;
//C DWORD dwNegotiatedDCERate;
//C BYTE abVariablePortion [1];
//C } MODEMSETTINGS,*PMODEMSETTINGS,*LPMODEMSETTINGS;
struct _MODEMSETTINGS
{
DWORD dwActualSize;
DWORD dwRequiredSize;
DWORD dwDevSpecificOffset;
DWORD dwDevSpecificSize;
DWORD dwCallSetupFailTimer;
DWORD dwInactivityTimeout;
DWORD dwSpeakerVolume;
DWORD dwSpeakerMode;
DWORD dwPreferredModemOptions;
DWORD dwNegotiatedModemOptions;
DWORD dwNegotiatedDCERate;
BYTE [1]abVariablePortion;
}
alias _MODEMSETTINGS MODEMSETTINGS;
alias _MODEMSETTINGS *PMODEMSETTINGS;
alias _MODEMSETTINGS *LPMODEMSETTINGS;
//C struct HIMC__ { int unused; }; typedef struct HIMC__ *HIMC;
struct HIMC__
{
int unused;
}
alias HIMC__ *HIMC;
//C struct HIMCC__ { int unused; }; typedef struct HIMCC__ *HIMCC;
struct HIMCC__
{
int unused;
}
alias HIMCC__ *HIMCC;
//C typedef HKL *LPHKL;
alias HKL *LPHKL;
//C typedef struct tagCOMPOSITIONFORM {
//C DWORD dwStyle;
//C POINT ptCurrentPos;
//C RECT rcArea;
//C } COMPOSITIONFORM,*PCOMPOSITIONFORM,*NPCOMPOSITIONFORM,*LPCOMPOSITIONFORM;
struct tagCOMPOSITIONFORM
{
DWORD dwStyle;
POINT ptCurrentPos;
RECT rcArea;
}
alias tagCOMPOSITIONFORM COMPOSITIONFORM;
alias tagCOMPOSITIONFORM *PCOMPOSITIONFORM;
alias tagCOMPOSITIONFORM *NPCOMPOSITIONFORM;
alias tagCOMPOSITIONFORM *LPCOMPOSITIONFORM;
//C typedef struct tagCANDIDATEFORM {
//C DWORD dwIndex;
//C DWORD dwStyle;
//C POINT ptCurrentPos;
//C RECT rcArea;
//C } CANDIDATEFORM,*PCANDIDATEFORM,*NPCANDIDATEFORM,*LPCANDIDATEFORM;
struct tagCANDIDATEFORM
{
DWORD dwIndex;
DWORD dwStyle;
POINT ptCurrentPos;
RECT rcArea;
}
alias tagCANDIDATEFORM CANDIDATEFORM;
alias tagCANDIDATEFORM *PCANDIDATEFORM;
alias tagCANDIDATEFORM *NPCANDIDATEFORM;
alias tagCANDIDATEFORM *LPCANDIDATEFORM;
//C typedef struct tagCANDIDATELIST {
//C DWORD dwSize;
//C DWORD dwStyle;
//C DWORD dwCount;
//C DWORD dwSelection;
//C DWORD dwPageStart;
//C DWORD dwPageSize;
//C DWORD dwOffset[1];
//C } CANDIDATELIST,*PCANDIDATELIST,*NPCANDIDATELIST,*LPCANDIDATELIST;
struct tagCANDIDATELIST
{
DWORD dwSize;
DWORD dwStyle;
DWORD dwCount;
DWORD dwSelection;
DWORD dwPageStart;
DWORD dwPageSize;
DWORD [1]dwOffset;
}
alias tagCANDIDATELIST CANDIDATELIST;
alias tagCANDIDATELIST *PCANDIDATELIST;
alias tagCANDIDATELIST *NPCANDIDATELIST;
alias tagCANDIDATELIST *LPCANDIDATELIST;
//C typedef struct tagREGISTERWORDA {
//C LPSTR lpReading;
//C LPSTR lpWord;
//C } REGISTERWORDA,*PREGISTERWORDA,*NPREGISTERWORDA,*LPREGISTERWORDA;
struct tagREGISTERWORDA
{
LPSTR lpReading;
LPSTR lpWord;
}
alias tagREGISTERWORDA REGISTERWORDA;
alias tagREGISTERWORDA *PREGISTERWORDA;
alias tagREGISTERWORDA *NPREGISTERWORDA;
alias tagREGISTERWORDA *LPREGISTERWORDA;
//C typedef struct tagREGISTERWORDW {
//C LPWSTR lpReading;
//C LPWSTR lpWord;
//C } REGISTERWORDW,*PREGISTERWORDW,*NPREGISTERWORDW,*LPREGISTERWORDW;
struct tagREGISTERWORDW
{
LPWSTR lpReading;
LPWSTR lpWord;
}
alias tagREGISTERWORDW REGISTERWORDW;
alias tagREGISTERWORDW *PREGISTERWORDW;
alias tagREGISTERWORDW *NPREGISTERWORDW;
alias tagREGISTERWORDW *LPREGISTERWORDW;
//C typedef REGISTERWORDA REGISTERWORD;
alias REGISTERWORDA REGISTERWORD;
//C typedef PREGISTERWORDA PREGISTERWORD;
alias PREGISTERWORDA PREGISTERWORD;
//C typedef NPREGISTERWORDA NPREGISTERWORD;
alias NPREGISTERWORDA NPREGISTERWORD;
//C typedef LPREGISTERWORDA LPREGISTERWORD;
alias LPREGISTERWORDA LPREGISTERWORD;
//C typedef struct tagRECONVERTSTRING {
//C DWORD dwSize;
//C DWORD dwVersion;
//C DWORD dwStrLen;
//C DWORD dwStrOffset;
//C DWORD dwCompStrLen;
//C DWORD dwCompStrOffset;
//C DWORD dwTargetStrLen;
//C DWORD dwTargetStrOffset;
//C } RECONVERTSTRING,*PRECONVERTSTRING,*NPRECONVERTSTRING,*LPRECONVERTSTRING;
struct tagRECONVERTSTRING
{
DWORD dwSize;
DWORD dwVersion;
DWORD dwStrLen;
DWORD dwStrOffset;
DWORD dwCompStrLen;
DWORD dwCompStrOffset;
DWORD dwTargetStrLen;
DWORD dwTargetStrOffset;
}
alias tagRECONVERTSTRING RECONVERTSTRING;
alias tagRECONVERTSTRING *PRECONVERTSTRING;
alias tagRECONVERTSTRING *NPRECONVERTSTRING;
alias tagRECONVERTSTRING *LPRECONVERTSTRING;
//C typedef struct tagSTYLEBUFA {
//C DWORD dwStyle;
//C CHAR szDescription[32];
//C } STYLEBUFA,*PSTYLEBUFA,*NPSTYLEBUFA,*LPSTYLEBUFA;
struct tagSTYLEBUFA
{
DWORD dwStyle;
CHAR [32]szDescription;
}
alias tagSTYLEBUFA STYLEBUFA;
alias tagSTYLEBUFA *PSTYLEBUFA;
alias tagSTYLEBUFA *NPSTYLEBUFA;
alias tagSTYLEBUFA *LPSTYLEBUFA;
//C typedef struct tagSTYLEBUFW {
//C DWORD dwStyle;
//C WCHAR szDescription[32];
//C } STYLEBUFW,*PSTYLEBUFW,*NPSTYLEBUFW,*LPSTYLEBUFW;
struct tagSTYLEBUFW
{
DWORD dwStyle;
WCHAR [32]szDescription;
}
alias tagSTYLEBUFW STYLEBUFW;
alias tagSTYLEBUFW *PSTYLEBUFW;
alias tagSTYLEBUFW *NPSTYLEBUFW;
alias tagSTYLEBUFW *LPSTYLEBUFW;
//C typedef STYLEBUFA STYLEBUF;
alias STYLEBUFA STYLEBUF;
//C typedef PSTYLEBUFA PSTYLEBUF;
alias PSTYLEBUFA PSTYLEBUF;
//C typedef NPSTYLEBUFA NPSTYLEBUF;
alias NPSTYLEBUFA NPSTYLEBUF;
//C typedef LPSTYLEBUFA LPSTYLEBUF;
alias LPSTYLEBUFA LPSTYLEBUF;
//C typedef struct tagIMEMENUITEMINFOA {
//C UINT cbSize;
//C UINT fType;
//C UINT fState;
//C UINT wID;
//C HBITMAP hbmpChecked;
//C HBITMAP hbmpUnchecked;
//C DWORD dwItemData;
//C CHAR szString[80];
//C HBITMAP hbmpItem;
//C } IMEMENUITEMINFOA,*PIMEMENUITEMINFOA,*NPIMEMENUITEMINFOA,*LPIMEMENUITEMINFOA;
struct tagIMEMENUITEMINFOA
{
UINT cbSize;
UINT fType;
UINT fState;
UINT wID;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
DWORD dwItemData;
CHAR [80]szString;
HBITMAP hbmpItem;
}
alias tagIMEMENUITEMINFOA IMEMENUITEMINFOA;
alias tagIMEMENUITEMINFOA *PIMEMENUITEMINFOA;
alias tagIMEMENUITEMINFOA *NPIMEMENUITEMINFOA;
alias tagIMEMENUITEMINFOA *LPIMEMENUITEMINFOA;
//C typedef struct tagIMEMENUITEMINFOW {
//C UINT cbSize;
//C UINT fType;
//C UINT fState;
//C UINT wID;
//C HBITMAP hbmpChecked;
//C HBITMAP hbmpUnchecked;
//C DWORD dwItemData;
//C WCHAR szString[80];
//C HBITMAP hbmpItem;
//C } IMEMENUITEMINFOW,*PIMEMENUITEMINFOW,*NPIMEMENUITEMINFOW,*LPIMEMENUITEMINFOW;
struct tagIMEMENUITEMINFOW
{
UINT cbSize;
UINT fType;
UINT fState;
UINT wID;
HBITMAP hbmpChecked;
HBITMAP hbmpUnchecked;
DWORD dwItemData;
WCHAR [80]szString;
HBITMAP hbmpItem;
}
alias tagIMEMENUITEMINFOW IMEMENUITEMINFOW;
alias tagIMEMENUITEMINFOW *PIMEMENUITEMINFOW;
alias tagIMEMENUITEMINFOW *NPIMEMENUITEMINFOW;
alias tagIMEMENUITEMINFOW *LPIMEMENUITEMINFOW;
//C typedef IMEMENUITEMINFOA IMEMENUITEMINFO;
alias IMEMENUITEMINFOA IMEMENUITEMINFO;
//C typedef PIMEMENUITEMINFOA PIMEMENUITEMINFO;
alias PIMEMENUITEMINFOA PIMEMENUITEMINFO;
//C typedef NPIMEMENUITEMINFOA NPIMEMENUITEMINFO;
alias NPIMEMENUITEMINFOA NPIMEMENUITEMINFO;
//C typedef LPIMEMENUITEMINFOA LPIMEMENUITEMINFO;
alias LPIMEMENUITEMINFOA LPIMEMENUITEMINFO;
//C typedef struct tagIMECHARPOSITION {
//C DWORD dwSize;
//C DWORD dwCharPos;
//C POINT pt;
//C UINT cLineHeight;
//C RECT rcDocument;
//C } IMECHARPOSITION,*PIMECHARPOSITION,*NPIMECHARPOSITION,*LPIMECHARPOSITION;
struct tagIMECHARPOSITION
{
DWORD dwSize;
DWORD dwCharPos;
POINT pt;
UINT cLineHeight;
RECT rcDocument;
}
alias tagIMECHARPOSITION IMECHARPOSITION;
alias tagIMECHARPOSITION *PIMECHARPOSITION;
alias tagIMECHARPOSITION *NPIMECHARPOSITION;
alias tagIMECHARPOSITION *LPIMECHARPOSITION;
//C typedef WINBOOL ( *IMCENUMPROC)(HIMC,LPARAM);
alias WINBOOL function(HIMC , LPARAM )IMCENUMPROC;
//C HKL ImmInstallIMEA(LPCSTR lpszIMEFileName,LPCSTR lpszLayoutText);
HKL ImmInstallIMEA(LPCSTR lpszIMEFileName, LPCSTR lpszLayoutText);
//C HKL ImmInstallIMEW(LPCWSTR lpszIMEFileName,LPCWSTR lpszLayoutText);
HKL ImmInstallIMEW(LPCWSTR lpszIMEFileName, LPCWSTR lpszLayoutText);
//C HWND ImmGetDefaultIMEWnd(HWND);
HWND ImmGetDefaultIMEWnd(HWND );
//C UINT ImmGetDescriptionA(HKL,LPSTR,UINT uBufLen);
UINT ImmGetDescriptionA(HKL , LPSTR , UINT uBufLen);
//C UINT ImmGetDescriptionW(HKL,LPWSTR,UINT uBufLen);
UINT ImmGetDescriptionW(HKL , LPWSTR , UINT uBufLen);
//C UINT ImmGetIMEFileNameA(HKL,LPSTR,UINT uBufLen);
UINT ImmGetIMEFileNameA(HKL , LPSTR , UINT uBufLen);
//C UINT ImmGetIMEFileNameW(HKL,LPWSTR,UINT uBufLen);
UINT ImmGetIMEFileNameW(HKL , LPWSTR , UINT uBufLen);
//C DWORD ImmGetProperty(HKL,DWORD);
DWORD ImmGetProperty(HKL , DWORD );
//C WINBOOL ImmIsIME();
WINBOOL ImmIsIME(HKL );
//C WINBOOL ImmSimulateHotKey(HWND,DWORD);
WINBOOL ImmSimulateHotKey(HWND , DWORD );
//C HIMC ImmCreateContext(void);
HIMC ImmCreateContext();
//C WINBOOL ImmDestroyContext(HIMC);
WINBOOL ImmDestroyContext(HIMC );
//C HIMC ImmGetContext(HWND);
HIMC ImmGetContext(HWND );
//C WINBOOL ImmReleaseContext(HWND,HIMC);
WINBOOL ImmReleaseContext(HWND , HIMC );
//C HIMC ImmAssociateContext(HWND,HIMC);
HIMC ImmAssociateContext(HWND , HIMC );
//C WINBOOL ImmAssociateContextEx(HWND,HIMC,DWORD);
WINBOOL ImmAssociateContextEx(HWND , HIMC , DWORD );
//C LONG ImmGetCompositionStringA(HIMC,DWORD,LPVOID,DWORD);
LONG ImmGetCompositionStringA(HIMC , DWORD , LPVOID , DWORD );
//C LONG ImmGetCompositionStringW(HIMC,DWORD,LPVOID,DWORD);
LONG ImmGetCompositionStringW(HIMC , DWORD , LPVOID , DWORD );
//C WINBOOL ImmSetCompositionStringA(HIMC,DWORD dwIndex,LPVOID lpComp,DWORD,LPVOID lpRead,DWORD);
WINBOOL ImmSetCompositionStringA(HIMC , DWORD dwIndex, LPVOID lpComp, DWORD , LPVOID lpRead, DWORD );
//C WINBOOL ImmSetCompositionStringW(HIMC,DWORD dwIndex,LPVOID lpComp,DWORD,LPVOID lpRead,DWORD);
WINBOOL ImmSetCompositionStringW(HIMC , DWORD dwIndex, LPVOID lpComp, DWORD , LPVOID lpRead, DWORD );
//C DWORD ImmGetCandidateListCountA(HIMC,LPDWORD lpdwListCount);
DWORD ImmGetCandidateListCountA(HIMC , LPDWORD lpdwListCount);
//C DWORD ImmGetCandidateListCountW(HIMC,LPDWORD lpdwListCount);
DWORD ImmGetCandidateListCountW(HIMC , LPDWORD lpdwListCount);
//C DWORD ImmGetCandidateListA(HIMC,DWORD deIndex,LPCANDIDATELIST,DWORD dwBufLen);
DWORD ImmGetCandidateListA(HIMC , DWORD deIndex, LPCANDIDATELIST , DWORD dwBufLen);
//C DWORD ImmGetCandidateListW(HIMC,DWORD deIndex,LPCANDIDATELIST,DWORD dwBufLen);
DWORD ImmGetCandidateListW(HIMC , DWORD deIndex, LPCANDIDATELIST , DWORD dwBufLen);
//C DWORD ImmGetGuideLineA(HIMC,DWORD dwIndex,LPSTR,DWORD dwBufLen);
DWORD ImmGetGuideLineA(HIMC , DWORD dwIndex, LPSTR , DWORD dwBufLen);
//C DWORD ImmGetGuideLineW(HIMC,DWORD dwIndex,LPWSTR,DWORD dwBufLen);
DWORD ImmGetGuideLineW(HIMC , DWORD dwIndex, LPWSTR , DWORD dwBufLen);
//C WINBOOL ImmGetConversionStatus(HIMC,LPDWORD,LPDWORD);
WINBOOL ImmGetConversionStatus(HIMC , LPDWORD , LPDWORD );
//C WINBOOL ImmSetConversionStatus(HIMC,DWORD,DWORD);
WINBOOL ImmSetConversionStatus(HIMC , DWORD , DWORD );
//C WINBOOL ImmGetOpenStatus(HIMC);
WINBOOL ImmGetOpenStatus(HIMC );
//C WINBOOL ImmSetOpenStatus(HIMC,WINBOOL);
WINBOOL ImmSetOpenStatus(HIMC , WINBOOL );
//C WINBOOL ImmGetCompositionFontA(HIMC,LPLOGFONTA);
WINBOOL ImmGetCompositionFontA(HIMC , LPLOGFONTA );
//C WINBOOL ImmGetCompositionFontW(HIMC,LPLOGFONTW);
WINBOOL ImmGetCompositionFontW(HIMC , LPLOGFONTW );
//C WINBOOL ImmSetCompositionFontA(HIMC,LPLOGFONTA);
WINBOOL ImmSetCompositionFontA(HIMC , LPLOGFONTA );
//C WINBOOL ImmSetCompositionFontW(HIMC,LPLOGFONTW);
WINBOOL ImmSetCompositionFontW(HIMC , LPLOGFONTW );
//C typedef int ( *REGISTERWORDENUMPROCA)(LPCSTR,DWORD,LPCSTR,LPVOID);
alias int function(LPCSTR , DWORD , LPCSTR , LPVOID )REGISTERWORDENUMPROCA;
//C typedef int ( *REGISTERWORDENUMPROCW)(LPCWSTR,DWORD,LPCWSTR,LPVOID);
alias int function(LPCWSTR , DWORD , LPCWSTR , LPVOID )REGISTERWORDENUMPROCW;
//C WINBOOL ImmConfigureIMEA(HKL,HWND,DWORD,LPVOID);
WINBOOL ImmConfigureIMEA(HKL , HWND , DWORD , LPVOID );
//C WINBOOL ImmConfigureIMEW(HKL,HWND,DWORD,LPVOID);
WINBOOL ImmConfigureIMEW(HKL , HWND , DWORD , LPVOID );
//C LRESULT ImmEscapeA(HKL,HIMC,UINT,LPVOID);
LRESULT ImmEscapeA(HKL , HIMC , UINT , LPVOID );
//C LRESULT ImmEscapeW(HKL,HIMC,UINT,LPVOID);
LRESULT ImmEscapeW(HKL , HIMC , UINT , LPVOID );
//C DWORD ImmGetConversionListA(HKL,HIMC,LPCSTR,LPCANDIDATELIST,DWORD dwBufLen,UINT uFlag);
DWORD ImmGetConversionListA(HKL , HIMC , LPCSTR , LPCANDIDATELIST , DWORD dwBufLen, UINT uFlag);
//C DWORD ImmGetConversionListW(HKL,HIMC,LPCWSTR,LPCANDIDATELIST,DWORD dwBufLen,UINT uFlag);
DWORD ImmGetConversionListW(HKL , HIMC , LPCWSTR , LPCANDIDATELIST , DWORD dwBufLen, UINT uFlag);
//C WINBOOL ImmNotifyIME(HIMC,DWORD dwAction,DWORD dwIndex,DWORD dwValue);
WINBOOL ImmNotifyIME(HIMC , DWORD dwAction, DWORD dwIndex, DWORD dwValue);
//C WINBOOL ImmGetStatusWindowPos(HIMC,LPPOINT);
WINBOOL ImmGetStatusWindowPos(HIMC , LPPOINT );
//C WINBOOL ImmSetStatusWindowPos(HIMC,LPPOINT);
WINBOOL ImmSetStatusWindowPos(HIMC , LPPOINT );
//C WINBOOL ImmGetCompositionWindow(HIMC,LPCOMPOSITIONFORM);
WINBOOL ImmGetCompositionWindow(HIMC , LPCOMPOSITIONFORM );
//C WINBOOL ImmSetCompositionWindow(HIMC,LPCOMPOSITIONFORM);
WINBOOL ImmSetCompositionWindow(HIMC , LPCOMPOSITIONFORM );
//C WINBOOL ImmGetCandidateWindow(HIMC,DWORD,LPCANDIDATEFORM);
WINBOOL ImmGetCandidateWindow(HIMC , DWORD , LPCANDIDATEFORM );
//C WINBOOL ImmSetCandidateWindow(HIMC,LPCANDIDATEFORM);
WINBOOL ImmSetCandidateWindow(HIMC , LPCANDIDATEFORM );
//C WINBOOL ImmIsUIMessageA(HWND,UINT,WPARAM,LPARAM);
WINBOOL ImmIsUIMessageA(HWND , UINT , WPARAM , LPARAM );
//C WINBOOL ImmIsUIMessageW(HWND,UINT,WPARAM,LPARAM);
WINBOOL ImmIsUIMessageW(HWND , UINT , WPARAM , LPARAM );
//C UINT ImmGetVirtualKey(HWND);
UINT ImmGetVirtualKey(HWND );
//C WINBOOL ImmRegisterWordA(HKL,LPCSTR lpszReading,DWORD,LPCSTR lpszRegister);
WINBOOL ImmRegisterWordA(HKL , LPCSTR lpszReading, DWORD , LPCSTR lpszRegister);
//C WINBOOL ImmRegisterWordW(HKL,LPCWSTR lpszReading,DWORD,LPCWSTR lpszRegister);
WINBOOL ImmRegisterWordW(HKL , LPCWSTR lpszReading, DWORD , LPCWSTR lpszRegister);
//C WINBOOL ImmUnregisterWordA(HKL,LPCSTR lpszReading,DWORD,LPCSTR lpszUnregister);
WINBOOL ImmUnregisterWordA(HKL , LPCSTR lpszReading, DWORD , LPCSTR lpszUnregister);
//C WINBOOL ImmUnregisterWordW(HKL,LPCWSTR lpszReading,DWORD,LPCWSTR lpszUnregister);
WINBOOL ImmUnregisterWordW(HKL , LPCWSTR lpszReading, DWORD , LPCWSTR lpszUnregister);
//C UINT ImmGetRegisterWordStyleA(HKL,UINT nItem,LPSTYLEBUFA);
UINT ImmGetRegisterWordStyleA(HKL , UINT nItem, LPSTYLEBUFA );
//C UINT ImmGetRegisterWordStyleW(HKL,UINT nItem,LPSTYLEBUFW);
UINT ImmGetRegisterWordStyleW(HKL , UINT nItem, LPSTYLEBUFW );
//C UINT ImmEnumRegisterWordA(HKL,REGISTERWORDENUMPROCA,LPCSTR lpszReading,DWORD,LPCSTR lpszRegister,LPVOID);
UINT ImmEnumRegisterWordA(HKL , REGISTERWORDENUMPROCA , LPCSTR lpszReading, DWORD , LPCSTR lpszRegister, LPVOID );
//C UINT ImmEnumRegisterWordW(HKL,REGISTERWORDENUMPROCW,LPCWSTR lpszReading,DWORD,LPCWSTR lpszRegister,LPVOID);
UINT ImmEnumRegisterWordW(HKL , REGISTERWORDENUMPROCW , LPCWSTR lpszReading, DWORD , LPCWSTR lpszRegister, LPVOID );
//C WINBOOL ImmDisableIME(DWORD);
WINBOOL ImmDisableIME(DWORD );
//C WINBOOL ImmEnumInputContext(DWORD idThread,IMCENUMPROC lpfn,LPARAM lParam);
WINBOOL ImmEnumInputContext(DWORD idThread, IMCENUMPROC lpfn, LPARAM lParam);
//C DWORD ImmGetImeMenuItemsA(HIMC,DWORD,DWORD,LPIMEMENUITEMINFOA,LPIMEMENUITEMINFOA,DWORD);
DWORD ImmGetImeMenuItemsA(HIMC , DWORD , DWORD , LPIMEMENUITEMINFOA , LPIMEMENUITEMINFOA , DWORD );
//C DWORD ImmGetImeMenuItemsW(HIMC,DWORD,DWORD,LPIMEMENUITEMINFOW,LPIMEMENUITEMINFOW,DWORD);
DWORD ImmGetImeMenuItemsW(HIMC , DWORD , DWORD , LPIMEMENUITEMINFOW , LPIMEMENUITEMINFOW , DWORD );
//C WINBOOL ImmDisableTextFrameService(DWORD idThread);
WINBOOL ImmDisableTextFrameService(DWORD idThread);
alias IDispatch *LPDISPATCH;
alias ITypeComp *LPTYPECOMP;
alias ITypeInfo *LPTYPEINFO;
alias ITypeLib *LPTYPELIB;
struct threadmbcinfostruct;
struct EXCEPTION_DISPOSITION;
struct _EXCEPTION_REGISTRATION_RECORD;
struct _TEB;
struct _NDR_ASYNC_MESSAGE;
struct _NDR_CORRELATION_INFO;
struct NDR_ALLOC_ALL_NODES_CONTEXT;
struct NDR_POINTER_QUEUE_STATE;
struct _NDR_PROC_CONTEXT;
struct _PSP;
pure HWND HWND_TOP() {return cast(HWND)0;}
pure WORD LOWORD(T)(T l) {return cast(WORD)((cast(DWORD_PTR)l) & 0xffff);}
pure WORD HIWORD(T)(T l) {return cast(WORD)((cast(DWORD_PTR)l) >> 16);}
pure short GET_WHEEL_DELTA_WPARAM(DWORD wParam) {return cast(short)HIWORD(wParam);}
alias GWLP_USERDATA GWL_USERDATA;
const IMAGE_REL_ALPHA_HINT = 0x0008;
const COMQC_E_NO_QUEUEABLE_INTERFACES = 0x80110601;
const DT_EXTERNALLEADING = 0x00000200;
const SCARD_E_SERVICE_STOPPED = 0x8010001E;
const ARW_RIGHT = 0x0000;
const STREAM_CLEAR_ENCRYPTION = 0x00000004;
const HTBOTTOMLEFT = 16;
const OBJ_BITMAP = 7;
const CACHE_S_FIRST = 0x00040170;
const EVENT_CONSOLE_UPDATE_SCROLL = 0x4004;
const szOID_STATE_OR_PROVINCE_NAME = "2.5.4.8";
const DMICM_SATURATE = 1;
const RPC_C_QOS_IDENTITY_STATIC = 0;
const AF_MAX = 22;
const SEC_E_ISSUING_CA_UNTRUSTED_KDC = 0x80090359;
const MCI_SET = 0x080D;
const SPI_GETHIGHCONTRAST = 0x0042;
const LMEM_ZEROINIT = 0x40;
const __UINT_LEAST16_MAX__ = 65535;
const PERF_DETAIL_NOVICE = 100;
const NI_SELECTCANDIDATESTR = 0x0012;
const COMADMIN_E_OBJECTEXISTS = 0x80110438;
const OSS_COMPARATOR_CODE_NOT_LINKED = 0x80093025;
const SUBLANG_FRISIAN_NETHERLANDS = 0x01;
const MAX_COMPUTERNAME_LENGTH = 15;
const WINSTA_ENUMERATE = 0x0100;
const ERROR_DS_NAME_ERROR_NO_MAPPING = 8472;
const TPM_TOPALIGN = 0x0000;
const USER_MARSHAL_FC_ULONG = 9;
const IS_TEXT_UNICODE_REVERSE_CONTROLS = 0x0040;
const KLF_ACTIVATE = 0x00000001;
const ERROR_OPERATION_ABORTED = 995;
const RPC_C_PROFILE_DEFAULT_ELT = 0;
const TAPE_DRIVE_EOT_WZ_SIZE = 0x00002000;
const LPD_SHARE_DEPTH = 0x00000040;
const KP_CLIENT_RANDOM = 21;
const XACT_E_TMNOTAVAILABLE = 0x8004D01B;
const MM_MOM_OPEN = 0x3C7;
const SPAPI_E_NO_CONFIGMGR_SERVICES = 0x800F0223;
const SUBLANG_ARMENIAN_ARMENIA = 0x01;
const CE_RXPARITY = 0x4;
const CTRY_FINLAND = 358;
const SS_ETCHEDHORZ = 0x00000010;
const ERROR_DS_CANT_DELETE_DSA_OBJ = 8340;
const SPI_GETMOUSEDOCKTHRESHOLD = 0x007E;
const XST_ADVSENT = 11;
const PAN_CONTRAST_LOW = 4;
const VOS_DOS = 0x00010000;
const szOID_ROLE_OCCUPANT = "2.5.4.33";
const PROGRESS_CONTINUE = 0;
const SUBLANG_SAMI_SOUTHERN_NORWAY = 0x06;
const IMAGE_REL_I386_DIR16 = 0x0001;
const CO_E_INIT_TLS_SET_CHANNEL_CONTROL = 0x8000400B;
const CMSG_CMS_RECIPIENT_INFO_PARAM = 36;
const _STRALIGN_USE_SECURE_CRT = 0;
const WAVE_FORMAT_4S08 = 0x00000200;
const DCX_NORESETATTRS = 0x00000004;
const MAX_REASON_COMMENT_LEN = 512;
const COMADMIN_E_DLLREGISTERSERVER = 0x8011041A;
const JOY_USEDEADZONE = 0x00000800;
const CLIPBRD_E_CANT_SET = 0x800401D2;
const CWP_SKIPINVISIBLE = 0x0001;
const TAPE_DRIVE_TENSION = 0x80000002;
const ERROR_UNKNOWN_REVISION = 1305;
const HCF_HOTKEYACTIVE = 0x00000004;
const DNS_ERROR_DP_ALREADY_ENLISTED = 9904;
const MEM_RESET = 0x80000;
const DESKTOP_WRITEOBJECTS = 0x0080;
const GETVECTORPENSIZE = 26;
const VFT_DRV = 0x00000003;
const SERVICE_ACCEPT_SESSIONCHANGE = 0x00000080;
const PFD_NEED_PALETTE = 0x00000080;
const SSTF_DISPLAY = 3;
const GET_FEATURE_FROM_THREAD = 0x00000001;
const TAPE_DRIVE_SELECT = 0x00000002;
const WAVE_FORMAT_1S08 = 0x00000002;
const ERROR_CLUSTER_NODE_ALREADY_DOWN = 5062;
const TAPE_DRIVE_WRITE_LONG_FMKS = 0x88000000;
const DMICM_COLORIMETRIC = 3;
const ERROR_CTX_LICENSE_EXPIRED = 7056;
const NRC_REMTFUL = 0x12;
const WC_COMPOSITECHECK = 0x00000200;
const WS_EX_APPWINDOW = 0x00040000;
const CERT_STORE_UPDATE_KEYID_FLAG = 0x400;
const FILE_RANDOM_ACCESS = 0x00000800;
const WAVE_FORMAT_1S16 = 0x00000008;
const FS_CHINESESIMP = 0x00040000;
const SCARD_E_DIR_NOT_FOUND = 0x80100023;
const SUBVERSION_MASK = 0x000000FF;
const KP_KEYEXCHANGE_PIN = 32;
const PRNSETUPDLGORD = 1539;
const MF_INSERT = 0x00000000;
const IS_TEXT_UNICODE_REVERSE_STATISTICS = 0x0020;
const FR_SHOWHELP = 0x80;
const XTYP_SHIFT = 4;
const MIIM_STRING = 0x00000040;
const STGM_SHARE_EXCLUSIVE = 0x00000010;
const CERTSRV_E_UNSUPPORTED_CERT_TYPE = 0x80094800;
const CRYPT_IMPL_REMOVABLE = 8;
const CRYPT_LDAP_AREC_EXCLUSIVE_RETRIEVAL = 0x40000;
const IMAGE_COMDAT_SELECT_ASSOCIATIVE = 5;
const SCARD_STATE_MUTE = 0x00000200;
const CO_E_ACNOTINITIALIZED = 0x8001013F;
const IMAGE_SEPARATE_DEBUG_FLAGS_MASK = 0x8000;
const PRINTER_ENUM_SHARED = 0x00000020;
const ERROR_NO_NETWORK = 1222;
const VS_FF_PATCHED = 0x00000004;
const JOB_STATUS_PAPEROUT = 0x00000040;
const DC_EMF_COMPLIANT = 20;
const MS_DEF_DH_SCHANNEL_PROV_W = "Microsoft DH SChannel Cryptographic Provider";
const EVENT_CONSOLE_UPDATE_SIMPLE = 0x4003;
const ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = 13804;
const IP_MAX_MEMBERSHIPS = 20;
const VP_MODE_WIN_GRAPHICS = 0x0001;
const PROCESSOR_PPC_601 = 601;
const ERROR_FILEMARK_DETECTED = 1101;
const PROCESSOR_PPC_603 = 603;
const GMDI_USEDISABLED = 0x0001;
const IMAGE_SYM_CLASS_FUNCTION = 0x0065;
const ERROR_FILE_ENCRYPTED = 6002;
const NO_PRIORITY = 0;
const KP_ALGID = 7;
const CHANGER_INIT_ELEM_STAT_WITH_RANGE = 0x00000002;
const RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750;
const IMAGE_REL_SHM_REFLO = 0x0014;
const URLACTION_SHELL_MOVE_OR_COPY = 0x00001802;
const CB_DIR = 0x0145;
const SHGFI_SYSICONINDEX = 0x000004000;
const SSF_AVAILABLE = 0x00000002;
const HTCLIENT = 1;
const ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = 8236;
const PROCESSOR_PPC_620 = 620;
const TIMER_MODIFY_STATE = 0x0002;
const ESB_DISABLE_RIGHT = 0x0002;
const SPI_SETWINARRANGING = 0x0083;
const TRUST_E_FAIL = 0x800B010B;
const BS_NULL = 1;
const ERROR_PKINIT_FAILURE = 1263;
const MCI_VD_STATUS_SIDE = 0x00004005;
const HEAP_FREE_CHECKING_ENABLED = 0x00000040;
const PAGE_NOCACHE = 0x200;
const PRINTER_ENUM_ICON7 = 0x00400000;
const SPAPI_E_KEY_DOES_NOT_EXIST = 0x800F0204;
const szOID_NETSCAPE_REVOCATION_URL = "2.16.840.1.113730.1.3";
const szOID_OIWSEC_mdc2RSA = "1.3.14.3.2.14";
const CRYPT_PUBKEY_ALG_OID_GROUP_ID = 3;
const ERROR_DS_DUP_SCHEMA_ID_GUID = 8381;
const ETO_CLIPPED = 0x0004;
const SPI_SETMOUSEHOVERHEIGHT = 0x0065;
const PIDDSI_BYTECOUNT = 0x00000004;
const SUBLANG_CHINESE_SINGAPORE = 0x04;
const SCARD_STATE_EMPTY = 0x00000010;
const CERT_KEY_SPEC_PROP_ID = 6;
const MMIOM_USER = 0x8000;
const CERTSRV_E_BAD_TEMPLATE_VERSION = 0x80094807;
const SIF_TRACKPOS = 0x0010;
const SUBLANG_PERSIAN_IRAN = 0x01;
const WM_IME_KEYUP = 0x0291;
const PERF_DISPLAY_PERCENT = 0x20000000;
const MNS_CHECKORBMP = 0x04000000;
const ERROR_DS_ROOT_CANT_BE_SUBREF = 8326;
const NRC_DUPENV = 0x30;
const ODT_STATIC = 5;
const CB_FINDSTRING = 0x014C;
const CERT_COMPARE_CROSS_CERT_DIST_POINTS = 17;
const DM_POSITION = 0x00000020;
const SM_CYICONSPACING = 39;
const MKF_MODIFIERS = 0x00000040;
const MF_BYCOMMAND = 0x00000000;
const IME_CMODE_FIXED = 0x0800;
const SOFTDIST_ADSTATE_NONE = 0x00000000;
const HELP_SETWINPOS = 0x0203;
const PAN_LETT_NORMAL_ROUNDED = 6;
const ERROR_INVALID_FIELD = 1616;
const szOID_CMC_TRANSACTION_ID = "1.3.6.1.5.5.7.7.5";
const CAL_SLONGDATE = 0x00000006;
const MEMORY_ALLOCATION_ALIGNMENT = 16;
const PRINTDLGEXORD = 1549;
const szOID_PKCS_7_ENVELOPED = "1.2.840.113549.1.7.3";
const CBN_DBLCLK = 2;
const COLOR_HOTLIGHT = 26;
const ARABIC_CHARSET = 178;
const EMSIS_COMPOSITIONSTRING = 0x0001;
const PROCESSOR_ARCHITECTURE_MSIL = 8;
const WM_MOUSEHOVER = 0x02A1;
const PRODUCT_SERVER_FOUNDATION = 0x21;
const szOID_CERT_MANIFOLD = "1.3.6.1.4.1.311.20.3";
const LOCALE_SENGLANGUAGE = 0x00001001;
const GETSETPAPERBINS = 29;
const WNNC_NET_FOXBAT = 0x002B0000;
const SHGFI_ATTR_SPECIFIED = 0x000020000;
const EMR_CREATEMONOBRUSH = 93;
const LR_DEFAULTSIZE = 0x0040;
const ERROR_INVALID_SCROLLBAR_RANGE = 1448;
const DM_ICMINTENT = 0x01000000;
const CRYPT_DEFAULT_OID = "DEFAULT";
const WRITE_WATCH_FLAG_RESET = 0x01;
const MFT_RADIOCHECK = 0x00000200;
const ERROR_DS_CANT_ON_RDN = 8214;
const DDD_EXACT_MATCH_ON_REMOVE = 0x4;
const IE_OPEN = -2;
const XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND = 0x80095002;
const FILE_PREFETCH_TYPE_FOR_CREATE = 0x1;
const PERF_COUNTER_VALUE = 0x00000000;
const __MINGW_USE_UNDERSCORE_PREFIX = 0;
const CTRY_ARMENIA = 374;
const SUBLANG_CZECH_CZECH_REPUBLIC = 0x01;
const VK_RETURN = 0x0D;
const ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = 8416;
const SC_MAXIMIZE = 0xF030;
const MM_MIXM_CONTROL_CHANGE = 0x3D1;
const PSINJECT_PAGEORDER = 7;
const ERROR_SXS_XML_E_UNCLOSEDTAG = 14052;
const WM_NCHITTEST = 0x0084;
const szOID_RSA_RC4 = "1.2.840.113549.3.4";
const HELPINFO_WINDOW = 0x0001;
const PSINJECT_PAGETRAILER = 103;
const CONNDLG_NOT_PERSIST = 0x00000020;
const ERROR_DS_CANT_MOD_SYSTEM_ONLY = 8369;
const CREATE_SEPARATE_WOW_VDM = 0x800;
const LANG_SLOVENIAN = 0x24;
const ERROR_CANNOT_COPY = 266;
const RPC_C_AUTHN_MQ = 100;
const ERROR_INVALID_LIST_FORMAT = 153;
const IMAGE_FILE_UP_SYSTEM_ONLY = 0x4000;
const ES_PASSWORD = 0x0020;
const CO_E_INIT_UNACCEPTED_USER_ALLOCATOR = 0x8000400D;
const lst7 = 0x0466;
const SPAPI_E_BAD_SECTION_NAME_LINE = 0x800F0001;
const ERROR_NO_SCROLLBARS = 1447;
const IMAGE_REL_AM_SECTION = 0x0008;
const ERROR_PASSWORD_MUST_CHANGE = 1907;
const MDM_PROTOCOLID_X75 = 0x3;
const SO_CONNECT_TIME = 0x700C;
const FALT = 0x10;
const SC_PREVWINDOW = 0xF050;
const SHOW_FULLSCREEN = 3;
const OLE_E_CANT_BINDTOSOURCE = 0x8004000A;
const VIF_CANNOTDELETECUR = 0x00004000;
const ctlFirst = 0x0400;
const COMADMIN_E_COMP_MOVE_DEST = 0x8011081D;
const WM_VKEYTOITEM = 0x002E;
const ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 5076;
const MCI_WAIT = 0x00000002;
const PD_COLLATE = 0x10;
const GL_LEVEL_WARNING = 0x00000003;
const PDERR_INITFAILURE = 0x1006;
const CRYPT_SEC_DESCR = 0x1;
const SPI_SETWHEELSCROLLLINES = 0x0069;
const SW_INVALIDATE = 0x0002;
const DMPAPER_QUARTO = 15;
const VIF_FILEINUSE = 0x00000080;
const DISP_E_MEMBERNOTFOUND = 0x80020003;
const LOCALE_IPOSSIGNPOSN = 0x00000052;
const IMAGE_REL_IA64_PCREL21B = 0x0006;
const IMAGE_REL_IA64_PCREL21F = 0x0008;
const SHAREVISTRINGA = "commdlg_ShareViolation";
const IMAGE_REL_IA64_PCREL21M = 0x0007;
const MIXERLINE_TARGETTYPE_MIDIIN = 4;
const PFD_GENERIC_ACCELERATED = 0x00001000;
const PERF_NUMBER_DECIMAL = 0x00010000;
const ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 8474;
const IMAGE_SYM_CLASS_STRUCT_TAG = 0x000A;
const SHTDN_REASON_MINOR_UPGRADE = 0x00000003;
const EMR_COLORMATCHTOTARGETW = 121;
const FW_LIGHT = 300;
const ERROR_INVALID_SERVICE_LOCK = 1071;
const DT_CENTER = 0x00000001;
const WNNC_NET_FTP_NFS = 0x000C0000;
const ERROR_IPSEC_IKE_QM_DELAY_DROP = 13815;
const szOID_RSA_messageDigest = "1.2.840.113549.1.9.4";
const EVENTLOG_FORWARDS_READ = 0x0004;
const EMR_MASKBLT = 78;
const DRIVERVERSION = 0;
const WHDR_ENDLOOP = 0x00000008;
const LB_RESETCONTENT = 0x0184;
const CERT_E_PURPOSE = 0x800B0106;
const EMR_BITBLT = 76;
const ERROR_DS_MISSING_SUPREF = 8406;
const APPCLASS_MASK = 0x0000000F;
const MOUSEEVENTF_VIRTUALDESK = 0x4000;
const RASTERCAPS = 38;
const CMSG_CRL_PARAM = 14;
const CRYPT_E_ASN1_BADREAL = 0x8009310A;
const LOCALE_IDAYLZERO = 0x00000026;
const PF_XSAVE_ENABLED = 17;
const URLOSTRM_USECACHEDCOPY = 0x2;
const ERROR_INVALID_PRINTER_COMMAND = 1803;
const JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE = 0x00002000;
const VFF_FILEINUSE = 0x0002;
const PFD_NEED_SYSTEM_PALETTE = 0x00000100;
const SEC_COMMIT = 0x8000000;
const MCI_INFO_MEDIA_UPC = 0x00000400;
const IMC_SETCANDIDATEPOS = 0x0008;
const ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = 5075;
const szOID_KEY_ATTRIBUTES = "2.5.29.2";
const PP_NAME = 4;
const LOCALE_SABBREVDAYNAME4 = 0x00000034;
const LOCALE_SABBREVDAYNAME5 = 0x00000035;
const PRINTER_CHANGE_ADD_PRINT_PROCESSOR = 0x01000000;
const COMADMIN_E_START_APP_NEEDS_COMPONENTS = 0x80110448;
const LOCALE_ITIMEMARKPOSN = 0x00001005;
const CTRY_NICARAGUA = 505;
const EMR_STRETCHBLT = 77;
const EXPORT_PRIVATE_KEYS = 0x4;
const edt1 = 0x0480;
const edt2 = 0x0481;
const edt3 = 0x0482;
const edt4 = 0x0483;
const edt5 = 0x0484;
const edt6 = 0x0485;
const edt7 = 0x0486;
const edt8 = 0x0487;
const edt9 = 0x0488;
const SB_THUMBPOSITION = 4;
const ERROR_CLUSTER_GUM_NOT_LOCKER = 5085;
const ERROR_MUTUAL_AUTH_FAILED = 1397;
const LOGON32_LOGON_INTERACTIVE = 2;
const SM_CYMAXTRACK = 60;
const SERVICE_ACCEPT_PAUSE_CONTINUE = 0x00000002;
const IMAGE_SCN_LNK_COMDAT = 0x00001000;
const OF_WRITE = 0x1;
const OF_SHARE_EXCLUSIVE = 0x10;
const CMSG_KEY_AGREE_ENCRYPT_FREE_PARA_FLAG = 0x1;
const DMPAPER_JENV_CHOU3 = 73;
const FLASHW_CAPTION = 0x00000001;
const WGL_SWAP_MAIN_PLANE = 0x00000001;
const STG_E_INVALIDHEADER = 0x800300FB;
const ERROR_OPLOCK_NOT_GRANTED = 300;
const SEC_WINNT_AUTH_IDENTITY_ANSI = 0x1;
const HCBT_SYSCOMMAND = 8;
const HELP_FORCEFILE = 0x0009;
const DNS_ERROR_ZONE_ALREADY_EXISTS = 9609;
const VK_MBUTTON = 0x04;
const DC_EXTRA = 9;
const PAN_SERIF_COVE = 2;
const DMPAPER_PENV_7_ROTATED = 115;
const TYPE_E_OUTOFBOUNDS = 0x80028CA1;
const PS_STYLE_MASK = 0x0000000F;
const EMR_POLYBEZIER = 2;
const IMAGE_REL_M32R_SECTION = 0x000C;
const FACILITY_SECURITY = 9;
const RPC_X_NO_MORE_ENTRIES = 1772;
const CF_SYLK = 4;
const ERROR_DOMAIN_EXISTS = 1356;
const ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE = 0xC;
const SPI_SETSCREENSAVERRUNNING = 0x0061;
const MM_JOY1MOVE = 0x3A0;
const ERROR_CTX_LICENSE_CLIENT_INVALID = 7055;
const GUI_SYSTEMMENUMODE = 0x00000008;
const FEATURESETTING_NEGATIVE = 5;
const EMR_EXTSELECTCLIPRGN = 75;
const STARTF_USEPOSITION = 0x4;
const ITALIC_FONTTYPE = 0x200;
const NTE_FIXEDPARAMETER = 0x80090025;
const SPI_GETMOUSEHOVERTIME = 0x0066;
const TIME_VALID_OID_FLUSH_OBJECT_FUNC = "TimeValidDllFlushObject";
const DFCS_FLAT = 0x4000;
const CAP_ATAPI_ID_CMD = 2;
const CRYPT_MODE_ECB = 2;
const EVENT_SYSTEM_SCROLLINGSTART = 0x0012;
const CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR = 9;
const CERT_CHAIN_REVOCATION_CHECK_CHAIN = 0x20000000;
const PRINTER_CHANGE_JOB = 0x0000FF00;
const CE_OVERRUN = 0x2;
const __SIZEOF_INT__ = 4;
const DMPAPER_FANFOLD_STD_GERMAN = 40;
const CERTSRV_E_UNKNOWN_CERT_TYPE = 0x80094813;
const ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 13013;
const CERT_FILE_STORE_COMMIT_ENABLE_FLAG = 0x10000;
const NCBRECVANY = 0x16;
const FAPPCOMMAND_MOUSE = 0x8000;
const NRC_BUFLEN = 0x01;
const RPC_E_INVALID_PARAMETER = 0x80010010;
const XACT_S_READONLY = 0x0004D002;
const RESOURCEUSAGE_ATTACHED = 0x00000010;
const CRYPT_ASYNC_RETRIEVAL = 0x10;
const JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT = 3;
const MCI_SET_AUDIO_ALL = 0x00000000;
const JOB_OBJECT_LIMIT_BREAKAWAY_OK = 0x00000800;
const CERTSRV_E_BAD_REQUESTSUBJECT = 0x80094001;
const MCI_NOTIFY_SUCCESSFUL = 0x0001;
const IMAGE_COMDAT_SELECT_ANY = 2;
const CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG = 0x4;
const COMADMIN_E_SAFERINVALID = 0x80110822;
const RPC_S_PROCNUM_OUT_OF_RANGE = 1745;
const CRYPT_ENCODE_ALLOC_FLAG = 0x8000;
const PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 = 10;
const ERROR_DS_INSUFF_ACCESS_RIGHTS = 8344;
const SUBLANG_NORWEGIAN_BOKMAL = 0x01;
const FILE_DELETE_CHILD = 0x0040;
const PRODUCT_BUSINESS_N = 0x10;
const MIXER_GETLINEINFOF_TARGETTYPE = 0x00000004;
const SKF_LCTLLOCKED = 0x00040000;
const LANG_ARABIC = 0x01;
const CERT_CHAIN_POLICY_IGNORE_CA_REV_UNKNOWN_FLAG = 0x400;
const ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = 8584;
const TAPE_ABSOLUTE_POSITION = 0;
const DC_COPIES = 18;
const CRYPT_STRING_BASE64REQUESTHEADER = 0x3;
const SUBLANG_GUJARATI_INDIA = 0x01;
const SCARD_E_PCI_TOO_SMALL = 0x80100019;
const OF_DELETE = 0x200;
const RESOURCEUSAGE_CONNECTABLE = 0x00000001;
const ERROR_SHARING_PAUSED = 70;
const CROSS_CERT_DIST_POINT_ERR_INDEX_SHIFT = 24;
const ERROR_CANNOT_DETECT_DRIVER_FAILURE = 1080;
const PIDMSI_EDITOR = 0x00000002;
const OSS_OUT_OF_RANGE = 0x80093021;
const FILE_SHARE_WRITE = 0x00000002;
const SEE_MASK_IDLIST = 0x00000004;
const CERT_STORE_TIME_VALIDITY_FLAG = 0x2;
const ACCESS_MIN_MS_OBJECT_ACE_TYPE = 0x5;
const DC_HASDEFID = 0x534B;
const SM_CXSMSIZE = 52;
const REG_DWORD = 4;
const ERROR_DS_CANT_CACHE_CLASS = 8402;
const CRYPT_STRING_HEX_ANY = 0x8;
const PERF_NO_INSTANCES = -1;
const STATE_SYSTEM_EXTSELECTABLE = 0x02000000;
const ERROR_NETWORK_ACCESS_DENIED = 65;
const ERROR_DS_ENCODING_ERROR = 8252;
const EMARCH_ENC_I17_IMM41a_VAL_POS_X = 22;
const VER_SUITE_COMMUNICATIONS = 0x00000008;
const APPCOMMAND_REPLY_TO_MAIL = 39;
const SO_BROADCAST = 0x0020;
const SMART_IDE_ERROR = 1;
const SORT_GEORGIAN_TRADITIONAL = 0x0;
const MF_UNHILITE = 0x00000000;
const ERROR_GROUP_NOT_ONLINE = 5014;
const LANG_XHOSA = 0x34;
const FAPPCOMMAND_OEM = 0x1000;
const IMAGE_REL_ARM_BRANCH11 = 0x0004;
const PAN_PROP_EXPANDED = 5;
const CB_SELECTSTRING = 0x014D;
const ISC_SHOWUIALLCANDIDATEWINDOW = 0x0000000F;
const APPLICATION_VERIFIER_LOCK_OVER_RELEASED = 0x0209;
const SPI_GETTOGGLEKEYS = 0x0034;
const ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = 1934;
const LOCALE_NOUSEROVERRIDE = 0x80000000;
const IMAGE_REL_ARM_BRANCH24 = 0x0003;
const SEC_WINNT_AUTH_IDENTITY_UNICODE = 0x2;
const ERROR_SERVICE_DEPENDENCY_DELETED = 1075;
const RPC_S_PROTOCOL_ERROR = 1728;
const VIF_CANNOTREADDST = 0x00020000;
const SUBLANG_YAKUT_RUSSIA = 0x01;
const TAPE_LOGICAL_BLOCK = 2;
const GEOID_NOT_AVAILABLE = -1;
const COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED = 0x80110485;
const SCARD_CLASS_IFD_PROTOCOL = 8;
const CRYPT_AIA_RETRIEVAL = 0x80000;
const COMADMIN_E_CAN_NOT_START_APP = 0x8011044B;
const MDM_X75_DATA_DEFAULT = 0x0;
const RDW_FRAME = 0x0400;
const SKF_TRISTATE = 0x00000080;
const CBS_HASSTRINGS = 0x0200;
const SCHED_E_TRIGGER_NOT_FOUND = 0x80041309;
const ERROR_DS_DRA_SOURCE_REINSTALLED = 8459;
const RPC_S_NOT_RPC_ERROR = 1823;
const CONVERT10_E_STG_NO_STD_STREAM = 0x800401C5;
const MOUSEEVENTF_ABSOLUTE = 0x8000;
const RPC_E_SERVER_DIED_DNE = 0x80010012;
const RTL_VRF_FLG_FULL_PAGE_HEAP = 0x00000001;
const LANG_BENGALI = 0x45;
const IS_TEXT_UNICODE_ASCII16 = 0x0001;
const SHTDN_REASON_MAJOR_OTHER = 0x00000000;
const CRYPT_INSTALL_OID_INFO_BEFORE_FLAG = 1;
const TRUST_E_COUNTER_SIGNER = 0x80096003;
const RTL_VRF_FLG_RACE_CHECKS = 0x00000400;
const PROPSETFLAG_DEFAULT = 0;
const CO_E_INVALIDSID = 0x8001012D;
const CTRY_BELGIUM = 32;
const COMADMIN_E_COMPFILE_LOADDLLFAIL = 0x80110425;
const DCE_C_ERROR_STRING_LEN = 256;
const DC_VERSION = 10;
const ERROR_DS_NOT_CLOSEST = 8588;
const WSASYS_STATUS_LEN = 128;
const JOB_NOTIFY_FIELD_TOTAL_PAGES = 0x14;
const PROCESSOR_ARCHITECTURE_ALPHA = 2;
const IMAGE_SUBSYSTEM_WINDOWS_CUI = 3;
const CONVERT10_E_FIRST = 0x800401C0;
const ERROR_RETRY = 1237;
const SCARD_W_CHV_BLOCKED = 0x8010006C;
const ERROR_CLUSTER_NETWORK_NOT_FOUND = 5045;
const HTTOPLEFT = 13;
const S_WHITE2048 = 6;
const SO_CONNDATA = 0x7000;
const DM_PANNINGHEIGHT = 0x10000000;
const JOB_OBJECT_LIMIT_SUBSET_AFFINITY = 0x00004000;
const __DECIMAL_DIG__ = 21;
const SCARD_W_CACHE_ITEM_STALE = 0x80100071;
const SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN = 0x05;
const PIDDSI_SLIDECOUNT = 0x00000007;
const HANGUP_PENDING = 0x04;
const CTL_FIND_NO_LIST_ID_CBDATA = 0xFFFFFFFF;
const PF_PPC_MOVEMEM_64BIT_OK = 4;
const DI_MASK = 0x0001;
const PFD_DRAW_TO_BITMAP = 0x00000008;
const DRAFTMODE = 7;
const SCARD_SCOPE_SYSTEM = 2;
const DCBA_FACEUPNONE = 0x0000;
const IMAGE_SYM_CLASS_SECTION = 0x0068;
const COMADMIN_E_INVALIDUSERIDS = 0x80110410;
const EMARCH_ENC_I17_IMM9D_INST_WORD_X = 3;
const szOID_INFOSEC_sdnsTokenProtection = "2.16.840.1.101.2.1.1.7";
const PIPE_ACCESS_INBOUND = 0x1;
const IMAGE_REL_M32R_PCREL8 = 0x0007;
const EMR_RESERVED_105 = 105;
const EMR_RESERVED_106 = 106;
const EMR_RESERVED_108 = 108;
const EMR_RESERVED_109 = 109;
const CO_E_OLE1DDE_DISABLED = 0x80004016;
const GGO_BEZIER = 3;
const CERT_STORE_PROV_LM_SYSTEM_STORE_FLAG = 0x10;
const BSM_ALLCOMPONENTS = 0x00000000;
const DOUBLE_CLICK = 0x2;
const BI_RGB = 0;
const EMR_RESERVED_117 = 117;
const EMR_RESERVED_119 = 119;
const APPCOMMAND_HELP = 27;
const ERROR_INVALID_DOMAIN_ROLE = 1354;
const __LDBL_HAS_QUIET_NAN__ = 1;
const MCI_DEVTYPE_VIDEODISC = 514;
const FILE_DEVICE_WAVE_OUT = 0x00000026;
const TIME_NOSECONDS = 0x00000002;
const ERROR_DS_DRA_NAME_COLLISION = 8458;
const EMR_RESERVED_120 = 120;
const SPI_SETFONTSMOOTHING = 0x004B;
const DS_LOCALEDIT = 0x20;
const SE_DACL_PROTECTED = 0x1000;
const LOAD_WITH_ALTERED_SEARCH_PATH = 0x8;
const SUBLANG_SPANISH_DOMINICAN_REPUBLIC = 0x07;
const CRYPT_FLAG_IPSEC = 0x10;
const NTE_SILENT_CONTEXT = 0x80090022;
const XACT_E_WRONGUOW = 0x8004D012;
const FILE_FILE_COMPRESSION = 0x00000010;
const CHILDID_SELF = 0;
const TT_PRIM_CSPLINE = 3;
const MK_E_NOPREFIX = 0x800401EE;
const C3_KATAKANA = 0x0010;
const WM_TCARD = 0x0052;
const PRODUCT_STORAGE_ENTERPRISE_SERVER = 0x17;
const szOID_OIWSEC_rsaSign = "1.3.14.3.2.11";
const SOFTDIST_ADSTATE_DOWNLOADED = 0x00000002;
const ERROR_CTX_MODEM_RESPONSE_TIMEOUT = 7012;
const MDM_SHIFT_AUTO_SPEED = 0x0;
const CRL_DIST_POINT_ISSUER_RDN_NAME = 2;
const __MMX__ = 1;
const ERROR_DS_MISSING_FSMO_SETTINGS = 8434;
const SPI_SETAUDIODESCRIPTION = 0x0075;
const FONTMAPPER_MAX = 10;
const ERROR_DS_SECURITY_ILLEGAL_MODIFY = 8423;
const sz_CERT_STORE_PROV_PKCS7 = "PKCS7";
const PRINTACTION_NETINSTALL = 2;
const SM_CYDOUBLECLK = 37;
const LANG_UZBEK = 0x43;
const XACT_E_LOGFULL = 0x8004D01A;
const META_SETLAYOUT = 0x0149;
const SORT_CHINESE_PRCP = 0x0;
const IMAGE_REL_I386_SECREL = 0x000B;
const FILE_ATTRIBUTE_OFFLINE = 0x00001000;
const ODA_DRAWENTIRE = 0x0001;
const PAN_SERIF_PERP_SANS = 13;
const RPC_C_OPT_MQ_AUTHN_SERVICE = 5;
const REG_QWORD_LITTLE_ENDIAN = 11;
const SUBLANG_WOLOF_SENEGAL = 0x01;
const MDM_V110_SPEED_12DOT0K = 0x5;
const MKF_CONFIRMHOTKEY = 0x00000008;
const PSP_USEFUSIONCONTEXT = 0x00004000;
const PRINTER_NOTIFY_FIELD_ATTRIBUTES = 0x0D;
const szOID_CMC_STATUS_INFO = "1.3.6.1.5.5.7.7.1";
const ERROR_DS_NAMING_VIOLATION = 8247;
const MM_MIM_LONGDATA = 0x3C4;
const JOB_STATUS_COMPLETE = 0x00001000;
const FR_MATCHDIAC = 0x20000000;
const IMAGE_FILE_MACHINE_AMD64 = 0x8664;
const __BIGGEST_ALIGNMENT__ = 16;
const ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = 14022;
const INPUT_MOUSE = 0;
const ERROR_CLUSTER_SHUTTING_DOWN = 5022;
const SOFTDIST_FLAG_DELETE_SUBSCRIPTION = 0x00000008;
const FILE_FLAG_FIRST_PIPE_INSTANCE = 0x80000;
const ERROR_SEM_NOT_FOUND = 187;
const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 8586;
const szOID_PKIX_KP_EMAIL_PROTECTION = "1.3.6.1.5.5.7.3.4";
const JOB_OBJECT_QUERY = 0x0004;
const META_ELLIPSE = 0x0418;
const szOID_MEMBER = "2.5.4.31";
const XACT_E_FIRST = 0x8004D000;
const IMAGE_REL_EBC_ABSOLUTE = 0x0000;
const TAPE_DRIVE_ABS_BLK_IMMED = 0x80002000;
const BIDI_ACCESS_ADMINISTRATOR = 0x1;
const MCI_OVLY_WHERE_DESTINATION = 0x00040000;
const CO_E_APPDIDNTREG = 0x800401FE;
const ERROR_WRONG_PASSWORD = 1323;
const RPC_S_INVALID_TAG = 1733;
const MIXER_GETLINECONTROLSF_QUERYMASK = 0x0000000F;
const CM_IN_GAMUT = 0;
const PROV_DSS_DH = 13;
const SW_HIDE = 0;
const ERROR_DS_SOURCE_DOMAIN_IN_FOREST = 8534;
const POSTSCRIPT_DATA = 37;
const ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 1794;
const __USE_CRTIMP = 1;
const CTL_ANY_SUBJECT_TYPE = 1;
const OBJ_MEMDC = 10;
const DS_CENTER = 0x0800;
const ERROR_INVALID_INDEX = 1413;
const GMEM_NOTIFY = 0x4000;
const MMIO_EXIST = 0x00004000;
const POWER_LEVEL_USER_NOTIFY_EXEC = 0x00000004;
const CRYPT_LDAP_SCOPE_BASE_ONLY_RETRIEVAL = 0x2000;
const OFFLINE_STATUS_REMOTE = 0x0002;
const C2_NOTAPPLICABLE = 0x0000;
const CERTSRV_E_ENROLL_DENIED = 0x80094011;
const SHERB_NOSOUND = 0x00000004;
const DMCOLOR_MONOCHROME = 1;
const NORMAL_PRIORITY_CLASS = 0x20;
const SPI_SETFASTTASKSWITCH = 0x0024;
const TCI_SRCFONTSIG = 3;
const ERROR_SXS_XML_E_INVALID_UNICODE = 14049;
const C2_COMMONSEPARATOR = 0x0007;
const STGM_SHARE_DENY_READ = 0x00000030;
const ERROR_NOT_QUORUM_CAPABLE = 5021;
const CERT_STORE_PROV_EXTERNAL_FLAG = 0x1;
const VK_OEM_PERIOD = 0xBE;
const SWP_NOSENDCHANGING = 0x0400;
const VER_SUITE_COMPUTE_SERVER = 0x00004000;
const COMADMIN_E_REGDB_SYSTEMERR = 0x80110474;
const JOYERR_NOERROR = 0;
const RT_MANIFEST = 24;
const ERROR_JOIN_TO_JOIN = 138;
const ERROR_DEBUGGER_INACTIVE = 1284;
const IMAGE_REL_IA64_SECREL64I = 0x000D;
const SUBLANG_GERMAN_AUSTRIAN = 0x03;
const JOB_OBJECT_LIMIT_RESERVED4 = 0x00010000;
const LANG_JAPANESE = 0x11;
const CRYPT_E_ASN1_ERROR = 0x80093100;
const ENHANCED_KEY = 0x100;
const FKF_AVAILABLE = 0x00000002;
const ERROR_NO_SUCH_DOMAIN = 1355;
const ERROR_DS_CANT_RETRIEVE_CHILD = 8422;
const RPC_S_UNKNOWN_AUTHN_SERVICE = 1747;
const PD_ENABLEPRINTHOOK = 0x1000;
const MCI_RECORD_INSERT = 0x00000100;
const SUBLANG_QUECHUA_ECUADOR = 0x02;
const WM_POWER = 0x0048;
const NTE_NO_KEY = 0x8009000D;
const IMAGE_REL_I386_REL16 = 0x0002;
const WM_NCMOUSELEAVE = 0x02A2;
const DNS_ERROR_NODE_CREATION_FAILED = 9703;
const ERROR_CLIPBOARD_NOT_OPEN = 1418;
const szOID_NETSCAPE_COMMENT = "2.16.840.1.113730.1.13";
const ERROR_DS_ALIAS_DEREF_PROBLEM = 8244;
const META_SETWINDOWEXT = 0x020C;
const ERROR_DS_EXISTS_IN_SUB_CLS = 8394;
const SCS_32BIT_BINARY = 0;
const ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 5903;
const EM_SETHANDLE = 0x00BC;
const szOID_KEY_USAGE = "2.5.29.15";
const szOID_PKCS_1 = "1.2.840.113549.1.1";
const szOID_PKCS_2 = "1.2.840.113549.1.2";
const szOID_PKCS_3 = "1.2.840.113549.1.3";
const MCI_ANIM_WINDOW_ENABLE_STRETCH = 0x00100000;
const szOID_PKCS_5 = "1.2.840.113549.1.5";
const szOID_PKCS_6 = "1.2.840.113549.1.6";
const szOID_PKCS_7 = "1.2.840.113549.1.7";
const PF_RDTSC_INSTRUCTION_AVAILABLE = 8;
const ERROR_INCORRECT_ADDRESS = 1241;
const TAPE_DRIVE_RELATIVE_BLKS = 0x80020000;
const CTRY_SWITZERLAND = 41;
const IMAGE_REL_I386_REL32 = 0x0014;
const CMSG_CTRL_ADD_CRL = 12;
const TA_RIGHT = 2;
const ALG_SID_RSA_MSATWORK = 2;
const FRS_ERR_SYSVOL_DEMOTE = 8016;
const TC_HARDERR = 1;
const C2_LEFTTORIGHT = 0x0001;
const NRC_ENVNOTDEF = 0x34;
const URLACTION_SHELL_RTF_OBJECTS_LOAD = 0x0000180A;
const MOD_ON_KEYUP = 0x0800;
const SBM_SETRANGE = 0x00E2;
const SORT_CHINESE_PRC = 0x2;
const MH_DELETE = 3;
const IMAGE_REL_MIPS_JMPADDR16 = 0x0010;
const SO_DONTROUTE = 0x0010;
const CMSG_CMS_ENCAPSULATED_CONTENT_FLAG = 0x40;
const IGP_UI = 0x00000010;
const CERT_CHAIN_USE_LOCAL_MACHINE_STORE = 0x8;
const SCARD_E_NO_SERVICE = 0x8010001D;
const MCI_VD_GETDEVCAPS_CAV = 0x00020000;
const LOAD_TLB_AS_64BIT = 0x40;
const HC_GETNEXT = 1;
const EXTTEXTOUT = 512;
const LB_GETLOCALE = 0x01A6;
const __DBL_HAS_INFINITY__ = 1;
const WAVECAPS_SAMPLEACCURATE = 0x0020;
const PSINJECT_COMMENTS = 11;
const CF_DSPBITMAP = 0x0082;
const RDW_ALLCHILDREN = 0x0080;
const REGDB_E_READREGDB = 0x80040150;
const ERROR_CHILD_WINDOW_MENU = 1436;
const CB_ERR = -1;
const SPI_GETFOCUSBORDERWIDTH = 0x200E;
const SBS_SIZEGRIP = 0x0010;
const DOF_DOCUMENT = 0x8002;
const SM_CMETRICS = 90;
const TRANSPORT_TYPE_LPC = 0x04;
const PROPSET_BEHAVIOR_CASE_SENSITIVE = 1;
const CTRY_EL_SALVADOR = 503;
const MAXIMUM_ENCRYPTION_VALUE = 0x00000004;
const FILE_SUPPORTS_SPARSE_FILES = 0x00000040;
const APPLICATION_VERIFIER_INVALID_ALLOCMEM = 0x0601;
const META_SCALEVIEWPORTEXT = 0x0412;
const PAN_WEIGHT_VERY_LIGHT = 2;
const IMAGE_FILE_MACHINE_CEE = 0xC0EE;
const IMAGE_FILE_MACHINE_CEF = 0x0CEF;
const _WIN32_WINNT_WINXP = 0x0501;
const POWER_ACTION_LOCK_CONSOLE = 0x20000000;
const WS_SYSMENU = 0x00080000;
const VFT2_DRV_COMM = 0x0000000A;
const RT_ICON = 3;
const TAPE_DRIVE_REVERSE_POSITION = 0x80400000;
const CHANGER_PREMOUNT_EJECT_REQUIRED = 0x00080000;
const LB_ERR = -1;
const DM_PAPERLENGTH = 0x00000004;
const DOF_MULTIPLE = 0x8004;
const VER_SUITE_DATACENTER = 0x00000080;
const IMAGE_REL_SH3_SECREL = 0x000F;
const X3_EMPTY_INST_VAL_POS_X = 0;
const C1_SPACE = 0x0008;
const DMTT_BITMAP = 1;
const DOCKINFO_DOCKED = 0x2;
const X3_BTYPE_QP_INST_WORD_POS_X = 23;
const CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG = 0x4;
const PRINTER_STATUS_TONER_LOW = 0x00020000;
const szOID_YESNO_TRUST_ATTR = "1.3.6.1.4.1.311.10.4.1";
const DC_ACTIVE = 0x0001;
const RC_SCALING = 4;
const LOCALE_IDIGITS = 0x00000011;
const FILE_NOTIFY_CHANGE_SECURITY = 0x00000100;
const MMIO_DENYREAD = 0x00000030;
const OLECREATE_LEAVERUNNING = 0x00000001;
const CERT_TRUST_PUB_CHECK_PUBLISHER_REV_FLAG = 0x100;
const FACILITY_AAF = 18;
const XACT_E_NOIMPORTOBJECT = 0x8004D014;
const VFT2_DRV_DISPLAY = 0x00000004;
const IPPORT_RJE = 77;
const INHERITED_ACE = 0x10;
const CO_E_ALREADYINITIALIZED = 0x800401F1;
const FR_FINDNEXT = 0x8;
const TAPE_DRIVE_WRITE_FILEMARKS = 0x82000000;
const PRODUCT_HOME_BASIC = 0x2;
const META_CREATEPATTERNBRUSH = 0x01F9;
const SECTION_MAP_WRITE = 0x0002;
const DMICMMETHOD_NONE = 1;
const ERROR_DS_ILLEGAL_SUPERIOR = 8345;
const EMR_SETPIXELV = 15;
const URLACTION_CREDENTIALS_USE = 0x00001A00;
const SHIFT_PRESSED = 0x10;
const RPC_S_GROUP_MEMBER_NOT_FOUND = 1898;
const VK_NUMPAD1 = 0x61;
const VK_NUMPAD2 = 0x62;
const VK_NUMPAD3 = 0x63;
const VK_NUMPAD4 = 0x64;
const VK_NUMPAD5 = 0x65;
const VK_NUMPAD6 = 0x66;
const VIF_MISMATCH = 0x00000002;
const VK_NUMPAD9 = 0x69;
const FACILITY_ACS = 20;
const PRODUCT_STANDARD_SERVER = 0x7;
const MOUSE_MOVE_ABSOLUTE = 1;
const PROCESSOR_INTEL_386 = 386;
const MHDR_INQUEUE = 0x00000004;
const ERROR_DS_DRA_MAIL_PROBLEM = 8447;
const C1_ALPHA = 0x0100;
const MCI_VD_GETDEVCAPS_CLV = 0x00010000;
const WM_GETMINMAXINFO = 0x0024;
const BS_DEFPUSHBUTTON = 0x00000001;
const IMEMENUITEM_STRING_SIZE = 80;
const SPI_SETPENSIDEMOVETHRESHOLD = 0x008B;
const STN_CLICKED = 0;
const CLEARTYPE_QUALITY = 5;
const DMPAPER_B6_JIS = 88;
const MONITOR_DEFAULTTONEAREST = 0x00000002;
const CRYPT_MATCH_ANY_ENCODING_TYPE = 0xFFFFFFFF;
const CF_OWNERDISPLAY = 0x0080;
const MDM_PROTOCOLID_ANALOG = 0x7;
const CONTEXT_AMD64 = 0x100000;
const CERT_CHAIN_REVOCATION_CHECK_END_CERT = 0x10000000;
const VK_HANJA = 0x19;
const RIDEV_CAPTUREMOUSE = 0x00000200;
const URLACTION_SHELL_FILE_DOWNLOAD = 0x00001803;
const ERROR_DS_INAPPROPRIATE_MATCHING = 8238;
const CD_LBSELCHANGE = 0;
const OSS_BAD_ENCRULES = 0x80093016;
const NUMPRS_NEG = 0x10000;
const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT = 0x8011081A;
const FR_NOMATCHCASE = 0x800;
const CRYPT_NO_AUTH_RETRIEVAL = 0x20000;
const IMN_CHANGECANDIDATE = 0x0003;
const FNERR_SUBCLASSFAILURE = 0x3001;
const szOID_RSA_DH = "1.2.840.113549.1.3.1";
const NIIF_USER = 0x00000004;
const SPI_GETSHOWIMEUI = 0x006E;
const SAVE_CTM = 4101;
const DV_E_DVTARGETDEVICE_SIZE = 0x8004006C;
const NTE_BAD_ALGID = 0x80090008;
const szOID_REGISTERED_ADDRESS = "2.5.4.26";
const IMAGE_ARCHIVE_PAD = "\n";
const FILE_FLAG_SEQUENTIAL_SCAN = 0x8000000;
const PRINTER_NOTIFY_FIELD_CJOBS = 0x14;
const VK_UP = 0x26;
const SCS_QUERYRECONVERTSTRING = 0x00020000;
const IMAGE_SYM_TYPE_SHORT = 0x0003;
const szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS = "Software\\Policies\\Microsoft\\Cryptography";
const ERROR_FILE_OFFLINE = 4350;
const FACILITY_STORAGE = 3;
const IMAGE_SYM_CLASS_NULL = 0x0000;
const PORT_STATUS_PAPER_PROBLEM = 5;
const PKCS_7_ASN_ENCODING = 0x10000;
const MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT = 0x80097008;
const RT_RCDATA = 10;
const RPC_E_SERVERCALL_REJECTED = 0x8001010B;
const __SIZEOF_DOUBLE__ = 8;
const BF_FLAT = 0x4000;
const POSTSCRIPT_IGNORE = 38;
const BOLD_FONTTYPE = 0x100;
const PURGE_RXABORT = 0x2;
const OSS_CANT_OPEN_TRACE_WINDOW = 0x80093018;
const OSS_PDU_RANGE = 0x80093003;
const ERROR_CURRENT_DIRECTORY = 16;
const SO_RCVLOWAT = 0x1004;
const MOD_LEFT = 0x8000;
const X509_ASN_ENCODING = 0x1;
const szOID_NT5_CRYPTO = "1.3.6.1.4.1.311.10.3.6";
const GL_ID_INPUTCODE = 0x00000026;
const EM_SETRECT = 0x00B3;
const HEAP_GROWABLE = 0x00000002;
const CAL_ITWODIGITYEARMAX = 0x00000030;
const ERROR_TAG_NOT_PRESENT = 2013;
const WNNC_NET_POWERLAN = 0x000F0000;
const szOID_REMOVE_CERTIFICATE = "1.3.6.1.4.1.311.10.8.1";
const R2_NOP = 11;
const CTRY_BRAZIL = 55;
const R2_NOT = 6;
const PFD_DEPTH_DONTCARE = 0x20000000;
const CLIP_TO_PATH = 4097;
const PRODUCT_ID_LENGTH = 16;
const DV_E_LINDEX = 0x80040068;
const WNNC_NET_LIFENET = 0x000E0000;
const WM_ENDSESSION = 0x0016;
const CB_GETLOCALE = 0x015A;
const IMAGE_REL_I386_DIR32 = 0x0006;
const SM_SAMEDISPLAYFORMAT = 81;
const URL_OID_GET_OBJECT_URL_FUNC = "UrlDllGetObjectUrl";
const ERROR_NO_MORE_SEARCH_HANDLES = 113;
const ERROR_IPSEC_IKE_INVALID_SIG = 13875;
const IME_CMODE_ALPHANUMERIC = 0x0000;
const EVENT_E_COMPLUS_NOT_INSTALLED = 0x8004020C;
const DNS_ERROR_OPERATION_BASE = 9750;
const C3_FULLWIDTH = 0x0080;
const TPM_RECURSE = 0x0001;
const __DECIMAL_BID_FORMAT__ = 1;
const SEC_E_SHUTDOWN_IN_PROGRESS = 0x8009033F;
const MCI_ANIM_GETDEVCAPS_NORMAL_RATE = 0x00004004;
const IMAGE_REL_PPC_GPREL = 0x0015;
const PSD_DISABLEPRINTER = 0x20;
const ERROR_BAD_INHERITANCE_ACL = 1340;
const EEInfoGCCOM = 11;
const MAX_LANA = 254;
const DNS_ERROR_RCODE_BADSIG = 9016;
const SOUND_SYSTEM_FAULT = 13;
const SHTDN_REASON_MINOR_SERVICEPACK = 0x00000010;
const URLMON_OPTION_USE_BINDSTRINGCREDS = 0x10000008;
const NMPWAIT_NOWAIT = 0x1;
const WM_DISPLAYCHANGE = 0x007E;
const URLACTION_COOKIES_SESSION = 0x00001A03;
const SUBLANG_ARABIC_ALGERIA = 0x05;
const MB_APPLMODAL = 0x00000000;
const LZERROR_UNKNOWNALG = -8;
const PRINTER_NOTIFY_INFO_DISCARDED = 0x01;
const szOID_RSA_SMIMEalg = "1.2.840.113549.1.9.16.3";
const PSP_USECALLBACK = 0x00000080;
const SM_STARTER = 88;
const CRL_REASON_AFFILIATION_CHANGED = 3;
const SYSTEM_ALARM_CALLBACK_ACE_TYPE = 0xE;
const CRYPT_DATA_KEY = 0x800;
const SEE_MASK_CLASSNAME = 0x00000001;
const SM_MIDEASTENABLED = 74;
const CRYPT_DONT_CACHE_RESULT = 0x8;
const VK_EXSEL = 0xF8;
const __UINT16_MAX__ = 65535;
const E_NOINTERFACE = 0x80004002;
const SM_CYMENUCHECK = 72;
const IMAGE_REL_AMD64_ABSOLUTE = 0x0000;
const szOID_INFOSEC_SuiteATokenProtection = "2.16.840.1.101.2.1.1.16";
const ERROR_TOKEN_ALREADY_IN_USE = 1375;
const PBT_APMQUERYSTANDBYFAILED = 0x0003;
const SUBLANG_UI_CUSTOM_DEFAULT = 0x05;
const FE_FONTSMOOTHINGDOCKING = 0x8000;
const SEC_E_WRONG_CREDENTIAL_HANDLE = 0x80090336;
const MM_WOM_DONE = 0x3BD;
const MSGF_MAX = 8;
const CO_E_INIT_CLASS_CACHE = 0x80004009;
const CRYPT_OID_NO_NULL_ALGORITHM_PARA_FLAG = 0x4;
const TAPE_DRIVE_LOCK_UNLK_IMMED = 0x80000080;
const COLOR_MENUTEXT = 7;
const SS_CENTER = 0x00000001;
const GUI_CARETBLINKING = 0x00000001;
const TARGET_IS_NT351_OR_WIN95_OR_LATER = 1;
const RPC_C_EP_MATCH_BY_IF = 1;
const szOID_RSA_SMIMEalgESDH = "1.2.840.113549.1.9.16.3.5";
const MKF_HOTKEYSOUND = 0x00000010;
const ERROR_NO_TRACKING_SERVICE = 1172;
const STGM_NOSNAPSHOT = 0x00200000;
const HC_SKIP = 2;
const ERROR_PATCH_PACKAGE_REJECTED = 1643;
const KP_SALT = 2;
const SUBLANG_UPPER_SORBIAN_GERMANY = 0x01;
const MMIO_FINDRIFF = 0x0020;
const CFERR_CHOOSEFONTCODES = 0x2000;
const ERROR_DS_BAD_NAME_SYNTAX = 8335;
const MONO_FONT = 8;
const CACHE_S_LAST = 0x0004017F;
const ERROR_INSUFFICIENT_BUFFER = 122;
const META_OFFSETVIEWPORTORG = 0x0211;
const CMSG_OID_IMPORT_MAIL_LIST_FUNC = "CryptMsgDllImportMailList";
const FOF_WANTNUKEWARNING = 0x4000;
const IMC_OPENSTATUSWINDOW = 0x0022;
const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT = 13;
const MIM_APPLYTOSUBMENUS = 0x80000000;
const ERROR_TOO_MANY_MODULES = 214;
const OLE_S_MAC_CLIPFORMAT = 0x00040002;
const CBR_300 = 300;
const TAPE_DRIVE_VARIABLE_BLOCK = 0x00000800;
const CBN_ERRSPACE = -1;
const EM_UNDO = 0x00C7;
const SPI_GETHOTTRACKING = 0x100E;
const WTS_REMOTE_DISCONNECT = 0x4;
const DRAGDROP_S_FIRST = 0x00040100;
const DDD_LUID_BROADCAST_DRIVE = 0x10;
const szOID_PKIX_KP_IPSEC_USER = "1.3.6.1.5.5.7.3.7";
const CRYPT_DECODE_ALLOC_FLAG = 0x8000;
const SW_MAX = 11;
const sz_CERT_STORE_PROV_LDAP_W = "Ldap";
const VK_F21 = 0x84;
const RT_FONT = 8;
const RPC_C_BINDING_INFINITE_TIMEOUT = 10;
const ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = 8556;
const CERT_COMPARE_EXISTING = 13;
const EVENT_OBJECT_SELECTIONADD = 0x8007;
const COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED = 0x8011045B;
const CONTEXT_EXCEPTION_ACTIVE = 0x8000000;
const STG_E_LOCKVIOLATION = 0x80030021;
const SOCK_DGRAM = 2;
const SOUND_SYSTEM_APPEND = 14;
const PAN_MIDLINE_CONSTANT_POINTED = 9;
const SC_CONTEXTHELP = 0xF180;
const CERTSRV_E_ALIGNMENT_FAULT = 0x80094010;
const WH_DEBUG = 9;
const COLOR_BTNHIGHLIGHT = 20;
const DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 9710;
const LANG_NEPALI = 0x61;
const OSS_NULL_FCN = 0x80093015;
const DCB_ACCUMULATE = 0x0002;
const MF_BITMAP = 0x00000004;
const IMAGE_OS2_SIGNATURE_LE = 0x454C;
const SUBLANG_BELARUSIAN_BELARUS = 0x01;
const ERROR_WORKING_SET_QUOTA = 1453;
const _HEAPEMPTY = -1;
const APPLICATION_VERIFIER_TERMINATE_THREAD_CALL = 0x0100;
const URLACTION_ACTIVEX_RUN = 0x00001200;
const SPAPI_E_GENERAL_SYNTAX = 0x800F0003;
const NTDDI_WINXPSP1 = 0x05010100;
const NTDDI_WINXPSP2 = 0x05010200;
const NTDDI_WINXPSP3 = 0x05010300;
const NTDDI_WINXPSP4 = 0x05010400;
const ERROR_PATCH_PACKAGE_INVALID = 1636;
const CERT_NON_REPUDIATION_KEY_USAGE = 0x40;
const MMIO_SHAREMODE = 0x00000070;
const GCPCLASS_LATINNUMERICSEPARATOR = 7;
const DC_BRUSH = 18;
const ERROR_BADKEY = 1010;
const MCI_VD_GETDEVCAPS_NORMAL_RATE = 0x00004005;
const COMADMIN_E_APPLID_MATCHES_CLSID = 0x80110446;
const OFN_SHAREFALLTHROUGH = 2;
const TF_REUSE_SOCKET = 0x02;
const SPI_GETMOUSEHOVERWIDTH = 0x0062;
const ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = 8615;
const _WIN32_IE_IE20 = 0x0200;
const ERROR_INVALID_PRINTER_STATE = 1906;
const szOID_PKCS_12_LOCAL_KEY_ID = "1.2.840.113549.1.9.21";
const IDC_WAIT = 32514;
const ERROR_NODE_CANNOT_BE_CLUSTERED = 5898;
const ERROR_IPSEC_IKE_INVALID_PAYLOAD = 13843;
const _WIN32_IE_IE30 = 0x0300;
const SCARD_UNPOWER_CARD = 2;
const RPC_S_NO_PRINC_NAME = 1822;
const ES_WANTRETURN = 0x1000;
const OR_INVALID_SET = 1912;
const RIDEV_INPUTSINK = 0x00000100;
const WM_CTLCOLORBTN = 0x0135;
const _WIN32_IE_IE40 = 0x0400;
const CRYPT_MODE_CFBP = 7;
const ERROR_BAD_RECOVERY_POLICY = 6012;
const ERROR_CTX_MODEM_INF_NOT_FOUND = 7009;
const PAGE_GUARD = 0x100;
const SERVER_ACCESS_ADMINISTER = 0x00000001;
const STREAM_SPARSE_ATTRIBUTE = 0x8;
const MKF_LEFTBUTTONDOWN = 0x01000000;
const _WIN32_IE_IE50 = 0x0500;
const SPI_GETMESSAGEDURATION = 0x2016;
const FILE_ACTION_MODIFIED = 0x00000003;
const _WIN32_IE_IE55 = 0x0550;
const CERT_PROT_ROOT_FLAGS_VALUE_NAME = "Flags";
const ERROR_INVALID_MEMBER = 1388;
const szOID_PRIVATEKEY_USAGE_PERIOD = "2.5.29.16";
const LOCALE_SNATIVECTRYNAME = 0x00000008;
const MIXERLINE_COMPONENTTYPE_SRC_FIRST = 0x00001000;
const CRL_REASON_UNSPECIFIED = 0;
const WNNC_NET_LANMAN = 0x00020000;
const TAPE_DRIVE_LOGICAL_BLK = 0x80004000;
const CRYPT_E_ASN1_CHOICE = 0x8009310C;
const _WIN32_IE_IE60 = 0x0600;
const AC_LINE_ONLINE = 0x1;
const ERROR_DS_DUP_MSDS_INTID = 8597;
const CRYPT_E_NO_SIGNER = 0x8009200E;
const ERROR_DOMAIN_TRUST_INCONSISTENT = 1810;
const WDT_INPROC_CALL = 0x48746457;
const _WIN32_IE_IE70 = 0x0700;
const CMSG_KEY_AGREE_RECIPIENT = 2;
const OSS_TABLE_MISMATCH = 0x8009301D;
const ERROR_IPSEC_IKE_UNKNOWN_DOI = 13862;
const SEE_MASK_HMONITOR = 0x00200000;
const STGM_TRANSACTED = 0x00010000;
const SPI_GETICONTITLELOGFONT = 0x001F;
const HTTOP = 12;
const MOD_SYNTH = 2;
const WM_QUERYDRAGICON = 0x0037;
const IN_CLASSB_MAX = 65536;
const MOUSEEVENTF_LEFTUP = 0x0004;
const MF_GRAYED = 0x00000001;
const MCI_GETDEVCAPS = 0x080B;
const ERROR_OUT_OF_STRUCTURES = 84;
const FORMAT_MESSAGE_IGNORE_INSERTS = 0x200;
const SCARD_W_UNRESPONSIVE_CARD = 0x80100066;
const COMADMIN_E_OBJECTERRORS = 0x80110401;
const FS_THAI = 0x00010000;
const CONTEXT_S_LAST = 0x0004E02F;
const CTRY_CANADA = 2;
const EV_CTS = 0x8;
const SUBLANG_QUECHUA_PERU = 0x03;
const IMAGE_REL_I386_DIR32NB = 0x0007;
const NORM_IGNORENONSPACE = 0x00000002;
const CS_ENABLE = 0x00000001;
const szOID_CMC_QUERY_PENDING = "1.3.6.1.5.5.7.7.21";
const RT_DIALOG = 5;
const IMAGE_SYM_TYPE_MOE = 0x000B;
const ACTCTX_FLAG_RESOURCE_NAME_VALID = 0x8;
const PROCESSOR_ARCHITECTURE_PPC = 3;
const SCARD_POWERED = 4;
const CLRRTS = 4;
const SOUND_SYSTEM_QUESTION = 5;
const PC_PATHS = 512;
const DLGC_WANTALLKEYS = 0x0004;
const ERROR_IPSEC_IKE_TIMED_OUT = 13805;
const STATE_SYSTEM_PRESSED = 0x00000008;
const C1_XDIGIT = 0x0080;
const PROVIDER_KEEPS_VALUE_LENGTH = 0x1;
const ERROR_CAN_NOT_DEL_LOCAL_WINS = 4001;
const HEAP_CREATE_ENABLE_TRACING = 0x00020000;
const META_SELECTCLIPREGION = 0x012C;
const CONSOLE_CARET_VISIBLE = 0x0002;
const MUTZ_ISFILE = 0x00000002;
const MCI_SEQ_OFFSET = 1216;
const FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020;
const WM_GETFONT = 0x0031;
const APPCOMMAND_MEDIA_CHANNEL_UP = 51;
const SYSTEM_MANDATORY_LABEL_ACE_TYPE = 0x11;
const RPC_BUFFER_NONOTIFY = 0x00010000;
const PP_DISPLAYERRORS = 0x01;
const FACILITY_CERT = 11;
const PIDMSI_STATUS = 0x00000007;
const GL_ID_CANNOTSAVE = 0x00000011;
const MDM_SHIFT_BEARERMODE = 12;
const FILE_SET_ENCRYPTION = 0x00000001;
const FILE_DEVICE_TRANSPORT = 0x00000021;
const HS_HORIZONTAL = 0;
const ERROR_DATABASE_FAILURE = 4313;
const WM_NCLBUTTONUP = 0x00A2;
const WM_HANDHELDLAST = 0x035F;
const PAN_FAMILY_PICTORIAL = 5;
const VIF_CANNOTREADSRC = 0x00010000;
const JOY_BUTTON1 = 0x0001;
const JOY_BUTTON2 = 0x0002;
const JOY_BUTTON3 = 0x0004;
const JOY_BUTTON4 = 0x0008;
const JOY_BUTTON5 = 0x00000010;
const JOY_BUTTON6 = 0x00000020;
const JOY_BUTTON8 = 0x00000080;
const JOY_BUTTON9 = 0x00000100;
const CERT_ALT_NAME_DIRECTORY_NAME = 5;
const szOID_OS_VERSION = "1.3.6.1.4.1.311.13.2.3";
const RGN_AND = 1;
const JOY_CAL_READXONLY = 0x00100000;
const WNNC_NET_MANGOSOFT = 0x001C0000;
const DRV_EXITSESSION = 0x000B;
const GET_SYSTEM_WOW64_DIRECTORY_NAME_W_W = "GetSystemWow64DirectoryW";
const CRYPT_IMPL_UNKNOWN = 4;
const S_ALLTHRESHOLD = 2;
const DRV_INSTALL = 0x0009;
const IMAGE_REL_SH3_DIRECT32_NB = 0x0010;
const SPI_SETPENDOCKTHRESHOLD = 0x0081;
const RPC_X_INVALID_ES_ACTION = 1827;
const IMAGE_SCN_MEM_SHARED = 0x10000000;
const MIXERCONTROL_CONTROLF_DISABLED = 0x80000000;
const DMPAPER_A6_ROTATED = 83;
const LOCALE_SCOUNTRY = 0x00000006;
const QS_RAWINPUT = 0x0400;
const CF_GDIOBJLAST = 0x03FF;
const ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = 8507;
const USN_REASON_COMPRESSION_CHANGE = 0x00020000;
const EN_MAXTEXT = 0x0501;
const SEC_E_SMARTCARD_CERT_REVOKED = 0x80090351;
const ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = 13883;
const WMSZ_RIGHT = 2;
const TAPE_FORMAT = 5;
const USER_TIMER_MAXIMUM = 0x7FFFFFFF;
const MCI_RECORD = 0x080F;
const ERROR_BAD_DESCRIPTOR_FORMAT = 1361;
const IMAGE_REL_IA64_SECTION = 0x000B;
const MSG_MAXIOVLEN = 16;
const SM_CXEDGE = 45;
const JOB_OBJECT_MSG_NEW_PROCESS = 6;
const RPC_S_INVALID_BOUND = 1734;
const ERROR_CSCSHARE_OFFLINE = 1262;
const ALG_SID_PCT1_MASTER = 4;
const ERROR_CANTWRITE = 1013;
const EMR_EOF = 14;
const RESOURCEUSAGE_NOLOCALDEVICE = 0x00000004;
const IMAGE_REL_CEE_TOKEN = 0x0006;
const SO_ERROR = 0x1007;
const CMC_FAIL_POP_REQUIRED = 8;
const ERROR_INVALID_ENVIRONMENT = 1805;
const SPAPI_E_CLASS_MISMATCH = 0x800F0201;
const CO_E_CANCEL_DISABLED = 0x80010140;
const ERROR_DS_CONTROL_NOT_FOUND = 8258;
const CRYPT_E_NO_KEY_PROPERTY = 0x8009200B;
const CERT_ALT_NAME_REGISTERED_ID = 9;
const IME_ITHOTKEY_RECONVERTSTRING = 0x203;
const HS_VERTICAL = 1;
const FOF_NORECURSION = 0x1000;
const __SSE_MATH__ = 1;
const ERROR_INVALID_FLAG_NUMBER = 186;
const PRINTER_CHANGE_FAILED_CONNECTION_PRINTER = 0x00000008;
const SETICMPROFILE_EMBEDED = 0x00000001;
const SERVICE_RUNS_IN_SYSTEM_PROCESS = 0x00000001;
const ERROR_USER_MAPPED_FILE = 1224;
const CRYPT_RC2_64BIT_VERSION = 120;
const EM_CHARFROMPOS = 0x00D7;
const __k8 = 1;
const LOGON32_LOGON_SERVICE = 5;
const KP_KEYLEN = 9;
const CS_NOCLOSE = 0x0200;
const WAVECAPS_PLAYBACKRATE = 0x0002;
const SCREEN_FONTTYPE = 0x2000;
const ERROR_BAD_PIPE = 230;
const DKGRAY_BRUSH = 3;
const CERT_QUERY_CONTENT_SERIALIZED_CERT = 5;
const IMAGE_SCN_ALIGN_1BYTES = 0x00100000;
const ERROR_POSSIBLE_DEADLOCK = 1131;
const MDM_ANALOG_RLP_ON = 0x0;
const MCI_OVLY_WHERE_SOURCE = 0x00020000;
const VP_FLAGS_TV_STANDARD = 0x0002;
const TARGET_IS_NT50_OR_LATER = 1;
const SOUND_SYSTEM_MAXIMIZE = 8;
const SHGFI_OPENICON = 0x000000002;
const CRL_REASON_SUPERSEDED_FLAG = 0x8;
const SCARD_E_UNKNOWN_CARD = 0x8010000D;
const SERVICE_ADAPTER = 0x00000004;
const ACTIVATION_CONTEXT_PATH_TYPE_NONE = 1;
const PSP_HASHELP = 0x00000020;
const MMIOM_WRITEFLUSH = 5;
const ELEMENT_STATUS_ID_VALID = 0x00002000;
const SUBLANG_CHINESE_MACAU = 0x05;
const LCMAP_BYTEREV = 0x00000800;
const IMAGE_SUBSYSTEM_OS2_CUI = 5;
const RPC_S_NOT_LISTENING = 1715;
const HEAP_GENERATE_EXCEPTIONS = 0x00000004;
const ERROR_SERVICE_NOT_ACTIVE = 1062;
const XACT_E_HEURISTICABORT = 0x8004D004;
const SPI_SETMINIMIZEDMETRICS = 0x002C;
const MMIO_GETTEMP = 0x00020000;
const ERROR_UNABLE_TO_MOVE_REPLACEMENT = 1176;
const ERROR_HOST_NODE_NOT_RESOURCE_OWNER = 5015;
const OLE_S_STATIC = 0x00040001;
const CERT_INFO_NOT_BEFORE_FLAG = 5;
const FRS_ERR_INVALID_SERVICE_PARAMETER = 8017;
const CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH = "Software\\Policies\\Microsoft\\SystemCertificates";
const CBS_DROPDOWN = 0x0002;
const _WIN32_WINNT_WIN6 = 0x0600;
const _WIN32_WINNT_WIN7 = 0x0601;
const __CRT__NO_INLINE = 1;
const CALLBACK_EVENT = 0x00050000;
const IDC_SIZENWSE = 32642;
const RPC_X_BAD_STUB_DATA = 1783;
const ERROR_IPSEC_IKE_ERROR = 13816;
const SUBLANG_ARABIC_QATAR = 0x10;
const WS_CLIPSIBLINGS = 0x04000000;
const SORT_DEFAULT = 0x0;
const FILE_VOLUME_IS_COMPRESSED = 0x00008000;
const CERTSRV_E_ENCODING_LENGTH = 0x80094007;
const ERROR_NO_SECURITY_ON_OBJECT = 1350;
const ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 5905;
const SPI_GETMOUSE = 0x0003;
const GCPCLASS_HEBREW = 2;
const SCHED_S_TASK_TERMINATED = 0x00041306;
const IMAGE_REL_ALPHA_PAIR = 0x000C;
const ERROR_DS_ADD_REPLICA_INHIBITED = 8302;
const LANG_UIGHUR = 0x80;
const PROCESSOR_ARCHITECTURE_SHX = 4;
const ERROR_RECOVERY_FAILURE = 1279;
const LANG_BELARUSIAN = 0x23;
const MOD_WIN = 0x0008;
const IMAGE_FILE_MACHINE_R3000 = 0x0162;
const WNNC_NET_APPLETALK = 0x00130000;
const DISPID_NEWENUM = -4;
const EXECUTE_OFFLINE_DIAGS = 0xD4;
const ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = 1932;
const SKF_LWINLATCHED = 0x40000000;
const LOCALE_SDAYNAME2 = 0x0000002B;
const LOCALE_SDAYNAME3 = 0x0000002C;
const LOCALE_SDAYNAME4 = 0x0000002D;
const LOCALE_SDAYNAME5 = 0x0000002E;
const DMPAPER_B_PLUS = 58;
const LOCALE_SDAYNAME7 = 0x00000030;
const MM_MIM_MOREDATA = 0x3CC;
const PRINTER_NOTIFY_OPTIONS_REFRESH = 0x01;
const TKF_CONFIRMHOTKEY = 0x00000008;
const PAN_SERIF_SQUARE_COVE = 4;
const USN_REASON_ENCRYPTION_CHANGE = 0x00040000;
const IMAGE_BITMAP = 0;
const C1_DIGIT = 0x0004;
const MULTIFILEOPENORD = 1537;
const SUBLANG_GERMAN_SWISS = 0x02;
const RPC_C_QOS_CAPABILITIES_IGNORE_DELEGATE_FAILURE = 0x8;
const CRYPT_MACHINE_KEYSET = 0x20;
const NTE_TOKEN_KEYSET_STORAGE_FULL = 0x80090023;
const BF_MONO = 0x8000;
const ICM_OFF = 1;
const MWT_RIGHTMULTIPLY = 3;
const PRINTER_NOTIFY_FIELD_PRINTER_NAME = 0x01;
const FACILITY_HTTP = 25;
const SPI_SETTOGGLEKEYS = 0x0035;
const FF_DONTCARE = 0<<4;
const PORT_STATUS_USER_INTERVENTION = 8;
const EXTEND_IEPORT = 2;
const LOCALE_IFIRSTWEEKOFYEAR = 0x0000100D;
const CBS_UPPERCASE = 0x2000;
const APPCOMMAND_TREBLE_UP = 23;
const ERROR_NOT_AUTHENTICATED = 1244;
const OFN_FORCESHOWHIDDEN = 0x10000000;
const COMADMIN_E_USERPASSWDNOTVALID = 0x80110414;
const SUBLANG_KONKANI_INDIA = 0x01;
const TAPE_DRIVE_WRITE_MARK_IMMED = 0x90000000;
const METHOD_NEITHER = 3;
const DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 9612;
const STG_E_TERMINATED = 0x80030202;
const WS_MAXIMIZE = 0x01000000;
const ERROR_INVALID_SEPARATOR_FILE = 1799;
const SBS_SIZEBOXTOPLEFTALIGN = 0x0002;
const IMAGE_SYM_CLASS_EXTERNAL = 0x0002;
const EVENT_SYSTEM_MOVESIZEEND = 0x000B;
const ERROR_CANNOT_OPEN_PROFILE = 1205;
const SHUTDOWN_TYPE_LEN = 32;
const ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218;
const CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR = 0x80000020;
const BSF_IGNORECURRENTTASK = 0x00000002;
const HS_DIAGCROSS = 5;
const ERROR_DS_AUTHORIZATION_FAILED = 8599;
const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 14080;
const ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE = 8;
const MDM_PROTOCOLID_PIAFS = 0x9;
const RPC_PROXY_CONNECTION_TYPE_IN_PROXY = 0;
const CLIP_STROKE_PRECIS = 2;
const __INT_LEAST16_MAX__ = 32767;
const WNNC_NET_PATHWORKS = 0x000D0000;
const AW_HOR_NEGATIVE = 0x00000002;
const ERROR_DS_GC_REQUIRED = 8547;
const RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758;
const PROCESSOR_INTEL_486 = 486;
const VK_OEM_ATTN = 0xF0;
const SUBLANG_TAMAZIGHT_ALGERIA_LATIN = 0x02;
const TRANSPORT_TYPE_CN = 0x01;
const WNNC_NET_BWNFS = 0x00100000;
const SPAPI_E_DEVICE_INTERFACE_ACTIVE = 0x800F021B;
const PAN_WEIGHT_HEAVY = 9;
const CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG = 0x20000;
const COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET = 0x80110816;
const TRANSPORT_TYPE_DG = 0x02;
const CMSG_SIGNED_DATA_V1 = 1;
const IMAGE_REL_M32R_PCREL24 = 0x0005;
const MCI_WINDOW = 0x0841;
const META_MOVETO = 0x0214;
const ERROR_UNRECOGNIZED_VOLUME = 1005;
const COMADMIN_E_REMOTEINTERFACE = 0x80110419;
const ERROR_NOTIFY_ENUM_DIR = 1022;
const grp1 = 0x0430;
const grp2 = 0x0431;
const grp3 = 0x0432;
const grp4 = 0x0433;
const ERROR_SXS_XML_E_MISSINGQUOTE = 14030;
const URLZONE_ESC_FLAG = 0x100;
const CERTSRV_E_ROLECONFLICT = 0x80094008;
const PP_ENUMCONTAINERS = 2;
const URLACTION_HTML_MIXED_CONTENT = 0x00001609;
const szOID_OIW = "1.3.14";
const MDM_HDLCPPP_SPEED_56K = 0x2;
const PAN_STRAIGHT_ARMS_VERT = 4;
const LTGRAY_BRUSH = 1;
const ERROR_DS_CANT_REPLACE_HIDDEN_REC = 8424;
const KEYEVENTF_SCANCODE = 0x0008;
const FILE_DIRECTORY_FILE = 0x00000001;
const __SIZEOF_SHORT__ = 2;
const CREATE_FOR_DIR = 2;
const CERT_CHAIN_POLICY_IGNORE_CTL_SIGNER_REV_UNKNOWN_FLAG = 0x200;
const EMR_POLYBEZIERTO16 = 88;
const WNNC_NET_KNOWARE = 0x002F0000;
const COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE = 0x8011044F;
const CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG = 0x10;
const ERROR_DS_CLASS_NOT_DSA = 8343;
const RPC_C_HTTP_FLAG_USE_SSL = 1;
const GCL_CBCLSEXTRA = -20;
const METHOD_IN_DIRECT = 1;
const SO_CONNDATALEN = 0x7004;
const CS_HREDRAW = 0x0002;
const PAN_CONTRAST_VERY_LOW = 3;
const SPI_SETSCREENSAVESECURE = 0x0077;
const BS_DIBPATTERNPT = 6;
const LANG_MONGOLIAN = 0x50;
const RC_BIGFONT = 0x0400;
const szOID_SEARCH_GUIDE = "2.5.4.14";
const TIME_SMPTE = 0x0008;
const CO_E_INIT_SHARED_ALLOCATOR = 0x80004007;
const ERROR_PIPE_LISTENING = 536;
const PORT_STATUS_PAPER_OUT = 3;
const CCH_MAX_PROPSTG_NAME = 31;
const SPAPI_E_REMOTE_REQUEST_UNSUPPORTED = 0x800F023B;
const CLR_INVALID = 0xFFFFFFFF;
const PROPSETFLAG_NONSIMPLE = 1;
const SUBLANG_BASHKIR_RUSSIA = 0x01;
const JOB_NOTIFY_FIELD_START_TIME = 0x11;
const LOCALE_USE_NLS = 0x10000000;
const LUA_TOKEN = 0x4;
const SMTO_BLOCK = 0x0001;
const MSSIPOTF_E_BADVERSION = 0x80097015;
const SEC_E_TOO_MANY_PRINCIPALS = 0x8009033B;
const PP_UI_PROMPT = 21;
const ARW_BOTTOMLEFT = 0x0000;
const MAP_PRECOMPOSED = 0x00000020;
const BEGIN_PATH = 4096;
const LCMAP_HALFWIDTH = 0x00400000;
const CTRY_UNITED_KINGDOM = 44;
const LOAD_LINRARY_AS_IMAGE_RESOURCE = 0x20;
const SPI_LANGDRIVER = 0x000C;
const DNS_ERROR_FILE_WRITEBACK_FAILED = 9654;
const WNNC_NET_INTERGRAPH = 0x00140000;
const __DBL_HAS_QUIET_NAN__ = 1;
const szOID_CMC_IDENTIFICATION = "1.3.6.1.5.5.7.7.2";
const SERKF_INDICATOR = 0x00000004;
const IMAGE_DEBUG_TYPE_OMAP_FROM_SRC = 8;
const FADF_UNKNOWN = 0x200;
const MF_DELETE = 0x00000200;
const INET_E_CONNECTION_TIMEOUT = 0x800C000B;
const PORT_STATUS_NO_TONER = 6;
const ERROR_CORE_RESOURCE = 5026;
const ERROR_ALIAS_EXISTS = 1379;
const IMAGE_REL_MIPS_SECRELHI = 0x000D;
const DISP_CHANGE_BADPARAM = -5;
const IMAGE_DIRECTORY_ENTRY_EXPORT = 0;
const TAPE_QUERY_IO_ERROR_DATA = 3;
const SW_SHOWMINNOACTIVE = 7;
const COPY_FILE_COPY_SYMLINK = 0x0800;
const CRYPT_MODE_CBCOFM = 9;
const CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG = 0x4000;
const DIB_RGB_COLORS = 0;
const RPC_IF_OLE = 0x0002;
const DNS_ERROR_DP_NOT_ENLISTED = 9903;
const OBJ_BRUSH = 2;
const CMSG_SIGNER_COUNT_PARAM = 5;
const MSSIPOTF_E_TABLES_OVERLAP = 0x80097009;
const CERT_SYSTEM_STORE_CURRENT_SERVICE_ID = 4;
const CTRY_BELIZE = 501;
const TAPE_SELECT_PARTITIONS = 1;
const ERROR_INVALID_SIGNAL_NUMBER = 209;
const MSSIPOTF_E_TABLE_PADBYTES = 0x8009700A;
const WTS_SESSION_LOGOFF = 0x6;
const MCI_CD_OFFSET = 1088;
const CMSG_CONTENT_ENCRYPT_FREE_PARA_FLAG = 0x1;
const IME_CONFIG_SELECTDICTIONARY = 3;
const FILE_IS_ENCRYPTED = 1;
const RPC_C_USE_INTERNET_PORT = 0x1;
const ERROR_SERVICE_DEPENDENCY_FAIL = 1068;
const DFCS_SCROLLRIGHT = 0x0003;
const WS_EX_LEFTSCROLLBAR = 0x00004000;
const ERROR_REG_NAT_CONSUMPTION = 1261;
const URLMON_OPTION_USERAGENT_REFRESH = 0x10000002;
const PSH_HASHELP = 0x00000200;
const MKF_INDICATOR = 0x00000020;
const ERROR_FLOPPY_UNKNOWN_ERROR = 1124;
const IMAGE_REL_MIPS_SECRELLO = 0x000C;
const ERROR_INSTALL_SUSPEND = 1604;
const IPPROTO_GGP = 3;
const SOFTKEYBOARD_TYPE_C1 = 0x0002;
const TPM_LAYOUTRTL = 0x8000;
const CERT_STORE_DELETE_FLAG = 0x10;
const SPI_GETFONTSMOOTHING = 0x004A;
const PAN_STROKE_GRADUAL_VERT = 4;
const ODS_INACTIVE = 0x0080;
const ERROR_HOOK_NOT_INSTALLED = 1431;
const CRYPT_OID_OPEN_STORE_PROV_FUNC = "CertDllOpenStoreProv";
const SERVICE_RECOGNIZER_DRIVER = 0x00000008;
const CRYPT_DESTROYKEY = 0x4;
const WM_SETTEXT = 0x000C;
const ICM_UNREGISTERICMATCHER = 6;
const VK_NEXT = 0x22;
const FILE_CREATE = 0x00000002;
const ERROR_CTX_MODEM_RESPONSE_VOICE = 7016;
const SUBLANG_UZBEK_LATIN = 0x01;
const LGRPID_GREEK = 0x0004;
const ERROR_DS_MISSING_REQUIRED_ATT = 8316;
const WS_EX_RIGHTSCROLLBAR = 0x00000000;
const GCLP_HBRBACKGROUND = -10;
const PRINTER_NOTIFY_FIELD_PARAMETERS = 0x0A;
const ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = 5082;
const LANG_YI = 0x78;
const IMAGE_REL_ALPHA_LITERAL = 0x0004;
const ARW_STARTTOP = 0x0002;
const WAVE_FORMAT_2M16 = 0x00000040;
const HELP_KEY = 0x0101;
const WM_COMMAND = 0x0111;
const CERT_CHAIN_POLICY_IGNORE_ROOT_REV_UNKNOWN_FLAG = 0x800;
const ERROR_DS_SEC_DESC_TOO_SHORT = 8353;
const ERROR_DS_INVALID_LDAP_DISPLAY_NAME = 8479;
const CONVERT10_E_STG_DIB_TO_BITMAP = 0x800401C6;
const PSINJECT_PAGEBBOX = 106;
const OSS_BAD_VERSION = 0x80093007;
const JOB_OBJECT_SECURITY_FILTER_TOKENS = 0x00000008;
const ERROR_ADAP_HDW_ERR = 57;
const CRYPT_KEYID_ALLOC_FLAG = 0x8000;
const RPC_X_SS_CONTEXT_DAMAGED = 1777;
const INET_E_TERMINATED_BIND = 0x800C0018;
const PRODUCT_ENTERPRISE_SERVER_V = 0x26;
const ERROR_DS_EXISTS_IN_MAY_HAVE = 8386;
const ERROR_DATABASE_BACKUP_CORRUPT = 5087;
const szOID_RSA_emailAddr = "1.2.840.113549.1.9.1";
const CERT_COMPARE_SIGNATURE_HASH = 14;
const ERROR_DS_BAD_INSTANCE_TYPE = 8313;
const DNS_ERROR_ZONE_BASE = 9600;
const BACKUP_OBJECT_ID = 0x7;
const DATE_LTRREADING = 0x00000010;
const SEM_NOALIGNMENTFAULTEXCEPT = 0x4;
const RTL_VRF_FLG_DEADLOCK_CHECKS = 0x00000800;
const CRYPT_E_ASN1_CONSTRAINT = 0x80093105;
const PROCESS_VM_WRITE = 0x0020;
const PO_THROTTLE_ADAPTIVE = 3;
const DD_DEFDRAGMINDIST = 2;
const ERROR_INVALID_HOOK_HANDLE = 1404;
const IMAGE_SCN_MEM_WRITE = 0x80000000;
const IMAGE_REL_EBC_SECREL = 0x0004;
const GMEM_VALID_FLAGS = 0x7F72;
const SSTF_CHARS = 1;
const IMAGE_COMDAT_SELECT_NODUPLICATES = 1;
const RESOURCE_CONNECTED = 0x00000001;
const SM_CYCURSOR = 14;
const CERT_KEY_ENCIPHERMENT_KEY_USAGE = 0x20;
const IMAGE_SYM_TYPE_UNION = 0x0009;
const CERT_STORE_PROV_FIND_CERT_FUNC = 14;
const CRYPT_OID_VERIFY_CTL_USAGE_FUNC = "CertDllVerifyCTLUsage";
const ERROR_CALL_NOT_IMPLEMENTED = 120;
const EMR_ABORTPATH = 68;
const OFN_SHAREAWARE = 0x4000;
const WINDING = 2;
const SUBLANG_PORTUGUESE_BRAZILIAN = 0x01;
const RPC_S_NO_MORE_BINDINGS = 1806;
const EVENT_CONSOLE_CARET = 0x4001;
const IDH_MISSING_CONTEXT = 28441;
const ERROR_DISK_RESET_FAILED = 1128;
const SERVICE_CONTROL_SHUTDOWN = 0x00000005;
const ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = 13809;
const MIDI_CACHE_ALL = 1;
const TAPE_DRIVE_FORMAT = 0xA0000000;
const LANG_TIBETAN = 0x51;
const CRYPT_ACQUIRE_SILENT_FLAG = 0x40;
const szOID_RSA_contentType = "1.2.840.113549.1.9.3";
const DCBA_FACEUPLEFT = 0x0002;
const C1_DEFINED = 0x0200;
const RPC_C_VERS_EXACT = 3;
const PERSIST_E_SIZEINDEFINITE = 0x800B000A;
const ERROR_FILENAME_EXCED_RANGE = 206;
const MK_E_MUSTBOTHERUSER = 0x800401EB;
const EMR_CREATECOLORSPACE = 99;
const WINEVENT_OUTOFCONTEXT = 0x0000;
const E_HANDLE = 0x80070006;
const DC_ICON = 0x0004;
const HELPINFO_MENUITEM = 0x0002;
const IMAGE_REL_BASED_MIPS_JMPADDR = 5;
const SPI_SETICONS = 0x0058;
const ERROR_DS_INVALID_SEARCH_FLAG = 8500;
const SPI_SETMOUSEHOVERTIME = 0x0067;
const PAN_STRAIGHT_ARMS_WEDGE = 3;
const __LDBL_MIN_EXP__ = -16381;
const ERROR_INVALID_EVENTNAME = 1211;
const IMAGE_DEBUG_TYPE_OMAP_TO_SRC = 7;
const MCI_SET_AUDIO_RIGHT = 0x00000002;
const SKF_LWINLOCKED = 0x00400000;
const SMART_OFFLINE_ROUTINE_OFFLINE = 0;
const EMR_FLATTENPATH = 65;
const WM_DDE_FIRST = 0x03E0;
const RDW_NOFRAME = 0x0800;
const PRINTER_CHANGE_PORT = 0x00700000;
const CWF_CREATE_ONLY = 0x0001;
const LB_SETSEL = 0x0185;
const ERROR_DS_NONEXISTENT_POSS_SUP = 8390;
const PS_JOIN_BEVEL = 0x00001000;
const CS_GLOBALCLASS = 0x4000;
const __INT_LEAST8_MAX__ = 127;
const DDE_FRELEASE = 0x2000;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_DEFAULT = 10;
const MCI_FORMAT_FRAMES = 3;
const COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE = 0x80110602;
const RPC_E_UNSECURE_CALL = 0x80010118;
const URLACTION_JAVA_MIN = 0x00001C00;
const ASSERT_PRIMARY = 0x8;
const SPI_SETLISTBOXSMOOTHSCROLLING = 0x1007;
const TYPE_E_SIZETOOBIG = 0x800288C5;
const IME_CMODE_FULLSHAPE = 0x0008;
const MMIOM_CLOSE = 4;
const ENABLE_QUICK_EDIT_MODE = 0x40;
const CERT_CREATE_SELFSIGN_NO_SIGN = 1;
const MCI_NOTIFY_ABORTED = 0x0004;
const VK_BROWSER_SEARCH = 0xAA;
const DFCS_MENUARROW = 0x0000;
const WM_MOVE = 0x0003;
const GCP_GLYPHSHAPE = 0x0010;
const MESSAGE_RESOURCE_UNICODE = 0x0001;
const XACT_S_OKINFORM = 0x0004D004;
const TAPE_LONG_FILEMARKS = 3;
const PFD_STEREO = 0x00000002;
const VOS__WINDOWS32 = 0x00000004;
const VK_CANCEL = 0x03;
const MIM_HELPID = 0x00000004;
const IMAGE_SIZEOF_LINENUMBER = 6;
const ERROR_SERVICE_EXISTS = 1073;
const GW_CHILD = 5;
const AUXCAPS_CDAUDIO = 1;
const RPC_S_INVALID_ENDPOINT_FORMAT = 1706;
const DNS_ERROR_RCODE_YXDOMAIN = 9006;
const SOFTKEYBOARD_TYPE_T1 = 0x0001;
const ERROR_CTX_TD_ERROR = 7017;
const RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781;
const SPI_SETMENUFADE = 0x1013;
const SPI_GETDOCKMOVING = 0x0090;
const PAN_FAMILY_DECORATIVE = 4;
const APPLICATION_VERIFIER_BAD_HEAP_HANDLE = 0x0005;
const WM_CHARTOITEM = 0x002F;
const MDM_AUTO_ML_2 = 0x2;
const LOCALE_INEGSEPBYSPACE = 0x00000057;
const VK_PRINT = 0x2A;
const MCI_STATUS_CURRENT_TRACK = 0x00000008;
const szOID_CMC_REG_INFO = "1.3.6.1.5.5.7.7.18";
const LANG_SWAHILI = 0x41;
const GCLP_WNDPROC = -24;
const ALG_SID_RSA_ANY = 0;
const FACILITY_WINDOWSUPDATE = 36;
const LOCALE_SYEARMONTH = 0x00001006;
const VK_PRIOR = 0x21;
const MCI_GETDEVCAPS_CAN_RECORD = 0x00000001;
const NLS_DBCSCHAR = 0x10000;
const RPC_E_ATTEMPTED_MULTITHREAD = 0x80010102;
const SEC_E_LOGON_DENIED = 0x8009030C;
const HCF_HOTKEYSOUND = 0x00000010;
const VK_INSERT = 0x2D;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_END_STAMP = 0x0011;
const MMIO_DEFAULTBUFFER = 8192;
const BS_CENTER = 0x00000300;
const PS_ENDCAP_FLAT = 0x00000200;
const EV_DSR = 0x10;
const ENUM_E_FIRST = 0x800401B0;
const STG_E_STATUS_COPY_PROTECTION_FAILURE = 0x80030305;
const TOKEN_QUERY = 0x0008;
const AF_CCITT = 10;
const NCBADDNAME = 0x30;
const ERROR_CANT_ACCESS_DOMAIN_INFO = 1351;
const BIDI_ACTION_ENUM_SCHEMA = "EnumSchema";
const DMPAPER_JENV_KAKU2_ROTATED = 84;
const JOYERR_BASE = 160;
const CTRY_COSTA_RICA = 506;
const ERROR_DS_SUBREF_MUST_HAVE_PARENT = 8356;
const KLF_RESET = 0x40000000;
const CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG = 0x80;
const DISP_E_NONAMEDARGS = 0x80020007;
const CRYPT_E_MSG_ERROR = 0x80091001;
const ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = 13840;
const __INT_FAST32_MAX__ = 2147483647;
const STATE_SYSTEM_OFFSCREEN = 0x00010000;
const XACT_E_XTIONEXISTS = 0x8004D013;
const STREAM_CONTAINS_SECURITY = 0x2;
const UOI_TYPE = 3;
const PAN_NO_FIT = 1;
const URLACTION_FEATURE_WINDOW_RESTRICTIONS = 0x00002102;
const DMLERR_NOTPROCESSED = 0x4009;
const EMR_SETDIBITSTODEVICE = 80;
const SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED = 0x800F0242;
const BIDI_ACTION_SET = "Set";
const STATE_SYSTEM_FLOATING = 0x00001000;
const EMR_RECTANGLE = 43;
const RPC_C_AUTHN_WINNT = 10;
const TA_UPDATECP = 1;
const LANG_ORIYA = 0x48;
const INET_E_REDIRECT_TO_DIR = 0x800C0015;
const MNGOF_TOPGAP = 0x00000001;
const CERT_RDN_FORCE_UTF8_UNICODE_FLAG = 0x10000000;
const MB_ICONEXCLAMATION = 0x00000030;
const PRINTER_ATTRIBUTE_WORK_OFFLINE = 0x00000400;
const MMIO_DENYWRITE = 0x00000020;
const EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X = 24;
const ERROR_META_EXPANSION_TOO_LONG = 208;
const HIGH_PRIORITY_CLASS = 0x80;
const IMAGE_REL_M32R_ABSOLUTE = 0x0000;
const SB_BOTH = 3;
const ERROR_RESOURCE_PROPERTIES_STORED = 5024;
const SS_LEFTNOWORDWRAP = 0x0000000C;
const REG_DWORD_BIG_ENDIAN = 5;
const RPC_E_NO_SYNC = 0x80010120;
const SE_ERR_DDEBUSY = 30;
const CERT_ACCESS_STATE_SYSTEM_STORE_FLAG = 0x2;
const CAL_SMONTHNAME13 = 0x00000021;
const IME_JHOTKEY_CLOSE_OPEN = 0x30;
const IN_CLASSA_NSHIFT = 24;
const MCI_OVLY_GETDEVCAPS_CAN_STRETCH = 0x00004001;
const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION = 16;
const __DBL_DECIMAL_DIG__ = 17;
const QUOTA_LIMITS_USE_DEFAULT_LIMITS = 0x00000010;
const STG_E_UNIMPLEMENTEDFUNCTION = 0x800300FE;
const CREATE_NEW_CONSOLE = 0x10;
const WM_MDIRESTORE = 0x0223;
const SCARD_STATE_UNPOWERED = 0x00000400;
const MSG_PARTIAL = 0x8000;
const JOB_OBJECT_POST_AT_END_OF_JOB = 1;
const SUBLANG_SINHALESE_SRI_LANKA = 0x01;
const FR_ENABLETEMPLATE = 0x200;
const DD_DEFDRAGDELAY = 200;
const EMR_POLYGON16 = 86;
const RPC_S_NOTHING_TO_EXPORT = 1754;
const DFCS_SCROLLCOMBOBOX = 0x0005;
const RPC_C_QOS_CAPABILITIES_MAKE_FULLSIC = 0x2;
const TME_QUERY = 0x40000000;
const OFN_NOVALIDATE = 0x100;
const ACTCTX_FLAG_LANGID_VALID = 0x2;
const TAPE_DRIVE_SET_PADDING = 0x80000400;
const AW_VER_POSITIVE = 0x00000004;
const SM_CXDLGFRAME = 7;
const META_SETPOLYFILLMODE = 0x0106;
const WNNC_NET_RIVERFRONT2 = 0x001F0000;
const ERROR_SXS_DUPLICATE_IID = 14024;
const SERVICE_INTERACTIVE_PROCESS = 0x00000100;
const IMAGE_COMDAT_SELECT_SAME_SIZE = 3;
const IDTIMEOUT = 32000;
const MCI_FORMAT_TMSF = 10;
const META_ROUNDRECT = 0x061C;
const SORT_JAPANESE_RADICALSTROKE = 0x4;
const OLE_E_ADVF = 0x80040001;
const SM_CYMIN = 29;
const scr1 = 0x0490;
const scr2 = 0x0491;
const scr3 = 0x0492;
const scr4 = 0x0493;
const scr5 = 0x0494;
const scr7 = 0x0496;
const ERROR_HOOK_TYPE_NOT_ALLOWED = 1458;
const ERROR_PROFILE_NOT_FOUND = 2016;
const ERROR_CLUSTER_NETINTERFACE_EXISTS = 5046;
const RRF_RT_REG_QWORD = 0x00000040;
const HANDLE_FLAG_INHERIT = 0x1;
const PRODUCT_ENTERPRISE = 0x4;
const SUBLANG_ARABIC_MOROCCO = 0x06;
const GETEXTENTTABLE = 257;
const NETSCAPE_SIGN_CA_CERT_TYPE = 0x1;
const RPC_S_CANNOT_SUPPORT = 1764;
const HSHELL_REDRAW = 6;
const CRYPT_STRING_BASE64X509CRLHEADER = 0x9;
const APPCOMMAND_MICROPHONE_VOLUME_DOWN = 25;
const TAPE_SPACE_FILEMARKS = 6;
const MCI_BREAK_KEY = 0x00000100;
const QDI_GETDIBITS = 2;
const WM_NCRBUTTONDBLCLK = 0x00A6;
const szOID_DELTA_CRL_INDICATOR = "2.5.29.27";
const WS_GROUP = 0x00020000;
const BATTERY_FLAG_CRITICAL = 0x4;
const N_TMASK1 = 0x00C0;
const N_TMASK2 = 0x00F0;
const SPI_GETUIEFFECTS = 0x103E;
const RTL_VRF_FLG_LOCK_CHECKS = 0x00040000;
const CRYPT_OID_FIND_LOCALIZED_NAME_FUNC = "CryptDllFindLocalizedName";
const NETINFO_DLL16 = 0x00000001;
const ERROR_PRINTER_DRIVER_IN_USE = 3001;
const ENABLE_WINDOW_INPUT = 0x8;
const LR_LOADMAP3DCOLORS = 0x1000;
const TRUST_E_PROVIDER_UNKNOWN = 0x800B0001;
const ERROR_DS_SCHEMA_NOT_LOADED = 8414;
const DMPAPER_JENV_YOU4 = 91;
const ERROR_REQ_NOT_ACCEP = 71;
const CMSG_LENGTH_ONLY_FLAG = 0x2;
const ERROR_DS_NON_BASE_SEARCH = 8480;
const SHAREVISTRINGW = "commdlg_ShareViolation";
const LOCALE_SABBREVDAYNAME1 = 0x00000031;
const LOCALE_SABBREVDAYNAME2 = 0x00000032;
const LOCALE_SABBREVDAYNAME3 = 0x00000033;
const ERROR_DS_WRONG_LINKED_ATT_SYNTAX = 8528;
const LOCALE_SABBREVDAYNAME6 = 0x00000036;
const LOCALE_SABBREVDAYNAME7 = 0x00000037;
const ERROR_FLOPPY_BAD_REGISTERS = 1125;
const SET_FEATURE_ON_THREAD_TRUSTED = 0x00000020;
const FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 8014;
const STYLE_DESCRIPTION_SIZE = 32;
const szOID_PKIX_OCSP = "1.3.6.1.5.5.7.48.1";
const MEDIA_ERASEABLE = 0x00000001;
const MSSIPOTF_E_TABLE_LONGWORD = 0x80097007;
const OSS_MEM_MGR_DLL_NOT_LINKED = 0x80093026;
const IMR_COMPOSITIONWINDOW = 0x0001;
const XACT_E_RECOVERYINPROGRESS = 0x8004D082;
const META_SETTEXTCHAREXTRA = 0x0108;
const CERT_NAME_STR_REVERSE_FLAG = 0x2000000;
const PERF_SIZE_VARIABLE_LEN = 0x00000300;
const DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 9605;
const GMEM_MODIFY = 0x80;
const DMPAPER_JENV_KAKU2 = 71;
const WM_PENWINFIRST = 0x0380;
const CO_E_SETSERLHNDLFAILED = 0x80010133;
const MH_KEEP = 2;
const SO_SNDLOWAT = 0x1003;
const CERT_INFO_ISSUER_FLAG = 4;
const LOCALE_S1159 = 0x00000028;
const szOID_ISSUER_ALT_NAME = "2.5.29.8";
const DDD_NO_BROADCAST_SYSTEM = 0x8;
const ABORTDOC = 2;
const LGRPID_BALTIC = 0x0003;
const PROCESS_CREATE_THREAD = 0x0002;
const VK_LWIN = 0x5B;
const DM_COPY = 2;
const SC_VSCROLL = 0xF070;
const AF_PUP = 4;
const NTE_BAD_PUBLIC_KEY = 0x80090015;
const RPC_C_NOTIFY_ON_SEND_COMPLETE = 0x1;
const PAN_WEIGHT_LIGHT = 3;
const LCMAP_LINGUISTIC_CASING = 0x01000000;
const TRUST_E_SYSTEM_ERROR = 0x80096001;
const WGL_SWAPMULTIPLE_MAX = 16;
const SERVICES_FAILED_DATABASEW = "ServicesFailed";
const ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 5895;
const IMAGE_FILE_MACHINE_EBC = 0x0EBC;
const FILE_NON_DIRECTORY_FILE = 0x00000040;
const APPLICATION_VERIFIER_COM_UNBALANCED_OLEINIT = 0x0404;
const DNS_ERROR_RCODE_BADTIME = 9018;
const CERT_INFO_NOT_AFTER_FLAG = 6;
const ACCESS_DENIED_CALLBACK_ACE_TYPE = 0xA;
const ERROR_IPSEC_IKE_INVALID_FILTER = 13858;
const RPC_C_QOS_IDENTITY_DYNAMIC = 1;
const FILE_EXECUTE = 0x0020;
const ERROR_DS_SCHEMA_UPDATE_DISALLOWED = 8509;
const THREAD_SET_THREAD_TOKEN = 0x0080;
const IME_SMODE_PHRASEPREDICT = 0x0008;
const RESOURCETYPE_DISK = 0x00000001;
const ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = 7014;
const ERROR_CTX_WINSTATION_BUSY = 7024;
const ERROR_WAIT_NO_CHILDREN = 128;
const PRINTER_ATTRIBUTE_LOCAL = 0x00000040;
const MCI_SYSINFO_INSTALLNAME = 0x00000800;
const SPI_GETMOUSECLICKLOCKTIME = 0x2008;
const STATE_SYSTEM_SIZEABLE = 0x00020000;
const URLPOLICY_CHANNEL_SOFTDIST_AUTOINSTALL = 0x00030000;
const MK_LBUTTON = 0x0001;
const ERROR_SLOT_NOT_PRESENT = 0x00000004;
const SO_CONNOPT = 0x7001;
const GCPCLASS_NUMERICSEPARATOR = 8;
const SCHED_E_SERVICE_NOT_INSTALLED = 0x8004130C;
const KP_PERMISSIONS = 6;
const IDH_GENERIC_HELP_BUTTON = 28442;
const ERROR_INVALID_OPERATION = 4317;
const SC_DLG_NO_UI = 0x02;
const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12;
const GCS_RESULTCLAUSE = 0x1000;
const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14;
const MF_SYSMENU = 0x00002000;
const SUBLANG_KOREAN = 0x01;
const SIF_PAGE = 0x0002;
const JOY_RETURNPOVCTS = 0x00000200;
const WNNC_NET_TWINS = 0x00240000;
const AUXCAPS_AUXIN = 2;
const CERT_FIRST_RESERVED_PROP_ID = 72;
const WNNC_NET_NETWARE = 0x00030000;
const DFCS_MONO = 0x8000;
const COMADMIN_E_REGDB_NOTOPEN = 0x80110473;
const ES_UPPERCASE = 0x0008;
const VER_CONDITION_MASK = 7;
const FR_REPLACEALL = 0x20;
const CRYPT_DELETE_DEFAULT = 0x4;
const szOID_CT_PKI_DATA = "1.3.6.1.5.5.7.12.2";
const NTE_OP_OK = 0;
const ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201;
const SM_CXSCREEN = 0;
const DM_PELSHEIGHT = 0x00100000;
const GCS_CURSORPOS = 0x0080;
const TLS_MINIMUM_AVAILABLE = 64;
const ERROR_LABEL_UNREADABLE = 0x00000001;
const SCARD_CLASS_PROTOCOL = 3;
const ERROR_NESTING_NOT_ALLOWED = 215;
const RPC_C_BINDING_MIN_TIMEOUT = 0;
const CRL_FIND_ISSUED_BY_BASE_FLAG = 0x8;
const EM_GETMARGINS = 0x00D4;
const TIME_KILL_SYNCHRONOUS = 0x0100;
const ERROR_SXS_XML_E_UNCLOSEDENDTAG = 14061;
const STREAM_MODIFIED_WHEN_READ = 0x1;
const IME_ESC_RESERVED_LAST = 0x07FF;
const MM_TWIPS = 6;
const ERROR_DS_DRA_DB_ERROR = 8451;
const TAPE_SETMARKS = 0;
const SPI_GETKEYBOARDDELAY = 0x0016;
const SBM_GETSCROLLBARINFO = 0x00EB;
const RESOURCEDISPLAYTYPE_NETWORK = 0x00000006;
const GET_PS_FEATURESETTING = 4121;
const VK_OEM_AUTO = 0xF3;
const XACT_E_NOASYNC = 0x8004D009;
const PAN_CONTRAST_INDEX = 4;
const SUBLANG_FRENCH_CANADIAN = 0x03;
const MS_DEF_DH_SCHANNEL_PROV_A = "Microsoft DH SChannel Cryptographic Provider";
const CCERR_CHOOSECOLORCODES = 0x5000;
const HKL_NEXT = 1;
const EXCEPTION_DEBUG_EVENT = 1;
const RPC_E_SERVER_CANTUNMARSHAL_DATA = 0x8001000E;
const MDM_HDLCPPP_SPEED_64K = 0x1;
const HTCAPTION = 2;
const CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG = 0x1;
const DMPAPER_PENV_5_ROTATED = 113;
const MAX_SIZE_SECURITY_ID = 512;
const RTS_CONTROL_HANDSHAKE = 0x2;
const GL_ID_TYPINGERROR = 0x00000021;
const __LDBL_MIN_10_EXP__ = -4931;
const APPLICATION_VERIFIER_INTERNAL_ERROR = 0x80000000;
const ERROR_INVALID_MEDIA_POOL = 4302;
const ERROR_INVALID_NAME = 123;
const UNDEFINE_PRIMARY = 0xC;
const ERROR_DEVICE_NOT_AVAILABLE = 4319;
const ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = 8497;
const ERROR_TRANSFORM_NOT_SUPPORTED = 2004;
const FNOINVERT = 0x02;
const CRYPT_MODE_OFBP = 8;
const COLORONCOLOR = 3;
const DD_DEFSCROLLDELAY = 50;
const COMQC_E_NO_IPERSISTSTREAM = 0x80110603;
const ERROR_LOCK_FAILED = 167;
const SM_CYSIZE = 31;
const EMR_POLYLINE16 = 87;
const LC_WIDESTYLED = 64;
const IPPORT_TELNET = 23;
const GGL_LEVEL = 0x00000001;
const PSD_INWININIINTLMEASURE = 0x0;
const ERROR_INVALID_PRINTER_NAME = 1801;
const URLPOLICY_LOG_ON_DISALLOW = 0x80;
const SKF_LCTLLATCHED = 0x04000000;
const HELP_MULTIKEY = 0x0201;
const SPAPI_E_NO_INF = 0x800F020A;
const szOID_RSA_extCertAttrs = "1.2.840.113549.1.9.9";
const WPF_RESTORETOMAXIMIZED = 0x0002;
const CRYPT_E_INVALID_PRINTABLE_STRING = 0x80092021;
const CERT_ALT_NAME_OTHER_NAME = 1;
const RPC_E_CANTCALLOUT_INASYNCCALL = 0x80010004;
const ERROR_DS_DUP_RDN = 8378;
const MMIO_EXCLUSIVE = 0x00000010;
const ERROR_REMOTE_STORAGE_MEDIA_ERROR = 4352;
const DNS_ERROR_GENERAL_API_BASE = 9550;
const ERROR_INVALID_STARTING_CODESEG = 188;
const SND_FILENAME = 0x00020000;
const PSP_USEHICON = 0x00000002;
const szOID_RSA_ENCRYPT = "1.2.840.113549.3";
const FILE_DEVICE_WAVE_IN = 0x00000025;
const IMAGE_REL_PPC_BRTAKEN = 0x0200;
const RI_KEY_BREAK = 1;
const CO_E_CREATEPROCESS_FAILURE = 0x80004018;
const CRYPT_E_NOT_DECRYPTED = 0x8009100A;
const CF_LOCALE = 16;
const MARSHAL_S_FIRST = 0x00040120;
const OF_READWRITE = 0x2;
const ERROR_DS_NOT_ON_BACKLINK = 8362;
const CONNDLG_CONN_POINT = 0x00000002;
const ERROR_REDIR_PAUSED = 72;
const DV_E_NOIVIEWOBJECT = 0x8004006D;
const SM_SHUTTINGDOWN = 0x2000;
const SCS_CAP_MAKEREAD = 0x00000002;
const SERVICE_PAUSE_PENDING = 0x00000006;
const DMPAPER_9X11 = 44;
const ERROR_WINDOW_NOT_DIALOG = 1420;
const WM_GETDLGCODE = 0x0087;
const WM_NCXBUTTONDOWN = 0x00AB;
const APPLICATION_VERIFIER_CORRUPTED_FREED_HEAP_BLOCK = 0x000E;
const __ATOMIC_ACQ_REL = 4;
const PAN_MIDLINE_LOW_TRIMMED = 11;
const __ATOMIC_RELEASE = 3;
const SYSPAL_ERROR = 0;
const GETPHYSPAGESIZE = 12;
const STATE_SYSTEM_ALERT_MEDIUM = 0x08000000;
const MCI_CLOSE = 0x0804;
const X3_OPCODE_INST_WORD_POS_X = 28;
const CRYPT_E_ATTRIBUTES_MISSING = 0x8009100F;
const SPAPI_E_SCE_DISABLED = 0x800F0238;
const SPI_SETMOUSEKEYS = 0x0037;
const ERROR_ALLOTTED_SPACE_EXCEEDED = 1344;
const LBS_SORT = 0x0002;
const PIDSI_APPNAME = 0x00000012;
const CTRY_ZIMBABWE = 263;
const RPC_S_CANT_CREATE_ENDPOINT = 1720;
const TAPE_DRIVE_SET_BLOCK_SIZE = 0x80000010;
const SPAPI_E_INVALID_CLASS_INSTALLER = 0x800F020D;
const XACT_S_ASYNC = 0x0004D000;
const SUBLANG_MALAYALAM_INDIA = 0x01;
const IMC_GETSTATUSWINDOWPOS = 0x000F;
const CRYPT_RECIPIENT = 0x10;
const FS_VIETNAMESE = 0x00000100;
const LBS_USETABSTOPS = 0x0080;
const IOCTL_SMARTCARD_IS_PRESENT = 10;
const ERROR_OVERRIDE_NOCHANGES = 1252;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_LIST = 0x0014;
const CRYPT_STRING_BASE64HEADER = 0x0;
const TYPE_E_NAMECONFLICT = 0x8002802D;
const DSS_UNION = 0x0010;
const CONNECT_REDIRECT = 0x00000080;
const CONVERT10_E_STG_FMT = 0x800401C4;
const SOUND_SYSTEM_STARTUP = 1;
const RI_KEY_MAKE = 0;
const CERT_ARCHIVED_KEY_HASH_PROP_ID = 65;
const MCI_FORMAT_SMPTE_30DROP = 7;
const szOID_SUBJECT_ALT_NAME2 = "2.5.29.17";
const MIXERCONTROL_CT_UNITS_DECIBELS = 0x00040000;
const szOID_DOMAIN_COMPONENT = "0.9.2342.19200300.100.1.25";
const IDHOT_SNAPWINDOW = -1;
const LANG_TURKMEN = 0x42;
const RPC_E_DISCONNECTED = 0x80010108;
const IMAGE_ENHMETAFILE = 3;
const SUBLANG_SPANISH_HONDURAS = 0x12;
const PP_SYM_KEYSIZE = 19;
const SUBLANG_LUXEMBOURGISH_LUXEMBOURG = 0x01;
const DISP_CHANGE_BADMODE = -2;
const WM_LBUTTONDOWN = 0x0201;
const ERROR_IPSEC_IKE_PROCESS_ERR = 13829;
const IMAGE_REL_M32R_SECREL32 = 0x000D;
const DRV_LOAD = 0x0001;
const CERT_E_WRONG_USAGE = 0x800B0110;
const PRINTACTION_OPEN = 0;
const WNNC_NET_AS400 = 0x000B0000;
const DNS_ERROR_RCODE_NOTZONE = 9010;
const ERROR_PIPE_NOT_CONNECTED = 233;
const WM_MDISETMENU = 0x0230;
const CTRY_IRELAND = 353;
const LANG_CHINESE = 0x04;
const szOID_ENROLL_CERTTYPE_EXTENSION = "1.3.6.1.4.1.311.20.2";
const STM_GETIMAGE = 0x0173;
const LANG_ESTONIAN = 0x25;
const POWER_ACTION_PSEUDO_TRANSITION = 0x08000000;
const CMSG_CMS_RECIPIENT_INDEX_PARAM = 34;
const CERT_CHAIN_THREAD_STORE_SYNC = 0x2;
const IMPLTYPEFLAG_FDEFAULT = 0x1;
const SUBLANG_ARABIC_LIBYA = 0x04;
const COMADMIN_E_COMPONENTEXISTS = 0x80110439;
const CERT_PHYSICAL_STORE_LOCAL_MACHINE_NAME = ".LocalMachine";
const EMBDHLP_INPROC_HANDLER = 0x0000;
const CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG = 0x1;
const NIF_STATE = 0x00000008;
const XACT_S_LOCALLY_OK = 0x0004D00A;
const EVENT_SYSTEM_DRAGDROPEND = 0x000F;
const EMR_SETWORLDTRANSFORM = 35;
const ERROR_NO_TRUST_LSA_SECRET = 1786;
const TAPE_ABSOLUTE_BLOCK = 1;
const S_LEGATO = 1;
const WINSTA_READSCREEN = 0x0200;
const COMADMIN_E_REGFILE_CORRUPT = 0x8011043B;
const ES_AUTOHSCROLL = 0x0080;
const RPC_S_TYPE_ALREADY_REGISTERED = 1712;
const PAN_XHEIGHT_CONSTANT_SMALL = 2;
const __UINT8_MAX__ = 255;
const SC_KEYMENU = 0xF100;
const LB_SETHORIZONTALEXTENT = 0x0194;
const XACT_S_MADECHANGESINFORM = 0x0004D006;
const PSWIZB_DISABLEDFINISH = 0x00000008;
const IDTRYAGAIN = 10;
const ERROR_TIMEOUT = 1460;
const ERROR_DS_CANT_ON_NON_LEAF = 8213;
const CMSG_CONTENTS_OCTETS_FLAG = 0x10;
const FILE_TYPE_UNKNOWN = 0x0;
const DC_ENUMRESOLUTIONS = 13;
const DDL_POSTMSGS = 0x2000;
const DNS_ERROR_NAME_DOES_NOT_EXIST = 9714;
const SUBLANG_SANSKRIT_INDIA = 0x01;
const RESOURCEDISPLAYTYPE_ROOT = 0x00000007;
const HCF_HOTKEYAVAILABLE = 0x00000040;
const PSP_RTLREADING = 0x00000010;
const szOID_NETSCAPE_BASE_URL = "2.16.840.1.113730.1.2";
const PIPE_WAIT = 0x0;
const ERROR_CLUSTER_OLD_VERSION = 5904;
const szOID_DRM_INDIVIDUALIZATION = "1.3.6.1.4.1.311.10.5.2";
const LOCALE_SINTLSYMBOL = 0x00000015;
const WGL_FONT_LINES = 0;
const VS_VERSION_INFO = 1;
const LOCALE_SNEGATIVESIGN = 0x00000051;
const REG_LINK = 6;
const COMADMIN_E_NOTDELETEABLE = 0x8011042B;
const SERVICE_KERNEL_DRIVER = 0x00000001;
const WM_CANCELJOURNAL = 0x004B;
const ODDPARITY = 1;
const CRYPT_E_HASH_VALUE = 0x80091007;
const CTRY_SPAIN = 34;
const CTRY_UNITED_STATES = 1;
const DFCS_CAPTIONCLOSE = 0x0000;
const ERROR_SERVICE_DATABASE_LOCKED = 1055;
const SB_CONST_ALPHA = 0x00000001;
const CC_ANYCOLOR = 0x100;
const PRINTER_STATUS_NOT_AVAILABLE = 0x00001000;
const ERROR_IPSEC_IKE_QUEUE_DROP_MM = 13811;
const EM_SETMARGINS = 0x00D3;
const PURGE_RXCLEAR = 0x8;
const MAPVK_VSC_TO_VK = 1;
const LOCALE_IDEFAULTANSICODEPAGE = 0x00001004;
const MB_SETFOREGROUND = 0x00010000;
const FMFD_URLASFILENAME = 0x00000001;
const ERROR_GROUP_NOT_FOUND = 5013;
const STDOLE_LCID = 0x0000;
const SCHED_E_SERVICE_NOT_RUNNING = 0x80041315;
const COPY_FILE_ALLOW_DECRYPTED_DESTINATION = 0x8;
const XCLASS_BOOL = 0x1000;
const APPCOMMAND_MEDIA_RECORD = 48;
const __GCC_ATOMIC_CHAR_LOCK_FREE = 2;
const ERROR_UNKNOWN_PRINTER_DRIVER = 1797;
const USN_REASON_SECURITY_CHANGE = 0x00000800;
const DLGC_BUTTON = 0x2000;
const RPC_S_INVALID_OBJECT = 1900;
const C2_EUROPENUMBER = 0x0003;
const KP_SIGNATURE_PIN = 33;
const CBN_CLOSEUP = 8;
const WM_UNICHAR = 0x0109;
const MCI_ANIM_RECT = 0x00010000;
const CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC = "CertDllRegisterSystemStore";
const CO_E_WRONGOSFORAPP = 0x800401FA;
const OSS_MEM_ERROR = 0x8009300E;
const CFERR_MAXLESSTHANMIN = 0x2002;
const OF_PARSE = 0x100;
const STG_E_SHAREREQUIRED = 0x80030106;
const SPAPI_E_IN_WOW64 = 0x800F0235;
const CREATEPROCESS_MANIFEST_RESOURCE_ID = 1;
const SCARD_E_INVALID_PARAMETER = 0x80100004;
const X3_IMM20_INST_WORD_X = 3;
const MM_WOM_CLOSE = 0x3BC;
const PRINTER_ATTRIBUTE_HIDDEN = 0x00000020;
const HOVER_DEFAULT = 0xFFFFFFFF;
const CERT_STORE_CTRL_COMMIT_CLEAR_FLAG = 0x2;
const PRIVILEGE_SET_ALL_NECESSARY = 1;
const NRC_NOWILD = 0x15;
const STARTDOC = 10;
const RPC_E_SERVERCALL_RETRYLATER = 0x8001010A;
const CTRY_KAZAKSTAN = 7;
const LGRPID_CENTRAL_EUROPE = 0x0002;
const SUBLANG_ENGLISH_JAMAICA = 0x08;
const PP_KEYEXCHANGE_PIN = 32;
const DMICM_ABS_COLORIMETRIC = 4;
const PD_USEDEVMODECOPIES = 0x40000;
const FACILITY_METADIRECTORY = 35;
const LOCALE_IFIRSTDAYOFWEEK = 0x0000100C;
const AF_NS = 6;
const MIXER_GETCONTROLDETAILSF_QUERYMASK = 0x0000000F;
const MEM_RESERVE = 0x2000;
const EXCEPTION_WRITE_FAULT = 1;
const MCI_FORMAT_SMPTE_24 = 4;
const MCI_FORMAT_SMPTE_25 = 5;
const VOS_NT = 0x00040000;
const CO_E_CLASSSTRING = 0x800401F3;
const MCI_FORMAT_SMPTE_30 = 6;
const NCBCHAINSENDNA = 0x72;
const APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE = 43;
const EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X = 13;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_START_STAMP = 0x0010;
const CWP_SKIPTRANSPARENT = 0x0004;
const SCHED_S_TASK_RUNNING = 0x00041301;
const TRUST_E_CERT_SIGNATURE = 0x80096004;
const TRUST_E_NO_SIGNER_CERT = 0x80096002;
const ERROR_DS_INSTALL_SCHEMA_MISMATCH = 8467;
const PRINTER_ATTRIBUTE_FAX = 0x00004000;
const ERROR_CLUSTER_WRONG_OS_VERSION = 5899;
const ERROR_INSTALL_TEMP_UNWRITABLE = 1632;
const ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = 8306;
const SUBLANG_ARABIC_EGYPT = 0x03;
const EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT = 0x8004020E;
const PERF_TIMER_TICK = 0x00000000;
const FILE_DEVICE_FULLSCREEN_VIDEO = 0x00000034;
const CHANGER_TO_IEPORT = 0x04;
const CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC = 12;
const RRF_NOEXPAND = 0x10000000;
const CRYPT_CACHE_ONLY_RETRIEVAL = 0x2;
const OUT_PS_ONLY_PRECIS = 10;
const JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS = 0x00000008;
const GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER = 0x8000000000000000;
const LZERROR_WRITE = -4;
const INET_E_USE_EXTEND_BINDING = 0x800C0017;
const PRINTER_CHANGE_ADD_PRINTER_DRIVER = 0x10000000;
const META_PIE = 0x081A;
const EV_ERR = 0x80;
const CRYPT_FORMAT_STR_NO_HEX = 0x10;
const DMPAPER_A4_ROTATED = 77;
const CRYPT_OID_USE_PUBKEY_PARA_FOR_PKCS7_FLAG = 0x2;
const IME_ESC_PRIVATE_LAST = 0x0FFF;
const MM_MIM_DATA = 0x3C3;
const SM_TABLETPC = 86;
const WM_NCMBUTTONDOWN = 0x00A7;
const DLL_THREAD_ATTACH = 2;
const CHANGER_CLEANER_SLOT = 0x00000040;
const ERROR_CLUSCFG_ALREADY_COMMITTED = 5901;
const DISC_NO_FORCE = 0x00000040;
const ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = 2109;
const SC_MANAGER_LOCK = 0x0008;
const ERROR_CONNECTION_REFUSED = 1225;
const VSS_E_BAD_STATE = 0x80042301;
const SM_CYMINTRACK = 35;
const cmb5 = 0x0474;
const CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID = 7;
const EMR_SETROP2 = 20;
const ERROR_FILE_NOT_FOUND = 2;
const USN_REASON_DATA_TRUNCATION = 0x00000004;
const szOID_ANY_APPLICATION_POLICY = "1.3.6.1.4.1.311.10.12.1";
const ERROR_IPSEC_IKE_SA_DELETED = 13807;
const PARAMFLAG_FRETVAL = 0x8;
const SEM_NOGPFAULTERRORBOX = 0x2;
const CERT_NAME_ATTR_TYPE = 3;
const DNS_ERROR_NO_TCPIP = 9851;
const LB_ADDSTRING = 0x0180;
const MCI_WAVE_SET_BITSPERSAMPLE = 0x00200000;
const SIF_DISABLENOSCROLL = 0x0008;
const ERROR_RXACT_INVALID_STATE = 1369;
const DS_SETFOREGROUND = 0x200;
const MDM_V110_SPEED_1DOT2K = 0x1;
const VFT2_DRV_INPUTMETHOD = 0x0000000B;
const IMAGE_SYM_DTYPE_FUNCTION = 2;
const MCI_SEQ_STATUS_PORT = 0x00004003;
const CTRY_POLAND = 48;
const JOB_OBJECT_SET_SECURITY_ATTRIBUTES = 0x0010;
const POWER_SYSTEM_MAXIMUM = 7;
const NRC_NAMCONF = 0x19;
const CF_ANSIONLY = 0x400;
const ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = 8549;
const MMIO_FHOPEN = 0x0010;
const ERROR_NO_IMPERSONATION_TOKEN = 1309;
const DSS_MONO = 0x0080;
const SCHANNEL_ENC_KEY = 0x1;
const LBS_OWNERDRAWFIXED = 0x0010;
const RESOURCEDISPLAYTYPE_SERVER = 0x00000002;
const FACILITY_BACKGROUNDCOPY = 32;
const OUT_TT_PRECIS = 4;
const EN_SETFOCUS = 0x0100;
const CERT_STORE_PROV_DELETE_CERT_FUNC = 3;
const MCI_DEVTYPE_DAT = 517;
const SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN = 0x06;
const MCI_OVLY_PUT_VIDEO = 0x00100000;
const CRYPT_DECODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG = 0x8;
const CERT_SYSTEM_STORE_RELOCATE_FLAG = 0x80000000;
const DMPAPER_TABLOID = 3;
const OBJECT_INHERIT_ACE = 0x1;
const ERROR_CANNOT_FIND_WND_CLASS = 1407;
const VER_SUITE_SMALLBUSINESS = 0x00000001;
const CRYPT_FORMAT_STR_MULTI_LINE = 0x1;
const EMR_SETWINDOWEXTEX = 9;
const IMAGE_REL_ALPHA_GPDISP = 0x0006;
const ERROR_IO_INCOMPLETE = 996;
const C3_HIRAGANA = 0x0020;
const SMTO_NORMAL = 0x0000;
const GCP_DBCS = 0x0001;
const SM_CMOUSEBUTTONS = 43;
const LTP_PC_SMT = 0x1;
const BS_PUSHBOX = 0x0000000A;
const FS_LATIN1 = 0x00000001;
const FS_LATIN2 = 0x00000002;
const CACHE_E_LAST = 0x8004017F;
const PRODUCT_SERVER_FOR_SMALLBUSINESS_V = 0x23;
const XACT_E_CLERKNOTFOUND = 0x8004D080;
const PP_KEYEXCHANGE_KEYSIZE = 12;
const NLS_IME_CONVERSION = 0x800000;
const ERROR_INVALID_SPI_VALUE = 1439;
const VK_ACCEPT = 0x1E;
const WVR_ALIGNLEFT = 0x0020;
const FROM_LEFT_3RD_BUTTON_PRESSED = 0x8;
const PARTITION_FAT32_XINT13 = 0x0C;
const IMAGE_FILE_MACHINE_UNKNOWN = 0;
const COMADMIN_E_NOREGISTRYCLSID = 0x80110411;
const VK_LBUTTON = 0x01;
const SS_USERITEM = 0x0000000A;
const WS_MINIMIZEBOX = 0x00020000;
const CMC_OTHER_INFO_PEND_CHOICE = 2;
const ERROR_CLUSTER_JOIN_ABORTED = 5074;
const ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = 8591;
const VK_ATTN = 0xF6;
const RPC_C_OPT_SECURITY_CALLBACK = 10;
const IMAGE_REL_M32R_TOKEN = 0x000E;
const ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = 13017;
const __STDC_WANT_SECURE_LIB__ = 0;
const NTE_PROV_DLL_NOT_FOUND = 0x8009001E;
const CRYPT_STRING_HEX = 0x4;
const SEC_E_BAD_PKGID = 0x80090316;
const SMART_INVALID_IOCTL = 6;
const SIZE_MINIMIZED = 1;
const ERROR_DS_DATABASE_ERROR = 8409;
const PRINTER_CONTROL_PURGE = 3;
const SCARD_W_EOF = 0x8010006D;
const SUBLANG_UZBEK_CYRILLIC = 0x02;
const MOVEFILE_WRITE_THROUGH = 0x8;
const FADF_STATIC = 0x2;
const WM_PRINT = 0x0317;
const NULL_PEN = 8;
const MK_RBUTTON = 0x0002;
const HKL_PREV = 0;
const ST_ISSELF = 0x0100;
const WM_VSCROLLCLIPBOARD = 0x030A;
const szOID_KP_MOBILE_DEVICE_SOFTWARE = "1.3.6.1.4.1.311.10.3.14";
const WM_ERASEBKGND = 0x0014;
const HSHELL_WINDOWDESTROYED = 2;
const ERROR_NO_SUCH_ALIAS = 1376;
const PSD_INHUNDREDTHSOFMILLIMETERS = 0x8;
const CRYPT_E_NO_REVOCATION_DLL = 0x80092011;
const WM_NCACTIVATE = 0x0086;
const CMSG_CTRL_KEY_AGREE_DECRYPT = 17;
const CLASS_E_CLASSNOTAVAILABLE = 0x80040111;
const ISOLATIONAWARE_MANIFEST_RESOURCE_ID = 2;
const SUBLANG_ALBANIAN_ALBANIA = 0x01;
const METHOD_BUFFERED = 0;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_DEFAULT = 10;
const ERROR_DS_NOT_SUPPORTED_SORT_ORDER = 8570;
const CRYPT_DONT_CHECK_TIME_VALIDITY = 0x200;
const INET_E_INVALID_URL = 0x800C0002;
const PSNRET_MESSAGEHANDLED = 3;
const DC_GRADIENT = 0x0020;
const MM_MIXM_LINE_CHANGE = 0x3D0;
const ERROR_DOMAIN_LIMIT_EXCEEDED = 1357;
const SM_PENWINDOWS = 41;
const FILE_SUPPORTS_ENCRYPTION = 0x00020000;
const VSS_E_PROVIDER_NOT_REGISTERED = 0x80042304;
const SPAPI_E_NO_DEVICE_SELECTED = 0x800F0211;
const SO_USELOOPBACK = 0x0040;
const FILE_DEVICE_DFS_VOLUME = 0x00000036;
const IMAGE_REL_CEF_ADDR32NB = 0x0003;
const ERROR_CLUSTER_NODE_ALREADY_UP = 5061;
const MUTANT_QUERY_STATE = 0x0001;
const EMR_INTERSECTCLIPRECT = 30;
const CERT_STORE_CERTIFICATE_CONTEXT = 1;
const MIXER_GETLINECONTROLSF_ONEBYTYPE = 0x00000002;
const QDI_DIBTOSCREEN = 4;
const ANSI_FIXED_FONT = 11;
const PFD_OVERLAY_PLANE = 1;
const _BLANK = 0x40;
const UNWIND_HISTORY_TABLE_NONE = 0;
const CRYPT_OID_SYSTEM_STORE_LOCATION_VALUE_NAME = "SystemStoreLocation";
const CRYPT_E_NO_DECRYPT_CERT = 0x8009200C;
const RPC_C_HTTP_AUTHN_SCHEME_BASIC = 0x00000001;
const PRINTER_ENUM_CONNECTIONS = 0x00000004;
const HCBT_MINMAX = 1;
const RESOURCEDISPLAYTYPE_SHAREADMIN = 0x00000008;
const __SIZEOF_POINTER__ = 8;
const EMR_CHORD = 46;
const HSHELL_WINDOWREPLACING = 14;
const MIDI_CACHE_QUERY = 3;
const FS_GREEK = 0x00000008;
const DNS_ERROR_DATAFILE_BASE = 9650;
const SPAPI_E_DEVINFO_DATA_LOCKED = 0x800F0213;
const VK_ADD = 0x6B;
const APPLICATION_VERIFIER_RPC_ERROR = 0x0500;
const MF_CALLBACKS = 0x08000000;
const IMAGE_SCN_MEM_LOCKED = 0x00040000;
const VK_RBUTTON = 0x02;
const OFN_NOREADONLYRETURN = 0x8000;
const COLOR_MENUHILIGHT = 29;
const DUPLICATE_SAME_ACCESS = 0x00000002;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_SUFFIX = 0x000F;
const LOCALE_SPOSITIVESIGN = 0x00000050;
const PRINTRATEUNIT_IPM = 4;
const ERROR_CALLBACK_SUPPLIED_INVALID_DATA = 1273;
const CB_ADDSTRING = 0x0143;
const STG_E_ACCESSDENIED = 0x80030005;
const SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH = 0x800F0244;
const CF_LIMITSIZE = 0x2000;
const ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390;
const LB_INITSTORAGE = 0x01A8;
const CERT_AUTH_ROOT_AUTO_UPDATE_FLAGS_VALUE_NAME = "Flags";
const QS_TIMER = 0x0010;
const MDM_SHIFT_HDLCPPP_AUTH = 0x3;
const DM_PROMPT = 4;
const WM_WININICHANGE = 0x001A;
const CLASSFACTORY_S_FIRST = 0x00040110;
const PRINTER_CHANGE_ADD_JOB = 0x00000100;
const CERT_CHAIN_FIND_BY_ISSUER = 1;
const ERROR_MORE_DATA = 234;
const ERROR_CLUSTER_PARAMETER_MISMATCH = 5897;
const STG_E_ABNORMALAPIEXIT = 0x800300FA;
const SPAPI_E_INVALID_REFERENCE_STRING = 0x800F021F;
const WM_COPY = 0x0301;
const DPD_DELETE_ALL_FILES = 0x00000004;
const ES_OEMCONVERT = 0x0400;
const IE_NOPEN = -3;
const JOB_OBJECT_UILIMIT_READCLIPBOARD = 0x00000002;
const szOID_CMC_ADD_EXTENSIONS = "1.3.6.1.5.5.7.7.8";
const ERROR_BADDB = 1009;
const ERROR_NOT_A_REPARSE_POINT = 4390;
const IMAGE_REL_IA64_PCREL60B = 0x0016;
const IMAGE_REL_IA64_PCREL60F = 0x0017;
const IMAGE_REL_IA64_PCREL60I = 0x0018;
const IMAGE_REL_IA64_PCREL60M = 0x0019;
const CERT_SMART_CARD_DATA_PROP_ID = 16;
const IMAGE_REL_IA64_PCREL60X = 0x0015;
const ERROR_IRQ_BUSY = 1119;
const SM_DBCSENABLED = 42;
const SOFTDIST_FLAG_USAGE_EMAIL = 0x00000001;
const CRYPT_VERIFYCONTEXT = 0xF0000000;
const CRYPT_HASH_ALG_OID_GROUP_ID = 1;
const OSS_BAD_TABLE = 0x8009300F;
const ASPECTX = 40;
const GET_FEATURE_FROM_REGISTRY = 0x00000004;
const MS_DEF_RSA_SIG_PROV_A = "Microsoft RSA Signature Cryptographic Provider";
const CERT_COMPARE_PUBLIC_KEY = 6;
const TC_SO_ABLE = 0x00001000;
const IMAGE_REL_PPC_TOKEN = 0x0016;
const ERROR_NODE_NOT_AVAILABLE = 5036;
const MAX_REASON_DESC_LEN = 256;
const CAL_GREGORIAN_US = 2;
const CRYPT_MODE_CBCOFMI = 10;
const RPC_IF_ALLOW_UNKNOWN_AUTHORITY = 0x0004;
const PRINTER_CHANGE_PRINTER = 0x000000FF;
const XACT_E_ISOLATIONLEVEL = 0x8004D008;
const PORT_STATUS_OUT_OF_MEMORY = 9;
const REALTIME_PRIORITY_CLASS = 0x100;
const PSPROTOCOL_TBCP = 2;
const DNS_ERROR_DS_UNAVAILABLE = 9717;
const IS_TEXT_UNICODE_ILLEGAL_CHARS = 0x0100;
const SS_RIGHTJUST = 0x00000400;
const PRINTER_CONTROL_SET_STATUS = 4;
const REPLACEFILE_IGNORE_MERGE_ERRORS = 0x2;
const ERROR_EAS_DIDNT_FIT = 275;
const PAN_LETT_NORMAL_OFF_CENTER = 7;
const MIXER_GETLINEINFOF_COMPONENTTYPE = 0x00000003;
const PS_ALTERNATE = 8;
const DNS_ERROR_RCODE_NXRRSET = 9008;
const SM_CMONITORS = 80;
const OSS_MUTEX_NOT_CREATED = 0x8009302D;
const IMAGE_REL_ALPHA_REFQ2 = 0x0014;
const VIEW_S_FIRST = 0x00040140;
const MSSIPOTF_E_NOHEADTABLE = 0x80097003;
const RPC_E_REMOTE_DISABLED = 0x8001011C;
const CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG = 0x4;
const WM_SETFOCUS = 0x0007;
const APPLICATION_VERIFIER_COM_UNHANDLED_EXCEPTION = 0x0402;
const WM_MDIGETACTIVE = 0x0229;
const OSS_INDEFINITE_NOT_SUPPORTED = 0x8009300D;
const TCP_BSDURGENT = 0x7000;
const ERROR_NO_USER_SESSION_KEY = 1394;
const PAN_LETT_NORMAL_FLATTENED = 5;
const ERROR_INSTALL_LANGUAGE_UNSUPPORTED = 1623;
const FOF_FILESONLY = 0x0080;
const DM_PAPERWIDTH = 0x00000008;
const SHTDN_REASON_MINOR_MAINTENANCE = 0x00000001;
const JOYCAPS_POV4DIR = 0x0020;
const WH_CBT = 5;
const CO_E_SXS_CONFIG = 0x80004032;
const PARAMFLAG_FLCID = 0x4;
const ERROR_DS_DRA_NO_REPLICA = 8452;
const MKF_AVAILABLE = 0x00000002;
const CERTSRV_E_ARCHIVED_KEY_UNEXPECTED = 0x80094810;
const URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY = 0x00001203;
const VIF_SHARINGVIOLATION = 0x00000400;
const szOID_ENCRYPTED_KEY_HASH = "1.3.6.1.4.1.311.21.21";
const SIZE_MAXSHOW = 3;
const DM_DISPLAYORIENTATION = 0x00000080;
const JOB_OBJECT_UILIMIT_DESKTOP = 0x00000040;
const OUT_RASTER_PRECIS = 6;
const ERROR_INVALID_SERVICE_ACCOUNT = 1057;
const DMLERR_EXECACKTIMEOUT = 0x4005;
const TPM_VCENTERALIGN = 0x0010;
const FILE_USER_DISALLOWED = 7;
const TAPE_DRIVE_RESERVED_BIT = 0x80000000;
const URLACTION_AUTHENTICATE_CLIENT = 0x00001A01;
const SUBLANG_LOWER_SORBIAN_GERMANY = 0x02;
const FOREGROUND_INTENSITY = 0x8;
const LOCALE_SABBREVLANGNAME = 0x00000003;
const STN_DBLCLK = 1;
const CRYPT_IPSEC_HMAC_KEY = 0x100;
const ERROR_WRITE_FAULT = 29;
const szOID_NETSCAPE_CERT_TYPE = "2.16.840.1.113730.1.1";
const LANG_FRISIAN = 0x62;
const JOY_POVRIGHT = 9000;
const IMAGE_REL_PPC_SECREL16 = 0x000F;
const IMAGE_REL_IA64_SREL14 = 0x0011;
const ERROR_DS_NO_ATTRIBUTE_OR_VALUE = 8202;
const MDM_FLOWCONTROL_SOFT = 0x00000020;
const AUDIT_ALLOW_NO_PRIVILEGE = 0x1;
const SHTDN_REASON_MAJOR_NONE = 0x00000000;
const SPAPI_E_DI_DO_DEFAULT = 0x800F020E;
const CBR_9600 = 9600;
const CC_PIE = 2;
const WH_SHELL = 10;
const LPD_TYPE_RGBA = 0;
const IMAGE_REL_IA64_SREL22 = 0x0012;
const OPAQUEKEYBLOB = 0x9;
const CA_LOG_FILTER = 0x0002;
const WINDOW_BUFFER_SIZE_EVENT = 0x4;
const ERROR_DLL_NOT_FOUND = 1157;
const ERROR_DS_INCORRECT_ROLE_OWNER = 8210;
const SW_OTHERZOOM = 2;
const FEATURESETTING_PRIVATE_BEGIN = 0x1000;
const TIME_BYTES = 0x0004;
const IMAGE_REL_IA64_SREL32 = 0x0013;
const ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 3005;
const MCI_INFO_MEDIA_IDENTITY = 0x00000800;
const LOCALE_INEGSYMPRECEDES = 0x00000056;
const WNNC_NET_SRT = 0x00370000;
const ERROR_IPSEC_IKE_PROCESS_ERR_SIG = 13838;
const ERROR_CTX_CLIENT_LICENSE_IN_USE = 7052;
const TAPE_DRIVE_HIGH_FEATURES = 0x80000000;
const ERROR_INVALID_FORM_NAME = 1902;
const SHADEBLENDCAPS = 120;
const ERROR_IPSEC_MM_FILTER_PENDING_DELETION = 13018;
const RPC_C_AUTHN_LEVEL_PKT = 4;
const PROCESSOR_ARM820 = 2080;
const GDICOMMENT_MULTIFORMATS = 0x40000004;
const FILEOPENORD = 1536;
const ERROR_CLUSTER_NODE_UNREACHABLE = 5051;
const MAP_FOLDCZONE = 0x00000010;
const VK_F1 = 0x70;
const ERROR_CTX_LICENSE_NOT_AVAILABLE = 7054;
const EEInfoGCFRS = 12;
const VK_F4 = 0x73;
const VK_F5 = 0x74;
const VK_F7 = 0x76;
const VK_F8 = 0x77;
const VK_F9 = 0x78;
const IMAGE_SYM_CLASS_MEMBER_OF_ENUM = 0x0010;
const ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = 5081;
const REG_DWORD_LITTLE_ENDIAN = 4;
const ERROR_FILE_NOT_ENCRYPTED = 6007;
const IPPORT_DAYTIME = 13;
const __FLT_HAS_DENORM__ = 1;
const CS_SAVEBITS = 0x0800;
const URLACTION_INFODELIVERY_NO_CHANNEL_LOGGING = 0x00001D06;
const MCI_DEVTYPE_SEQUENCER = 523;
const CERT_RDN_UNICODE_STRING = 12;
const KP_PADDING = 3;
const CMSG_ENCRYPT_PARAM = 26;
const MDM_HDLCPPP_AUTH_CHAP = 0x3;
const VER_SUITE_SINGLEUSERTS = 0x00000100;
const FILE_SUPERSEDE = 0x00000000;
const SHUTDOWN_NORETRY = 0x1;
const PORT_STATUS_TONER_LOW = 10;
const ERROR_CLUSTER_NODE_NOT_PAUSED = 5058;
const CRYPTPROTECT_VERIFY_PROTECTION = 0x40;
const SW_FORCEMINIMIZE = 11;
const CMSG_CONTENT_ENCRYPT_PAD_ENCODED_LEN_FLAG = 0x1;
const CERTSRV_E_SIGNATURE_REJECTED = 0x8009480B;
const FOF_SILENT = 0x0004;
const SMART_INVALID_FLAG = 2;
const IME_PROP_CANDLIST_START_FROM_1 = 0x00040000;
const ERROR_SXS_XML_E_UNEXPECTEDEOF = 14058;
const SM_CYSMICON = 50;
const ERROR_DS_BACKLINK_WITHOUT_LINK = 8482;
const APPCOMMAND_BROWSER_BACKWARD = 1;
const TKF_HOTKEYACTIVE = 0x00000004;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_EXCEPTION_RAISED_FOR_PROBING = 0x000C;
const PSPROTOCOL_ASCII = 0;
const POSTSCRIPT_INJECTION = 4118;
const MSG_DONTROUTE = 0x4;
const CERT_TRUST_IS_CYCLIC = 0x80;
const BKMODE_LAST = 2;
const FILE_WRITE_THROUGH = 0x00000002;
const CERT_NAME_FRIENDLY_DISPLAY_TYPE = 5;
const BS_AUTO3STATE = 0x00000006;
const PD_HIDEPRINTTOFILE = 0x100000;
const SPI_SETKEYBOARDCUES = 0x100B;
const CRL_DIST_POINT_FULL_NAME = 1;
const VSS_E_OBJECT_ALREADY_EXISTS = 0x8004230D;
const CBR_600 = 600;
const MIM_MAXHEIGHT = 0x00000001;
const MB_MODEMASK = 0x00003000;
const VK_SUBTRACT = 0x6D;
const IMAGE_REL_ARM_BLX11 = 0x0009;
const LANG_TATAR = 0x44;
const STG_LAYOUT_SEQUENTIAL = 0x00000000;
const CB_GETEXTENDEDUI = 0x0156;
const CBS_OWNERDRAWVARIABLE = 0x0020;
const IMAGE_REL_ARM_BLX24 = 0x0008;
const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT = 11;
const SCARD_E_NOT_READY = 0x80100010;
const MCI_WAVE_STATUS_AVGBYTESPERSEC = 0x00004004;
const RPC_IF_SEC_NO_CACHE = 0x0040;
const PAN_MIDLINE_HIGH_POINTED = 6;
const PDERR_GETDEVMODEFAIL = 0x1005;
const CTL_V1 = 0;
const VARIANT_NOVALUEPROP = 0x01;
const DCB_DISABLE = 0x0008;
const ERROR_QUORUM_RESOURCE_ONLINE_FAILED = 5027;
const OLEOBJ_E_FIRST = 0x80040180;
const IDC_UPARROW = 32516;
const CBN_KILLFOCUS = 4;
const TYPE_E_AMBIGUOUSNAME = 0x8002802C;
const CERT_REGISTRY_STORE_SERIALIZED_FLAG = 0x20000;
const IMAGE_SCN_MEM_NOT_CACHED = 0x04000000;
const SHTDN_REASON_MAJOR_LEGACY_API = 0x00070000;
const XACT_E_TIP_PULL_FAILED = 0x8004D021;
const ERROR_SIGNAL_REFUSED = 156;
const ERROR_DS_COMPARE_TRUE = 8230;
const STG_E_INVALIDPARAMETER = 0x80030057;
const SW_SHOWNA = 8;
const PSD_NOWARNING = 0x80;
const MCI_INFO_COPYRIGHT = 0x00002000;
const SCARD_CLASS_VENDOR_DEFINED = 7;
const PAN_SERIF_OBTUSE_SANS = 12;
const MDM_SHIFT_AUTO_ML = 0x6;
const NLS_ROMAN = 0x400000;
const CO_E_ACTIVATIONFAILED_CATALOGERROR = 0x8004E023;
const PS_SOLID = 0;
const ERROR_LUIDS_EXHAUSTED = 1334;
const REPLACEDLGORD = 1541;
const MDM_SHIFT_HDLCPPP_ML = 0x6;
const ERROR_DS_UNWILLING_TO_PERFORM = 8245;
const SPI_SETMOUSECLICKLOCKTIME = 0x2009;
const VK_OEM_MINUS = 0xBD;
const MDM_AUTO_SPEED_DEFAULT = 0x0;
const ERROR_WINDOW_NOT_COMBOBOX = 1423;
const SS_ETCHEDFRAME = 0x00000012;
const APPCOMMAND_UNDO = 34;
const SCARD_W_CACHE_ITEM_NOT_FOUND = 0x80100070;
const UPDFCACHE_NORMALCACHE = 0x8;
const VK_OEM_PLUS = 0xBB;
const IMAGE_SUBSYSTEM_WINDOWS_GUI = 2;
const R2_XORPEN = 7;
const DMORIENT_PORTRAIT = 1;
const CERT_OID_NAME_STR = 2;
const DCX_VALIDATE = 0x00200000;
const URLPOLICY_JAVA_PROHIBIT = 0x00000000;
const OBJ_METAFILE = 9;
const SYSPAL_NOSTATIC = 2;
const IMAGE_REL_BASED_HIGHLOW = 3;
const EMR_FILLRGN = 71;
const ENABLEPAIRKERNING = 769;
const CO_E_INIT_ONLY_SINGLE_THREADED = 0x80004012;
const CONNECT_INTERACTIVE = 0x00000008;
const CRL_FIND_EXISTING = 2;
const ERROR_LICENSE_QUOTA_EXCEEDED = 1395;
const IMAGE_REL_PPC_SECRELHI = 0x0014;
const IDC_SIZE = 32640;
const WS_TABSTOP = 0x00010000;
const SND_ASYNC = 0x0001;
const JOB_CONTROL_CANCEL = 3;
const ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF = 4;
const INTERNATIONAL_USAGE = 0x1;
const ABM_REMOVE = 0x00000001;
const SPAPI_E_INVALID_TARGET = 0x800F0233;
const ERROR_NO_INHERITANCE = 1391;
const CERTSRV_E_NO_VALID_KRA = 0x8009400B;
const URLACTION_NETWORK_MIN = 0x00001A00;
const TRUST_E_NOSIGNATURE = 0x800B0100;
const WTS_REMOTE_CONNECT = 0x3;
const KEYBOARD_OVERRUN_MAKE_CODE = 0xFF;
const WM_NCMBUTTONDBLCLK = 0x00A9;
const URLMON_OPTION_USERAGENT = 0x10000001;
const EMR_COLORCORRECTPALETTE = 111;
const CRYPT_E_NO_VERIFY_USAGE_CHECK = 0x80092028;
const MCI_SYSINFO_QUANTITY = 0x00000100;
const PAN_MIDLINE_INDEX = 8;
const CAL_SMONTHNAME12 = 0x00000020;
const IMPLINK_HIGHEXPER = 158;
const INET_E_USE_DEFAULT_SETTING = 0x800C0012;
const szOID_PKIX_KP_CLIENT_AUTH = "1.3.6.1.5.5.7.3.2";
const SB_CTL = 2;
const FADF_HAVEIID = 0x40;
const MCI_FORMAT_HMS = 1;
const IMAGE_REL_PPC_SECRELLO = 0x0013;
const DRAFT_QUALITY = 1;
const SEE_MASK_FLAG_NO_UI = 0x00000400;
const SERVICE_STOP_PENDING = 0x00000003;
const VER_PLATFORM_WIN32_NT = 2;
const MMIO_EMPTYBUF = 0x0010;
const IMAGE_FILE_MACHINE_MIPS16 = 0x0266;
const SPI_GETFONTSMOOTHINGCONTRAST = 0x200C;
const WINSTA_ACCESSCLIPBOARD = 0x0004;
const ERROR_TAG_NOT_FOUND = 2012;
const PID_LOCALE = 0x80000000;
const __SIZEOF_SIZE_T__ = 8;
const IMAGE_REL_SH3_PCREL8_WORD = 0x0009;
const SCARD_E_NOT_TRANSACTED = 0x80100016;
const szOID_INTERNATIONAL_ISDN_NUMBER = "2.5.4.25";
const PRINTER_CHANGE_SET_PRINTER = 0x00000002;
const LB_ADDFILE = 0x0196;
const ES_LOWERCASE = 0x0010;
const EMR_SETPOLYFILLMODE = 19;
const ERROR_DS_OFFSET_RANGE_ERROR = 8262;
const SC_CLOSE = 0xF060;
const IS_TEXT_UNICODE_CONTROLS = 0x0004;
const IMFT_SEPARATOR = 0x00002;
const LANG_ALSATIAN = 0x84;
const ROT_COMPARE_MAX = 2048;
const ERROR_ACCOUNT_EXPIRED = 1793;
const COMADMIN_E_COREQCOMPINSTALLED = 0x80110435;
const SPI_GETCOMBOBOXANIMATION = 0x1004;
const MOUSE_MOVED = 0x1;
const ERROR_PROTOCOL_UNREACHABLE = 1233;
const ERROR_INVALID_LOGON_HOURS = 1328;
const DC_MANUFACTURER = 23;
const ERROR_INVALID_PARAMETER = 87;
const IMAGE_SYM_CLASS_END_OF_STRUCT = 0x0066;
const ERROR_NO_SYSTEM_RESOURCES = 1450;
const DMPAPER_A4SMALL = 10;
const ERROR_SXS_XML_E_INVALID_VERSION = 14072;
const ERROR_DS_NAME_TOO_LONG = 8348;
const TYPE_E_QUALIFIEDNAMEDISALLOWED = 0x80028028;
const CO_E_RUNAS_SYNTAX = 0x80004017;
const TAPE_DRIVE_SET_CMP_BOP_ONLY = 0x04000000;
const ERROR_IPSEC_IKE_PROCESS_ERR_PROP = 13831;
const ERROR_OUT_OF_PAPER = 28;
const DMPAPER_JAPANESE_POSTCARD = 43;
const EVENT_SYSTEM_DIALOGSTART = 0x0010;
const S_THRESHOLD = 1;
const SPI_GETGRADIENTCAPTIONS = 0x1008;
const CF_RIFF = 11;
const HTHELP = 21;
const SC_SCREENSAVE = 0xF140;
const CERT_STORE_CTRL_INHIBIT_DUPLICATE_HANDLE_FLAG = 0x1;
const CERT_QUERY_CONTENT_PKCS7_UNSIGNED = 9;
const _MAX_ENV = 32767;
const HTRIGHT = 11;
const CO_E_FAILEDTOGETTOKENINFO = 0x80010126;
const CERT_TRUST_IS_UNTRUSTED_ROOT = 0x20;
const DMBIN_TRACTOR = 8;
const SET_ARC_DIRECTION = 4102;
const BSF_NOTIMEOUTIFNOTHUNG = 0x00000040;
const WM_SYSCHAR = 0x0106;
const SPI_SETSCREENREADER = 0x0047;
const SPI_SETMESSAGEDURATION = 0x2017;
const CRYPT_GET_URL_FROM_EXTENSION = 0x2;
const ERROR_DS_BUSY = 8206;
const SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL = 0x00000018;
const CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC = "CertDllUnregisterSystemStore";
const QS_HOTKEY = 0x0080;
const IMAGE_REL_ARM_GPREL7 = 0x0007;
const WNNC_NET_CLEARCASE = 0x00160000;
const XACT_S_MADECHANGESCONTENT = 0x0004D005;
const ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079;
const REGULAR_FONTTYPE = 0x400;
const ERROR_INVALID_DOMAIN_STATE = 1353;
const JOB_OBJECT_UILIMIT_GLOBALATOMS = 0x00000020;
const COMADMIN_E_NOUSER = 0x8011040F;
const VP_TV_STANDARD_NTSC_M = 0x0001;
const DNS_ERROR_RESPONSE_CODES_BASE = 9000;
const LBS_COMBOBOX = 0x8000;
const ST_ADVISE = 0x0002;
const SET_POLY_MODE = 4104;
const DIGSIG_E_EXTENSIBILITY = 0x800B0007;
const METHOD_OUT_DIRECT = 2;
const MCI_ANIM_WINDOW_DISABLE_STRETCH = 0x00200000;
const JOY_RETURNPOV = 0x00000040;
const szOID_EMBEDDED_NT_CRYPTO = "1.3.6.1.4.1.311.10.3.8";
const PRINTER_STATUS_IO_ACTIVE = 0x00000100;
const MAXIMUM_PROCESSORS = 64;
const APPLICATION_VERIFIER_LOCK_DOUBLE_INITIALIZE = 0x0203;
const URLACTION_COOKIES_THIRD_PARTY = 0x00001A05;
const MB_DEFBUTTON1 = 0x00000000;
const MB_DEFBUTTON2 = 0x00000100;
const MB_DEFBUTTON3 = 0x00000200;
const MB_DEFBUTTON4 = 0x00000300;
const GETTRACKKERNTABLE = 259;
const CRYPT_INSTALL_OID_FUNC_BEFORE_FLAG = 1;
const ERROR_SXS_VERSION_CONFLICT = 14008;
const CTRY_TAIWAN = 886;
const DM_DEFAULTSOURCE = 0x00000200;
const APPLICATION_ERROR_MASK = 0x20000000;
const NTE_EXISTS = 0x8009000F;
const CRYPTPROTECTMEMORY_BLOCK_SIZE = 16;
const VARIANT_USE_NLS = 0x80;
const CBR_38400 = 38400;
const SELECT_CAP_SENTENCE = 0x00000002;
const NIIF_NOSOUND = 0x00000010;
const STATE_SYSTEM_UNAVAILABLE = 0x00000001;
const INPUTLANGCHANGE_SYSCHARSET = 0x0001;
const MMIO_GLOBALPROC = 0x10000000;
const TAPE_ERASE_LONG = 1;
const INET_E_REDIRECTING = 0x800C0014;
const CMSG_SIGNER_AUTH_ATTR_PARAM = 9;
const MAXSTRETCHBLTMODE = 4;
const TOKEN_ASSIGN_PRIMARY = 0x0001;
const CMSG_CMS_ENCAPSULATED_CTL_FLAG = 0x8000;
const EMR_DELETEOBJECT = 40;
const MKSYS_URLMONIKER = 6;
const CTRY_KYRGYZSTAN = 996;
const CERT_INFO_EXTENSION_FLAG = 11;
const ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = 1177;
const SERVICE_CHANGE_CONFIG = 0x0002;
const CTRY_SLOVENIA = 386;
const FINDDLGORD = 1540;
const CTRY_GERMANY = 49;
const ERROR_PRINTER_ALREADY_EXISTS = 1802;
const MIDICAPS_CACHE = 0x0004;
const IMAGE_DEBUG_TYPE_COFF = 1;
const CRL_REASON_CESSATION_OF_OPERATION = 5;
const _ALLOCA_S_STACK_MARKER = 0xCCCC;
const ERROR_UNKNOWN_PRODUCT = 1605;
const RPC_E_CLIENT_DIED = 0x80010008;
const DMDO_90 = 1;
const SKF_TWOKEYSOFF = 0x00000100;
const PARTITION_OS2BOOTMGR = 0x0A;
const ERROR_DS_EPOCH_MISMATCH = 8483;
const IPPORT_SUPDUP = 95;
const EV_PERR = 0x200;
const SE_OWNER_DEFAULTED = 0x0001;
const chx10 = 0x0419;
const CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_VALUE_NAME = "MaxAIAUrlCountInCert";
const szOID_CERT_POLICIES = "2.5.29.32";
const ERROR_IPSEC_IKE_INVALID_AUTH_ALG = 13874;
const WS_EX_LEFT = 0x00000000;
const REGISTERED = 0x04;
const szOID_USER_PASSWORD = "2.5.4.35";
const ERROR_CTX_WINSTATION_NOT_FOUND = 7022;
const COMADMIN_E_BADPATH = 0x8011040A;
const PWR_SUSPENDRESUME = 2;
const RC_PALETTE = 0x0100;
const GETCOLORTABLE = 5;
const OFN_READONLY = 0x1;
const KLF_REORDER = 0x00000008;
const FRERR_FINDREPLACECODES = 0x4000;
const SYSRGN = 4;
const PM_NOREMOVE = 0x0000;
const COLOR_HIGHLIGHT = 13;
const INET_E_SECURITY_PROBLEM = 0x800C000E;
const PP_USE_HARDWARE_RNG = 38;
const ERROR_FILE_EXISTS = 80;
const ERROR_INVALID_BLOCK_LENGTH = 1106;
const ERROR_BAD_EXE_FORMAT = 193;
const CS_E_OBJECT_NOTFOUND = 0x80040169;
const NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE = 0x40;
const EMR_POLYDRAW = 56;
const SPI_GETDEFAULTINPUTLANG = 0x0059;
const __DBL_HAS_DENORM__ = 1;
const TIME_SAMPLES = 0x0002;
const DMPAPER_PENV_3_ROTATED = 111;
const MIXERCONTROL_CT_UNITS_BOOLEAN = 0x00010000;
const CTRY_DOMINICAN_REPUBLIC = 1;
const ERROR_SERVICE_NEVER_STARTED = 1077;
const MSSIPOTF_E_CANTGETOBJECT = 0x80097002;
const DFCS_MENUCHECK = 0x0001;
const ACCESS_MAX_MS_V2_ACE_TYPE = 0x3;
const CERT_UNICODE_ATTR_ERR_INDEX_SHIFT = 16;
const LANG_INDONESIAN = 0x21;
const CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC = "CryptDllExportPublicKeyInfoEx";
const SUBLANG_SERBIAN_LATIN = 0x02;
const DNS_ERROR_DP_FSMO_ERROR = 9906;
const IME_KHOTKEY_SHAPE_TOGGLE = 0x50;
const NCBTRACE = 0x79;
const EM_GETLINECOUNT = 0x00BA;
const ERROR_INVALID_OPERATION_ON_QUORUM = 5068;
const MARKPARITY = 3;
const PAN_MIDLINE_CONSTANT_TRIMMED = 8;
const EIMES_CANCELCOMPSTRINFOCUS = 0x0002;
const PAN_LETT_OBLIQUE_SQUARE = 15;
const HELP_SETINDEX = 0x0005;
const CERT_STORE_LOCALIZED_NAME_PROP_ID = 0x1000;
const NUMPRS_LEADING_WHITE = 0x0001;
const COLOR_SCROLLBAR = 0;
const CERT_COMPARE_PROPERTY = 5;
const ERROR_INVALID_TARGET_HANDLE = 114;
const CRYPT_OID_INHIBIT_SIGNATURE_FORMAT_FLAG = 0x1;
const CTLCOLOR_MSGBOX = 0;
const VK_PA1 = 0xFD;
const ERROR_SXS_UNTRANSLATABLE_HRESULT = 14077;
const VK_CONTROL = 0x11;
const PFD_DOUBLEBUFFER_DONTCARE = 0x40000000;
const RGN_OR = 2;
const MCI_SEQ_NONE = 65533;
const ERROR_BAD_DEVICE = 1200;
const LGRPID_CYRILLIC = 0x0005;
const ERROR_DS_NO_DELETED_NAME = 8355;
const STG_E_NOMOREFILES = 0x80030012;
const BS_TEXT = 0x00000000;
const MM_MCINOTIFY = 0x3B9;
const MCI_WAVE_STATUS_BLOCKALIGN = 0x00004005;
const VIETNAMESE_CHARSET = 163;
const DISP_E_PARAMNOTFOUND = 0x80020004;
const ERROR_DS_DRA_NOT_SUPPORTED = 8454;
const DC_SMALLCAP = 0x0002;
const GET_FEATURE_FROM_PROCESS = 0x00000002;
const NTDDI_WIN7 = 0x06010000;
const SETDTR = 5;
const CRYPT_FORMAT_X509 = 0x2;
const IMAGE_REL_AMD64_PAIR = 0x000F;
const MMIO_DIRTY = 0x10000000;
const CERT_NAME_RDN_TYPE = 2;
const ERROR_LOGON_FAILURE = 1326;
const PAN_WEIGHT_BOLD = 8;
const VK_OEM_3 = 0xC0;
const VK_DELETE = 0x2E;
const ENDSESSION_LOGOFF = 0x80000000;
const CERT_STORE_PROV_WRITE_CRL_FUNC = 6;
const SIZE_MAXIMIZED = 2;
const MM_DRVM_CLOSE = 0x3D1;
const MIXERCONTROL_CT_SC_TIME_MILLISECS = 0x01000000;
const FILE_SUPPORTS_REMOTE_STORAGE = 0x00000100;
const CERT_STORE_CTRL_NOTIFY_CHANGE = 2;
const ERROR = 0;
const ERROR_DEVICE_REINITIALIZATION_NEEDED = 1164;
const OLE_E_INVALIDRECT = 0x8004000D;
const ERROR_NETLOGON_NOT_STARTED = 1792;
const SERVICE_CONTROL_SESSIONCHANGE = 0x0000000E;
const _LOWER = 0x2;
const ERROR_INVALID_ACL = 1336;
const COMADMIN_E_PARTITION_MSI_ONLY = 0x80110819;
const IMAGE_REL_AMD64_SECREL = 0x000B;
const BS_LEFTTEXT = 0x00000020;
const DMPAPER_11X17 = 17;
const CO_E_NOT_SUPPORTED = 0x80004021;
const DNS_ERROR_NODE_IS_CNAME = 9708;
const SUBLANG_RUSSIAN_RUSSIA = 0x01;
const IMAGE_SYM_CLASS_REGISTER_PARAM = 0x0011;
const ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = 5896;
const SHTDN_REASON_MAJOR_OPERATINGSYSTEM = 0x00020000;
const STACK_SIZE_PARAM_IS_A_RESERVATION = 0x10000;
const GGO_METRICS = 0;
const SPI_SETSTICKYKEYS = 0x003B;
const NCBCHAINSEND = 0x17;
const PAN_WEIGHT_BOOK = 5;
const EMBDHLP_INPROC_SERVER = 0x0001;
const CLIPBRD_E_CANT_EMPTY = 0x800401D1;
const CTRY_FRANCE = 33;
const IME_ESC_IME_NAME = 0x1006;
const NCBRECV = 0x15;
const LC_POLYLINE = 2;
const TAPE_UNLOAD = 1;
const EMR_SETICMMODE = 98;
const STG_E_INUSE = 0x80030100;
const SM_SECURE = 44;
const ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = 8511;
const URLACTION_HTML_SUBFRAME_NAVIGATE = 0x00001607;
const EM_SETREADONLY = 0x00CF;
const BS_MONOPATTERN = 9;
const PRODUCT_HOME_PREMIUM_SERVER = 0x22;
const ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 13019;
const MIXERCONTROL_CT_SC_SWITCH_BUTTON = 0x01000000;
const SPI_GETTOOLTIPANIMATION = 0x1016;
const JOB_OBJECT_UILIMIT_ALL = 0x000000FF;
const CRYPT_E_REVOCATION_OFFLINE = 0x80092013;
const TIME_VALID_OID_GET_OBJECT_FUNC = "TimeValidDllGetObject";
const TAPE_UNLOCK = 4;
const CRYPT_RC2_56BIT_VERSION = 52;
const DNS_WARNING_PTR_CREATE_FAILED = 9715;
const CERT_STORE_CRL_CONTEXT = 2;
const SPI_GETFILTERKEYS = 0x0032;
const VK_XBUTTON1 = 0x05;
const VK_XBUTTON2 = 0x06;
const szOID_NETSCAPE_SSL_SERVER_NAME = "2.16.840.1.113730.1.12";
const IMN_OPENCANDIDATE = 0x0005;
const XST_UNADVACKRCVD = 14;
const SERVICES_ACTIVE_DATABASEW = "ServicesActive";
const SUBLANG_GREEK_GREECE = 0x01;
const SCARD_E_INVALID_TARGET = 0x80100005;
const CRYPT_DEFAULT_CONTEXT_AUTO_RELEASE_FLAG = 0x1;
const CMSG_KEY_AGREE_ORIGINATOR_PUBLIC_KEY = 2;
const MDM_PROTOCOLID_V110 = 0x4;
const CERT_E_INVALID_POLICY = 0x800B0113;
const MDMVOLFLAG_MEDIUM = 0x00000002;
const VS_FFI_SIGNATURE = 0xFEEF04BD;
const PRINTER_CHANGE_ADD_PRINTER = 0x00000001;
const CBN_EDITUPDATE = 6;
const MDM_PROTOCOLID_V128 = 0x2;
const GET_SYSTEM_WOW64_DIRECTORY_NAME_A_W = "GetSystemWow64DirectoryA";
const IOCTL_SMARTCARD_GET_ATTRIBUTE = 2;
const MK_E_NOTBOUND = 0x800401E9;
const SO_MAXDG = 0x7009;
const ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = 8553;
const EMR_HEADER = 1;
const MEDIA_WRITE_PROTECTED = 0x00000100;
const CERT_STORE_ADD_ALWAYS = 4;
const ERROR_INCORRECT_SIZE = 1462;
const EMR_EXTCREATEPEN = 95;
const CERT_VERIFY_REV_CHAIN_FLAG = 0x1;
const SOMAXCONN = 5;
const ERROR_DS_NO_SUCH_OBJECT = 8240;
const GDICOMMENT_WINDOWS_METAFILE = 0x80000001;
const CRL_V1 = 0;
const CRL_V2 = 1;
const HSHELL_WINDOWREPLACED = 13;
const ERROR_DS_DRA_OUT_OF_MEM = 8446;
const JOB_OBJECT_LIMIT_SCHEDULING_CLASS = 0x00000080;
const ERROR_GEN_FAILURE = 31;
const SCS_CAP_SETRECONVERTSTRING = 0x00000004;
const GA_PARENT = 1;
const SUBLANG_SINDHI_AFGHANISTAN = 0x02;
const ERROR_SEVERITY_WARNING = 0x80000000;
const ERROR_HANDLE_EOF = 38;
const EMR_STROKEANDFILLPATH = 63;
const IMAGE_CURSOR = 2;
const ERROR_DOMAIN_CONTROLLER_EXISTS = 1250;
const TYPE_E_UNSUPFORMAT = 0x80028019;
const __DEC128_MIN_EXP__ = -6142;
const ERROR_WMI_GUID_DISCONNECTED = 4207;
const CO_E_SERVER_INIT_TIMEOUT = 0x8000402A;
const szOID_RSA = "1.2.840.113549";
const PROCESSOR_ARM920 = 2336;
const IP_ADD_MEMBERSHIP = 5;
const WNNC_NET_DISTINCT = 0x00230000;
const IMAGE_REL_AMD64_SREL32 = 0x000E;
const SS_TYPEMASK = 0x0000001F;
const CERT_TRUST_IS_SELF_SIGNED = 0x8;
const ICM_ON = 2;
const CMC_FAIL_NO_KEY_REUSE = 10;
const EM_GETLINE = 0x00C4;
const IMAGE_SYM_CLASS_STATIC = 0x0003;
const RPC_C_VERS_COMPATIBLE = 2;
const WM_NCMOUSEHOVER = 0x02A0;
const ERROR_INVALID_IMPORT_OF_NON_DLL = 1276;
const SPI_SETDEFAULTINPUTLANG = 0x005A;
const SOUND_SYSTEM_MINIMIZE = 9;
const DESKTOPHORZRES = 118;
const BIDI_ACCESS_USER = 0x2;
const CTRY_CHILE = 56;
const ERROR_RESOURCE_NOT_ONLINE = 5004;
const VER_SUITE_SMALLBUSINESS_RESTRICTED = 0x00000020;
const PID_MIN_READONLY = 0x80000000;
const CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG = 0x40;
const CERT_PROT_ROOT_DISABLE_LM_AUTH_FLAG = 0x8;
const SHGNLI_PIDL = 0x000000001;
const BSF_ALLOWSFW = 0x00000080;
const SPI_SETDESKWALLPAPER = 0x0014;
const SUBLANG_CATALAN_CATALAN = 0x01;
const DDL_DIRECTORY = 0x0010;
const META_FRAMEREGION = 0x0429;
const CERTSRV_E_SMIME_REQUIRED = 0x80094805;
const BM_GETSTATE = 0x00F2;
const NTE_FAIL = 0x80090020;
const SM_CYMINSPACING = 48;
const DISP_E_OVERFLOW = 0x8002000A;
const SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE = 0x800F0245;
const CAL_HIJRI = 6;
const EWX_POWEROFF = 0x00000008;
const szOID_RSA_DES_EDE3_CBC = "1.2.840.113549.3.7";
const DNS_ERROR_RECORD_TIMED_OUT = 9705;
const TPM_VERPOSANIMATION = 0x1000;
const CERT_FIRST_USER_PROP_ID = 0x8000;
const ERROR_CLASS_DOES_NOT_EXIST = 1411;
const CERT_OCM_SUBCOMPONENTS_LOCAL_MACHINE_REGPATH = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Setup\\OC Manager\\Subcomponents";
const PAN_PROP_VERY_EXPANDED = 7;
const ERROR_DS_EXISTS_IN_MUST_HAVE = 8385;
const WM_CTLCOLORSTATIC = 0x0138;
const szOID_ROOT_LIST_SIGNER = "1.3.6.1.4.1.311.10.3.9";
const PROCESSOR_MOTOROLA_821 = 821;
const RPC_S_PRF_ELT_NOT_REMOVED = 1927;
const DMLERR_BUSY = 0x4001;
const WM_MDIACTIVATE = 0x0222;
const FRS_ERR_INTERNAL_API = 8004;
const ERROR_PIPE_CONNECTED = 535;
const ABM_ACTIVATE = 0x00000006;
const OF_REOPEN = 0x8000;
const PLANES = 14;
const DMCOLLATE_FALSE = 0;
const PSINJECT_PAGENUMBER = 100;
const SCARD_E_DUPLICATE_READER = 0x8010001B;
const ERROR_INSTALL_PACKAGE_VERSION = 1613;
const DESKTOP_CREATEMENU = 0x0004;
const OSS_CONSTRAINT_VIOLATED = 0x80093011;
const SCARD_E_NO_KEY_CONTAINER = 0x80100030;
const X3_I_INST_WORD_X = 3;
const SEC_E_UNSUPPORTED_PREAUTH = 0x80090343;
const SIZE_RESTORED = 0;
const MM_STREAM_ERROR = 0x3D7;
const ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 13015;
const DMMEDIA_USER = 256;
const VK_NONCONVERT = 0x1D;
const LOCALE_ILZERO = 0x00000012;
const ERROR_EFS_SERVER_NOT_TRUSTED = 6011;
const SERVICE_CONTROL_NETBINDDISABLE = 0x0000000A;
const URLPOLICY_JAVA_LOW = 0x00030000;
const FCONTROL = 0x08;
const EN_KILLFOCUS = 0x0200;
const CONNECT_PROMPT = 0x00000010;
const WM_CHILDACTIVATE = 0x0022;
const CERT_STORE_PROV_FREE_FIND_CTL_FUNC = 21;
const ERROR_SHARED_POLICY = 8218;
const USAGE_MATCH_TYPE_AND = 0x0;
const NF_QUERY = 3;
const MDM_AUTO_ML_NONE = 0x1;
const ERROR_INVALID_LIBRARY = 4301;
const LBS_NOTIFY = 0x0001;
const MIXERLINE_TARGETTYPE_WAVEOUT = 1;
const VIF_ACCESSVIOLATION = 0x00000200;
const RPC_C_MGMT_INQ_STATS = 2;
const FIBER_FLAG_FLOAT_SWITCH = 0x1;
const WPF_ASYNCWINDOWPLACEMENT = 0x0004;
const FACILITY_COMPLUS = 17;
const PERF_DETAIL_WIZARD = 400;
const szOID_PKCS = "1.2.840.113549.1";
const JOY_BUTTON3CHG = 0x0400;
const CERT_FIND_VALID_ENHKEY_USAGE_FLAG = 0x20;
const szOID_OIWSEC_sha1 = "1.3.14.3.2.26";
const CERT_UNICODE_IS_RDN_ATTRS_FLAG = 0x1;
const PSIDENT_PSCENTRIC = 1;
const APPLICATION_VERIFIER_STACK_OVERFLOW = 0x0101;
const CRYPT_LOCALIZED_NAME_ENCODING_TYPE = 0;
const WS_MINIMIZE = 0x20000000;
const PSPROTOCOL_BINARY = 3;
const PDERR_LOADDRVFAILURE = 0x1004;
const CRYPT_MESSAGE_SILENT_KEYSET_FLAG = 0x40;
const CMSG_RECIPIENT_INFO_PARAM = 19;
const CONNECT_DEFERRED = 0x00000400;
const EPT_S_INVALID_ENTRY = 1751;
const CONSOLE_NO_SELECTION = 0x0;
const EMR_ARCTO = 55;
const SWP_NOCOPYBITS = 0x0100;
const szOID_RSA_MD5RSA = "1.2.840.113549.1.1.4";
const OSS_BAD_PTR = 0x8009300B;
const TAPE_DRIVE_REWIND_IMMEDIATE = 0x80000008;
const PR_JOBSTATUS = 0x0000;
const KP_KEYVAL = 30;
const EEInfoPreviousRecordsMissing = 1;
const MDM_MASK_AUTO_SPEED = 0x7;
const IOCTL_SMARTCARD_SWALLOW = 7;
const GL_ID_UNKNOWN = 0x00000000;
const TAPE_DRIVE_INITIATOR = 0x00000004;
const DM_UPDATE = 1;
const DI_IMAGE = 0x0002;
const ERROR_DS_MASTERDSA_REQUIRED = 8314;
const ABE_TOP = 1;
const SCARD_W_CARD_NOT_AUTHENTICATED = 0x8010006F;
const XACT_E_UNABLE_TO_READ_DTC_CONFIG = 0x8004D027;
const szOID_PKIX = "1.3.6.1.5.5.7";
const FILE_UNKNOWN = 5;
const LANG_DUTCH = 0x13;
const USER_MARSHAL_FC_BYTE = 1;
const KEY_EVENT = 0x1;
const META_DIBBITBLT = 0x0940;
const DESKTOP_CREATEWINDOW = 0x0002;
const RPC_C_EP_ALL_ELTS = 0;
const HTBORDER = 18;
const TAPE_DRIVE_SEQUENTIAL_SMKS = 0x80200000;
const RIDEV_REMOVE = 0x00000001;
const SUBLANG_XHOSA_SOUTH_AFRICA = 0x01;
const PROCESSOR_ARCHITECTURE_IA64 = 6;
const WM_EXITMENULOOP = 0x0212;
const MCI_OVLY_RECT = 0x00010000;
const SCARD_W_RESET_CARD = 0x80100068;
const MCI_ANIM_WHERE_SOURCE = 0x00020000;
const CRYPT_E_RECIPIENT_NOT_FOUND = 0x8009100B;
const PSINJECT_TRAILER = 18;
const META_INVERTREGION = 0x012A;
const STG_E_DOCFILECORRUPT = 0x80030109;
const VK_FINAL = 0x18;
const NCBSSTAT = 0x34;
const CF_USESTYLE = 0x80;
const EM_GETMODIFY = 0x00B8;
const PAN_SERIF_NORMAL_SANS = 11;
const XACT_E_ALREADYINPROGRESS = 0x8004D018;
const PSH_PROPTITLE = 0x00000001;
const MND_ENDMENU = 1;
const SERVICE_CONFIG_FAILURE_ACTIONS = 2;
const MDM_V110_SPEED_28DOT8K = 0x8;
const TKF_INDICATOR = 0x00000020;
const NUMPRS_THOUSANDS = 0x0200;
const FILE_ACTION_ADDED = 0x00000001;
const GB2312_CHARSET = 134;
const IP_MULTICAST_TTL = 3;
const DNS_ERROR_UNSECURE_PACKET = 9505;
const GWLP_USERDATA = -21;
const OUT_CHARACTER_PRECIS = 2;
const PRINTER_FONTTYPE = 0x4000;
const CHANGER_IEPORT_USER_CONTROL_CLOSE = 0x80000100;
const ALG_SID_RSA_PKCS = 1;
const ERROR_DS_DRA_SCHEMA_INFO_SHIP = 8542;
const SOUND_SYSTEM_MENUCOMMAND = 15;
const RESOURCETYPE_ANY = 0x00000000;
const EXT_DEVICE_CAPS = 4099;
const SW_PARENTOPENING = 3;
const SUBLANG_TURKMEN_TURKMENISTAN = 0x01;
const FILE_COMPLETE_IF_OPLOCKED = 0x00000100;
const IDABORT = 3;
const SYSTEM_AUDIT_OBJECT_ACE_TYPE = 0x7;
const IMAGE_SYM_CLASS_BLOCK = 0x0064;
const ERROR_SXS_ASSEMBLY_NOT_FOUND = 14003;
const WT_EXECUTEDEFAULT = 0x00000000;
const PRINTER_STATUS_OUTPUT_BIN_FULL = 0x00000800;
const WM_MENUCHAR = 0x0120;
const CTRY_PORTUGAL = 351;
const CRL_FIND_ISSUED_BY_AKI_FLAG = 0x1;
const FILE_SUPPORTS_OBJECT_IDS = 0x00010000;
const COMADMIN_E_BADREGISTRYLIBID = 0x8011041E;
const RPC_S_INVALID_RPC_PROTSEQ = 1704;
const PORT_STATUS_OUTPUT_BIN_FULL = 4;
const DFCS_CAPTIONMIN = 0x0001;
const FW_THIN = 100;
const ERROR_DS_OBJECT_CLASS_REQUIRED = 8315;
const INPLACE_E_FIRST = 0x800401A0;
const COMPLEXREGION = 3;
const SUBLANG_DANISH_DENMARK = 0x01;
const DFCS_SCROLLDOWN = 0x0001;
const NTE_BAD_UID = 0x80090001;
const E_INVALIDARG = 0x80070057;
const CAP_ATA_ID_CMD = 1;
const CBR_57600 = 57600;
const DNS_ERROR_ZONE_IS_SHUTDOWN = 9621;
const NTE_BAD_PROVIDER = 0x80090013;
const SUBLANG_SPANISH_PANAMA = 0x06;
const WSABASEERR = 10000;
const IMAGE_SIZEOF_FILE_HEADER = 20;
const RUSSIAN_CHARSET = 204;
const SM_CYMENU = 15;
const szOID_LEGACY_POLICY_MAPPINGS = "2.5.29.5";
const EMR_CREATEPALETTE = 49;
const CS_INSERTCHAR = 0x2000;
const ERROR_DS_DRA_REPL_PENDING = 8477;
const ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = 1933;
const CC_STYLED = 32;
const SAVE_ATTRIBUTE_VALUES = 0xD3;
const ERROR_DIR_NOT_EMPTY = 145;
const PROCESSOR_INTEL_IA64 = 2200;
const PDCAP_D3_SUPPORTED = 0x00000008;
const SPAPI_E_DI_POSTPROCESSING_REQUIRED = 0x800F0226;
const CERT_CHAIN_DISABLE_AIA_URL_RETRIEVAL_VALUE_NAME = "DisableAIAUrlRetrieval";
const META_ANIMATEPALETTE = 0x0436;
const VSS_E_VOLUME_NOT_SUPPORTED = 0x8004230C;
const DC_DUPLEX = 7;
const STGM_SHARE_DENY_NONE = 0x00000040;
const SHOW_OPENWINDOW = 1;
const XACT_S_ALLNORETAIN = 0x0004D007;
const __INT_FAST8_MAX__ = 127;
const FMFD_IGNOREMIMETEXTPLAIN = 0x00000004;
const SORT_KOREAN_KSC = 0x0;
const GCP_JUSTIFY = 0x00010000;
const ERROR_DUPLICATE_TAG = 2014;
const ERROR_NOT_READY = 21;
const ERROR_STACK_BUFFER_OVERRUN = 1282;
const PERF_SIZE_DWORD = 0x00000000;
const SCARD_COLD_RESET = 1;
const FILE_READ_DATA = 0x0001;
const PIDDSI_COMPANY = 0x0000000F;
const SPI_GETGRIDGRANULARITY = 0x0012;
const EVENT_E_ALL_SUBSCRIBERS_FAILED = 0x80040201;
const AF_SNA = 11;
const ERROR_PRINTER_NOT_FOUND = 3012;
const IMAGE_REL_SHM_RELLO = 0x0016;
const PRINTER_STATUS_PAGE_PUNT = 0x00080000;
const EMR_BEGINPATH = 59;
const DMPAPER_USER = 256;
const JOB_NOTIFY_FIELD_PARAMETERS = 0x07;
const PRODUCT_ULTIMATE = 0x1;
const DNS_ERROR_DP_BASE = 9900;
const SPI_GETMOUSECLICKLOCK = 0x101E;
const GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY = 0x2000000000000000;
const ERROR_BAD_PROFILE = 1206;
const STG_E_CSS_KEY_NOT_PRESENT = 0x80030307;
const WM_COMPAREITEM = 0x0039;
const IMAGE_REL_I386_SECTION = 0x000A;
const VOLUME_IS_DIRTY = 0x00000001;
const STREAM_NORMAL_ATTRIBUTE = 0x0;
const szOID_DN_QUALIFIER = "2.5.4.46";
const ERROR_DEPENDENCY_ALREADY_EXISTS = 5003;
const ODS_NOACCEL = 0x0100;
const RPC_S_INVALID_AUTH_IDENTITY = 1749;
const SECURITY_DESCRIPTOR_REVISION = 1;
const RIP_EVENT = 9;
const IME_ESC_PRIVATE_FIRST = 0x0800;
const CO_E_NOSYNCHRONIZATION = 0x8004E02E;
const MDMVOL_HIGH = 0x00000002;
const THREAD_SET_CONTEXT = 0x0010;
const RPC_C_IMP_LEVEL_DELEGATE = 4;
const ERROR_DS_PARAM_ERROR = 8255;
const OSS_FATAL_ERROR = 0x80093012;
const WNCON_DYNAMIC = 0x00000008;
const IME_PROP_AT_CARET = 0x00010000;
const WM_KILLFOCUS = 0x0008;
const _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES = 0;
const __LDBL_MANT_DIG__ = 64;
const SUBLANG_SPANISH_COLOMBIA = 0x09;
const BSF_RETURNHDESK = 0x00000200;
const PSH_USEICONID = 0x00000004;
const ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 8520;
const CCHFORMNAME = 32;
const RPC_S_INVALID_VERS_OPTION = 1756;
const DFCS_SCROLLLEFT = 0x0002;
const ONE5STOPBITS = 1;
const RPC_C_EP_MATCH_BY_BOTH = 3;
const RESOURCE_RECENT = 0x00000004;
const META_ESCAPE = 0x0626;
const PS_OPENTYPE_FONTTYPE = 0x10000;
const ERROR_DS_NAME_ERROR_NOT_FOUND = 8470;
const MMIOERR_BASE = 256;
const SUBLANG_ENGLISH_EIRE = 0x06;
const RPC_C_AUTHN_DEC_PUBLIC = 4;
const CMSG_ATTR_CERT_PARAM = 32;
const LOGON32_LOGON_BATCH = 4;
const PARAMFLAG_FOPT = 0x10;
const GWLP_WNDPROC = -4;
const ERROR_RPL_NOT_ALLOWED = 4006;
const SCARD_W_CANCELLED_BY_USER = 0x8010006E;
const DS_FIXEDSYS = 0x0008;
const DLL_PROCESS_DETACH = 0;
const MF_DISABLED = 0x00000002;
const DMPAPER_PENV_10_ROTATED = 118;
const PC_NONE = 0;
const PRF_OWNED = 0x00000020;
const ERROR_DS_CANT_MOD_PRIMARYGROUPID = 8506;
const CDS_NORESET = 0x10000000;
const WINPERF_LOG_VERBOSE = 3;
const PIDSI_COMMENTS = 0x00000006;
const LANG_CATALAN = 0x03;
const URL_MK_LEGACY = 0;
const MF_ENABLED = 0x00000000;
const THAI_CHARSET = 222;
const _WIN32_IE = 0x0602;
const FILE_ACTION_RENAMED_NEW_NAME = 0x00000005;
const CERT_SUBJECT_NAME_MD5_HASH_PROP_ID = 29;
const RPC_C_PROFILE_MATCH_BY_IF = 2;
const RIGHTMOST_BUTTON_PRESSED = 0x2;
const VP_TV_STANDARD_WIN_VGA = 0x8000;
const DISPLAY_DEVICE_REMOTE = 0x04000000;
const RPC_S_ADDRESS_ERROR = 1768;
const PARAMFLAG_FOUT = 0x2;
const INET_E_CANNOT_INSTANTIATE_OBJECT = 0x800C0010;
const ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220;
const R2_NOTXORPEN = 10;
const CERT_QUERY_OBJECT_BLOB = 0x2;
const META_SETMAPPERFLAGS = 0x0231;
const CB_SETEXTENDEDUI = 0x0155;
const ERROR_INVALID_GROUP_ATTRIBUTES = 1345;
const NTE_TEMPORARY_PROFILE = 0x80090024;
const JOB_OBJECT_TERMINATE_AT_END_OF_JOB = 0;
const MCIERR_BASE = 256;
const RPC_C_AUTHN_GSS_NEGOTIATE = 9;
const RI_MOUSE_MIDDLE_BUTTON_DOWN = 0x0010;
const VK_BROWSER_BACK = 0xA6;
const ENDDOC = 11;
const JOB_OBJECT_SET_ATTRIBUTES = 0x0002;
const CERT_KEY_AGREEMENT_KEY_USAGE = 0x8;
const PP_CRYPT_COUNT_KEY_USE = 41;
const RPC_NCA_FLAGS_MAYBE = 0x00000004;
const ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = 13008;
const OLE_E_CANT_GETMONIKER = 0x80040009;
const CRYPT_E_NOT_IN_CTL = 0x8009202A;
const RPC_C_SECURITY_QOS_VERSION_1 = 1;
const RPC_C_SECURITY_QOS_VERSION_2 = 2;
const RPC_C_SECURITY_QOS_VERSION_3 = 3;
const __INT_MAX__ = 2147483647;
const ERROR_SXS_XML_E_INCOMPLETE_ENCODING = 14043;
const XACT_E_NOTIMEOUT = 0x8004D017;
const VFF_CURNEDEST = 0x0001;
const SEC_E_KDC_CERT_REVOKED = 0x8009035B;
const EMR_SETBKCOLOR = 25;
const DUPLICATE_CLOSE_SOURCE = 0x00000001;
const CS_E_INTERNAL_ERROR = 0x8004016F;
const IME_HOTKEY_DSWITCH_LAST = 0x11F;
const ABM_QUERYPOS = 0x00000002;
const MAPVK_VK_TO_VSC = 0;
const IDC_SIZENESW = 32643;
const CC_PREVENTFULLOPEN = 0x4;
const RTL_VRF_FLG_APPCOMPAT_CHECKS = 0x00000010;
const PSH_WIZARD97 = 0x01000000;
const WM_HOTKEY = 0x0312;
const ERROR_BUSY = 170;
const SEC_E_DOWNGRADE_DETECTED = 0x80090350;
const CB_INSERTSTRING = 0x014A;
const VK_BROWSER_FORWARD = 0xA7;
const CF_PALETTE = 9;
const SERVICE_ACCEPT_SHUTDOWN = 0x00000004;
const SCARD_LEAVE_CARD = 0;
const ERROR_IPSEC_IKE_INVALID_HASH = 13870;
const ENABLE_WRAP_AT_EOL_OUTPUT = 0x2;
const IMAGE_REL_IA64_SECREL22 = 0x000C;
const PRINTER_ENUM_ICON1 = 0x00010000;
const PRINTER_ENUM_ICON3 = 0x00040000;
const PRINTER_ENUM_ICON4 = 0x00080000;
const PRINTER_ENUM_ICON6 = 0x00200000;
const PRINTER_ENUM_ICON8 = 0x00800000;
const szOID_INFOSEC_mosaicTokenProtection = "2.16.840.1.101.2.1.1.8";
const CP_RECTANGLE = 1;
const UNWIND_HISTORY_TABLE_LOCAL = 2;
const HSHELL_GETMINRECT = 5;
const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG = 0x80000000;
const IMAGE_REL_IA64_SECREL32 = 0x000E;
const FILE_DEVICE_CD_ROM = 0x00000002;
const ALG_SID_MD2 = 1;
const ALG_SID_MD4 = 2;
const ALG_SID_MD5 = 3;
const STATE_SYSTEM_EXPANDED = 0x00000200;
const SC_MANAGER_ENUMERATE_SERVICE = 0x0004;
const PRODUCT_PROFESSIONAL_E = 0x45;
const SM_CYFULLSCREEN = 17;
const szOID_VERISIGN_ONSITE_JURISDICTION_HASH = "2.16.840.1.113733.1.6.11";
const PRODUCT_PROFESSIONAL_N = 0x31;
const SM_CXICON = 11;
const ERROR_DS_DRA_GENERIC = 8436;
const WINEVENT_SKIPOWNTHREAD = 0x0001;
const SCARD_POWER_DOWN = 0;
const MCI_ANIM_WINDOW_TEXT = 0x00080000;
const __GCC_ATOMIC_CHAR16_T_LOCK_FREE = 2;
const STATE_SYSTEM_CHECKED = 0x00000010;
const ERROR_SXS_XML_E_INVALID_STANDALONE = 14070;
const EMR_OFFSETCLIPRGN = 26;
const DMPAPER_CSHEET = 24;
const NUMFONTS = 22;
const NOTIFYICON_VERSION = 3;
const RPC_S_MAX_CALLS_TOO_SMALL = 1742;
const SS_WHITERECT = 0x00000006;
const EVENT_E_USER_EXCEPTION = 0x80040208;
const DEFAULT_QUALITY = 0;
const ERROR_INVALID_EXE_SIGNATURE = 191;
const NUMPENS = 18;
const PRINTER_NOTIFY_TYPE = 0x00;
const ERROR_DS_STRING_SD_CONVERSION_FAILED = 8522;
const SOUND_SYSTEM_ERROR = 4;
const SCARD_F_UNKNOWN_ERROR = 0x80100014;
const CHANGER_TO_SLOT = 0x02;
const NORMAL_PRINT = 0x00000000;
const MMIOM_RENAME = 6;
const EVENT_OBJECT_NAMECHANGE = 0x800C;
const WM_VSCROLL = 0x0115;
const CBF_SKIP_CONNECT_CONFIRMS = 0x00040000;
const ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = 13812;
const WM_PALETTEISCHANGING = 0x0310;
const WGL_SWAP_UNDERLAY10 = 0x02000000;
const WGL_SWAP_UNDERLAY11 = 0x04000000;
const WGL_SWAP_UNDERLAY13 = 0x10000000;
const WGL_SWAP_UNDERLAY14 = 0x20000000;
const WGL_SWAP_UNDERLAY15 = 0x40000000;
const SUBLANG_WELSH_UNITED_KINGDOM = 0x01;
const FOF_NORECURSEREPARSE = 0x8000;
const STG_S_MULTIPLEOPENS = 0x00030204;
const ABN_FULLSCREENAPP = 0x0000002;
const JOB_OBJECT_MSG_EXIT_PROCESS = 7;
const DMPAPER_DBL_JAPANESE_POSTCARD = 69;
const DC_PAPERSIZE = 3;
const IME_CMODE_EUDC = 0x0200;
const SM_CYHSCROLL = 3;
const __WIN32 = 1;
const MDM_MASK_HDLCPPP_SPEED = 0x7;
const REGDB_E_CLASSNOTREG = 0x80040154;
const CBF_FAIL_CONNECTIONS = 0x00002000;
const LANG_AFRIKAANS = 0x36;
const CERT_TRUST_IS_NOT_SIGNATURE_VALID = 0x8;
const SCARD_E_NO_SMARTCARD = 0x8010000C;
const MIDIPROP_GET = 0x40000000;
const ERROR_DELAY_LOAD_FAILED = 1285;
const ERROR_CLIPPING_NOT_SUPPORTED = 2005;
const ERROR_IPSEC_IKE_INVALID_COOKIE = 13846;
const ERROR_RXACT_COMMIT_FAILURE = 1370;
const CURSOR_SHOWING = 0x00000001;
const ERROR_DEVICE_REMOVED = 1617;
const ERROR_NO_MATCH = 1169;
const RDW_NOINTERNALPAINT = 0x0010;
const SET_TAPE_MEDIA_INFORMATION = 0;
const _I32_MAX = 2147483647;
const ERROR_MEMBER_IN_ALIAS = 1378;
const X3_EMPTY_INST_WORD_POS_X = 14;
const RPC_E_CANTCALLOUT_INEXTERNALCALL = 0x80010005;
const LOCALE_SMONTHNAME2 = 0x00000039;
const CERT_STORE_ADD_NEWER_INHERIT_PROPERTIES = 7;
const DISP_E_BUFFERTOOSMALL = 0x80020013;
const RTL_VRF_FLG_TLS_CHECKS = 0x00000020;
const SND_NOSTOP = 0x0010;
const DMBIN_FORMSOURCE = 15;
const HTCLOSE = 20;
const VK_DIVIDE = 0x6F;
const DATE_USE_ALT_CALENDAR = 0x00000004;
const SPI_SETACTIVEWNDTRKZORDER = 0x100D;
const LOCALE_SMONTHNAME4 = 0x0000003B;
const CERT_CHAIN_ENABLE_CACHE_AUTO_UPDATE = 0x10;
const ALG_SID_TEK = 11;
const ERROR_WRITE_PROTECT = 19;
const SPI_GETBLOCKSENDINPUTRESETS = 0x1026;
const COMADMIN_E_PROGIDINUSEBYCLSID = 0x80110815;
const FEATURESETTING_OUTPUT = 1;
const NUMMARKERS = 20;
const SCS_SETRECONVERTSTRING = 0x00010000;
const ERROR_CTX_CONSOLE_CONNECT = 7042;
const ERROR_INVALID_MINALLOCSIZE = 195;
const CERT_COMPARE_NAME = 2;
const MIXERCONTROL_CT_SC_LIST_MULTIPLE = 0x01000000;
const HSHELL_LANGUAGE = 8;
const PSINJECT_BOUNDINGBOX = 9;
const MCI_SEEK = 0x0807;
const LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE = 0x40;
const GCPCLASS_POSTBOUNDRTL = 0x10;
const CHANGER_MEDIUM_FLIP = 0x00000200;
const CRYPT_OID_REG_DLL_VALUE_NAME = "Dll";
const SBM_SETRANGEREDRAW = 0x00E6;
const RPC_S_ALREADY_REGISTERED = 1711;
const LMEM_FIXED = 0x0;
const szOID_ENTERPRISE_OID_ROOT = "1.3.6.1.4.1.311.21.8";
const SCARD_PROTOCOL_RAW = 0x00010000;
const SCARD_E_NO_SUCH_CERTIFICATE = 0x8010002C;
const PANOSE_COUNT = 10;
const SUBLANG_ROMANIAN_ROMANIA = 0x01;
const SCHED_E_CANNOT_OPEN_TASK = 0x8004130D;
const szOID_LOCAL_MACHINE_KEYSET = "1.3.6.1.4.1.311.17.2";
const RPC_C_QOS_CAPABILITIES_DEFAULT = 0x0;
const CERT_ALT_NAME_IP_ADDRESS = 8;
const SWP_NOMOVE = 0x0002;
const HANGUP_COMPLETE = 0x05;
const SYSTEM_MANDATORY_LABEL_NO_WRITE_UP = 0x1;
const CC_CIRCLES = 1;
const szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR = "1.3.6.1.4.1.311.17.1";
const CO_E_ACTIVATIONFAILED_TIMEOUT = 0x8004E024;
const ERROR_SUBST_TO_SUBST = 139;
const LBN_DBLCLK = 2;
const ERROR_NO_TOKEN = 1008;
const szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS = "PrivKeyCachePurgeIntervalSeconds";
const CRYPT_E_DELETED_PREV = 0x80092008;
const SPI_GETSTICKYKEYS = 0x003A;
const RUNTIME_FUNCTION_INDIRECT = 0x1;
const ALG_SID_AES_128 = 14;
const STARTF_USESTDHANDLES = 0x100;
const USER_MARSHAL_FC_HYPER = 11;
const MCI_WAVE_SET_ANYINPUT = 0x04000000;
const CAL_THAI = 7;
const ERROR_DS_UNKNOWN_ERROR = 8431;
const FILE_LIST_DIRECTORY = 0x0001;
const DMPAPER_FOLIO = 14;
const ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = 4330;
const VP_MODE_TV_PLAYBACK = 0x0002;
const SUBLANG_URDU_INDIA = 0x02;
const CRYPT_X931_FORMAT = 0x4;
const PSINJECT_ENDSETUP = 17;
const LR_DEFAULTCOLOR = 0x0000;
const PDERR_DNDMMISMATCH = 0x1009;
const FILE_DEVICE_PARALLEL_PORT = 0x00000016;
const WHITEONBLACK = 2;
const LOCALE_STHOUSAND = 0x0000000F;
const DISPLAY_DEVICE_MULTI_DRIVER = 0x00000002;
const NUMPRS_STD = 0x1FFF;
const ERROR_SXS_XML_E_BADCHARINSTRING = 14034;
const ERROR_SXS_XML_E_RESERVEDNAMESPACE = 14066;
const RPC_IF_AUTOLISTEN = 0x0001;
const WNCON_SLOWLINK = 0x00000004;
const ERROR_DS_NO_CROSSREF_FOR_NC = 8363;
const SM_CXMINSPACING = 47;
const VK_MEDIA_NEXT_TRACK = 0xB0;
const PD_RETURNDC = 0x100;
const DC_ORIENTATION = 17;
const SERVICES_ACTIVE_DATABASEA = "ServicesActive";
const CE_DNS = 0x800;
const ALG_SID_RIPEMD = 6;
const MCI_VD_PLAY_REVERSE = 0x00010000;
const SPAPI_E_SECTION_NAME_TOO_LONG = 0x800F0002;
const BSF_QUERY = 0x00000001;
const SHERB_NOCONFIRMATION = 0x00000001;
const SCARD_CLASS_COMMUNICATIONS = 2;
const SEC_E_CERT_EXPIRED = 0x80090328;
const COMQC_E_UNAUTHENTICATED = 0x80110605;
const COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM = 0x80110449;
const KLF_SUBSTITUTE_OK = 0x00000002;
const URLACTION_NETWORK_CURR_MAX = 0x00001A10;
const EMR_PAINTRGN = 74;
const LOAD_TLB_AS_32BIT = 0x20;
const SANDBOX_INERT = 0x2;
const LBN_KILLFOCUS = 5;
const VER_SUITE_PERSONAL = 0x00000200;
const ERROR_DS_LOW_DSA_VERSION = 8568;
const DMPAPER_TABLOID_EXTRA = 52;
const RPC_C_AUTHN_DCE_PUBLIC = 2;
const SUBLANG_POLISH_POLAND = 0x01;
const RPC_C_OPT_MQ_AUTHN_LEVEL = 6;
const NTDDI_WIN6SP1 = 0x06000100;
const ERROR_BAD_IMPERSONATION_LEVEL = 1346;
const CB_GETDROPPEDSTATE = 0x0157;
const CERT_COMPARE_ENHKEY_USAGE = 10;
const PBT_APMRESUMESUSPEND = 0x0007;
const SERVICE_WIN32_OWN_PROCESS = 0x00000010;
const ERROR_INVALID_FILTER_PROC = 1427;
const DFC_BUTTON = 4;
const szOID_SGC_NETSCAPE = "2.16.840.1.113730.4.1";
const VER_SUITE_BACKOFFICE = 0x00000004;
const TPM_LEFTBUTTON = 0x0000;
const szOID_CA_CERTIFICATE = "2.5.4.37";
const MCI_ANIM_STEP_REVERSE = 0x00010000;
const ERROR_INSTALL_PACKAGE_REJECTED = 1625;
const ERROR_CANT_OPEN_ANONYMOUS = 1347;
const EVENT_SYSTEM_MENUPOPUPEND = 0x0007;
const DT_INTERNAL = 0x00001000;
const AF_DECnet = 12;
const ERROR_CANCELLED = 1223;
const MCI_OVLY_WINDOW_TEXT = 0x00080000;
const COMADMIN_E_COMP_MOVE_BAD_DEST = 0x8011042E;
const CTRY_INDIA = 91;
const EMARCH_ENC_I17_SIGN_VAL_POS_X = 63;
const FAILED_ACCESS_ACE_FLAG = 0x80;
const MCI_ANIM_OPEN_NOSTATIC = 0x00040000;
const SETCOLORTABLE = 4;
const MF_POPUP = 0x00000010;
const FR_HIDEMATCHCASE = 0x8000;
const CERT_RDN_DISABLE_IE4_UTF8_FLAG = 0x1000000;
const OSS_API_DLL_NOT_LINKED = 0x80093029;
const SUBLANG_SAMI_NORTHERN_SWEDEN = 0x02;
const DT_MODIFYSTRING = 0x00010000;
const COMMON_LVB_GRID_RVERTICAL = 0x1000;
const RTS_CONTROL_ENABLE = 0x1;
const EVENT_E_PER_USER_SID_NOT_LOGGED_ON = 0x80040210;
const ERROR_ALREADY_REGISTERED = 1242;
const LOCALE_SNATIVECURRNAME = 0x00001008;
const LZERROR_GLOBALLOC = -5;
const CO_E_SCM_RPC_FAILURE = 0x80080003;
const NUMLOCK_ON = 0x20;
const CERT_CHAIN_DISABLE_PASS1_QUALITY_FILTERING = 0x40;
const FW_NORMAL = 400;
const LOCK_ELEMENT = 0;
const PRODUCT_HOME_PREMIUM_E = 0x44;
const WT_EXECUTEINUITHREAD = 0x00000002;
const EVENT_OBJECT_DESTROY = 0x8001;
const ERROR_INVALID_ID_AUTHORITY = 1343;
const PIPE_NOWAIT = 0x1;
const CRYPT_DECRYPT = 0x2;
const ERROR_IPSEC_IKE_PROCESS_ERR_HASH = 13837;
const SERKF_AVAILABLE = 0x00000002;
const C3_SYMBOL = 0x0008;
const SERVICE_ACCEPT_POWEREVENT = 0x00000040;
const MDM_V110_SPEED_9DOT6K = 0x4;
const HTSYSMENU = 3;
const MAX_PATH = 260;
const ERROR_EXCL_SEM_ALREADY_OWNED = 101;
const NTE_PROV_TYPE_NOT_DEF = 0x80090017;
const ERROR_NOT_JOINED = 136;
const PROCESSOR_SHx_SH3 = 103;
const PROCESSOR_SHx_SH4 = 104;
const EM_SETWORDBREAKPROC = 0x00D0;
const ERROR_PAGED_SYSTEM_RESOURCES = 1452;
const STDOLE2_MAJORVERNUM = 0x2;
const EMR_POLYLINE = 4;
const _OUT_TO_STDERR = 1;
const CTRY_TURKEY = 90;
const SPI_SETKEYBOARDPREF = 0x0045;
const WAVERR_BASE = 32;
const IMAGE_SYM_TYPE_NULL = 0x0000;
const PRINTACTION_DOCUMENTDEFAULTS = 6;
const __DEC128_MAX_EXP__ = 6145;
const MK_E_CONNECTMANUALLY = 0x800401E0;
const OFN_EXPLORER = 0x80000;
const TWOSTOPBITS = 2;
const SCROLLLOCK_ON = 0x40;
const AC_SRC_ALPHA = 0x01;
const CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME = "AuthenticodeFlags";
const __MINGW64_VERSION_STATE = "alpha";
const MARSHALINTERFACE_MIN = 500;
const USN_SOURCE_DATA_MANAGEMENT = 0x00000001;
const SC_MANAGER_CREATE_SERVICE = 0x0002;
const FORMAT_MESSAGE_ARGUMENT_ARRAY = 0x2000;
const ERROR_PARAMETER_QUOTA_EXCEEDED = 1283;
const ERROR_OLD_WIN_VERSION = 1150;
const SEC_E_ISSUING_CA_UNTRUSTED = 0x80090352;
const CLIPBRD_E_BAD_DATA = 0x800401D3;
const ST_CLIENT = 0x0010;
const PS_DASHDOT = 3;
const OSS_MORE_INPUT = 0x80093004;
const EMR_LINETO = 54;
const DC_BINS = 6;
const SPI_SETACTIVEWNDTRKTIMEOUT = 0x2003;
const NIF_ICON = 0x00000002;
const ERROR_CLUSTER_NODE_NOT_MEMBER = 5052;
const CO_S_NOTALLINTERFACES = 0x00080012;
const MDM_V110_SPEED_2DOT4K = 0x2;
const MK_S_REDUCED_TO_SELF = 0x000401E2;
const COMPRESSION_ENGINE_STANDARD = 0x0000;
const APPLICATION_VERIFIER_LOCK_INVALID_OWNER = 0x0206;
const GET_FEATURE_FROM_THREAD_INTERNET = 0x00000040;
const NTE_BAD_VER = 0x80090007;
const ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = 8400;
const ERROR_DEVICE_DOOR_OPEN = 1166;
const CRYPT_E_FILERESIZED = 0x80092025;
const APPLICATION_VERIFIER_UNKNOWN_ERROR = 0x0001;
const UIS_CLEAR = 2;
const SUBLANG_SAMI_SKOLT_FINLAND = 0x08;
const DISP_E_BADVARTYPE = 0x80020008;
const CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC = "CryptDllExportPrivateKeyInfoEx";
const SPI_GETMOUSEVANISH = 0x1020;
const PRINTER_ENUM_NAME = 0x00000008;
const ERROR_DS_DRA_PREEMPTED = 8461;
const DLGC_WANTMESSAGE = 0x0004;
const IMAGE_SCN_ALIGN_256BYTES = 0x00900000;
const VOS__BASE = 0x00000000;
const VFT_UNKNOWN = 0x00000000;
const FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010;
const BS_PUSHLIKE = 0x00001000;
const CO_E_ISOLEVELMISMATCH = 0x8004E02F;
const CERT_NAME_STR_COMMA_FLAG = 0x4000000;
const DI_COMPAT = 0x0004;
const KF_REPEAT = 0x4000;
const szOID_RSA_signEnvData = "1.2.840.113549.1.7.4";
const URLACTION_HTML_FONT_DOWNLOAD = 0x00001604;
const IDC_ICON = 32641;
const ERROR_RESOURCE_NOT_PRESENT = 4316;
const EVENT_OBJECT_FOCUS = 0x8005;
const SERVICE_RUNNING = 0x00000004;
const CERT_STORE_PROV_DELETE_CTL_FUNC = 11;
const SM_CYMAXIMIZED = 62;
const PP_ENUMMANDROOTS = 25;
const PT_MOVETO = 0x06;
const PIDSI_SUBJECT = 0x00000003;
const __ATOMIC_SEQ_CST = 5;
const COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED = 0x80110813;
const ERROR_DS_NC_MUST_HAVE_NC_PARENT = 8494;
const NUMPRS_LEADING_MINUS = 0x0010;
const FADF_AUTO = 0x1;
const SCARD_E_UNKNOWN_RES_MNG = 0x8010002B;
const XCLASS_DATA = 0x2000;
const BF_MIDDLE = 0x0800;
const CRYPT_E_ASN1_BADPDU = 0x80093108;
const VER_MAJORVERSION = 0x0000002;
const szOID_KP_CTL_USAGE_SIGNING = "1.3.6.1.4.1.311.10.3.1";
const MM_MIM_LONGERROR = 0x3C6;
const SPVERSION_MASK = 0x0000FF00;
const EVENT_E_TOO_MANY_METHODS = 0x80040209;
const SO_OPENTYPE = 0x7008;
const CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG = 0x1;
const ERROR_INVALID_EA_HANDLE = 278;
const CONVERT10_E_OLESTREAM_PUT = 0x800401C1;
const SPI_SETFILTERKEYS = 0x0033;
const RI_MOUSE_BUTTON_5_DOWN = 0x0100;
const SKF_RWINLOCKED = 0x00800000;
const BN_SETFOCUS = 6;
const COMPRESSION_FORMAT_LZNT1 = 0x0002;
const SPAPI_E_FILEQUEUE_LOCKED = 0x800F0216;
const ERROR_DS_COULDNT_UPDATE_SPNS = 8525;
const GETSETSCREENPARAMS = 3072;
const CUR_BLOB_VERSION = 2;
const LANG_WOLOF = 0x88;
const CLIP_TT_ALWAYS = 2<<4;
const APPCOMMAND_BROWSER_FORWARD = 2;
const SPAPI_E_PNP_REGISTRY_ERROR = 0x800F023A;
const SERVICE_ACTIVE = 0x00000001;
const MF_CHECKED = 0x00000008;
const DMPAPER_ENV_C65 = 32;
const PROCESSOR_PPC_604 = 604;
const EXCEPTION_COLLIDED_UNWIND = 0x40;
const DCBA_FACEDOWNLEFT = 0x0102;
const SM_CXMENUSIZE = 54;
const LB_GETTOPINDEX = 0x018E;
const SPI_SETFLATMENU = 0x1023;
const CONNECT_CURRENT_MEDIA = 0x00000200;
const TC_NORMAL = 0;
const URLACTION_SHELL_ENHANCED_DRAGDROP_SECURITY = 0x0000180B;
const PRINTER_NOTIFY_FIELD_BYTES_PRINTED = 0x19;
const SET_CLIP_BOX = 4108;
const STGM_FAILIFTHERE = 0x00000000;
const COLORMGMTDLGORD = 1551;
const __GCC_ATOMIC_SHORT_LOCK_FREE = 2;
const ALG_SID_SKIPJACK = 10;
const EVENT_S_FIRST = 0x00040200;
const MB_SYSTEMMODAL = 0x00001000;
const TME_HOVER = 0x00000001;
const WTS_SESSION_REMOTE_CONTROL = 0x9;
const SERVICE_CONTROL_POWEREVENT = 0x0000000D;
const COLORMGMTCAPS = 121;
const CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG = 0x1;
const SM_CXHSCROLL = 21;
const MCI_DEVTYPE_OTHER = 521;
const PROV_EC_ECDSA_SIG = 14;
const __WIN64__ = 1;
const BF_ADJUST = 0x2000;
const PERF_TYPE_NUMBER = 0x00000000;
const OUT_TT_ONLY_PRECIS = 7;
const szOID_PKCS_9_MESSAGE_DIGEST = "1.2.840.113549.1.9.4";
const ENABLE_PROCESSED_OUTPUT = 0x1;
const WMSZ_TOPRIGHT = 5;
const DI_READ_SPOOL_JOB = 3;
const TCP_NODELAY = 0x0001;
const COMADMIN_E_COMPFILE_DOESNOTEXIST = 0x80110424;
const SHTDN_REASON_MINOR_HUNG = 0x00000005;
const FILE_OPEN_FOR_BACKUP_INTENT = 0x00004000;
const EVENT_OBJECT_SELECTIONWITHIN = 0x8009;
const VP_TV_STANDARD_PAL_60 = 0x00040000;
const URLACTION_HTML_SUBMIT_FORMS = 0x00001601;
const WIN32 = 1;
const URLPOLICY_NOTIFY_ON_ALLOW = 0x10;
const VENDOR_ID_LENGTH = 8;
const PRINTER_STATUS_POWER_SAVE = 0x01000000;
const __DBL_MIN_EXP__ = -1021;
const SEE_MASK_NOCLOSEPROCESS = 0x00000040;
const TARGET_IS_NT51_OR_LATER = 1;
const PDERR_DEFAULTDIFFERENT = 0x100C;
const ERROR_DS_MUST_BE_RUN_ON_DST_DC = 8558;
const PAN_WEIGHT_THIN = 4;
const FAPPCOMMAND_MASK = 0xF000;
const INET_E_CODE_INSTALL_SUPPRESSED = 0x800C0400;
const CAL_GREGORIAN = 1;
const IME_KHOTKEY_ENGLISH = 0x52;
const ERROR_DOWNGRADE_DETECTED = 1265;
const CAL_SABBREVDAYNAME3 = 0x00000010;
const CAL_SABBREVDAYNAME4 = 0x00000011;
const CAL_SABBREVDAYNAME5 = 0x00000012;
const CAL_SABBREVDAYNAME7 = 0x00000014;
const RPC_C_OPT_MQ_TIME_TO_REACH_QUEUE = 7;
const SW_SHOW = 5;
const SEC_E_STRONG_CRYPTO_NOT_SUPPORTED = 0x8009033A;
const ERROR_CLASS_HAS_WINDOWS = 1412;
const PROV_EC_ECDSA_FULL = 16;
const EVENT_SYSTEM_SWITCHSTART = 0x0014;
const ERROR_GRACEFUL_DISCONNECT = 1226;
const DMPAPER_FANFOLD_LGL_GERMAN = 41;
const MH_CLEANUP = 4;
const MSGF_MESSAGEBOX = 1;
const SCARD_T0_CMD_LENGTH = 5;
const IMAGE_SCN_NO_DEFER_SPEC_EXC = 0x00004000;
const CMSG_SIGNER_ONLY_FLAG = 0x2;
const VIFF_DONTDELETEOLD = 0x0002;
const SS_CENTERIMAGE = 0x00000200;
const PROPSETHDR_OSVERSION_UNKNOWN = 0xFFFFFFFF;
const BS_PATTERN8X8 = 7;
const ERROR_IPSEC_IKE_OUT_OF_MEMORY = 13859;
const SEE_MASK_HOTKEY = 0x00000020;
const szOID_OIWSEC_desEDE = "1.3.14.3.2.17";
const MIXER_SETCONTROLDETAILSF_CUSTOM = 0x00000001;
const LF_FULLFACESIZE = 64;
const EVENT_SYSTEM_MENUPOPUPSTART = 0x0006;
const PS_ENDCAP_MASK = 0x00000F00;
const LANG_ROMANIAN = 0x18;
const ALG_SID_SHA_256 = 12;
const EN_VSCROLL = 0x0602;
const ERROR_DS_SINGLE_VALUE_CONSTRAINT = 8321;
const ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 8519;
const ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061;
const CO_E_ASYNC_WORK_REJECTED = 0x80004029;
const SMTO_NOTIMEOUTIFNOTHUNG = 0x0008;
const _WIN64 = 1;
const SPAPI_E_DEVICE_INTERFACE_REMOVED = 0x800F021C;
const ERROR_PATH_BUSY = 148;
const PROCESSOR_ARCHITECTURE_UNKNOWN = 0xFFFF;
const CERTSRV_E_TEMPLATE_POLICY_REQUIRED = 0x80094808;
const APPCOMMAND_SPELL_CHECK = 42;
const X3_BTYPE_QP_INST_VAL_POS_X = 0;
const CMSG_SIGNER_CERT_INFO_PARAM = 7;
const TYPE_E_ELEMENTNOTFOUND = 0x8002802B;
const RPC_C_OPT_DONT_LINGER = 13;
const IMAGE_ARCHIVE_START = "!<arch>\n";
const EMR_EXCLUDECLIPRECT = 29;
const SW_RESTORE = 9;
const SPI_GETDESKWALLPAPER = 0x0073;
const IDCANCEL = 2;
const FOF_NOCONFIRMATION = 0x0010;
const SORT_CHINESE_BOPOMOFO = 0x3;
const JOY_POVFORWARD = 0;
const ERROR_BAD_ARGUMENTS = 160;
const JOY_RETURNU = 0x00000010;
const COMADMIN_E_ROLEEXISTS = 0x8011040C;
const JOY_RETURNX = 0x00000001;
const JOY_RETURNY = 0x00000002;
const JOY_RETURNZ = 0x00000004;
const ERROR_DS_CANT_START = 8531;
const ERROR_CLUSTER_INSTANCE_ID_MISMATCH = 5893;
const _WIN32_IE_IE80 = 0x0800;
const DRAGDROP_S_LAST = 0x0004010F;
const LWA_ALPHA = 0x00000002;
const SCALINGFACTORX = 114;
const SCALINGFACTORY = 115;
const SM_CXDRAG = 68;
const ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION = 5;
const ERROR_NOT_FOUND = 1168;
const CERT_NAME_STR_SEMICOLON_FLAG = 0x40000000;
const SUBLANG_ESTONIAN_ESTONIA = 0x01;
const CERT_TRUST_NO_ERROR = 0x0;
const CERT_CROSS_CERT_DIST_POINTS_PROP_ID = 23;
const CERT_CRL_SIGN_KEY_USAGE = 0x2;
const UOI_FLAGS = 1;
const SERVICE_WIN32_SHARE_PROCESS = 0x00000020;
const IME_CMODE_HANJACONVERT = 0x0040;
const WM_DRAWCLIPBOARD = 0x0308;
const PBT_APMOEMEVENT = 0x000B;
const ERROR_DS_NAME_UNPARSEABLE = 8350;
const NTE_PROVIDER_DLL_FAIL = 0x8009001D;
const SM_REMOTESESSION = 0x1000;
const CLASSFACTORY_S_LAST = 0x0004011F;
const IMAGE_REL_ALPHA_REFLONG = 0x0001;
const ACCESS_MAX_MS_V5_ACE_TYPE = 0x11;
const SCS_OS216_BINARY = 5;
const SM_CXFULLSCREEN = 16;
const CTRY_SWEDEN = 46;
const DDE_FNOTPROCESSED = 0x0000;
const JOB_CONTROL_DELETE = 5;
const ERROR_CIRCULAR_DEPENDENCY = 1059;
const SHTDN_REASON_FLAG_PLANNED = 0x80000000;
const IMAGE_DEBUG_TYPE_FIXUP = 6;
const WM_MDICREATE = 0x0220;
const szOID_RSAES_OAEP = "1.2.840.113549.1.1.7";
const chx4 = 0x0413;
const CERT_V1 = 0;
const CERT_V2 = 1;
const CERT_V3 = 2;
const ODS_HOTLIGHT = 0x0040;
const XACT_E_HEURISTICDAMAGE = 0x8004D006;
const DEFAULT_PALETTE = 15;
const MF_END = 0x00000080;
const MDM_HDLCPPP_ML_DEFAULT = 0x0;
const PD_ENABLEPRINTTEMPLATEHANDLE = 0x10000;
const X3_I_SIZE_X = 1;
const SPI_GETPENDRAGOUTTHRESHOLD = 0x0086;
const CONSOLE_FULLSCREEN_MODE = 1;
const CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED = 3;
const IMAGE_REL_BASED_LOW = 2;
const LOCALE_ITIME = 0x00000023;
const DC_TRUETYPE = 15;
const CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG = 0x4;
const CMSG_SIGNED_AND_ENVELOPED = 4;
const __x86_64 = 1;
const CRYPT_REGISTER_FIRST_INDEX = 0;
const APPCOMMAND_FORWARD_MAIL = 40;
const CO_E_REMOTE_COMMUNICATION_FAILURE = 0x8000401D;
const PRINTACTION_PROPERTIES = 1;
const PAN_WEIGHT_INDEX = 2;
const ERROR_BAD_NET_NAME = 67;
const MIXER_GETLINEINFOF_LINEID = 0x00000002;
const PIPE_ACCESS_OUTBOUND = 0x2;
const CMSG_CTRL_DEL_CERT = 11;
const ERROR_TRANSPORT_FULL = 4328;
const ERROR_IPSEC_MM_POLICY_EXISTS = 13003;
const CRYPT_UPDATE_KEY = 0x8;
const CO_E_WRONGTRUSTEENAMESYNTAX = 0x8001012C;
const CTL_FIND_MD5_HASH = 2;
const DRIVER_USERMODE = 0x00000002;
const WHDR_PREPARED = 0x00000002;
const SC_DEFAULT = 0xF160;
const PSH_USEHICON = 0x00000002;
const WC_NO_BEST_FIT_CHARS = 0x00000400;
const SEC_E_NO_AUTHENTICATING_AUTHORITY = 0x80090311;
const RPC_C_MGMT_INQ_IF_IDS = 0;
const DS_SYSMODAL = 0x02;
const HTMENU = 5;
const DISK_LOGGING_START = 0;
const SBS_RIGHTALIGN = 0x0004;
const CERT_PHYSICAL_STORE_DEFAULT_NAME = ".Default";
const CTRY_ITALY = 39;
const ICON_SMALL2 = 2;
const IMAGE_SYM_CLASS_AUTOMATIC = 0x0001;
const MCI_NOTIFY_SUPERSEDED = 0x0002;
const IMAGE_SIZEOF_ROM_OPTIONAL_HEADER = 56;
const IDYES = 6;
const ERROR_INVALID_ACCESS = 12;
const ERROR_DS_NO_CHAINING = 8327;
const __GNUC_PATCHLEVEL__ = 1;
const CTLCOLOR_SCROLLBAR = 5;
const __MINGW_SEC_WARN_STR = "This function or variable may be unsafe, use _CRT_SECURE_NO_WARNINGS to disable deprecation";
const PP_SIGNATURE_ALG = 15;
const MDM_COMPRESSION = 0x00000001;
const SERVICE_ACCEPT_STOP = 0x00000001;
const ERROR_INVALID_CMM = 2010;
const szOID_INFOSEC_sdnsKeyManagement = "2.16.840.1.101.2.1.1.9";
const DFCS_HOT = 0x1000;
const EVENT_SYSTEM_DRAGDROPSTART = 0x000E;
const SCARD_E_CANT_DISPOSE = 0x8010000E;
const IMAGE_SCN_ALIGN_8192BYTES = 0x00E00000;
const DNS_ERROR_DATABASE_BASE = 9700;
const IMAGE_REL_I386_ABSOLUTE = 0x0000;
const CERT_PROT_ROOT_DISABLE_NT_AUTH_REQUIRED_FLAG = 0x10;
const DV_E_STATDATA = 0x80040067;
const SC_MONITORPOWER = 0xF170;
const CTL_FIND_SUBJECT = 4;
const EVENTLOG_BACKWARDS_READ = 0x0008;
const SCARD_STATE_UNAWARE = 0x00000000;
const CTLCOLOR_STATIC = 6;
const HANDLE_FLAG_PROTECT_FROM_CLOSE = 0x2;
const CO_E_CLASS_CREATE_FAILED = 0x80080001;
const UISF_HIDEFOCUS = 0x1;
const SB_GRAD_TRI = 0x00000020;
const ERROR_ADDRESS_ALREADY_ASSOCIATED = 1227;
const VK_LAUNCH_MEDIA_SELECT = 0xB5;
const szOID_CMC_SENDER_NONCE = "1.3.6.1.5.5.7.7.6";
const OLE_E_NOCONNECTION = 0x80040004;
const NMPWAIT_USE_DEFAULT_WAIT = 0x0;
const ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = 13832;
const ERROR_IPSEC_QM_POLICY_IN_USE = 13002;
const NCBDGRECVBC = 0x23;
const COMADMIN_E_CANTRECYCLESERVICEAPPS = 0x80110811;
const DRV_FREE = 0x0006;
const PORT_STATUS_TYPE_WARNING = 2;
const DMPAPER_A5_TRANSVERSE = 61;
const MCI_ANIM_OPEN_PARENT = 0x00020000;
const CO_E_INIT_MEMORY_ALLOCATOR = 0x80004008;
const LOCALE_SENGCOUNTRY = 0x00001002;
const MCI_WAVE_GETDEVCAPS_INPUTS = 0x00004001;
const IOCTL_SMARTCARD_IS_ABSENT = 11;
const LAYOUT_BTT = 0x00000002;
const LOCALE_IDEFAULTLANGUAGE = 0x00000009;
const NIF_GUID = 0x00000020;
const DMPAPER_LETTER_EXTRA = 50;
const ERROR_APP_WRONG_OS = 1151;
const CB_GETEDITSEL = 0x0140;
const SCARD_SCOPE_USER = 0;
const CERT_SYSTEM_STORE_CURRENT_USER_ID = 1;
const ERROR_SXS_XML_E_UNCLOSEDDECL = 14064;
const PRINTER_STATUS_WAITING = 0x00002000;
const ERROR_NOT_DOS_DISK = 26;
const VIF_OUTOFSPACE = 0x00000100;
const ERROR_SERVICE_MARKED_FOR_DELETE = 1072;
const IME_ITHOTKEY_PREVIOUS_COMPOSITION = 0x201;
const ERROR_LABEL_QUESTIONABLE = 0x00000002;
const MCI_OPEN = 0x0803;
const IMAGE_REL_ALPHA_LITUSE = 0x0005;
const MM_MCISIGNAL = 0x3CB;
const ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = 13800;
const CRYPT_IMPL_MIXED = 3;
const IMAGE_REL_MIPS_SECTION = 0x000A;
const MENU_EVENT = 0x8;
const szKEY_CACHE_ENABLED = "CachePrivateKeys";
const CRYPT_E_ASN1_EXTENDED = 0x80093201;
const LGRPID_INSTALLED = 0x00000001;
const MCI_SET_ON = 0x00002000;
const AW_SLIDE = 0x00040000;
const IMAGE_SCN_CNT_INITIALIZED_DATA = 0x00000040;
const RIGHT_ALT_PRESSED = 0x1;
const BSM_INSTALLABLEDRIVERS = 0x00000004;
const CDERR_NOTEMPLATE = 0x0003;
const PIDSI_TITLE = 0x00000002;
const SEC_E_NO_CREDENTIALS = 0x8009030E;
const IMAGE_REL_AMD64_ADDR64 = 0x0001;
const SPI_GETWHEELSCROLLCHARS = 0x006C;
const DISP_CHANGE_FAILED = -1;
const DISPLAY_DEVICE_VGA_COMPATIBLE = 0x00000010;
const XBUTTON1 = 0x0001;
const __DBL_MANT_DIG__ = 53;
const ERROR_BOOT_ALREADY_ACCEPTED = 1076;
const SUBLANG_FINNISH_FINLAND = 0x01;
const VK_OEM_CUSEL = 0xEF;
const DMDFO_STRETCH = 1;
const TAPE_ERASE_SHORT = 0;
const PSINJECT_DOCUMENTPROCESSCOLORS = 10;
const NCBDGSEND = 0x20;
const MB_USEGLYPHCHARS = 0x00000004;
const DNS_ERROR_INVALID_NAME_CHAR = 9560;
const FIEF_FLAG_FORCE_JITUI = 0x1;
const szOID_TELEX_NUMBER = "2.5.4.21";
const ERROR_CLUSTER_IPADDR_IN_USE = 5057;
const ERROR_DS_BAD_HIERARCHY_FILE = 8425;
const ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = 8502;
const AC_LINE_BACKUP_POWER = 0x2;
const ERROR_ILLEGAL_ELEMENT_ADDRESS = 1162;
const ERROR_TOO_MANY_SIDS = 1389;
const ERROR_INVALID_BLOCK = 9;
const PRODUCT_HOME_PREMIUM = 0x3;
const DC_DRIVER = 11;
const FACILITY_NT_BIT = 0x10000000;
const LB_ITEMFROMPOINT = 0x01A9;
const LOCALE_IOPTIONALCALENDAR = 0x0000100B;
const WM_KEYFIRST = 0x0100;
const _HEX = 0x80;
const STG_E_CSS_KEY_NOT_ESTABLISHED = 0x80030308;
const LB_GETCOUNT = 0x018B;
const ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = 8552;
const CTRY_MACEDONIA = 389;
const CC_ENABLEHOOK = 0x10;
const RPC_C_OPT_UNIQUE_BINDING = 11;
const MSSIPOTF_E_FAILED_HINTS_CHECK = 0x80097011;
const PSWIZB_NEXT = 0x00000002;
const URLACTION_HTML_SUBMIT_FORMS_FROM = 0x00001602;
const IMAGE_DEBUG_TYPE_UNKNOWN = 0;
const X3_OPCODE_INST_WORD_X = 3;
const REG_RESOURCE_REQUIREMENTS_LIST = 10;
const CE_MODE = 0x8000;
const IME_CAND_UNKNOWN = 0x0000;
const ERROR_SXS_XML_E_XMLDECLSYNTAX = 14035;
const WM_SETCURSOR = 0x0020;
const MSGF_DDEMGR = 0x8001;
const ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION = 2;
const CO_S_FIRST = 0x000401F0;
const URLACTION_BEHAVIOR_RUN = 0x00002000;
const CRYPT_E_NO_TRUSTED_SIGNER = 0x8009202B;
const MM_WIM_CLOSE = 0x3BF;
const PERF_TEXT_UNICODE = 0x00000000;
const CMSG_AUTHENTICATED_ATTRIBUTES_FLAG = 0x8;
const _WIN32_WINNT_LONGHORN = 0x0600;
const DNS_ERROR_RECORD_DOES_NOT_EXIST = 9701;
const ERROR_RESOURCE_NOT_AVAILABLE = 5006;
const TKF_AVAILABLE = 0x00000002;
const OF_READ = 0x0;
const ERROR_DS_UNABLE_TO_SURRENDER_ROLES = 8435;
const EEInfoUseFileTime = 4;
const PRINTER_CHANGE_ADD_PORT = 0x00100000;
const FRS_ERR_INTERNAL = 8005;
const OEM_FIXED_FONT = 10;
const VK_F11 = 0x7A;
const LB_FINDSTRINGEXACT = 0x01A2;
const CB_RESETCONTENT = 0x014B;
const VFT2_DRV_INSTALLABLE = 0x00000008;
const DRV_POWER = 0x000F;
const OF_PROMPT = 0x2000;
const CERT_E_INVALID_NAME = 0x800B0114;
const ERROR_ADDRESS_NOT_ASSOCIATED = 1228;
const RPC_E_CLIENT_CANTUNMARSHAL_DATA = 0x8001000C;
const VIEW_S_LAST = 0x0004014F;
const CTRY_JORDAN = 962;
const DV_E_CLIPFORMAT = 0x8004006A;
const URLACTION_SCRIPT_MIN = 0x00001400;
const PROCESS_SET_SESSIONID = 0x0004;
const DSPRINT_PENDING = 0x80000000;
const CP_ACP = 0;
const ERROR_IPSEC_MM_AUTH_NOT_FOUND = 13011;
const JOB_NOTIFY_FIELD_NOTIFY_NAME = 0x04;
const ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 8569;
const VK_F18 = 0x81;
const ERROR_FLOPPY_WRONG_CYLINDER = 1123;
const IOCTL_SMARTCARD_GET_STATE = 14;
const BN_UNHILITE = 3;
const N_TSHIFT = 2;
const TAPE_DRIVE_SPACE_IMMEDIATE = 0x80800000;
const COMQC_E_APPLICATION_NOT_QUEUED = 0x80110600;
const COMADMIN_E_CAT_INVALID_PARTITION_NAME = 0x80110458;
const MMIO_RWMODE = 0x00000003;
const CONNECT_COMMANDLINE = 0x00000800;
const FILE_DEVICE_TAPE_FILE_SYSTEM = 0x00000020;
const CREATE_FORCEDOS = 0x2000;
const szOID_CTL = "1.3.6.1.4.1.311.10.1";
const ERROR_SET_POWER_STATE_VETOED = 1140;
const LOCALE_IDATE = 0x00000021;
const ERROR_DIRECT_ACCESS_HANDLE = 130;
const ERROR_WMI_TRY_AGAIN = 4203;
const EVENT_OBJECT_DEFACTIONCHANGE = 0x8011;
const EM_CANUNDO = 0x00C6;
const CTRL_BREAK_EVENT = 1;
const IPPORT_FINGER = 79;
const CF_MAX = 18;
const RPC_S_SEND_INCOMPLETE = 1913;
const EVENT_E_MISSING_EVENTCLASS = 0x8004020A;
const CRYPT_E_OSS_ERROR = 0x80093000;
const SHTDN_REASON_MINOR_NETWORKCARD = 0x00000009;
const PRINTER_STATUS_PRINTING = 0x00000400;
const MK_S_ME = 0x000401E4;
const SUBLANG_ARABIC_OMAN = 0x08;
const CERT_INFO_SIGNATURE_ALGORITHM_FLAG = 3;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_EXCEPTION_RAISED_FOR_HEADER = 0x000B;
const CERT_STORE_ADD_REPLACE_EXISTING = 3;
const LANG_KICHE = 0x86;
const REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY = 0x2;
const LOCALE_STIMEFORMAT = 0x00001003;
const SHGFI_LINKOVERLAY = 0x000008000;
const _HEAPBADBEGIN = -3;
const HSHELL_HIGHBIT = 0x8000;
const SM_RESERVED1 = 24;
const SM_RESERVED2 = 25;
const SM_RESERVED3 = 26;
const SM_RESERVED4 = 27;
const PERF_DISPLAY_NOSHOW = 0x40000000;
const FILE_UNICODE_ON_DISK = 0x00000004;
const ERROR_DS_GC_NOT_AVAILABLE = 8217;
const IPPORT_ECHO = 7;
const IME_ESC_SYNC_HOTKEY = 0x1007;
const PRINTRATEUNIT_LPM = 3;
const RPC_E_CALL_COMPLETE = 0x80010117;
const MCI_OVLY_OPEN_PARENT = 0x00020000;
const SM_SHOWSOUNDS = 70;
const CRYPTPROTECT_CRED_SYNC = 0x8;
const ERROR_TOO_MANY_SESS = 69;
const CTRY_AZERBAIJAN = 994;
const VFT2_DRV_NETWORK = 0x00000006;
const MCI_WAVE_OPEN_BUFFER = 0x00010000;
const ERROR_IPSEC_TUNNEL_FILTER_EXISTS = 13016;
const PROCESSOR_ARM720 = 1824;
const DMDFO_CENTER = 2;
const URLACTION_SHELL_EXECUTE_HIGHRISK = 0x00001806;
const ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = 8560;
const JOB_POSITION_UNSPECIFIED = 0;
const ISC_SHOWUICANDIDATEWINDOW = 0x00000001;
const szOID_OIWSEC_dsaSHA1 = "1.3.14.3.2.27";
const MIXERLINE_LINEF_SOURCE = 0x80000000;
const RPC_S_NAME_SERVICE_UNAVAILABLE = 1762;
const IMAGE_FILE_MACHINE_TRICORE = 0x0520;
const CE_IOE = 0x400;
const ID_CMD = 0xEC;
const HELP_HELPONHELP = 0x0004;
const CB_GETCOMBOBOXINFO = 0x0164;
const MIXERLINE_TARGETTYPE_MIDIOUT = 3;
const TC_EA_DOUBLE = 0x00000200;
const CBF_FAIL_POKES = 0x00010000;
const NRC_ILLCMD = 0x03;
const MK_S_US = 0x000401E6;
const VK_OEM_BACKTAB = 0xF5;
const MOUSEEVENTF_XUP = 0x0100;
const MWT_IDENTITY = 1;
const MOVEFILE_CREATE_HARDLINK = 0x10;
const ERROR_DS_CANT_FIND_DSA_OBJ = 8419;
const ERROR_FILE_READ_ONLY = 6009;
const WM_HELP = 0x0053;
const FILE_DEVICE_TERMSRV = 0x00000038;
const CERT_STORE_READONLY_FLAG = 0x8000;
const PRINTER_NOTIFY_FIELD_SEPFILE = 0x08;
const PERF_TYPE_COUNTER = 0x00000400;
const PP_KEYSPEC = 39;
const MM_HIMETRIC = 3;
const R2_WHITE = 16;
const SEE_MASK_NOZONECHECKS = 0x00800000;
const ERROR_SXS_UNKNOWN_ENCODING = 14013;
const WM_QUERYOPEN = 0x0013;
const FR_ENABLEHOOK = 0x100;
const MCI_OPEN_ELEMENT_ID = 0x00000800;
const IMAGE_ORDINAL_FLAG32 = 0x80000000;
const URLACTION_SHELL_POPUPMGR = 0x00001809;
const CRL_REASON_CERTIFICATE_HOLD_FLAG = 0x2;
const ERROR_LOGON_TYPE_NOT_GRANTED = 1385;
const C1_BLANK = 0x0040;
const SUBLANG_PORTUGUESE = 0x02;
const RPC_C_IMP_LEVEL_ANONYMOUS = 1;
const MAXUIDLEN = 64;
const SO_ACCEPTCONN = 0x0002;
const MCI_ANIM_PLAY_SPEED = 0x00010000;
const DFCS_MENUARROWRIGHT = 0x0004;
const IDC_SIZENS = 32645;
const EVENT_E_NOT_ALL_REMOVED = 0x8004020B;
const IMAGE_REL_M32R_PCREL16 = 0x0006;
const VARCMP_GT = 2;
const OLEOBJ_S_CANNOT_DOVERB_NOW = 0x00040181;
const IMAGE_SYM_CLASS_UNDEFINED_STATIC = 0x000E;
const SUBLANG_DEFAULT = 0x01;
const CHANGER_STATUS_NON_VOLATILE = 0x00000010;
const MIM_STYLE = 0x00000010;
const IMAGE_REL_IA64_DIR32 = 0x0004;
const WM_CHAR = 0x0102;
const CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR = 8;
const QUERYDIBSUPPORT = 3073;
const PHYSICALOFFSETX = 112;
const PHYSICALOFFSETY = 113;
const S_WHITE512 = 4;
const CERT_ARCHIVED_PROP_ID = 19;
const LANG_KOREAN = 0x12;
const ETO_IGNORELANGUAGE = 0x1000;
const SPAPI_E_DRIVER_NONNATIVE = 0x800F0234;
const ERROR_PRODUCT_VERSION = 1638;
const SERVICE_ACCEPT_HARDWAREPROFILECHANGE = 0x00000020;
const ABS_AUTOHIDE = 0x0000001;
const URLACTION_INFODELIVERY_NO_ADDING_SUBSCRIPTIONS = 0x00001D03;
const BI_JPEG = 4;
const IMAGE_REL_IA64_DIR64 = 0x0005;
const MM_TEXT = 1;
const PIDDSI_PRESFORMAT = 0x00000003;
const DMLERR_NO_ERROR = 0;
const CDS_VIDEOPARAMETERS = 0x00000020;
const INDEXID_OBJECT = 0;
const USER_MARSHAL_FC_USMALL = 4;
const CHANGER_STORAGE_DRIVE = 0x00001000;
const SPI_GETDRAGFROMMAXIMIZE = 0x008C;
const EMR_SCALEWINDOWEXTEX = 32;
const ERROR_DS_REPLICATOR_ONLY = 8370;
const PID_DICTIONARY = 0;
const EVENT_OBJECT_SELECTIONREMOVE = 0x8008;
const CERT_QUERY_CONTENT_CERT = 1;
const RTL_CRITICAL_SECTION_FLAG_STATIC_INIT = 0x04000000;
const MEM_E_INVALID_ROOT = 0x80080009;
const SYSTEM_FIXED_FONT = 16;
const SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC = 0x07;
const SEC_E_SMARTCARD_CERT_EXPIRED = 0x80090355;
const XST_INIT1 = 3;
const XST_INIT2 = 4;
const PRINTER_STATUS_SERVER_UNKNOWN = 0x00800000;
const MOVEFILE_DELAY_UNTIL_REBOOT = 0x4;
const DMPAPER_B5_JIS_ROTATED = 80;
const LBN_SELCHANGE = 1;
const MIXERLINE_TARGETTYPE_WAVEIN = 2;
const COMADMIN_E_CAT_PARTITION_IN_USE = 0x80110459;
const WM_STYLECHANGED = 0x007D;
const WS_EX_NOACTIVATE = 0x08000000;
const PERF_INVERSE_COUNTER = 0x01000000;
const MCI_SEQ_SET_SLAVE = 0x00040000;
const DLGC_WANTTAB = 0x0002;
const IMAGE_SYM_CLASS_MEMBER_OF_STRUCT = 0x0008;
const LINECAPS = 30;
const META_REALIZEPALETTE = 0x0035;
const RPC_S_SERVER_TOO_BUSY = 1723;
const IMAGE_SYM_CLASS_FILE = 0x0067;
const IDC_SIZEWE = 32644;
const LOCALE_SABBREVCTRYNAME = 0x00000007;
const EMR_SCALEVIEWPORTEXTEX = 31;
const RPC_S_INVALID_ASYNC_CALL = 1915;
const TF_WRITE_BEHIND = 0x04;
const DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED = 82;
const DS_MODALFRAME = 0x80;
const X3_OPCODE_SIZE_X = 4;
const IME_SMODE_AUTOMATIC = 0x0004;
const ERROR_EA_FILE_CORRUPT = 276;
const ERROR_HOTKEY_ALREADY_REGISTERED = 1409;
const RESOURCETYPE_PRINT = 0x00000002;
const CTRY_SOUTH_KOREA = 82;
const XACT_E_TIP_PROTOCOL_ERROR = 0x8004D020;
const DI_APPBANDING = 0x00000001;
const CP_UTF7 = 65000;
const ERROR_DS_CONFIDENTIALITY_REQUIRED = 8237;
const VER_SUITE_EMBEDDED_RESTRICTED = 0x00000800;
const SERVICE_QUERY_CONFIG = 0x0001;
const CP_UTF8 = 65001;
const IMAGE_SCN_ALIGN_32BYTES = 0x00600000;
const DT_PATH_ELLIPSIS = 0x00004000;
const CERT_QUERY_CONTENT_PFX = 12;
const PAN_MIDLINE_HIGH_TRIMMED = 5;
const ERROR_LOGIN_TIME_RESTRICTION = 1239;
const RECOVERED_READS_VALID = 0x00000004;
const __MINGW32_MINOR_VERSION = 11;
const WM_CAPTURECHANGED = 0x0215;
const OLE_E_ADVISENOTSUPPORTED = 0x80040003;
const IMAGE_REL_MIPS_PAIR = 0x0025;
const MEDIA_READ_WRITE = 0x00000008;
const DCB_RESET = 0x0001;
const PO_DELETE = 0x0013;
const IMN_GUIDELINE = 0x000D;
const IMR_RECONVERTSTRING = 0x0004;
const PRF_CLIENT = 0x00000004;
const PAN_XHEIGHT_CONSTANT_STD = 3;
const CONSOLE_TEXTMODE_BUFFER = 1;
const COMADMIN_E_OBJECTNOTPOOLABLE = 0x8011043F;
const IME_CMODE_ROMAN = 0x0010;
const JOB_NOTIFY_FIELD_UNTIL_TIME = 0x12;
const COM_RIGHTS_ACTIVATE_REMOTE = 16;
const DISCHARGE_POLICY_LOW = 1;
const ERROR_DS_CROSS_NC_DN_RENAME = 8368;
const ERROR_TOO_MANY_MUXWAITERS = 152;
const SPI_SETMOUSECLICKLOCK = 0x101F;
const APPLICATION_VERIFIER_CONTINUABLE_BREAK = 0x10000000;
const PAN_SERIF_EXAGGERATED = 9;
const ATTR_CONVERTED = 0x02;
const COMADMIN_E_COMPFILE_BADTLB = 0x80110428;
const APPLICATION_VERIFIER_SWITCHED_HEAP_HANDLE = 0x0006;
const ERROR_DC_NOT_FOUND = 1425;
const ALG_SID_SHA_384 = 13;
const C3_DIACRITIC = 0x0002;
const WINSTA_ACCESSGLOBALATOMS = 0x0020;
const FILE_ENCRYPTABLE = 0;
const POLICY_SHOWREASONUI_WORKSTATIONONLY = 2;
const ERROR_NOT_EMPTY = 4307;
const DS_ABSALIGN = 0x01;
const ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 5030;
const SPCLPASSTHROUGH2 = 4568;
const ERROR_SXS_INVALID_XML_NAMESPACE_URI = 14014;
const ERROR_RESOURCE_DISABLED = 4309;
const SPI_GETSERIALKEYS = 0x003E;
const CBN_DROPDOWN = 7;
const ERROR_DS_DUPLICATE_ID_FOUND = 8605;
const TKF_TOGGLEKEYSON = 0x00000001;
const CHANGER_DEVICE_REINITIALIZE_CAPABLE = 0x08000000;
const EVENT_CONSOLE_END_APPLICATION = 0x4007;
const OF_SHARE_COMPAT = 0x0;
const INPUT_KEYBOARD = 1;
const RPC_C_NS_SYNTAX_DCE = 3;
const sz_CERT_STORE_PROV_SERIALIZED = "Serialized";
const CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN = 3;
const WM_IME_NOTIFY = 0x0282;
const XST_EXECACKRCVD = 10;
const ERROR_ALREADY_EXISTS = 183;
const WM_MOUSEACTIVATE = 0x0021;
const CRYPT_EXPORT = 0x4;
const IMAGE_FILE_32BIT_MACHINE = 0x0100;
const SUBLANG_MALAY_BRUNEI_DARUSSALAM = 0x02;
const PAN_SERIF_FLARED = 14;
const UNDEFINE_ALTERNATE = 0xD;
const MK_E_NOSTORAGE = 0x800401ED;
const CRYPT_NEWKEYSET = 0x8;
const CTRL_C_EVENT = 0;
const SERVICE_CONTROL_PAUSE = 0x00000002;
const szOID_POLICY_MAPPINGS = "2.5.29.33";
const UISF_HIDEACCEL = 0x2;
const CHANGER_REPORT_IEPORT_STATE = 0x00000800;
const PSBTN_BACK = 0;
const ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = 8377;
const szOID_RSA_data = "1.2.840.113549.1.7.1";
const TC_VA_ABLE = 0x00004000;
const PS_DASHDOTDOT = 4;
const DISPATCH_METHOD = 0x1;
const PROCESSOR_ALPHA_21064 = 21064;
const BATTERY_FLAG_CHARGING = 0x8;
const CERT_QUERY_OBJECT_FILE = 0x1;
const WM_USERCHANGED = 0x0054;
const USER_MARSHAL_FC_USHORT = 7;
const szOID_OIWDIR = "1.3.14.7.2";
const CTRY_HONG_KONG = 852;
const CERT_STORE_CREATE_NEW_FLAG = 0x2000;
const CTRY_LATVIA = 371;
const CBR_14400 = 14400;
const ALG_SID_AES_192 = 15;
const ERROR_IEPORT_FULL = 4341;
const IDI_APPLICATION = 32512;
const PAN_LETT_OBLIQUE_ROUNDED = 13;
const JOY_CAL_READALWAYS = 0x00010000;
const TIME_ZONE_ID_UNKNOWN = 0;
const __INT_LEAST32_MAX__ = 2147483647;
const MIXER_OBJECTF_MIXER = 0x00000000;
const SSF_SOUNDSENTRYON = 0x00000001;
const CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS = 0x400;
const X3_IMM39_2_SIGN_VAL_POS_X = 20;
const IMAGE_DIRECTORY_ENTRY_EXCEPTION = 3;
const CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC = 8;
const WNNC_NET_EXIFS = 0x002D0000;
const FILE_ACTION_RENAMED_OLD_NAME = 0x00000004;
const CRYPT_FASTSGC = 0x2;
const ATAPI_ID_CMD = 0xA1;
const DNS_ERROR_INVALID_PROPERTY = 9553;
const PROP_MED_CXDLG = 227;
const ERROR_DEVICE_IN_USE = 2404;
const SPAPI_E_INVALID_INF_LOGCONFIG = 0x800F022A;
const PC_STYLED = 32;
const __DBL_MAX_EXP__ = 1024;
const WM_UPDATEUISTATE = 0x0128;
const CM_OUT_OF_GAMUT = 255;
const GL_LEVEL_ERROR = 0x00000002;
const ERROR_UNEXPECTED_OMID = 4334;
const LB_GETSELCOUNT = 0x0190;
const MMIO_CREATERIFF = 0x0020;
const ERROR_DS_OBJ_NOT_FOUND = 8333;
const IPPROTO_MAX = 256;
const SMART_CYL_HI = 0xC2;
const ERROR_INVALID_LOGON_TYPE = 1367;
const MIXERCONTROL_CT_CLASS_NUMBER = 0x30000000;
const ERROR_DS_NO_MORE_RIDS = 8209;
const CC_NONE = 0;
const WNFMT_MULTILINE = 0x01;
const WM_IME_ENDCOMPOSITION = 0x010E;
const __WIN32__ = 1;
const ODS_CHECKED = 0x0008;
const PRINTER_NOTIFY_FIELD_PORT_NAME = 0x03;
const ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = 5089;
const PROCESS_HEAP_REGION = 0x1;
const WM_ACTIVATEAPP = 0x001C;
const szOID_CRL_VIRTUAL_BASE = "1.3.6.1.4.1.311.21.3";
const ERROR_IPSEC_MM_FILTER_NOT_FOUND = 13007;
const DRIVE_CDROM = 5;
const LANG_FILIPINO = 0x64;
const NETPROPERTY_PERSISTENT = 1;
const CO_E_NOTINITIALIZED = 0x800401F0;
const ERROR_NO_SUCH_USER = 1317;
const CRYPT_NEXT = 2;
const CO_E_NETACCESSAPIFAILED = 0x8001012B;
const AUTHTYPE_CLIENT = 1;
const IME_REGWORD_STYLE_EUDC = 0x00000001;
const E_FAIL = 0x80004005;
const QUERYESCSUPPORT = 8;
const DMDUP_VERTICAL = 2;
const EM_GETWORDBREAKPROC = 0x00D1;
const TAPE_TENSION = 2;
const CRYPT_E_UNKNOWN_ALGO = 0x80091002;
const VER_SUITE_WH_SERVER = 0x00008000;
const MB_ICONQUESTION = 0x00000020;
const MF_MASK = 0xFF000000;
const ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116;
const WH_SYSMSGFILTER = 6;
const MB_USERICON = 0x00000080;
const ALG_SID_3DES = 3;
const ERROR_NOT_LOGON_PROCESS = 1362;
const szOID_LOGOTYPE_EXT = "1.3.6.1.5.5.7.1.12";
const ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = 8585;
const URLACTION_FEATURE_MIN = 0x00002100;
const MNC_SELECT = 3;
const DN_DEFAULTPRN = 0x1;
const ERROR_INVALID_COMPUTERNAME = 1210;
const MCI_ANIM_WINDOW_HWND = 0x00010000;
const LOCALE_SABBREVMONTHNAME12 = 0x0000004F;
const FILE_CASE_SENSITIVE_SEARCH = 0x00000001;
const QUERY_ACTCTX_FLAG_NO_ADDREF = 0x80000000;
const WH_HARDWARE = 8;
const WS_EX_LTRREADING = 0x00000000;
const DNS_ERROR_NAME_NOT_IN_ZONE = 9706;
const MCI_ANIM_PLAY_REVERSE = 0x00020000;
const EM_GETPASSWORDCHAR = 0x00D2;
const SECTION_QUERY = 0x0001;
const SUBLANG_TIBETAN_PRC = 0x01;
const PFD_SWAP_LAYER_BUFFERS = 0x00000800;
const CERT_QUERY_CONTENT_SERIALIZED_STORE = 4;
const LOCKFILE_EXCLUSIVE_LOCK = 0x2;
const XACT_E_WRONGSTATE = 0x8004D011;
const WAVE_FORMAT_2S08 = 0x00000020;
const MDM_PROTOCOLID_GPRS = 0x8;
const SEC_E_NO_IMPERSONATION = 0x8009030B;
const DRVCNF_RESTART = 0x0002;
const CAL_SDAYNAME1 = 0x00000007;
const CAL_SDAYNAME2 = 0x00000008;
const CAL_SDAYNAME3 = 0x00000009;
const CMSG_CTRL_VERIFY_HASH = 5;
const LB_FINDSTRING = 0x018F;
const CERT_AUTO_ENROLL_RETRY_PROP_ID = 66;
const MMIO_FINDLIST = 0x0040;
const APPCOMMAND_CUT = 37;
const CO_E_NOTCONSTRUCTED = 0x8004E02D;
const EMARCH_ENC_I17_SIGN_INST_WORD_X = 3;
const PRINTER_STATUS_MANUAL_FEED = 0x00000020;
const TCI_SRCCHARSET = 1;
const CO_E_ACTIVATIONFAILED_EVENTLOGGED = 0x8004E022;
const PAN_SERIF_ROUNDED = 15;
const szOID_APPLICATION_CERT_POLICIES = "1.3.6.1.4.1.311.21.10";
const EMR_SELECTCLIPPATH = 67;
const MDMVOL_MEDIUM = 0x00000001;
const _WIN32_IE_IE60SP1 = 0x0601;
const _WIN32_IE_IE60SP2 = 0x0603;
const AF_CHAOS = 5;
const ERROR_DS_CANT_DELETE = 8398;
const PRODUCT_SOLUTION_EMBEDDEDSERVER = 0x38;
const RPC_S_INVALID_NETWORK_OPTIONS = 1724;
const SERVICE_CONTROL_PARAMCHANGE = 0x00000006;
const SCARD_STATE_PRESENT = 0x00000020;
const AT_SIGNATURE = 2;
const EMARCH_ENC_I17_IMM7B_VAL_POS_X = 0;
const JOB_OBJECT_UILIMIT_DISPLAYSETTINGS = 0x00000010;
const WAVE_FORMAT_2M08 = 0x00000010;
const ERROR_SEM_OWNER_DIED = 105;
const LCS_GM_IMAGES = 0x00000004;
const VK_SNAPSHOT = 0x2C;
const CF_TTONLY = 0x40000;
const NT351_INTERFACE_SIZE = 0x40;
const CERT_STORE_PROV_FREE_FIND_CERT_FUNC = 15;
const ERROR_DS_SIZELIMIT_EXCEEDED = 8227;
const CRYPT_DELETE_KEYSET = 0x1;
const ERROR_ALL_SIDS_FILTERED = 0xC0090002;
const RPC_C_AUTHN_LEVEL_NONE = 1;
const NTE_BAD_TYPE = 0x8009000A;
const OLEOBJ_E_NOVERBS = 0x80040180;
const S_SEROFM = -2;
const ERROR_INFLOOP_IN_RELOC_CHAIN = 202;
const NUMPRS_INEXACT = 0x20000;
const PAN_ARMSTYLE_INDEX = 6;
const WS_THICKFRAME = 0x00040000;
const ERROR_BAD_THREADID_ADDR = 159;
const ERROR_INVALID_MODULETYPE = 190;
const szOID_CMC_ENCRYPTED_POP = "1.3.6.1.5.5.7.7.9";
const WNNC_NET_CSC = 0x00260000;
const ERROR_SOURCE_ELEMENT_EMPTY = 1160;
const VFT2_FONT_VECTOR = 0x00000002;
const SPI_SETDOUBLECLKHEIGHT = 0x001E;
const DT_METAFILE = 5;
const SOFTDIST_ADSTATE_AVAILABLE = 0x00000001;
const WVR_VALIDRECTS = 0x0400;
const PC_EXPLICIT = 0x02;
const ERROR_METAFILE_NOT_SUPPORTED = 2003;
const DDE_FDEFERUPD = 0x4000;
const CC_ROUNDRECT = 256;
const RPC_S_INVALID_BINDING = 1702;
const CERT_DSS_S_LEN = 20;
const IMAGE_REL_SH3_STARTOF_SECTION = 0x000C;
const KP_EFFECTIVE_KEYLEN = 19;
const SPI_GETSHOWSOUNDS = 0x0038;
const PAN_STRAIGHT_ARMS_HORZ = 2;
const PRINTER_ERROR_OUTOFTONER = 0x00000004;
const szOID_KP_LIFETIME_SIGNING = "1.3.6.1.4.1.311.10.3.13";
const PKCS5_PADDING = 1;
const MB_SERVICE_NOTIFICATION_NT3X = 0x00040000;
const WM_PAINTCLIPBOARD = 0x0309;
const STG_TOEND = 0xFFFFFFFF;
const DRIVE_RAMDISK = 6;
const DFCS_CHECKED = 0x0400;
const JOY_CAL_READRONLY = 0x02000000;
const MWMO_WAITALL = 0x0001;
const ERROR_PROC_NOT_FOUND = 127;
const CERT_STORE_SAVE_AS_PKCS7 = 2;
const SUBLANG_FRENCH_MONACO = 0x06;
const CMSG_CRL_COUNT_PARAM = 13;
const ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386;
const MM_STREAM_CLOSE = 0x3D5;
const MMIO_TOUPPER = 0x0010;
const __FLT_MIN_10_EXP__ = -37;
const SERKF_SERIALKEYSON = 0x00000001;
const MOD_IGNORE_ALL_MODIFIER = 0x0400;
const UNWIND_HISTORY_TABLE_GLOBAL = 1;
const COLOR_ACTIVECAPTION = 2;
const TPM_RIGHTBUTTON = 0x0002;
const DMPAPER_A4_EXTRA = 53;
const CF_PENDATA = 10;
const RIM_TYPEHID = 2;
const _ALLOCA_S_MARKER_SIZE = 16;
const TIME_ZONE_ID_DAYLIGHT = 2;
const MM_LOMETRIC = 2;
const CRYPT_ASN_ENCODING = 0x1;
const SW_PARENTCLOSING = 1;
const DMPAPER_JENV_KAKU3_ROTATED = 85;
const MDM_SHIFT_PROTOCOLDATA = 20;
const MCI_NOTIFY_FAILURE = 0x0008;
const ERROR_MEMBER_NOT_IN_GROUP = 1321;
const CO_E_FAILEDTOGETWINDIR = 0x80010134;
const SPI_GETFOREGROUNDFLASHCOUNT = 0x2004;
const MEVT_F_SHORT = 0x00000000;
const MCI_UPDATE = 0x0854;
const PHYSICALHEIGHT = 111;
const ERROR_THREAD_1_INACTIVE = 210;
const APPLICATION_VERIFIER_DESTROY_PROCESS_HEAP = 0x0009;
const WM_SYSDEADCHAR = 0x0107;
const ERROR_INVALID_ADDRESS = 487;
const ERROR_ACTIVATION_COUNT_EXCEEDED = 7059;
const ERROR_EVENTLOG_FILE_CORRUPT = 1500;
const DMTT_DOWNLOAD_OUTLINE = 4;
const DNS_ERROR_RECORD_FORMAT = 9702;
const CBS_OWNERDRAWFIXED = 0x0010;
const JOB_OBJECT_UILIMIT_HANDLES = 0x00000001;
const SEC_I_RENEGOTIATE = 0x00090321;
const RDW_NOCHILDREN = 0x0040;
const SPI_SETKEYBOARDDELAY = 0x0017;
const WNFMT_ABBREVIATED = 0x02;
const NCBRESET = 0x32;
const RPC_C_HTTP_FLAG_USE_FIRST_AUTH_SCHEME = 2;
const ERROR_DATATYPE_MISMATCH = 1629;
const EVENTLOG_SEQUENTIAL_READ = 0x0001;
const SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE = 0x10;
const CMSG_MAIL_LIST_RECIPIENT = 3;
const TA_RTLREADING = 256;
const SUBLANG_TAJIK_TAJIKISTAN = 0x01;
const MCI_ANIM_GETDEVCAPS_FAST_RATE = 0x00004002;
const szPRIV_KEY_CACHE_MAX_ITEMS = "PrivKeyCacheMaxItems";
const CRYPT_EXPORTABLE = 0x1;
const IMAGE_REL_M32R_ADDR32NB = 0x0002;
const RPC_IF_ALLOW_SECURE_ONLY = 0x0008;
const CMC_OTHER_INFO_NO_CHOICE = 0;
const MDM_HDLCPPP_AUTH_PAP = 0x2;
const RIDEV_PAGEONLY = 0x00000020;
const TAPE_DRIVE_FILEMARKS = 0x80040000;
const DMLERR_DATAACKTIMEOUT = 0x4002;
const MCI_OPEN_ALIAS = 0x00000400;
const SPI_SETFONTSMOOTHINGORIENTATION = 0x2013;
const PF_FLOATING_POINT_PRECISION_ERRATA = 0;
const LOCALE_SMONTHNAME10 = 0x00000041;
const LOCALE_SMONTHNAME11 = 0x00000042;
const LOCALE_SMONTHNAME12 = 0x00000043;
const LOCALE_SMONTHNAME13 = 0x0000100E;
const KF_MENUMODE = 0x1000;
const CO_E_FAILEDTOGENUUID = 0x80010136;
const PSBTN_APPLYNOW = 4;
const CMC_FAIL_MUST_ARCHIVE_KEYS = 6;
const MEM_E_INVALID_LINK = 0x80080010;
const DMLERR_INVALIDPARAMETER = 0x4006;
const JOY_BUTTON7 = 0x00000040;
const ACCESS_OBJECT_GUID = 0;
const CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 0x4000;
const MCI_FREEZE = 0x0844;
const IS_TEXT_UNICODE_REVERSE_SIGNATURE = 0x0080;
const COMADMIN_E_SERVICENOTINSTALLED = 0x80110436;
const PAN_STROKE_GRADUAL_HORZ = 5;
const CONTEXT_E_TMNOTAVAILABLE = 0x8004E00F;
const URLPOLICY_JAVA_MEDIUM = 0x00020000;
const ERROR_POPUP_ALREADY_ACTIVE = 1446;
const R2_NOTMERGEPEN = 2;
const IME_ESC_GET_EUDC_DICTIONARY = 0x1003;
const ERROR_SXS_XML_E_BADNAMECHAR = 14033;
const __FLT_MANT_DIG__ = 24;
const MS_NBF = "MNBF";
const CRYPT_OID_REG_FLAGS_VALUE_NAME = "CryptFlags";
const MCI_OVLY_WINDOW_HWND = 0x00010000;
const URLPOLICY_ALLOW = 0x00;
const CRYPT_ARCHIVABLE = 0x4000;
const CERT_STORE_ADD_NEW = 1;
const STARTF_RUNFULLSCREEN = 0x20;
const MB_YESNO = 0x00000004;
const PARTITION_XENIX_1 = 0x02;
const PARTITION_XENIX_2 = 0x03;
const MKF_RIGHTBUTTONSEL = 0x20000000;
const rad5 = 0x0424;
const SPI_SETCLEARTYPE = 0x1049;
const ERROR_ILL_FORMED_PASSWORD = 1324;
const CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT = 0x80004024;
const EMR_POLYGON = 3;
const DLL_PROCESS_VERIFIER = 4;
const ERROR_DS_SINGLE_USER_MODE_FAILED = 8590;
const CPS_COMPLETE = 0x0001;
const rad9 = 0x0428;
const MIXERCONTROL_CT_CLASS_METER = 0x10000000;
const MAXPROPPAGES = 100;
const MM_JOY1ZMOVE = 0x3A2;
const DS_NOIDLEMSG = 0x100;
const ALG_SID_TLS1PRF = 10;
const MIIM_SUBMENU = 0x00000004;
const ERROR_SXS_XML_E_BADXMLCASE = 14069;
const SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC = 0x08;
const GETPAIRKERNTABLE = 258;
const ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 8580;
const GM_COMPATIBLE = 1;
const FILE_SYSTEM_ATTR = 2;
const SM_YVIRTUALSCREEN = 77;
const DTR_CONTROL_DISABLE = 0x0;
const ERROR_DS_EXISTS_IN_POSS_SUP = 8395;
const EVENT_SYSTEM_FOREGROUND = 0x0003;
const CERT_PVK_FILE_PROP_ID = 12;
const MM_MAX_AXES_NAMELEN = 16;
const _ALLOCA_S_THRESHOLD = 1024;
const LOCALE_SLIST = 0x0000000C;
const ACE_OBJECT_TYPE_PRESENT = 0x1;
const PRODUCT_STORAGE_WORKGROUP_SERVER = 0x16;
const CMSG_CONTENT_ENCRYPT_RELEASE_CONTEXT_FLAG = 0x8000;
const SERVICE_CONTROL_NETBINDADD = 0x00000007;
const CERT_AIA_URL_RETRIEVED_PROP_ID = 67;
const szFORCE_KEY_PROTECTION = "ForceKeyProtection";
const STARTF_USEHOTKEY = 0x200;
const APPLICATION_VERIFIER_PROBE_FREE_MEM = 0x0604;
const PROFILE_SERVER = 0x40000000;
const VER_PRODUCT_TYPE = 0x0000080;
const CDERR_NOHOOK = 0x000B;
const ACTCTX_FLAG_APPLICATION_NAME_VALID = 0x20;
const CRYPT_FORMAT_COMMA = 0x1000;
const PSH_HEADER = 0x00080000;
const GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A = "GetSystemWow64DirectoryW";
const COPY_FILE_RESTARTABLE = 0x2;
const GL_LEVEL_FATAL = 0x00000001;
const ACL_REVISION1 = 1;
const ACL_REVISION3 = 3;
const ERROR_NOT_EXPORT_FORMAT = 6008;
const ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID = 3;
const __MINGW_HAVE_ANSI_C99_SCANF = 1;
const SS_ENHMETAFILE = 0x0000000F;
const PRODUCT_HOME_SERVER = 0x13;
const SCARD_CLASS_SECURITY = 5;
const _WIN32_WINNT_WIN2K = 0x0500;
const MIIM_BITMAP = 0x00000080;
const SPI_GETKEYBOARDCUES = 0x100A;
const PIDMSI_PRODUCTION = 0x0000000A;
const LB_GETANCHORINDEX = 0x019D;
const DMPAPER_PENV_10 = 105;
const SO_MAXPATHDG = 0x700A;
const GETFACENAME = 513;
const CO_E_DBERROR = 0x8004E02B;
const PIDSI_THUMBNAIL = 0x00000011;
const SPI_SETCURSORS = 0x0057;
const IPPORT_RESERVED = 1024;
const XENROLL_E_KEY_NOT_EXPORTABLE = 0x80095000;
const HELP_TCARD_OTHER_CALLER = 0x0011;
const WVR_ALIGNRIGHT = 0x0080;
const ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 5900;
const DFCS_SCROLLSIZEGRIP = 0x0008;
const DSS_NORMAL = 0x0000;
const IS_TEXT_UNICODE_SIGNATURE = 0x0008;
const EC_LEFTMARGIN = 0x0001;
const szOID_PKCS_7_ENCRYPTED = "1.2.840.113549.1.7.6";
const SEE_MASK_DOENVSUBST = 0x00000200;
const PD_RESULT_CANCEL = 0;
const RPC_C_AUTHN_LEVEL_CONNECT = 2;
const IMAGE_SCN_ALIGN_512BYTES = 0x00A00000;
const URLPOLICY_JAVA_HIGH = 0x00010000;
const __MSVCRT_VERSION__ = 0x0700;
const DRIVE_UNKNOWN = 0;
const DMLERR_UNADVACKTIMEOUT = 0x4010;
const LANG_HAUSA = 0x68;
const URLPOLICY_DISALLOW = 0x03;
const ERROR_IPSEC_IKE_SRVACQFAIL = 13855;
const ERROR_NOT_REGISTRY_FILE = 1017;
const CERT_SET_PROPERTY_INHIBIT_PERSIST_FLAG = 0x40000000;
const IMAGE_REL_CEE_ABSOLUTE = 0x0000;
const STDOLE_MINORVERNUM = 0x0;
const SPIF_UPDATEINIFILE = 0x0001;
const LPD_STEREO = 0x00000002;
const ERROR_CRC = 23;
const IMAGE_REL_AMD64_ADDR32 = 0x0002;
const FIEF_FLAG_PEEK = 0x2;
const GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A = "GetSystemWow64DirectoryA";
const DNS_ERROR_ZONE_CONFIGURATION_ERROR = 9604;
const GMMP_USE_DISPLAY_POINTS = 1;
const __ORDER_PDP_ENDIAN__ = 3412;
const szOID_RSA_MD2RSA = "1.2.840.113549.1.1.2";
const CERT_STORE_PROV_CONTROL_FUNC = 13;
const CERT_AUTH_ROOT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME = "SyncDeltaTime";
const VK_HELP = 0x2F;
const MS_DEF_DSS_PROV_A = "Microsoft Base DSS Cryptographic Provider";
const SSWF_DISPLAY = 3;
const CHANGER_IEPORT_USER_CONTROL_OPEN = 0x80000080;
const ERROR_ACCESS_DENIED = 5;
const PAGE_READONLY = 0x02;
const ERROR_DS_DRA_SOURCE_DISABLED = 8456;
const MDM_SHIFT_V120_ML = 0x6;
const FILE_DEVICE_DFS_FILE_SYSTEM = 0x00000035;
const XACT_E_TIP_DISABLED = 0x8004D023;
const OUT_OUTLINE_PRECIS = 8;
const WM_MDITILE = 0x0226;
const szOID_KP_EFS = "1.3.6.1.4.1.311.10.3.4";
const MOUSE_VIRTUAL_DESKTOP = 0x02;
const CALLBACK_STREAM_SWITCH = 0x1;
const DMPAPER_P32K_ROTATED = 107;
const MS_DEF_DSS_DH_PROV_A = "Microsoft Base DSS and Diffie-Hellman Cryptographic Provider";
const DNS_ERROR_NUMERIC_NAME = 9561;
const NTM_DSIG = 0x00200000;
const MS_DEF_DSS_DH_PROV_W = "Microsoft Base DSS and Diffie-Hellman Cryptographic Provider";
const CRYPT_FLAG_SSL2 = 0x2;
const DDL_READONLY = 0x0001;
const SM_CYFRAME = 33;
const SCS_POSIX_BINARY = 4;
const CRYPT_LITTLE_ENDIAN = 0x1;
const JOB_STATUS_OFFLINE = 0x00000020;
const SW_NORMAL = 1;
const LANG_ROMANSH = 0x17;
const ERROR_TOO_MANY_SEM_REQUESTS = 103;
const SPI_SETGRIDGRANULARITY = 0x0013;
const DM_PELSWIDTH = 0x00080000;
const ERROR_PRINTER_DRIVER_WARNED = 3013;
const COMADMIN_E_NOTCHANGEABLE = 0x8011042A;
const LANG_KHMER = 0x53;
const ERROR_INVALID_DRIVE = 15;
const C1_LOWER = 0x0002;
const TPM_HORNEGANIMATION = 0x0800;
const LANG_TSWANA = 0x32;
const CMSG_HASH_ALGORITHM_PARAM = 20;
const MS_DEF_DSS_PROV_W = "Microsoft Base DSS Cryptographic Provider";
const DSPRINT_REPUBLISH = 0x00000008;
const AF_INET = 2;
const WM_QUERYNEWPALETTE = 0x030F;
const ISMEX_NOSEND = 0x00000000;
const CMC_FAIL_POP_FAILED = 9;
const SEE_MASK_CONNECTNETDRV = 0x00000080;
const MB_TYPEMASK = 0x0000000F;
const ERROR_INVALID_PRIMARY_GROUP = 1308;
const NIF_TIP = 0x00000004;
const SEARCH_ALTERNATE = 0x2;
const TAPE_DRIVE_CLEAN_REQUESTS = 0x02000000;
const SEE_MASK_UNICODE = 0x00004000;
const ERROR_FULL_BACKUP = 4004;
const VK_TAB = 0x09;
const FACILITY_CONTROL = 10;
const CMSG_OID_EXPORT_MAIL_LIST_FUNC = "CryptMsgDllExportMailList";
const WRITE_RESTRICTED = 0x8;
const CRYPT_OID_VERIFY_REVOCATION_FUNC = "CertDllVerifyRevocation";
const FILE_ADD_SUBDIRECTORY = 0x0004;
const INHERIT_ONLY_ACE = 0x8;
const LR_SHARED = 0x8000;
const CERT_RDN_VISIBLE_STRING = 9;
const ERROR_INVALID_SERVICE_CONTROL = 1052;
const IGNORE = 0;
const ERROR_IPSEC_IKE_SECLOADFAIL = 13852;
const RPC_S_UNSUPPORTED_TYPE = 1732;
const WM_POWERBROADCAST = 0x0218;
const ERROR_SXS_XML_E_MISSINGEQUALS = 14073;
const GMDI_GOINTOPOPUPS = 0x0002;
const IMAGE_REL_IA64_GPREL22 = 0x0009;
const szOID_OIWSEC_dsaComm = "1.3.14.3.2.20";
const TYPE_E_DUPLICATEID = 0x800288C6;
const OLE_E_OLEVERB = 0x80040000;
const szOID_PKIX_KP_IPSEC_TUNNEL = "1.3.6.1.5.5.7.3.6";
const CF_NOSIMULATIONS = 0x1000;
const APPCOMMAND_BROWSER_HOME = 7;
const szOID_INFOSEC_mosaicSignature = "2.16.840.1.101.2.1.1.2";
const FILE_SYSTEM_NOT_SUPPORT = 6;
const IP_MULTICAST_IF = 2;
const CRL_FIND_ANY = 0;
const DDL_EXCLUSIVE = 0x8000;
const SHTDN_REASON_MINOR_HOTFIX = 0x00000011;
const URLACTION_CHANNEL_SOFTDIST_MIN = 0x00001E00;
const ALG_SID_AES_256 = 16;
const MIXER_OBJECTF_AUX = 0x50000000;
const MHDR_ISSTRM = 0x00000008;
const EXCEPTION_UNWINDING = 0x2;
const CRYPT_X942_KEY_LENGTH_BYTE_LENGTH = 4;
const SHGNLI_PREFIXNAME = 0x000000002;
const TA_LEFT = 0;
const PIPE_TYPE_BYTE = 0x0;
const CF_DSPTEXT = 0x0081;
const SM_CYFOCUSBORDER = 84;
const CS_CLASSDC = 0x0040;
const PC_RECTANGLE = 2;
const CF_NOVECTORFONTS = 0x800;
const ERROR_DS_CONSTRAINT_VIOLATION = 8239;
const VFT2_DRV_SOUND = 0x00000009;
const CERT_END_ENTITY_SUBJECT_FLAG = 0x40;
const APPCOMMAND_PASTE = 38;
const MCI_GETDEVCAPS_CAN_SAVE = 0x00000009;
const CO_E_NOMATCHINGNAMEFOUND = 0x80010131;
const SPI_SETHIGHCONTRAST = 0x0043;
const SET_MIRROR_MODE = 4110;
const WM_MENUGETOBJECT = 0x0124;
const PP_UNIQUE_CONTAINER = 36;
const CERT_REGISTRY_STORE_CLIENT_GPT_FLAG = 0x80000000;
const MCI_OVLY_WHERE_FRAME = 0x00080000;
const LANG_TIGRIGNA = 0x73;
const MA_ACTIVATEANDEAT = 2;
const HEAP_ZERO_MEMORY = 0x00000008;
const CRYPT_VOLATILE = 0x1000;
const RPC_EEINFO_VERSION = 1;
const VK_NUMLOCK = 0x90;
const ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 8450;
const szOID_NTDS_REPLICATION = "1.3.6.1.4.1.311.25.1";
const WM_MEASUREITEM = 0x002C;
const CF_DIBV5 = 17;
const SWP_NOACTIVATE = 0x0010;
const CO_E_ERRORINAPP = 0x800401F7;
const CERT_VERIFY_NO_TIME_CHECK_FLAG = 0x4;
const _HEAPBADNODE = -4;
const CMSG_VERIFY_SIGNER_PUBKEY = 1;
const THREAD_BASE_PRIORITY_IDLE = -15;
const FR_MATCHKASHIDA = 0x40000000;
const PROCESS_DUP_HANDLE = 0x0040;
const IN_CLASSA_MAX = 128;
const chx8 = 0x0417;
const ASPECTXY = 44;
const ERROR_INVALID_WORKSTATION = 1329;
const RTL_CRITICAL_SECTION_ALL_FLAG_BITS = 0xFF000000;
const IGIMII_INPUTTOOLS = 0x0040;
const CRYPT_FORMAT_RDN_CRLF = 0x200;
const NTE_PROV_TYPE_NO_MATCH = 0x8009001B;
const LOCALE_NAME_MAX_LENGTH = 85;
const EMR_PLGBLT = 79;
const BS_MULTILINE = 0x00002000;
const MIDIPATCHSIZE = 128;
const CERT_STORE_PROV_NO_PERSIST_FLAG = 0x4;
const GUI_INMOVESIZE = 0x00000002;
const MDM_PROTOCOLID_V120 = 0x5;
const ERROR_MEDIUM_NOT_ACCESSIBLE = 4323;
const TAPE_DRIVE_TENSION_IMMED = 0x80000040;
const JOY_RETURNV = 0x00000020;
const DMDITHER_GRAYSCALE = 10;
const KF_DLGMODE = 0x0800;
const WM_NOTIFYFORMAT = 0x0055;
const CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG = 0x40000;
const UPDFCACHE_ONSTOPCACHE = 0x4;
const CO_E_INIT_SCM_FILE_MAPPING_EXISTS = 0x8000400F;
const CBS_SORT = 0x0100;
const SEC_E_KDC_UNKNOWN_ETYPE = 0x80090342;
const MDM_MASK_HDLCPPP_AUTH = 0x7<<3;
const USER_CALL_NEW_CORRELATION_DESC = 0x0200;
const URLACTION_SCRIPT_OVERRIDE_SAFETY = 0x00001401;
const IMAGE_REL_ALPHA_REFHI = 0x000A;
const PP_APPLI_CERT = 18;
const WM_INPUT = 0x00FF;
const SCARD_PRESENT = 2;
const IMAGE_REL_SHM_RELHALF = 0x0017;
const DNS_ERROR_RCODE_SERVER_FAILURE = 9002;
const WGL_SWAP_UNDERLAY1 = 0x00010000;
const WGL_SWAP_UNDERLAY3 = 0x00040000;
const WGL_SWAP_UNDERLAY4 = 0x00080000;
const WGL_SWAP_UNDERLAY6 = 0x00200000;
const WGL_SWAP_UNDERLAY7 = 0x00400000;
const WGL_SWAP_UNDERLAY9 = 0x01000000;
const IMM_ERROR_NODATA = -1;
const SM_CXSIZE = 30;
const LOCALE_SDECIMAL = 0x0000000E;
const IME_REGWORD_STYLE_USER_LAST = 0xFFFFFFFF;
const INET_E_DOWNLOAD_FAILURE = 0x800C0008;
const ERROR_UNHANDLED_ERROR = 0xFFFFFFFF;
const PAN_LETTERFORM_INDEX = 7;
const PRODUCT_STANDARD_SERVER_V = 0x24;
const VP_TV_STANDARD_PAL_B = 0x0004;
const VP_TV_STANDARD_PAL_G = 0x00020000;
const VP_TV_STANDARD_PAL_H = 0x0010;
const VP_TV_STANDARD_PAL_N = 0x0080;
const SBM_GETRANGE = 0x00E3;
const SWP_HIDEWINDOW = 0x0080;
const MCI_STATUS_ITEM = 0x00000100;
const ERROR_VDM_DISALLOWED = 1286;
const VER_SUITE_SECURITY_APPLIANCE = 0x00001000;
const CACHE_S_SAMECACHE = 0x00040171;
const IDHOT_SNAPDESKTOP = -2;
const PSINJECT_VMRESTORE = 201;
const SCARD_E_INSUFFICIENT_BUFFER = 0x80100008;
const VK_CONVERT = 0x1C;
const URLACTION_CLIENT_CERT_PROMPT = 0x00001A04;
const IMAGE_FILE_MACHINE_MIPSFPU = 0x0366;
const PERF_DETAIL_EXPERT = 300;
const __LONG_MAX__ = 2147483647;
const CRYPT_PREGEN = 0x40;
const MDM_X75_DATA_128K = 0x2;
const CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID = 24;
const CTRY_UAE = 971;
const SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW = 0x800F0300;
const FRS_ERR_STOPPING_SERVICE = 8003;
const WM_RENDERFORMAT = 0x0305;
const ERROR_IS_JOINED = 134;
const WM_SHOWWINDOW = 0x0018;
const CERT_STORE_CTL_CONTEXT = 3;
const LOCALE_SSHORTDATE = 0x0000001F;
const ERROR_INVALID_SUB_AUTHORITY = 1335;
const WM_NCRBUTTONDOWN = 0x00A4;
const CAT_E_LAST = 0x80040161;
const PAGE_EXECUTE_READWRITE = 0x40;
const FACILITY_ITF = 4;
const ERROR_DS_LDAP_SEND_QUEUE_FULL = 8616;
const SEC_E_NO_IP_ADDRESSES = 0x80090335;
const DDL_ARCHIVE = 0x0020;
const LANG_URDU = 0x20;
const CMC_STATUS_FAILED = 2;
const TRUST_E_EXPLICIT_DISTRUST = 0x800B0111;
const BACKGROUND_BLUE = 0x10;
const LANG_MANIPURI = 0x58;
const PERF_DATA_VERSION = 1;
const WS_BORDER = 0x00800000;
const USER_MARSHAL_FC_SMALL = 3;
const SHGFI_ICON = 0x000000100;
const X3_TMPLT_INST_WORD_X = 0;
const PARTITION_NTFT = 0x80;
const CREATE_SHARED_WOW_VDM = 0x1000;
const szOID_PRODUCT_UPDATE = "1.3.6.1.4.1.311.31.1";
const PARTITION_XINT13_EXTENDED = 0x0F;
const PIDDI_THUMBNAIL = 0x00000002;
const VK_OEM_FJ_JISHO = 0x92;
const RPC_FLAGS_VALID_BIT = 0x00008000;
const STG_LAYOUT_INTERLEAVED = 0x00000001;
const ACCESS_MAX_MS_OBJECT_ACE_TYPE = 0x8;
const CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG = 0x2;
const FILE_APPEND_DATA = 0x0004;
const CMSG_RECIPIENT_INDEX_PARAM = 18;
const HTLEFT = 10;
const UPDFCACHE_ONLYIFBLANK = 0x80000000;
const TPM_VERTICAL = 0x0040;
const EMARCH_ENC_I17_SIGN_INST_WORD_POS_X = 27;
const COMADMIN_E_AUTHENTICATIONLEVEL = 0x80110413;
const IMAGE_REL_SH3_DIRECT4_LONG = 0x0008;
const IMAGE_REL_MIPS_SECREL = 0x000B;
const KP_PRECOMP_MD5 = 24;
const CRYPT_KEEP_TIME_VALID = 0x80;
const ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE = 0xB;
const SHGFI_ATTRIBUTES = 0x000000800;
const ERROR_REGISTRY_RECOVERED = 1014;
const MMIO_CREATE = 0x00001000;
const DRAGDROP_E_LAST = 0x8004010F;
const FACILITY_MEDIASERVER = 13;
const EMR_SETWINDOWORGEX = 10;
const DLGC_HASSETSEL = 0x0008;
const PROV_EC_ECNRA_FULL = 17;
const CERT_ID_KEY_IDENTIFIER = 2;
const PIPE_SERVER_END = 0x1;
const IMN_SETOPENSTATUS = 0x0008;
const szOID_LICENSE_SERVER = "1.3.6.1.4.1.311.10.6.2";
const KP_PUB_EX_VAL = 29;
const ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = 5049;
const CREATE_NO_WINDOW = 0x8000000;
const FADF_HAVEVARTYPE = 0x80;
const AW_HOR_POSITIVE = 0x00000001;
const SMART_ABORT_OFFLINE_SELFTEST = 127;
const FRS_ERR_CHILD_TO_PARENT_COMM = 8011;
const CRYPTPROTECT_CRED_REGENERATE = 0x80;
const VER_SUITE_STORAGE_SERVER = 0x00002000;
const CC_FULLOPEN = 0x2;
const IME_CONFIG_REGISTERWORD = 2;
const CLASSFACTORY_E_LAST = 0x8004011F;
const WM_STYLECHANGING = 0x007C;
const MS_ENH_DSS_DH_PROV_A = "Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider";
const ERROR_DS_SAM_INIT_FAILURE = 8504;
const MS_ENH_DSS_DH_PROV_W = "Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider";
const SC_TASKLIST = 0xF130;
const ERROR_NO_NET_OR_BAD_PATH = 1203;
const ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = 8203;
const EV_RLSD = 0x20;
const INET_E_CODE_DOWNLOAD_DECLINED = 0x800C0100;
const KP_CMS_KEY_INFO = 37;
const QS_POSTMESSAGE = 0x0008;
const DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 9620;
const IMAGE_SYM_CLASS_FAR_EXTERNAL = 0x0044;
const GCS_RESULTREADCLAUSE = 0x0400;
const TIMERR_NOERROR = 0;
const SEC_I_NO_LSA_CONTEXT = 0x00090323;
const CERTSRV_E_RESTRICTEDOFFICER = 0x80094009;
const CMSG_ENCODE_SORTED_CTL_FLAG = 0x1;
const ERROR_DEVICE_NOT_CONNECTED = 1167;
const DIB_PAL_COLORS = 1;
const GETEXTENDEDTEXTMETRICS = 256;
const CRYPT_E_NO_MATCH = 0x80092009;
const FILESYSTEM_STATISTICS_TYPE_FAT = 2;
const SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED = 0x02000000;
const SBM_SETPOS = 0x00E0;
const GCW_ATOM = -32;
const szOID_RSA_challengePwd = "1.2.840.113549.1.9.7";
const RPC_X_WRONG_PIPE_ORDER = 1831;
const MK_CONTROL = 0x0008;
const SUBLANG_ARABIC_TUNISIA = 0x07;
const URLACTION_FEATURE_MIME_SNIFFING = 0x00002100;
const PRINTER_ENUM_CONTAINER = 0x00008000;
const APPLICATION_VERIFIER_LOCK_IN_FREED_VMEM = 0x0212;
const STN_DISABLE = 3;
const CREATE_FOR_IMPORT = 1;
const ERROR_NO_DATA_DETECTED = 1104;
const CMC_TAGGED_CERT_REQUEST_CHOICE = 1;
const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 0x0400;
const PS_TYPE_MASK = 0x000F0000;
const CONNDLG_HIDE_BOX = 0x00000008;
const ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 3006;
const CERT_STORE_PROV_READ_CRL_FUNC = 5;
const PRINTER_ATTRIBUTE_NETWORK = 0x00000010;
const EMR_GLSRECORD = 102;
const _WRITE_ABORT_MSG = 0x1;
const SET_FEATURE_IN_REGISTRY = 0x00000004;
const EMR_MAX = 122;
const szOID_PKCS_7_SIGNED = "1.2.840.113549.1.7.2";
const SETXOFF = 1;
const LGRPID_WESTERN_EUROPE = 0x0001;
const EMR_WIDENPATH = 66;
const PIDMSI_OWNER = 0x00000008;
const SM_CYCAPTION = 4;
const DC_INBUTTON = 0x0010;
const MEVT_F_CALLBACK = 0x40000000;
const VFT2_DRV_PRINTER = 0x00000001;
const SPAPI_E_LINE_NOT_FOUND = 0x800F0102;
const __DEC64_MIN_EXP__ = -382;
const BST_INDETERMINATE = 0x0002;
const MCI_OVLY_PUT_DESTINATION = 0x00040000;
const CERT_LDAP_STORE_UNBIND_FLAG = 0x80000;
const szOID_OIWDIR_SIGN = "1.3.14.7.2.3";
const CERT_TRUST_PUB_CHECK_TIMESTAMP_REV_FLAG = 0x200;
const SPI_SETSERIALKEYS = 0x003F;
const PFD_DRAW_TO_WINDOW = 0x00000004;
const ERROR_SUCCESS_RESTART_REQUIRED = 3011;
const CF_UNICODETEXT = 13;
const SM_CXICONSPACING = 38;
const DISP_CHANGE_BADFLAGS = -4;
const LANG_CHINESE_SIMPLIFIED = 0x04;
const CERT_RDN_ANY_TYPE = 0;
const TPM_CENTERALIGN = 0x0004;
const MDMSPKRFLAG_ON = 0x00000004;
const CMSG_HASHED = 5;
const CMSG_KEY_TRANS_ENCRYPT_FREE_PARA_FLAG = 0x1;
const TIME_MS = 0x0001;
const MAP_FOLDDIGITS = 0x00000080;
const CRYPT_MODE_CTS = 5;
const CO_E_NOMATCHINGSIDFOUND = 0x8001012F;
const OFN_ENABLETEMPLATEHANDLE = 0x80;
const STGM_DIRECT_SWMR = 0x00400000;
const CRYPT_E_BAD_ENCODE = 0x80092002;
const ERROR_IPSEC_IKE_BENIGN_REINIT = 13878;
const SM_SWAPBUTTON = 23;
const __amd64__ = 1;
const EMR_ENDPATH = 60;
const LBS_OWNERDRAWVARIABLE = 0x0020;
const ERROR_INVALID_DLL = 1154;
const ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = 5032;
const MCI_LOAD = 0x0850;
const GM_LAST = 2;
const CERT_TRUST_INVALID_EXTENSION = 0x100;
const MINGW_DDRAW_VERSION = 7;
const WM_ASKCBFORMATNAME = 0x030C;
const TOKEN_ADJUST_SESSIONID = 0x0100;
const AF_NETBIOS = 17;
const CW_USEDEFAULT = 0x80000000;
const FILE_NO_EA_KNOWLEDGE = 0x00000200;
const EMR_MIN = 1;
const EIMES_COMPLETECOMPSTRKILLFOCUS = 0x0004;
const CERT_PROT_ROOT_DISABLE_CURRENT_USER_FLAG = 0x1;
const MDM_X75_DATA_64K = 0x1;
const IGP_SELECT = 0x00000018;
const MCI_FORMAT_MSF = 2;
const ERROR_CONTROLLING_IEPORT = 4329;
const STGM_PRIORITY = 0x00040000;
const FORMAT_MESSAGE_ALLOCATE_BUFFER = 0x100;
const NIIF_INFO = 0x00000001;
const OLEOBJ_S_LAST = 0x0004018F;
const APPCOMMAND_MEDIA_PLAY = 46;
const SUBLANG_KHMER_CAMBODIA = 0x01;
const ERROR_DS_IS_LEAF = 8243;
const FILE_TYPE_REMOTE = 0x8000;
const LBS_WANTKEYBOARDINPUT = 0x0400;
const CERT_STORE_NO_CRL_FLAG = 0x10000;
const EVENTLOG_SEEK_READ = 0x0002;
const URLACTION_HTML_JAVA_RUN = 0x00001605;
const MB_COMPOSITE = 0x00000002;
const ERROR_PATCH_TARGET_NOT_FOUND = 1642;
const CERT_COMPARE_KEY_IDENTIFIER = 15;
const ERROR_IPSEC_IKE_SA_REAPED = 13808;
const SCHANNEL_MAC_KEY = 0x0;
const HTBOTTOM = 15;
const CRYPT_E_ASN1_RULE = 0x8009310D;
const PSINJECT_SHOWPAGE = 105;
const PRINTER_NOTIFY_FIELD_TOTAL_BYTES = 0x18;
const CERT_E_CRITICAL = 0x800B0105;
const DRAGDROP_E_INVALIDHWND = 0x80040102;
const SET_FEATURE_ON_THREAD_INTRANET = 0x00000010;
const ALG_SID_DESX = 4;
const ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 8503;
const MNC_IGNORE = 0;
const STATE_SYSTEM_COLLAPSED = 0x00000400;
const edt10 = 0x0489;
const KP_SERVER_RANDOM = 22;
const EMR_STRETCHDIBITS = 81;
const ERROR_SERVICE_REQUEST_TIMEOUT = 1053;
const szOID_NETSCAPE_CA_POLICY_URL = "2.16.840.1.113730.1.8";
const CRYPT_E_INVALID_INDEX = 0x80091008;
const CERTSRV_E_INVALID_CA_CERTIFICATE = 0x80094005;
const MNS_AUTODISMISS = 0x10000000;
const MCI_DEVTYPE_SCANNER = 518;
const ERROR_CLUSTER_NODE_PAUSED = 5070;
const MOVEFILE_COPY_ALLOWED = 0x2;
const CERT_TRUST_HAS_EXACT_MATCH_ISSUER = 0x1;
const DS_3DLOOK = 0x0004;
const CBS_NOINTEGRALHEIGHT = 0x0400;
const COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED = 0x80110817;
const SEC_E_ENCRYPT_FAILURE = 0x80090329;
const ERROR_LOGIN_WKSTA_RESTRICTION = 1240;
const VFT_VXD = 0x00000005;
const CRYPT_GET_URL_FROM_PROPERTY = 0x1;
const COMPRESSION_ENGINE_MAXIMUM = 0x0100;
const szOID_KP_KEY_RECOVERY_AGENT = "1.3.6.1.4.1.311.21.6";
const HCF_HIGHCONTRASTON = 0x00000001;
const EXPO_OFFLOAD_REG_VALUE = "ExpoOffload";
const OSS_CANT_CLOSE_TRACE_FILE = 0x8009302E;
const OF_SHARE_DENY_WRITE = 0x20;
const ERROR_DS_SORT_CONTROL_MISSING = 8261;
const CHANGER_CLEANER_OPS_NOT_SUPPORTED = 0x80000040;
const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE = 0x0040;
const CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG = 0x4;
const IMAGE_SYM_TYPE_PCODE = 0x8000;
const FS_CYRILLIC = 0x00000004;
const WGL_SWAP_OVERLAY1 = 0x00000002;
const MCI_VD_SEEK_REVERSE = 0x00010000;
const CRYPT_LAST_OID_GROUP_ID = 9;
const RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO = 0x01000000;
const NIM_SETFOCUS = 0x00000003;
const CERT_CHAIN_TIMESTAMP_TIME = 0x200;
const CMSG_RECIPIENT_COUNT_PARAM = 17;
const CTRL_SHUTDOWN_EVENT = 6;
const SUBLANG_AZERI_CYRILLIC = 0x02;
const ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 8493;
const CRYPT_USER_KEYSET = 0x1000;
const POWER_ACTION_DISABLE_WAKES = 0x40000000;
const CMSG_CTRL_VERIFY_SIGNATURE_EX = 19;
const CBN_EDITCHANGE = 5;
const MCI_WAVE_INPUT = 0x00400000;
const GCLP_HCURSOR = -12;
const IMAGE_SYM_TYPE_ENUM = 0x000A;
const CDERR_STRUCTSIZE = 0x0001;
const HELP_SETCONTENTS = 0x0005;
const VARIANT_CALENDAR_GREGORIAN = 0x40;
const VIEW_E_LAST = 0x8004014F;
const CHANGER_VOLUME_UNDEFINE = 0x01000000;
const WM_IME_KEYDOWN = 0x0290;
const SUBLANG_ICELANDIC_ICELAND = 0x01;
const ENABLE_PROCESSED_INPUT = 0x1;
const ERROR_BIDI_ERROR_BASE = 13000;
const FILE_SUPPORTS_USN_JOURNAL = 0x02000000;
const SEC_E_MAX_REFERRALS_EXCEEDED = 0x80090338;
const IMAGE_REL_PPC_SECREL = 0x000B;
const SOUND_SYSTEM_BEEP = 3;
const DC_FIELDS = 1;
const RPC_NCA_FLAGS_IDEMPOTENT = 0x00000001;
const PARAMFLAG_FHASDEFAULT = 0x20;
const STGFMT_DOCFILE = 5;
const CO_E_ACESINWRONGORDER = 0x8001013A;
const szOID_DESCRIPTION = "2.5.4.13";
const CERT_REGISTRY_STORE_LM_GPT_FLAG = 0x1000000;
const stc19 = 0x0452;
const STG_S_CONVERTED = 0x00030200;
const CERT_NAME_UPN_TYPE = 8;
const PP_PROVTYPE = 16;
const DEFAULT_GUI_FONT = 17;
const ERROR_INVALID_SEGDPL = 198;
const TRUST_E_BAD_DIGEST = 0x80096010;
const OUT_STROKE_PRECIS = 3;
const URLPOLICY_LOG_ON_ALLOW = 0x40;
const _MAX_FNAME = 256;
const ALG_SID_SHA_512 = 14;
const SPAPI_E_NON_WINDOWS_DRIVER = 0x800F022E;
const CHANGER_VOLUME_IDENTIFICATION = 0x00100000;
const URLACTION_HTML_USERDATA_SAVE = 0x00001606;
const META_OFFSETCLIPRGN = 0x0220;
const MAXIMUM_WAIT_OBJECTS = 64;
const HSHELL_ACTIVATESHELLWINDOW = 3;
const NTM_TT_OPENTYPE = 0x00040000;
const CERT_RENEWAL_PROP_ID = 64;
const CS_E_NO_CLASSSTORE = 0x80040168;
const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION = 0x0200;
const CRYPT_OID_DECODE_OBJECT_FUNC = "CryptDllDecodeObject";
const ERROR_BAD_VALIDATION_CLASS = 1348;
const SELECTDIB = 41;
const szOID_RSA_RSA = "1.2.840.113549.1.1.1";
const NUMBRUSHES = 16;
const LOCK_UNLOCK_KEYPAD = 0x04;
const ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES = 9;
const MF_USECHECKBITMAPS = 0x00000200;
const DMDUP_SIMPLEX = 1;
const CTRY_PANAMA = 507;
const MSSIPOTF_E_BAD_OFFSET_TABLE = 0x80097005;
const ERROR_DS_DECODING_ERROR = 8253;
const PARTITION_FAT32 = 0x0B;
const ERROR_DISK_OPERATION_FAILED = 1127;
const CO_E_START_SERVICE_FAILURE = 0x8000401C;
const MMIO_READWRITE = 0x00000002;
const SPI_SETSHOWSOUNDS = 0x0039;
const PRINTER_CHANGE_ALL = 0x7777FFFF;
const DISP_CHANGE_RESTART = 1;
const EMR_REALIZEPALETTE = 52;
const CTRY_CZECH = 420;
const WNNC_NET_9TILES = 0x00090000;
const DT_WORD_ELLIPSIS = 0x00040000;
const DSS_RIGHT = 0x8000;
const PAN_MIDLINE_STANDARD_POINTED = 3;
const ERROR_DS_GOVERNSID_MISSING = 8410;
const SESSION_ESTABLISHED = 0x03;
const SPI_SETSHOWIMEUI = 0x006F;
const IME_THOTKEY_SHAPE_TOGGLE = 0x71;
const CLIP_LH_ANGLES = 1<<4;
const PAN_XHEIGHT_INDEX = 9;
const MCI_VD_STATUS_DISC_SIZE = 0x00004006;
const SCARD_READER_TYPE_USB = 0x20;
const PAN_CONTRAST_MEDIUM_LOW = 5;
const ERROR_DELETING_ICM_XFORM = 2019;
const RPC_E_CANTPOST_INSENDCALL = 0x80010003;
const DISPID_VALUE = 0;
const OLEOBJ_S_INVALIDHWND = 0x00040182;
const WS_EX_WINDOWEDGE = 0x00000100;
const IMAGE_FILE_EXECUTABLE_IMAGE = 0x0002;
const NCBUNLINK = 0x70;
const PS_JOIN_MITER = 0x00002000;
const CERT_LDAP_STORE_OPENED_FLAG = 0x40000;
const szOID_INFOSEC_sdnsIntegrity = "2.16.840.1.101.2.1.1.5";
const CC_ELLIPSES = 8;
const ERROR_NOT_SUPPORTED_ON_SBS = 1254;
const CERT_CHAIN_CACHE_END_CERT = 0x1;
const WM_APPCOMMAND = 0x0319;
const ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = 5053;
const szOID_X957_SHA1DSA = "1.2.840.10040.4.3";
const szOID_AUTO_ENROLL_CTL_USAGE = "1.3.6.1.4.1.311.20.1";
const SID_REVISION = 1;
const NFR_UNICODE = 2;
const OSS_ACCESS_SERIALIZATION_ERROR = 0x80093013;
const ERROR_EOM_OVERFLOW = 1129;
const SPAPI_E_MACHINE_UNAVAILABLE = 0x800F0222;
const IMAGE_SYM_TYPE_DWORD = 0x000F;
const BACKUP_INVALID = 0x0;
const ERROR_WINDOW_OF_OTHER_THREAD = 1408;
const __INT8_MAX__ = 127;
const __PIC__ = 1;
const WHDR_DONE = 0x00000001;
const ERROR_DS_TREE_DELETE_NOT_FINISHED = 8397;
const CB_FINDSTRINGEXACT = 0x0158;
const szOID_RSA_RC2CBC = "1.2.840.113549.3.2";
const CERT_SIMPLE_NAME_STR = 1;
const ERROR_OPEN_FAILED = 110;
const OUT_SCREEN_OUTLINE_PRECIS = 9;
const CONNDLG_RO_PATH = 0x00000001;
const EMR_ELLIPSE = 42;
const APPLICATION_VERIFIER_NO_BREAK = 0x20000000;
const SPAPI_E_NO_BACKUP = 0x800F0103;
const EMR_SETMETARGN = 28;
const ERROR_RESOURCE_DATA_NOT_FOUND = 1812;
const ERROR_CTX_CLIENT_QUERY_TIMEOUT = 7040;
const RPC_NCA_FLAGS_DEFAULT = 0x00000000;
const SERVICE_CONTROL_INTERROGATE = 0x00000004;
const IMAGE_REL_AM_SECREL = 0x0007;
const ERROR_WMI_ALREADY_ENABLED = 4206;
const LOCALE_IPAPERSIZE = 0x0000100A;
const CP_INSTALLED = 0x00000001;
const WNCON_NOTROUTED = 0x00000002;
const CTRY_IRAN = 981;
const CTRY_IRAQ = 964;
const CRYPT_DECODE_TO_BE_SIGNED_FLAG = 0x2;
const CF_HDROP = 15;
const ERROR_SETCOUNT_ON_BAD_LB = 1433;
const SOFTDIST_FLAG_USAGE_AUTOINSTALL = 0x00000004;
const ERROR_SXS_XML_E_INVALIDENCODING = 14067;
const SUBLANG_SPANISH_PUERTO_RICO = 0x14;
const RPC_S_PROTSEQ_NOT_FOUND = 1744;
const SCARD_SPECIFIC = 6;
const stc26 = 0x0459;
const MDM_ANALOG_RLP_OFF = 0x1;
const UNRECOVERED_WRITES_VALID = 0x00000002;
const IGIMII_OTHER = 0x0020;
const MAX_MONITORS = 4;
const LCMAP_UPPERCASE = 0x00000200;
const NOPARITY = 0;
const MCI_ANIM_STATUS_FORWARD = 0x00004002;
const CTRY_SOUTH_AFRICA = 27;
const ERROR_SXS_DUPLICATE_PROGID = 14026;
const ERROR_INVALID_PRIORITY = 1800;
const SE_GROUP_DEFAULTED = 0x0002;
const ERROR_IPSEC_IKE_INVALID_SITUATION = 13863;
const GGO_BITMAP = 1;
const MIXER_SETCONTROLDETAILSF_QUERYMASK = 0x0000000F;
const CTRY_MALAYSIA = 60;
const IME_CHOTKEY_IME_NONIME_TOGGLE = 0x10;
const IMAGE_REL_ARM_SECTION = 0x000E;
const GW_HWNDNEXT = 2;
const CB_DELETESTRING = 0x0144;
const VS_FFI_STRUCVERSION = 0x00010000;
const ERROR_CONNECTED_OTHER_PASSWORD = 2108;
const OLE_E_PROMPTSAVECANCELLED = 0x8004000C;
const CTRY_SYRIA = 963;
const cPRIV_KEY_CACHE_MAX_ITEMS_DEFAULT = 20;
const POLICY_SHOWREASONUI_NEVER = 0;
const TAPE_DRIVE_SET_EOT_WZ_SIZE = 0x00400000;
const RPC_C_AUTHZ_NONE = 0;
const DFC_POPUPMENU = 5;
const SPAPI_E_DUPLICATE_FOUND = 0x800F0202;
const MDM_MASK_X75_DATA = 0x7;
const CTRY_HONDURAS = 504;
const RPC_C_MQ_CLEAR_ON_OPEN = 0x0002;
const RPC_C_HTTP_AUTHN_TARGET_PROXY = 2;
const CRYPT_MODE_OFB = 3;
const SPI_GETNONCLIENTMETRICS = 0x0029;
const IS_TEXT_UNICODE_DBCS_LEADBYTE = 0x0400;
const ERROR_IPSEC_IKE_INVALID_HASH_SIZE = 13872;
const CA_NEGATIVE = 0x0001;
const CMSG_KEY_AGREE_EPHEMERAL_KEY_CHOICE = 1;
const SUBLANG_ROMANSH_SWITZERLAND = 0x01;
const TIME_CALLBACK_FUNCTION = 0x0000;
const ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = 8346;
const ERROR_DS_DRA_RPC_CANCELLED = 8455;
const CRL_REASON_KEY_COMPROMISE = 1;
const VK_OEM_NEC_EQUAL = 0x92;
const MF_MOUSESELECT = 0x00008000;
const EM_SCROLL = 0x00B5;
const szOID_OIWSEC_dhCommMod = "1.3.14.3.2.16";
const CBN_SELENDCANCEL = 10;
const IMAGE_REL_ARM_SECREL = 0x000F;
const SPAPI_E_INVALID_HWPROFILE = 0x800F0210;
const WAVE_FORMAT_QUERY = 0x0001;
const ABN_POSCHANGED = 0x0000001;
const ERROR_DS_CLIENT_LOOP = 8259;
const MK_E_FIRST = 0x800401E0;
const WS_EX_NOPARENTNOTIFY = 0x00000004;
const TIME_CALLBACK_EVENT_SET = 0x0010;
const CERTSRV_E_ISSUANCE_POLICY_REQUIRED = 0x8009480C;
const PSD_DISABLEPAGEPAINTING = 0x80000;
const MDMSPKR_DIAL = 0x00000001;
const IMAGE_REL_CEF_SECTION = 0x0004;
const CAL_SABBREVMONTHNAME1 = 0x00000022;
const COMADMIN_E_INVALID_PARTITION = 0x8011080B;
const CAL_SABBREVMONTHNAME3 = 0x00000024;
const CAL_SABBREVMONTHNAME4 = 0x00000025;
const CAL_SABBREVMONTHNAME5 = 0x00000026;
const CAL_SABBREVMONTHNAME6 = 0x00000027;
const CAL_SABBREVMONTHNAME7 = 0x00000028;
const IME_ESC_QUERY_SUPPORT = 0x0003;
const PAN_SERIFSTYLE_INDEX = 1;
const CTL_FIND_SAME_USAGE_FLAG = 0x1;
const PSBTN_CANCEL = 5;
const GL_ID_REVERSECONVERSION = 0x00000029;
const SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC = "SchemeDllRetrieveEncodedObjectW";
const VK_SCROLL = 0x91;
const SECURITY_SQOS_PRESENT = 0x100000;
const VOLUME_UPGRADE_SCHEDULED = 0x00000002;
const COLOR_BTNFACE = 15;
const KP_CLEAR_KEY = 27;
const ENUM_S_LAST = 0x000401BF;
const MCI_SEQ_STATUS_MASTER = 0x00004008;
const MNC_EXECUTE = 2;
const WM_INPUTLANGCHANGEREQUEST = 0x0050;
const POWER_FORCE_TRIGGER_RESET = 0x80000000;
const ERROR_SXS_DUPLICATE_CLSID = 14023;
const DNS_WARNING_DOMAIN_UNDELETED = 9716;
const DMCOLOR_COLOR = 2;
const SCARD_T0_HEADER_LENGTH = 7;
const DRAGDROP_S_USEDEFAULTCURSORS = 0x00040102;
const FIEF_FLAG_SKIP_INSTALLED_VERSION_CHECK = 0x4;
const PRODUCT_DATACENTER_SERVER = 0x8;
const TRUST_E_BASIC_CONSTRAINTS = 0x80096019;
const ST_CONNECTED = 0x0001;
const ELEMENT_STATUS_INVERT = 0x00400000;
const ERROR_CLUSCFG_ROLLBACK_FAILED = 5902;
const USN_DELETE_VALID_FLAGS = 0x00000003;
const ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = 8612;
const TC_IA_ABLE = 0x00000400;
const ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = 14078;
const NORM_IGNORESYMBOLS = 0x00000004;
const RRF_RT_REG_NONE = 0x00000001;
const ERROR_WMI_INVALID_REGINFO = 4211;
const MCI_SEQ_SET_TEMPO = 0x00010000;
const OBJ_PAL = 5;
const NRC_INUSE = 0x16;
const MCI_STATUS_LENGTH = 0x00000001;
const ESB_DISABLE_DOWN = 0x0002;
const SPAPI_E_CANT_LOAD_CLASS_ICON = 0x800F020C;
const CF_SCALABLEONLY = 0x20000;
const LLKHF_INJECTED = 0x00000010;
const szOID_REASON_CODE_HOLD = "2.5.29.23";
const VK_OEM_AX = 0xE1;
const IMAGE_ICON = 1;
const IME_ESC_AUTOMATA = 0x1009;
const MCI_SET_TIME_FORMAT = 0x00000400;
const GCLP_MENUNAME = -8;
const MK_E_SYNTAX = 0x800401E4;
const STATE_SYSTEM_DEFAULT = 0x00000100;
const GET_FEATURE_FROM_THREAD_TRUSTED = 0x00000020;
const STM_MSGMAX = 0x0174;
const EMR_POLYBEZIER16 = 85;
const STG_E_INVALIDPOINTER = 0x80030009;
const CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG = 0x10000;
const SS_REALSIZECONTROL = 0x00000040;
const CRYPT_FLAG_TLS1 = 0x8;
const OBJ_PEN = 1;
const IMAGE_FILE_AGGRESIVE_WS_TRIM = 0x0010;
const EXCEPTION_MAXIMUM_PARAMETERS = 15;
const VK_SHIFT = 0x10;
const TECHNOLOGY = 2;
const IMAGE_REL_ALPHA_BRADDR = 0x0007;
const RDH_RECTANGLES = 1;
const MEVT_F_LONG = 0x80000000;
const BN_DOUBLECLICKED = 5;
const XACT_E_DEST_TMNOTAVAILABLE = 0x8004D022;
const IMAGE_REL_AMD64_REL32 = 0x0004;
const ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = 13839;
const URLACTION_SHELL_WEBVIEW_VERB = 0x00001805;
const ERROR_INVALID_SHOWWIN_COMMAND = 1449;
const SE_ERR_ASSOCINCOMPLETE = 27;
const HORZRES = 8;
const FILE_DEVICE_DISK = 0x00000007;
const MMIO_UNICODEPROC = 0x01000000;
const SCHED_E_TASK_NOT_RUNNING = 0x8004130B;
const IMAGE_FILE_MACHINE_R4000 = 0x0166;
const S_PERIOD1024 = 1;
const DMDITHER_RESERVED6 = 6;
const DMDITHER_RESERVED7 = 7;
const DMDITHER_RESERVED8 = 8;
const DMDITHER_RESERVED9 = 9;
const ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = 5064;
const PRINTER_NOTIFY_FIELD_COMMENT = 0x05;
const REG_BINARY = 3;
const ERROR_IPSEC_IKE_NO_CERT = 13806;
const MDM_V110_SPEED_57DOT6K = 0xA;
const APPLICATION_VERIFIER_COM_SMUGGLED_PROXY = 0x0409;
const IP_DEFAULT_MULTICAST_TTL = 1;
const DNS_ERROR_BAD_PACKET = 9502;
const MDMSPKR_ON = 0x00000002;
const LBS_NOINTEGRALHEIGHT = 0x0100;
const WM_CTLCOLORDLG = 0x0136;
const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT = 0x8000;
const PAGE_READWRITE = 0x04;
const CERTSRV_E_NO_DB_SESSIONS = 0x8009400F;
const KL_NAMELENGTH = 9;
const OFFLINE_STATUS_INCOMPLETE = 0x0004;
const PIPE_READMODE_MESSAGE = 0x2;
const MWMO_INPUTAVAILABLE = 0x0004;
const RC_BITMAP64 = 8;
const CERT_NAME_SIMPLE_DISPLAY_TYPE = 4;
const ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 8572;
const OLEOBJ_E_LAST = 0x8004018F;
const SCARD_E_WRITE_TOO_MANY = 0x80100028;
const S_SERBDNT = -5;
const SYSTEM_CACHE_ALIGNMENT_SIZE = 64;
const ERROR_DS_COUNTING_AB_INDICES_FAILED = 8428;
const CERT_CLOSE_STORE_CHECK_FLAG = 0x2;
const LOCALE_SMONTHNAME1 = 0x00000038;
const LOCALE_SMONTHNAME3 = 0x0000003A;
const LOCALE_SMONTHNAME5 = 0x0000003C;
const LOCALE_SMONTHNAME7 = 0x0000003E;
const LOCALE_SMONTHNAME8 = 0x0000003F;
const LOCALE_SMONTHNAME9 = 0x00000040;
const ERROR_DS_OBJECT_BEING_REMOVED = 8339;
const SELECTPAPERSOURCE = 18;
const EXCEPTION_EXIT_UNWIND = 0x4;
const SPI_GETICONTITLEWRAP = 0x0019;
const CCHDEVICENAME = 32;
const EMR_ALPHABLEND = 114;
const SCARD_E_CERTIFICATE_UNAVAILABLE = 0x8010002D;
const HCF_CONFIRMHOTKEY = 0x00000008;
const MAX_VOLUME_ID_SIZE = 36;
const X3_P_SIZE_X = 4;
const SEVERITY_ERROR = 1;
const ESB_DISABLE_LEFT = 0x0001;
const DESKTOP_READOBJECTS = 0x0001;
const SMART_NOT_SUPPORTED = 9;
const CTRY_DENMARK = 45;
const ERROR_BAD_USER_PROFILE = 1253;
const TRUE = 1;
const CLIPBRD_E_CANT_CLOSE = 0x800401D4;
const CBS_SIMPLE = 0x0001;
const MCI_SEQ_STATUS_TEMPO = 0x00004002;
const PSPROTOCOL_BCP = 1;
const WHDR_BEGINLOOP = 0x00000004;
const EM_SCROLLCARET = 0x00B7;
const MEM_E_INVALID_SIZE = 0x80080011;
const dwFORCE_KEY_PROTECTION_HIGH = 0x2;
const IMAGE_SUBSYSTEM_XBOX = 14;
const TAPE_DRIVE_ABSOLUTE_BLK = 0x80001000;
const ODA_SELECT = 0x0002;
const ERROR_BUSY_DRIVE = 142;
const MCI_DELETE = 0x0856;
const IMAGE_REL_CEF_TOKEN = 0x0006;
const szOID_OIWSEC_mdc2 = "1.3.14.3.2.19";
const DMDITHER_LINEART = 4;
const URLACTION_JAVA_CURR_MAX = 0x00001C00;
const CRYPT_E_ASN1_BADTAG = 0x8009310B;
const X3_IMM39_1_INST_WORD_POS_X = 0;
const __WINT_MAX__ = 65535;
const COMMON_LVB_TRAILING_BYTE = 0x200;
const APPCMD_CLIENTONLY = 0x00000010;
const JOYCAPS_HASR = 0x0002;
const GCS_RESULTSTR = 0x0800;
const JOYCAPS_HASU = 0x0004;
const JOYCAPS_HASV = 0x0008;
const JOYCAPS_HASZ = 0x0001;
const SPI_SETCARETWIDTH = 0x2007;
const CTRY_NORWAY = 47;
const CRYPT_E_ASN1_NOEOD = 0x80093202;
const USE___UUIDOF = 0;
const VK_KANA = 0x15;
const PP_CHANGE_PASSWORD = 7;
const CRYPT_E_CONTROL_TYPE = 0x8009100C;
const SPAPI_E_DI_FUNCTION_OBSOLETE = 0x800F023E;
const LANG_NORWEGIAN = 0x14;
const LOCALE_SLANGUAGE = 0x00000002;
const WAVE_MAPPED = 0x0004;
const PAN_WEIGHT_BLACK = 10;
const X3_IMM39_2_SIZE_X = 16;
const CDERR_FINDRESFAILURE = 0x0006;
const URLACTION_ACTIVEX_MIN = 0x00001200;
const MCI_SYSINFO = 0x0810;
const BSM_VXDS = 0x00000001;
const RPC_S_CALL_IN_PROGRESS = 1791;
const ALG_SID_EXAMPLE = 80;
const __WCHAR_MAX__ = 65535;
const AF_APPLETALK = 16;
const PRINTER_STATUS_OFFLINE = 0x00000080;
const PSH_USEPAGELANG = 0x00200000;
const FILE_PERSISTENT_ACLS = 0x00000008;
const SET_BOUNDS = 4109;
const SUBLANG_LITHUANIAN = 0x01;
const NRC_INCOMP = 0x06;
const PRF_NONCLIENT = 0x00000002;
const SE_ERR_FNF = 2;
const RPC_C_NS_DEFAULT_EXP_AGE = -1;
const szOID_GIVEN_NAME = "2.5.4.42";
const IP_DONTFRAGMENT = 9;
const PRODUCT_SB_SOLUTION_SERVER = 0x32;
const CF_NOVERTFONTS = 0x1000000;
const TAPE_DRIVE_WRITE_PROTECT = 0x00001000;
const CONTEXT_E_NOJIT = 0x8004E026;
const META_SETWINDOWORG = 0x020B;
const ERROR_OBJECT_NOT_FOUND = 4312;
const ERROR_WRONG_EFS = 6005;
const CD_LBSELSUB = 1;
const SCARD_NEGOTIABLE = 5;
const RC_BANDING = 2;
const MHDR_PREPARED = 0x00000002;
const GET_FEATURE_FROM_THREAD_LOCALMACHINE = 0x00000008;
const ERROR_SIGNAL_PENDING = 162;
const SPOOL_FILE_TEMPORARY = 0x00000002;
const CF_ENABLEHOOK = 0x8;
const CF_WAVE = 12;
const EVENT_SYSTEM_CONTEXTHELPEND = 0x000D;
const RIDEV_EXMODEMASK = 0x000000F0;
const CTRY_PHILIPPINES = 63;
const VER_BUILDNUMBER = 0x0000004;
const VIF_DIFFLANG = 0x00000008;
const WAVECAPS_LRVOLUME = 0x0008;
const LMEM_NOCOMPACT = 0x10;
const PC_POLYPOLYGON = 256;
const DNS_REGISTER = 0x0001;
const DC_MEDIATYPES = 35;
const PD_PAGENUMS = 0x2;
const LOCALE_IDEFAULTMACCODEPAGE = 0x00001011;
const GRADIENT_FILL_RECT_H = 0x00000000;
const OLE_E_WRONGCOMPOBJ = 0x8004000E;
const USN_REASON_FILE_CREATE = 0x00000100;
const GRADIENT_FILL_RECT_V = 0x00000001;
const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000;
const DISPATCH_PROPERTYGET = 0x2;
const DROPEFFECT_MOVE = 2;
const szOID_X957_DSA = "1.2.840.10040.4.1";
const ERROR_OPEN_FILES = 2401;
const CERTSRV_E_SUBJECT_DNS_REQUIRED = 0x8009480F;
const FILE_ATTRIBUTE_TEMPORARY = 0x00000100;
const TYPE_E_INVDATAREAD = 0x80028018;
const DMPAPER_NOTE = 18;
const JOB_OBJECT_LIMIT_JOB_MEMORY = 0x00000200;
const CO_E_INIT_RPC_CHANNEL = 0x8000400A;
const CONVERT10_S_LAST = 0x000401CF;
const IMAGE_REL_SH3_DIRECT32 = 0x0002;
const CONSOLE_SELECTION_NOT_EMPTY = 0x2;
const ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14015;
const META_SETBKCOLOR = 0x0201;
const __FINITE_MATH_ONLY__ = 0;
const DM_BITSPERPEL = 0x00040000;
const X3_IMM39_2_INST_WORD_POS_X = 16;
const THREAD_SUSPEND_RESUME = 0x0002;
const CERT_SYSTEM_STORE_LOCATION_SHIFT = 16;
const ERROR_DS_CROSS_REF_BUSY = 8602;
const FACILITY_STATE_MANAGEMENT = 34;
const ERROR_UNKNOWN_FEATURE = 1606;
const ERROR_NO_MORE_USER_HANDLES = 1158;
const NCBDGSENDBC = 0x22;
const OBJ_DC = 3;
const CERT_RDN_VIDEOTEX_STRING = 6;
const SS_NOPREFIX = 0x00000080;
const XST_ADVDATAACKRCVD = 16;
const CMSG_HASHED_DATA_V2 = 2;
const RESOURCEDISPLAYTYPE_FILE = 0x00000004;
const CERT_ID_ISSUER_SERIAL_NUMBER = 1;
const SCHED_E_TASK_NOT_READY = 0x8004130A;
const szOID_ANY_CERT_POLICY = "2.5.29.32.0";
const IMAGE_REL_M32R_GPREL16 = 0x0004;
const NEWFRAME = 1;
const SM_CXMINIMIZED = 57;
const ERROR_DS_INVALID_ROLE_OWNER = 8366;
const FEATURESETTING_PROTOCOL = 6;
const PROP_MED_CYDLG = 215;
const __DEC64_MAX_EXP__ = 385;
const GCP_CLASSIN = 0x00080000;
const CMC_FAIL_UNSUPORTED_EXT = 5;
const ERROR_CLUSTER_NETWORK_NOT_INTERNAL = 5060;
const LANG_ENGLISH = 0x09;
const PAGESETUPDLGORDMOTIF = 1550;
const FINDMSGSTRINGW = "commdlg_FindReplace";
const VER_SERVICEPACKMINOR = 0x0000010;
const PFD_SUPPORT_DIRECTDRAW = 0x00002000;
const DMPAPER_JENV_CHOU3_ROTATED = 86;
const APD_COPY_NEW_FILES = 0x00000008;
const SETRGBSTRINGA = "commdlg_SetRGBColor";
const SETRGBSTRINGW = "commdlg_SetRGBColor";
const URLACTION_ACTIVEX_NO_WEBOC_SCRIPT = 0x00001206;
const ERROR_BUS_RESET = 1111;
const COLOR_GRADIENTACTIVECAPTION = 27;
const CERT_RDN_PRINTABLE_STRING = 4;
const IMAGE_SYM_TYPE_VOID = 0x0001;
const SUBLANG_ITALIAN = 0x01;
const __SHRT_MAX__ = 32767;
const WM_SIZING = 0x0214;
const MSSIPOTF_E_STRUCTURE = 0x80097018;
const INET_E_RESOURCE_NOT_FOUND = 0x800C0005;
const SUBLANG_SYS_DEFAULT = 0x02;
const SHOW_OPENNOACTIVATE = 4;
const RESTORE_CTM = 4100;
const SEC_I_INCOMPLETE_CREDENTIALS = 0x00090320;
const HEBREW_CHARSET = 177;
const MCI_STATUS_POSITION = 0x00000002;
const FRS_ERR_PARENT_TO_CHILD_COMM = 8012;
const MMIO_DELETE = 0x00000200;
const EMARCH_ENC_I17_SIGN_SIZE_X = 1;
const URLACTION_SHELL_VERB = 0x00001804;
const RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN = 0x02000000;
const CBF_SKIP_UNREGISTRATIONS = 0x00100000;
const PSH_WATERMARK = 0x00008000;
const SPI_GETMOUSEDRAGOUTTHRESHOLD = 0x0084;
const DISPID_DESTRUCTOR = -7;
const szOID_OIWSEC_sha = "1.3.14.3.2.18";
const WM_WINDOWPOSCHANGING = 0x0046;
const PSCB_BUTTONPRESSED = 3;
const ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = 5079;
const RESOURCEUSAGE_CONTAINER = 0x00000002;
const CERT_SYSTEM_STORE_UNPROTECTED_FLAG = 0x40000000;
const URLACTION_SHELL_EXECUTE_LOWRISK = 0x00001808;
const TRUST_E_ACTION_UNKNOWN = 0x800B0002;
const ACCESS_PROPERTY_SET_GUID = 1;
const PAN_STROKE_INSTANT_VERT = 8;
const CERT_STORE_PROV_GET_CTL_PROPERTY_FUNC = 22;
const SCARD_READER_TYPE_VENDOR = 0xF0;
const HEAP_REALLOC_IN_PLACE_ONLY = 0x00000010;
const JOB_NOTIFY_FIELD_DEVMODE = 0x09;
const __GXX_TYPEINFO_EQUALITY_INLINE = 0;
const MCI_STATUS_READY = 0x00000007;
const MM_MAX_NUMAXES = 16;
const SPI_SETCOMBOBOXANIMATION = 0x1005;
const FILE_DEVICE_DFS = 0x00000006;
const STGM_SIMPLE = 0x08000000;
const PSPCB_CREATE = 2;
const ERROR_CLUSTERLOG_CORRUPT = 5029;
const SPI_GETSCREENSAVEACTIVE = 0x0010;
const SERVICE_INACTIVE = 0x00000002;
const SPAPI_E_NO_CLASSINSTALL_PARAMS = 0x800F0215;
const OF_VERIFY = 0x400;
const SPI_SETFOCUSBORDERWIDTH = 0x200F;
const szOID_RSA_envelopedData = "1.2.840.113549.1.7.3";
const CACHE_E_FIRST = 0x80040170;
const XST_INCOMPLETE = 1;
const MB_NOFOCUS = 0x00008000;
const CMSG_SIGNED = 2;
const PROV_DH_SCHANNEL = 18;
const ALG_SID_RC2 = 2;
const ALG_SID_RC4 = 1;
const ALG_SID_RC5 = 13;
const RPC_C_MQ_AUTHN_LEVEL_NONE = 0x0000;
const PFD_SWAP_EXCHANGE = 0x00000200;
const WAVE_ALLOWSYNC = 0x0002;
const szOID_POSTAL_CODE = "2.5.4.17";
const IME_ESC_SET_EUDC_DICTIONARY = 0x1004;
const SPAPI_E_INVALID_COINSTALLER = 0x800F0227;
const EM_LIMITTEXT = 0x00C5;
const UNLOAD_DLL_DEBUG_EVENT = 7;
const PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM = 0x37;
const PROCESSOR_HITACHI_SH3E = 10004;
const NUMRESERVED = 106;
const WM_RENDERALLFORMATS = 0x0306;
const CERT_QUERY_CONTENT_SERIALIZED_CRL = 7;
const __WINT_MIN__ = 0;
const CHANGER_VOLUME_ASSERT = 0x00400000;
const E_ACCESSDENIED = 0x80070005;
const MAX_VOLUME_TEMPLATE_SIZE = 40;
const FILE_ATTRIBUTE_READONLY = 0x00000001;
const RPC_C_CANCEL_INFINITE_TIMEOUT = -1;
const URLPOLICY_CHANNEL_SOFTDIST_PROHIBIT = 0x00010000;
const ELEMENT_STATUS_EXCEPT = 0x00000004;
const HCF_LOGONDESKTOP = 0x00000100;
const SEC_E_NO_TGT_REPLY = 0x80090334;
const RTL_VRF_FLG_FAST_FILL_HEAP = 0x00008000;
const CO_E_TRACKER_CONFIG = 0x80004030;
const CERT_QUERY_CONTENT_SERIALIZED_CTL = 6;
const ERROR_EFS_DISABLED = 6015;
const CD_LBSELADD = 2;
const RPC_C_AUTHN_GSS_SCHANNEL = 14;
const CO_E_SERVER_EXEC_FAILURE = 0x80080005;
const ERROR_NO_DATA = 232;
const DNS_ERROR_DATAFILE_PARSING = 9655;
const ERROR_IPSEC_IKE_INVALID_SIGNATURE = 13826;
const IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x0169;
const MCI_ANIM_WHERE_DESTINATION = 0x00040000;
const __WCHAR_MIN__ = 0;
const EVENT_OBJECT_HELPCHANGE = 0x8010;
const SEC_E_DELEGATION_REQUIRED = 0x80090345;
const WM_LBUTTONDBLCLK = 0x0203;
const DNS_ERROR_NEED_WINS_SERVERS = 9616;
const FILEOKSTRINGA = "commdlg_FileNameOK";
const MIXERLINE_LINEF_ACTIVE = 0x00000001;
const TAPE_DRIVE_TAPE_REMAINING = 0x00000200;
const LCID_ALTERNATE_SORTS = 0x00000004;
const TIME_CALLBACK_EVENT_PULSE = 0x0020;
const POWER_ACTION_LIGHTEST_FIRST = 0x10000000;
const szOID_OIWSEC_md4RSA = "1.3.14.3.2.2";
const ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 14075;
const szOID_OEM_WHQL_CRYPTO = "1.3.6.1.4.1.311.10.3.7";
const ROTFLAGS_ALLOWANYCLIENT = 0x2;
const ERROR_PATH_NOT_FOUND = 3;
const APPLICATION_VERIFIER_SIZE_HEAP_UNEXPECTED_EXCEPTION = 0x0618;
const CERT_PHYSICAL_STORE_OPEN_DISABLE_FLAG = 0x2;
const PSP_DLGINDIRECT = 0x00000001;
const PSINJECT_VMSAVE = 200;
const VK_LCONTROL = 0xA2;
const ODS_GRAYED = 0x0002;
const WM_SETHOTKEY = 0x0032;
const RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821;
const CTRY_AUSTRALIA = 61;
const OLE_E_STATIC = 0x8004000B;
const PSD_RETURNDEFAULT = 0x400;
const WDT_INPROC64_CALL = 0x50746457;
const CB_MSGMAX = 0x0165;
const ERROR_OBJECT_IN_LIST = 5011;
const CB_GETLBTEXT = 0x0148;
const NTE_NOT_FOUND = 0x80090011;
const PERF_SIZE_LARGE = 0x00000100;
const WM_APP = 0x8000;
const COM_RIGHTS_EXECUTE_LOCAL = 2;
const XENROLL_E_CANNOT_ADD_ROOT_CERT = 0x80095001;
const IME_SMODE_NONE = 0x0000;
const CERT_TRUST_IS_NOT_VALID_FOR_USAGE = 0x10;
const DOCKINFO_USER_SUPPLIED = 0x4;
const MIXERCONTROL_CT_CLASS_SWITCH = 0x20000000;
const SUBLANG_SPANISH_US = 0x15;
const FILE_DEVICE_DVD = 0x00000033;
const WT_EXECUTEINTIMERTHREAD = 0x00000020;
const WM_INITMENU = 0x0116;
const EMR_EXTCREATEFONTINDIRECTW = 82;
const CONTEXT_E_ABORTING = 0x8004E003;
const ERROR_NO_SUCH_MEMBER = 1387;
const ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 8473;
const SPI_GETDROPSHADOW = 0x1024;
const MIXERCONTROL_CT_CLASS_FADER = 0x50000000;
const SPAPI_E_EXPECTED_SECTION_NAME = 0x800F0000;
const MSGF_NEXTWINDOW = 6;
const NTM_TYPE1 = 0x00100000;
const PSD_DISABLEMARGINS = 0x10;
const LBS_EXTENDEDSEL = 0x0800;
const CERT_STORE_MANIFOLD_FLAG = 0x100;
const CF_PRIVATEFIRST = 0x0200;
const SUBLANG_ENGLISH_CARIBBEAN = 0x09;
const SND_MEMORY = 0x0004;
const ERROR_INVALID_NETNAME = 1214;
const MIXERCONTROL_CT_SC_METER_POLLED = 0x00000000;
const FRS_ERR_PARENT_AUTHENTICATION = 8010;
const DISP_CHANGE_NOTUPDATED = -3;
const SPI_GETDRAGFULLWINDOWS = 0x0026;
const COMADMIN_E_USER_IN_SET = 0x8011080E;
const ERROR_INSTALL_TRANSFORM_FAILURE = 1624;
const FORM_BUILTIN = 0x00000001;
const SOCK_SEQPACKET = 5;
const RETURN_SMART_STATUS = 0xDA;
const CRYPT_LDAP_SIGN_RETRIEVAL = 0x10000;
const SHTDN_REASON_MINOR_OTHER = 0x00000000;
const szOID_INFOSEC_SuiteAKeyManagement = "2.16.840.1.101.2.1.1.17";
const URLACTION_ALLOW_RESTRICTEDPROTOCOLS = 0x00002300;
const IPPORT_TIMESERVER = 37;
const ERROR_NETWORK_BUSY = 54;
const ALG_SID_RSA_ENTRUST = 3;
const LB_SETCOLUMNWIDTH = 0x0195;
const WNNC_NET_FRONTIER = 0x00170000;
const LF_FACESIZE = 32;
const CBR_128000 = 128000;
const ERROR_ALREADY_INITIALIZED = 1247;
const FILE_DIR_DISALLOWED = 9;
const CWP_SKIPDISABLED = 0x0002;
const ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = 13873;
const PROCESSOR_INTEL_PENTIUM = 586;
const EMR_RESTOREDC = 34;
const ERROR_DS_DRA_INTERNAL_ERROR = 8442;
const APPLICATION_VERIFIER_EXIT_THREAD_OWNS_LOCK = 0x0200;
const SESSION_MODIFY_ACCESS = 0x2;
const PATH_MAX = 260;
const SPI_GETWORKAREA = 0x0030;
const CRYPT_FLAG_SSL3 = 0x4;
const ERROR_NO_UNICODE_TRANSLATION = 1113;
const VP_FLAGS_FLICKER = 0x0004;
const COLOR_3DDKSHADOW = 21;
const PSP_PREMATURE = 0x00000400;
const CO_E_MALFORMED_SPN = 0x80004033;
const RPC_S_INTERNAL_ERROR = 1766;
const ERROR_DS_DUP_OID = 8379;
const CB_GETDROPPEDCONTROLRECT = 0x0152;
const FADF_DISPATCH = 0x400;
const FILE_ATTRIBUTE_VIRTUAL = 0x00010000;
const SO_LINGER = 0x0080;
const MARK_HANDLE_PROTECT_CLUSTERS = 0x00000001;
const RPC_S_INTERFACE_NOT_EXPORTED = 1924;
const CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC = 4;
const CERT_STORE_CTRL_COMMIT_FORCE_FLAG = 0x1;
const APPLICATION_VERIFIER_COM_UNBALANCED_COINIT = 0x0403;
const CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC = "CertDllEnumPhysicalStore";
const X3_IMM39_1_SIZE_X = 23;
const SB_PAGEUP = 2;
const ERROR_DS_DRA_BAD_INSTANCE_TYPE = 8445;
const PAN_PROP_MODERN = 3;
const VK_OEM_102 = 0xE2;
const SEE_MASK_NO_CONSOLE = 0x00008000;
const AF_UNSPEC = 0;
const OSS_BAD_ARG = 0x80093006;
const DT_EXPANDTABS = 0x00000040;
const LANG_KINYARWANDA = 0x87;
const CMSG_COMPUTED_HASH_PARAM = 22;
const PSINJECT_ENDPAGESETUP = 102;
const DT_RASDISPLAY = 1;
const LOCK_UNLOCK_IEPORT = 0x01;
const ERROR_DISK_FULL = 112;
const szOID_ENROLLMENT_NAME_VALUE_PAIR = "1.3.6.1.4.1.311.13.2.1";
const SEC_E_PKINIT_NAME_MISMATCH = 0x8009033D;
const WAVE_FORMAT_2S16 = 0x00000080;
const COLORMATCHTOTARGET_EMBEDED = 0x00000001;
const ICM_DELETEPROFILE = 2;
const WM_CREATE = 0x0001;
const ACTIVATION_CONTEXT_BASIC_INFORMATION_DEFINED = 1;
const CRYPT_DEFAULT_CONTEXT_MULTI_CERT_SIGN_OID = 2;
const WNNC_NET_SYMFONET = 0x00150000;
const LB_SETCURSEL = 0x0186;
const CMSG_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG = 0x2;
const XACT_E_HEURISTICCOMMIT = 0x8004D005;
const SPI_SETCLIENTAREAANIMATION = 0x1043;
const LANG_PERSIAN = 0x29;
const PARTITION_EXTENDED = 0x05;
const ERROR_DS_NAME_TOO_MANY_PARTS = 8347;
const APPLICATION_VERIFIER_INCORRECT_WAIT_CALL = 0x0302;
const VK_OEM_FJ_ROYA = 0x96;
const SM_CXVIRTUALSCREEN = 78;
const _WIN32_WINNT_WS03 = 0x0502;
const _WIN32_WINNT_WS08 = 0x0600;
const CERT_TRUST_HAS_KEY_MATCH_ISSUER = 0x2;
const WNFMT_INENUM = 0x10;
const BS_3STATE = 0x00000005;
const WAVE_INVALIDFORMAT = 0x00000000;
const ERROR_UNEXP_NET_ERR = 59;
const MCI_SET_AUDIO = 0x00000800;
const VK_ESCAPE = 0x1B;
const CTRY_ISRAEL = 972;
const CERT_RDN_OCTET_STRING = 2;
const CO_E_INIT_SCM_EXEC_FAILURE = 0x80004011;
const MDMSPKRFLAG_DIAL = 0x00000002;
const SPI_SETTOOLTIPFADE = 0x1019;
const ERROR_DS_NO_RIDS_ALLOCATED = 8208;
const EVENT_OBJECT_DESCRIPTIONCHANGE = 0x800D;
const IP_MULTICAST_LOOP = 4;
const MCI_STATUS = 0x0814;
const PSPCB_RELEASE = 1;
const ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = 7013;
const COMADMIN_E_REGISTRARFAILED = 0x80110423;
const PRINTER_NOTIFY_FIELD_DRIVER_NAME = 0x04;
const NIM_SETVERSION = 0x00000004;
const SCARD_W_UNSUPPORTED_CARD = 0x80100065;
const BN_HILITE = 2;
const DMPAPER_PENV_3 = 98;
const IPPROTO_PUP = 12;
const PP_VERSION = 5;
const BALTIC_CHARSET = 186;
const CERT_CREATE_CONTEXT_NO_ENTRY_FLAG = 0x8;
const X3_P_INST_WORD_POS_X = 0;
const ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = 8530;
const IMAGE_REL_SH3_DIRECT16 = 0x0001;
const ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 8603;
const CRYPT_E_MISSING_PUBKEY_PARA = 0x8009202C;
const SERVICE_ERROR_CRITICAL = 0x00000003;
const DMPAPER_PENV_5 = 100;
const VERTSIZE = 6;
const RPC_C_VERS_ALL = 1;
const ERROR_PARTITION_FAILURE = 1105;
const BI_BITFIELDS = 3;
const C1_PUNCT = 0x0010;
const MWT_LEFTMULTIPLY = 2;
const MB_HELP = 0x00004000;
const CREATE_UNICODE_ENVIRONMENT = 0x400;
const ERROR_SXS_UNKNOWN_ENCODING_GROUP = 14012;
const ERROR_POINT_NOT_FOUND = 1171;
const NCBLISTEN = 0x11;
const ERROR_PASSWORD_EXPIRED = 1330;
const SM_CXCURSOR = 13;
const STN_ENABLE = 2;
const VK_BACK = 0x08;
const PC_WINDPOLYGON = 4;
const SP_OUTOFDISK = -4;
const MK_S_ASYNCHRONOUS = 0x000401E8;
const PRINTER_STATUS_DOOR_OPEN = 0x00400000;
const ERROR_DRIVE_NOT_INSTALLED = 0x00000008;
const ERROR_DEV_NOT_EXIST = 55;
const GCPCLASS_ARABIC = 2;
const SEC_E_CANNOT_INSTALL = 0x80090307;
const DMPAPER_15X11 = 46;
const ERROR_DS_FILTER_UNKNOWN = 8254;
const DMRES_MEDIUM = -3;
const LPD_SUPPORT_OPENGL = 0x00000020;
const WM_ACTIVATE = 0x0006;
const ERROR_DS_DRA_SHUTDOWN = 8463;
const FOF_NOCONFIRMMKDIR = 0x0200;
const RC_GDI20_OUTPUT = 0x0010;
const CHANGER_CLOSE_IEPORT = 0x00000004;
const ERROR_INVALID_ACCOUNT_NAME = 1315;
const CO_E_INIT_TLS = 0x80004006;
const LOCALE_IMONLZERO = 0x00000027;
const STREAM_CONTAINS_PROPERTIES = 0x4;
const ERROR_SERVICE_NOT_FOUND = 1243;
const MCI_SEQ_STATUS_NAME = 0x0000400B;
const DMLERR_DLL_USAGE = 0x4004;
const PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE = 0x35;
const LOCALE_ITLZERO = 0x00000025;
const VP_COMMAND_GET = 0x0001;
const PSH_USECALLBACK = 0x00000100;
const PIDDSI_MMCLIPCOUNT = 0x0000000A;
const HSHELL_WINDOWACTIVATED = 4;
const TAPE_DRIVE_FIXED_BLOCK = 0x00000400;
const LWA_COLORKEY = 0x00000001;
const VK_F2 = 0x71;
const DFCS_CAPTIONHELP = 0x0004;
const DC_TEXT = 0x0008;
const ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = 5067;
const FACILITY_WINDOWS = 8;
const WNFMT_CONNECTION = 0x20;
const SEEK_CUR = 1;
const ERROR_DS_NO_PARENT_OBJECT = 8329;
const SORT_STRINGSORT = 0x00001000;
const KP_ADMIN_PIN = 31;
const RI_MOUSE_BUTTON_4_UP = 0x0080;
const BS_GROUPBOX = 0x00000007;
const RPC_E_NO_CONTEXT = 0x8001011E;
const PBT_APMBATTERYLOW = 0x0009;
const C2_EUROPESEPARATOR = 0x0004;
const UI_CAP_2700 = 0x00000001;
const VARIANT_LOCALBOOL = 0x10;
const MCI_FORMAT_MILLISECONDS = 0;
const LOCALE_SMONTHOUSANDSEP = 0x00000017;
const IMAGE_REL_BASED_MIPS_JMPADDR16 = 9;
const CB_GETITEMDATA = 0x0150;
const DM_SCALE = 0x00000010;
const REVERSE_PRINT = 0x00000001;
const POWER_ACTION_QUERY_ALLOWED = 0x00000001;
const WM_UNDO = 0x0304;
const ROTFLAGS_REGISTRATIONKEEPSALIVE = 0x1;
const NEWTRANSPARENT = 3;
const ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = 8303;
const SPI_SETDRAGWIDTH = 0x004C;
const ERROR_INVALID_DWP_HANDLE = 1405;
const TIME_PERIODIC = 0x0001;
const CTRY_TATARSTAN = 7;
const ERROR_IPSEC_IKE_PROCESS_ERR_ID = 13834;
const ERROR_PIPE_BUSY = 231;
const VK_SLEEP = 0x5F;
const URLACTION_INFODELIVERY_NO_EDITING_SUBSCRIPTIONS = 0x00001D04;
const DISPID_UNKNOWN = -1;
const SPI_SETICONTITLELOGFONT = 0x0022;
const PROCESSOR_AMD_X8664 = 8664;
const MB_PRECOMPOSED = 0x00000001;
const CERT_ALT_NAME_VALUE_ERR_INDEX_SHIFT = 0;
const ETO_NUMERICSLOCAL = 0x0400;
const SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA = 0x01;
const DISP_E_EXCEPTION = 0x80020009;
const SUBLANG_LAO_LAO = 0x01;
const ERROR_IPSEC_IKE_PROCESS_ERR_KE = 13833;
const CLIPBRD_S_FIRST = 0x000401D0;
const CB_SETCURSEL = 0x014E;
const szOID_VERISIGN_ISS_STRONG_CRYPTO = "2.16.840.1.113733.1.8.1";
const ERROR_MR_MID_NOT_FOUND = 317;
const PC_INTERIORS = 128;
const WAVE_FORMAT_44M08 = 0x00000100;
const ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = 8307;
const REGISTERING = 0x00;
const ERROR_SXS_XML_E_BADCHARDATA = 14036;
const CTRY_KENYA = 254;
const PERF_SIZE_ZERO = 0x00000200;
const GETTECHNOLOGY = 20;
const VK_NONAME = 0xFC;
const WAVE_FORMAT_44M16 = 0x00000400;
const JOB_NOTIFY_FIELD_STATUS = 0x0A;
const USN_REASON_NAMED_DATA_OVERWRITE = 0x00000010;
const ERROR_MEMBERS_PRIMARY_GROUP = 1374;
const MCI_WAVE_SET_SAMPLESPERSEC = 0x00040000;
const CRYPT_REGISTER_LAST_INDEX = 0xFFFFFFFF;
const CMSG_VERSION_PARAM = 30;
const MONITOR_DEFAULTTOPRIMARY = 0x00000001;
const EWX_FORCE = 0x00000004;
const RPC_E_TOO_LATE = 0x80010119;
const VER_PLATFORM_WIN32_WINDOWS = 1;
const PRINTER_STATUS_NO_TONER = 0x00040000;
const FILESYSTEM_STATISTICS_TYPE_NTFS = 1;
const CSTR_EQUAL = 2;
const GW_MAX = 6;
const FILE_SHARE_VALID_FLAGS = 0x00000007;
const UPDFCACHE_IFBLANK = 0x10;
const WS_VISIBLE = 0x10000000;
const DISC_UPDATE_PROFILE = 0x00000001;
const LANG_DANISH = 0x06;
const dwFORCE_KEY_PROTECTION_USER_SELECT = 0x1;
const CRYPT_E_STREAM_MSG_NOT_READY = 0x80091010;
const IGP_CONVERSION = 0x00000008;
const SECTION_MAP_EXECUTE_EXPLICIT = 0x0020;
const CERT_RDN_BMP_STRING = 12;
const MCI_OPEN_ELEMENT = 0x00000200;
const DMICMMETHOD_SYSTEM = 2;
const KF_EXTENDED = 0x0100;
const PD_CURRENTPAGE = 0x400000;
const MCI_ANIM_STATUS_HPAL = 0x00004004;
const IMAGE_REL_M32R_REFLO = 0x000A;
const FAPPCOMMAND_KEY = 0;
const PBT_POWERSETTINGCHANGE = 32787;
const SS_RIGHT = 0x00000002;
const CTRY_LUXEMBOURG = 352;
const RPC_S_INVALID_TIMEOUT = 1709;
const _UPPER = 0x1;
const ERROR_CONNECTION_INVALID = 1229;
const RPC_E_CALL_CANCELED = 0x80010002;
const PSD_ENABLEPAGESETUPTEMPLATEHANDLE = 0x20000;
const ERROR_INC_BACKUP = 4003;
const GCPCLASS_LATINNUMERICTERMINATOR = 6;
const CERT_RDN_TELETEX_STRING = 5;
const CREATE_ALWAYS = 2;
const STOCK_LAST = 19;
const SE_RM_CONTROL_VALID = 0x4000;
const TAPE_LOAD = 0;
const ALG_SID_SSL3SHAMD5 = 8;
const MCI_WHERE = 0x0843;
const SCARD_STATE_UNAVAILABLE = 0x00000008;
const TCI_SRCLOCALE = 0x1000;
const LANG_IGBO = 0x70;
const RPC_C_OPT_MQ_ACKNOWLEDGE = 4;
const PSBTN_FINISH = 2;
const ERROR_IPSEC_IKE_PROCESS_ERR_SA = 13830;
const CERT_AUTH_ROOT_CTL_FILENAME_A = "authroot.stl";
const DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 9563;
const ERROR_IPSEC_MM_FILTER_EXISTS = 13006;
const DMICMMETHOD_USER = 256;
const TAPE_LOCK = 3;
const _ARGMAX = 100;
const ERROR_SXS_XML_E_UNBALANCEDPAREN = 14040;
const CTRY_URUGUAY = 598;
const CERT_INFO_SUBJECT_UNIQUE_ID_FLAG = 10;
const EVENTLOG_ERROR_TYPE = 0x0001;
const MF_OWNERDRAW = 0x00000100;
const CO_E_DLLNOTFOUND = 0x800401F8;
const APPLICATION_VERIFIER_COM_HOLDING_LOCKS_ON_CALL = 0x0410;
const RT_BITMAP = 2;
const CRYPT_E_ALREADY_DECRYPTED = 0x80091009;
const WM_NCDESTROY = 0x0082;
const CERT_PUBKEY_HASH_RESERVED_PROP_ID = 8;
const ERROR_INVALID_PASSWORDNAME = 1216;
const MCI_PLAY = 0x0806;
const RPC_S_UNSUPPORTED_TRANS_SYN = 1730;
const ERROR_KEY_HAS_CHILDREN = 1020;
const RPC_S_SEC_PKG_ERROR = 1825;
const URLACTION_SCRIPT_PASTE = 0x00001407;
const SPI_SETMENUSHOWDELAY = 0x006B;
const EVENTLOG_INFORMATION_TYPE = 0x0004;
const SIMPLEBLOB = 0x1;
const GPT_ATTRIBUTE_PLATFORM_REQUIRED = 0x0000000000000001;
const szOID_BIOMETRIC_EXT = "1.3.6.1.5.5.7.1.2";
const X3_I_INST_WORD_POS_X = 27;
const X3_IMM20_INST_WORD_POS_X = 4;
const TAPE_DRIVE_LOAD_UNLD_IMMED = 0x80000020;
const BS_NOTIFY = 0x00004000;
const RES_CURSOR = 2;
const SUBLANG_ENGLISH_SINGAPORE = 0x12;
const EVENT_E_INVALID_PER_USER_SID = 0x80040207;
const METAFILE_DRIVER = 2049;
const OFN_HIDEREADONLY = 0x4;
const ERROR_NOT_ALL_ASSIGNED = 1300;
const MUTZ_REQUIRESAVEDFILECHECK = 0x00000400;
const SPI_GETMOUSEKEYS = 0x0036;
const MM_LOENGLISH = 4;
const WMSZ_TOP = 3;
const AF_UNKNOWN1 = 20;
const WNNC_NET_TERMSRV = 0x00360000;
const GCPCLASS_POSTBOUNDLTR = 0x20;
const COLOR_CAPTIONTEXT = 9;
const NON_PAGED_DEBUG_SIGNATURE = 0x494E;
const IMAGE_SYM_SECTION_MAX = 0xFEFF;
const C3_ALPHA = 0x8000;
const IOCTL_SMARTCARD_CONFISCATE = 4;
const BS_AUTORADIOBUTTON = 0x00000009;
const szOID_ECC_PUBLIC_KEY = "1.2.840.10045.2.1";
const IMAGE_REL_SH3_ABSOLUTE = 0x0000;
const MCI_SEQ_SET_MASTER = 0x00080000;
const CERT_STORE_BACKUP_RESTORE_FLAG = 0x800;
const SHIL_SYSSMALL = 0x3;
const STGFMT_FILE = 3;
const STG_E_NOTFILEBASEDSTORAGE = 0x80030107;
const BST_PUSHED = 0x0004;
const ETO_GLYPH_INDEX = 0x0010;
const CRYPTPROTECT_LAST_RESERVED_FLAGVAL = 0xFFFFFFFF;
const IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR = 60;
const FILE_DEVICE_DATALINK = 0x00000005;
const FILE_ATTRIBUTE_COMPRESSED = 0x00000800;
const WGL_SWAP_OVERLAY10 = 0x00000400;
const WGL_SWAP_OVERLAY11 = 0x00000800;
const WGL_SWAP_OVERLAY12 = 0x00001000;
const WGL_SWAP_OVERLAY13 = 0x00002000;
const WGL_SWAP_OVERLAY14 = 0x00004000;
const szOID_CRL_REASON_CODE = "2.5.29.21";
const XACT_E_CONNECTION_DENIED = 0x8004D01D;
const SPI_SETKEYBOARDSPEED = 0x000B;
const CF_NULL = 0;
const SND_LOOP = 0x0008;
const ERROR_DS_NOT_SUPPORTED = 8256;
const ZERO_PADDING = 3;
const szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE = "1.3.6.1.5.5.7.7.24";
const HTGROWBOX = 4;
const LZERROR_BADINHANDLE = -1;
const RT_VXD = 20;
const CERT_COMPARE_SUBJECT_CERT = 11;
const LB_SETITEMDATA = 0x019A;
const WS_HSCROLL = 0x00100000;
const RPC_S_INTERFACE_NOT_FOUND = 1759;
const SOUND_SYSTEM_INFORMATION = 7;
const CMSG_ENCODED_SIGNER = 28;
const TRANSPARENT = 1;
const VK_HANGEUL = 0x15;
const CO_E_NO_SECCTX_IN_ACTIVATE = 0x8000402B;
const __GXX_ABI_VERSION = 1002;
const PF_COMPARE64_EXCHANGE128 = 15;
const WMSZ_TOPLEFT = 4;
const MB_YESNOCANCEL = 0x00000003;
const MIXERCONTROL_CT_SC_SWITCH_BOOLEAN = 0x00000000;
const szOID_DSALG_HASH = "2.5.8.2";
const NTE_BAD_SIGNATURE = 0x80090006;
const JOB_OBJECT_LIMIT_WORKINGSET = 0x00000001;
const SORTED_CTL_EXT_HASHED_SUBJECT_IDENTIFIER_FLAG = 0x1;
const ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION = 1;
const STG_E_SHAREVIOLATION = 0x80030020;
const PURGE_TXABORT = 0x1;
const DT_EDITCONTROL = 0x00002000;
const LC_MARKER = 4;
const CHANGER_STORAGE_SLOT = 0x00004000;
const RPC_X_INVALID_PIPE_OBJECT = 1830;
const DCX_PARENTCLIP = 0x00000020;
const IME_CAND_MEANING = 0x0003;
const NETSCAPE_SSL_CA_CERT_TYPE = 0x4;
const SS_BLACKRECT = 0x00000004;
const MCI_ANIM_GETDEVCAPS_MAX_WINDOWS = 0x00004008;
const CERT_COMPARE_PUBKEY_MD5_HASH = 18;
const TYPE_E_CIRCULARTYPE = 0x80029C84;
const WM_QUERYENDSESSION = 0x0011;
const LANG_HINDI = 0x39;
const szOID_LICENSES = "1.3.6.1.4.1.311.10.6.1";
const RPC_C_AUTHN_LEVEL_DEFAULT = 0;
const IMAGE_REL_ALPHA_GPREL32 = 0x0003;
const CO_E_ERRORINDLL = 0x800401F9;
const ERROR_DS_REPL_LIFETIME_EXCEEDED = 8614;
const WM_ENTERSIZEMOVE = 0x0231;
const IMAGE_REL_PPC_ADDR14 = 0x0005;
const IMAGE_REL_PPC_ADDR16 = 0x0004;
const NI_FINALIZECONVERSIONRESULT = 0x0014;
const ERROR_DEPENDENCY_NOT_ALLOWED = 5069;
const ERROR_RESOURCE_FAILED = 5038;
const FILE_TYPE_PIPE = 0x3;
const BDR_RAISEDOUTER = 0x0001;
const CRYPT_E_SIGNER_NOT_FOUND = 0x8009100E;
const OFN_FILEMUSTEXIST = 0x1000;
const ERROR_SERVICE_NOT_IN_EXE = 1083;
const IMAGE_REL_PPC_ADDR24 = 0x0003;
const szOID_CERT_PROP_ID_PREFIX = "1.3.6.1.4.1.311.10.11.";
const IME_CAND_CODE = 0x0002;
const RPC_C_HTTP_AUTHN_TARGET_SERVER = 1;
const IMAGE_REL_MIPS_GPREL = 0x0006;
const EVENT_CONSOLE_UPDATE_REGION = 0x4002;
const DMBIN_MANUAL = 4;
const MDM_SHIFT_X75_DATA = 0x0;
const IMAGE_REL_PPC_ADDR32 = 0x0002;
const MCI_INFO = 0x080A;
const WM_GETTEXTLENGTH = 0x000E;
const szOID_ORGANIZATION_NAME = "2.5.4.10";
const CERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG = 0x20000;
const PIDSI_KEYWORDS = 0x00000005;
const ALG_SID_SHA = 4;
const SM_CYMINIMIZED = 58;
const CO_E_INCOMPATIBLESTREAMVERSION = 0x8001013B;
const PERF_DATA_REVISION = 1;
const CFS_RECT = 0x0001;
const XACT_E_COMMITPREVENTED = 0x8004D003;
const COMADMIN_E_CLSIDORIIDMISMATCH = 0x80110418;
const IMAGE_NUMBEROF_DIRECTORY_ENTRIES = 16;
const ULW_COLORKEY = 0x00000001;
const TAPE_DRIVE_LOCK_UNLOCK = 0x80000004;
const URLACTION_DOWNLOAD_MAX = 0x000011FF;
const NRC_BRIDGE = 0x23;
const ERROR_SEVERITY_INFORMATIONAL = 0x40000000;
const CTRY_BOLIVIA = 591;
const ERROR_DEPENDENT_SERVICES_RUNNING = 1051;
const DOWNLOADHEADER = 4111;
const VK_RSHIFT = 0xA1;
const LOGON32_PROVIDER_DEFAULT = 0;
const GW_OWNER = 4;
const CERT_STORE_SAVE_TO_FILE = 1;
const MF_LINKS = 0x20000000;
const IMAGE_REL_PPC_ADDR64 = 0x0001;
const PSH_NOAPPLYNOW = 0x00000080;
const SPI_GETICONMETRICS = 0x002D;
const ERROR_IPSEC_IKE_NO_PRIVATE_KEY = 13820;
const IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY = 1;
const VK_HANGUL = 0x15;
const TOKEN_DUPLICATE = 0x0002;
const SKF_AUDIBLEFEEDBACK = 0x00000040;
const VER_OR = 7;
const PRINTER_ATTRIBUTE_QUEUED = 0x00000001;
const QS_MOUSEBUTTON = 0x0004;
const RPC_C_OPT_MQ_DELIVERY = 1;
const CRYPTPROTECT_FIRST_RESERVED_FLAGVAL = 0x0FFFFFFF;
const CERT_EFS_PROP_ID = 17;
const DRIVE_REMOVABLE = 2;
const szOID_PRESENTATION_ADDRESS = "2.5.4.29";
const VSS_E_VOLUME_NOT_SUPPORTED_BY_PROVIDER = 0x8004230E;
const CERT_ALT_NAME_RFC822_NAME = 2;
const PROV_RNG = 21;
const SM_CXMAXIMIZED = 61;
const PROV_RSA_SIG = 2;
const APPCOMMAND_MEDIA_PREVIOUSTRACK = 12;
const RPC_X_PIPE_DISCIPLINE_ERROR = 1917;
const COPY_FILE_FAIL_IF_EXISTS = 0x1;
const ERROR_SXS_DUPLICATE_TLBID = 14025;
const SETALLJUSTVALUES = 771;
const SYSTEM_ALARM_ACE_TYPE = 0x3;
const SUBLANG_GERMAN = 0x01;
const IMAGE_REL_IA64_UREL32 = 0x0014;
const CHANGER_CARTRIDGE_MAGAZINE = 0x00000100;
const MIXERLINE_TARGETTYPE_UNDEFINED = 0;
const _HEAPEND = -5;
const RI_MOUSE_LEFT_BUTTON_DOWN = 0x0001;
const MEM_PRIVATE = 0x20000;
const DISPATCH_PROPERTYPUTREF = 0x8;
const ERROR_BAD_DRIVER = 2001;
const ERROR_LOGON_SESSION_EXISTS = 1363;
const SOUND_SYSTEM_RESTOREUP = 10;
const READ_ATTRIBUTES = 0xD0;
const GR_USEROBJECTS = 1;
const XST_ADVACKRCVD = 13;
const PAGESETUPDLGORD = 1546;
const PRODUCT_CLUSTER_SERVER = 0x12;
const NULL_BRUSH = 5;
const CAL_SMONTHNAME1 = 0x00000015;
const CAL_SMONTHNAME2 = 0x00000016;
const CAL_SMONTHNAME3 = 0x00000017;
const CAL_SMONTHNAME4 = 0x00000018;
const CAL_SMONTHNAME5 = 0x00000019;
const URLACTION_DOWNLOAD_MIN = 0x00001000;
const MIXERCONTROL_CT_SC_TIME_MICROSECS = 0x00000000;
const SETABORTPROC = 9;
const VIF_SRCOLD = 0x00000004;
const TIME_FORCE24HOURFORMAT = 0x00000008;
const CHANGER_PREDISMOUNT_EJECT_REQUIRED = 0x00020000;
const ERROR_SHARING_BUFFER_EXCEEDED = 36;
const IMAGE_NT_SIGNATURE = 0x00004550;
const SPI_SETWAITTOKILLSERVICETIMEOUT = 0x007D;
const DISP_E_UNKNOWNNAME = 0x80020006;
const BS_PUSHBUTTON = 0x00000000;
const DROPEFFECT_COPY = 1;
const HTVSCROLL = 7;
const PAN_WEIGHT_DEMI = 7;
const TAPE_DRIVE_ECC = 0x00010000;
const PSINJECT_ENDPROLOG = 15;
const IMC_GETCOMPOSITIONWINDOW = 0x000B;
const PSD_DISABLEORIENTATION = 0x100;
const __DEC_EVAL_METHOD__ = 2;
const LR_COPYDELETEORG = 0x0008;
const SUBLANG_ENGLISH_INDIA = 0x10;
const szOID_POSTAL_ADDRESS = "2.5.4.16";
const ALG_SID_KEA = 4;
const EXCEPTION_UNWIND = 0x66;
const szOID_APPLICATION_POLICY_CONSTRAINTS = "1.3.6.1.4.1.311.21.12";
const TAPE_SPACE_SEQUENTIAL_FMKS = 7;
const DEFAULT_CHARSET = 1;
const IMR_COMPOSITIONFONT = 0x0003;
const RIDEV_NOLEGACY = 0x00000030;
const RPC_E_INVALID_DATAPACKET = 0x80010009;
const LANG_WELSH = 0x52;
const ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = 8544;
const PD_RETURNDEFAULT = 0x400;
const RP_INIFILE = 0x02;
const ERROR_DEPENDENCY_NOT_FOUND = 5002;
const SCARD_STATE_INUSE = 0x00000100;
const CO_E_TRUSTEEDOESNTMATCHCLIENT = 0x80010127;
const PROP_SM_CXDLG = 212;
const SEC_E_MULTIPLE_ACCOUNTS = 0x80090347;
const CMSG_ENVELOPED = 3;
const IDH_CANCEL = 28444;
const SMART_LOG_SECTOR_SIZE = 512;
const SND_APPLICATION = 0x0080;
const CCHILDREN_SCROLLBAR = 5;
const ERROR_DS_RIDMGR_INIT_ERROR = 8211;
const PBT_APMRESUMECRITICAL = 0x0006;
const ERROR_DS_KEY_NOT_UNIQUE = 8527;
const ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 14051;
const EV_RXFLAG = 0x2;
const IMAGE_REL_AM_ADDR32 = 0x0001;
const PBT_APMSUSPEND = 0x0004;
const MCI_ANIM_GETDEVCAPS_CAN_REVERSE = 0x00004001;
const RC_BITBLT = 1;
const HELP_CONTENTS = 0x0003;
const SERVICE_START = 0x0010;
const IMAGE_REL_ALPHA_GPRELHI = 0x0017;
const DM_DISPLAYFLAGS = 0x00200000;
const ERROR_DS_SRC_GUID_MISMATCH = 8488;
const URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY = 0x00001202;
const PFD_TYPE_COLORINDEX = 1;
const NTDDI_WIN2KSP1 = 0x05000100;
const NTDDI_WIN2KSP2 = 0x05000200;
const NTDDI_WIN2KSP4 = 0x05000400;
const EM_POSFROMCHAR = 0x00D6;
const GWL_ID = -12;
const szOID_SUBJECT_DIR_ATTRS = "2.5.29.9";
const APPLICATION_VERIFIER_LOCK_INVALID_LOCK_COUNT = 0x0208;
const IO_REPARSE_TAG_RESERVED_ONE = 1;
const TIMER_QUERY_STATE = 0x0001;
const GMEM_FIXED = 0x0;
const ERROR_UNABLE_TO_LOCK_MEDIA = 1108;
const OFN_DONTADDTORECENT = 0x2000000;
const ERROR_PATCH_PACKAGE_UNSUPPORTED = 1637;
const CAP_SMART_CMD = 4;
const TME_NONCLIENT = 0x00000010;
const ASSERT_ALTERNATE = 0x9;
const RPC_E_SYS_CALL_FAILED = 0x80010100;
const HEAP_DISABLE_COALESCE_ON_FREE = 0x00000080;
const TPM_BOTTOMALIGN = 0x0020;
const CERT_QUERY_FORMAT_BASE64_ENCODED = 2;
const IOCTL_SMARTCARD_SET_ATTRIBUTE = 3;
const URLACTION_ACTIVEX_CURR_MAX = 0x00001206;
const IMAGE_REL_ALPHA_GPRELLO = 0x0016;
const ERROR_DS_CANT_DEL_MASTER_CROSSREF = 8375;
const szOID_PKCS_12 = "1.2.840.113549.1.12";
const RID_HEADER = 0x10000005;
const MK_E_UNAVAILABLE = 0x800401E3;
const NRC_INVDDID = 0x3B;
const SUBLANG_MONGOLIAN_PRC = 0x02;
const CBS_AUTOHSCROLL = 0x0040;
const IDC_SIZEALL = 32646;
const MMSYSERR_BASE = 0;
const SPI_SETACTIVEWINDOWTRACKING = 0x1001;
const PRINTER_STATUS_PENDING_DELETION = 0x00000004;
const CLIP_EMBEDDED = 8<<4;
const GETPRINTINGOFFSET = 13;
const RPC_X_PIPE_CLOSED = 1916;
const ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 7005;
const IMAGE_FILE_DEBUG_STRIPPED = 0x0200;
const szOID_OIWSEC_shaRSA = "1.3.14.3.2.15";
const SUBLANG_SPANISH = 0x01;
const CTRY_SERBIA = 381;
const SHTDN_REASON_FLAG_CLEAN_UI = 0x04000000;
const POSTSCRIPT_PASSTHROUGH = 4115;
const BDR_SUNKENOUTER = 0x0002;
const DMDITHER_NONE = 1;
const SO_DISCOPT = 0x7003;
const REGDB_E_IIDNOTREG = 0x80040155;
const LOCK_UNLOCK_DOOR = 0x02;
const SM_CYKANJIWINDOW = 18;
const PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT = 0x3B;
const WM_PAINT = 0x000F;
const ERROR_INVALID_HANDLE = 6;
const MK_MBUTTON = 0x0010;
const FROM_LEFT_2ND_BUTTON_PRESSED = 0x4;
const SHTDN_REASON_MINOR_PROCESSOR = 0x00000008;
const ABM_GETTASKBARPOS = 0x00000005;
const RPC_S_WRONG_KIND_OF_BINDING = 1701;
const SCARD_E_NO_MEMORY = 0x80100006;
const CERT_STORE_SHARE_CONTEXT_FLAG = 0x80;
const SUBLANG_JAPANESE_JAPAN = 0x01;
const ERROR_INVALID_MESSAGE = 1002;
const szOID_OIWSEC_desCBC = "1.3.14.3.2.7";
const MDM_FLOWCONTROL_HARD = 0x00000010;
const DFC_MENU = 2;
const ERROR_DS_MISSING_EXPECTED_ATT = 8411;
const CERT_COMPARE_SHA1_HASH = 1;
const DMPAPER_A_PLUS = 57;
const ERROR_DS_PDC_OPERATION_IN_PROGRESS = 8490;
const FILE_DEVICE_BATTERY = 0x00000029;
const SPI_GETPOWEROFFTIMEOUT = 0x0050;
const DNS_ERROR_ZONE_DOES_NOT_EXIST = 9601;
const CRYPT_OAEP = 0x40;
const ERROR_CLUSTER_NETWORK_EXISTS = 5044;
const DATA_S_FIRST = 0x00040130;
const VFFF_ISSHAREDFILE = 0x0001;
const BM_SETIMAGE = 0x00F7;
const SUBLANG_ZULU_SOUTH_AFRICA = 0x01;
const ERROR_REQUEST_REFUSED = 4320;
const IMAGE_REL_AM_ADDR32NB = 0x0002;
const NTM_REGULAR = 0x00000040;
const VFT_FONT = 0x00000004;
const IMAGE_SYM_TYPE_LONG = 0x0005;
const META_CHORD = 0x0830;
const LOCALE_FONTSIGNATURE = 0x00000058;
const META_SETTEXTALIGN = 0x012E;
const SUBLANG_CORSICAN_FRANCE = 0x01;
const ERROR_MAGAZINE_NOT_PRESENT = 1163;
const COPYFILE_SIS_REPLACE = 0x0002;
const szOID_OIWSEC_desCFB = "1.3.14.3.2.9";
const FACILITY_NULL = 0;
const MIXERCONTROL_CT_UNITS_MASK = 0x00FF0000;
const DNS_ERROR_NO_CREATE_CACHE_DATA = 9713;
const ERROR_DS_OUT_OF_VERSION_STORE = 8573;
const ERROR_CLUSTER_NODE_ALREADY_MEMBER = 5065;
const CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A = "FuncName";
const CB_LIMITTEXT = 0x0141;
const OBJ_METADC = 4;
const IMAGE_REL_PPC_SECTION = 0x000C;
const HS_CROSS = 4;
const LMEM_MOVEABLE = 0x2;
const MCI_SPIN = 0x080C;
const GL_ID_NOCONVERT = 0x00000020;
const GCL_CBWNDEXTRA = -18;
const CO_E_FAILEDTOIMPERSONATE = 0x80010123;
const CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID = 8;
const ES_AUTOVSCROLL = 0x0040;
const STATE_SYSTEM_SELECTABLE = 0x00200000;
const FRS_ERR_INVALID_API_SEQUENCE = 8001;
const RIM_INPUTSINK = 1;
const IMAGE_REL_I386_TOKEN = 0x000C;
const POWER_ACTION_OVERRIDE_APPS = 0x00000004;
const WB_LEFT = 0;
const MCI_VD_GETDEVCAPS_CAN_REVERSE = 0x00004002;
const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY = 0x0080;
const PRINTER_NOTIFY_FIELD_SERVER_NAME = 0x00;
const PORT_STATUS_TYPE_ERROR = 1;
const COMADMIN_E_MIG_VERSIONNOTSUPPORTED = 0x80110480;
const SOUND_SYSTEM_RESTOREDOWN = 11;
const DT_RIGHT = 0x00000002;
const ERROR_SXS_MANIFEST_FORMAT_ERROR = 14004;
const IMAGE_SCN_MEM_16BIT = 0x00020000;
const OFN_ENABLEINCLUDENOTIFY = 0x400000;
const DISPID_CONSTRUCTOR = -6;
const szOID_RSA_RC5_CBCPad = "1.2.840.113549.3.9";
const SERVICE_ACCEPT_NETBINDCHANGE = 0x00000010;
const URLACTION_HTML_SUBMIT_FORMS_TO = 0x00001603;
const CMSG_CERT_COUNT_PARAM = 11;
const IMAGE_DIRECTORY_ENTRY_BASERELOC = 5;
const EMR_PIE = 47;
const SCARD_E_NO_DIR = 0x80100025;
const PD_RESULT_PRINT = 1;
const USN_REASON_RENAME_OLD_NAME = 0x00001000;
const SHTDN_REASON_MINOR_SECURITY = 0x00000013;
const ERROR_REC_NON_EXISTENT = 4005;
const ERROR_DS_ATT_ALREADY_EXISTS = 8318;
const LANG_GEORGIAN = 0x37;
const SUBLANG_GALICIAN_GALICIAN = 0x01;
const SHTDN_REASON_MAJOR_POWER = 0x00060000;
const PRODUCT_STARTER_E = 0x42;
const PRINTER_CHANGE_SET_FORM = 0x00020000;
const SPI_SETBEEP = 0x0002;
const ERROR_WMI_SET_FAILURE = 4214;
const EXPO_OFFLOAD_FUNC_NAME = "OffloadModExpo";
const ERROR_GROUP_EXISTS = 1318;
const WM_XBUTTONDBLCLK = 0x020D;
const FILE_SEQUENTIAL_ONLY = 0x00000004;
const RPC_C_AUTHN_NONE = 0;
const VK_LAUNCH_MAIL = 0xB4;
const ARW_HIDE = 0x0008;
const EMR_CLOSEFIGURE = 61;
const WNNC_NET_EXTENDNET = 0x00290000;
const ERROR_NOT_SAME_DEVICE = 17;
const NTM_MULTIPLEMASTER = 0x00080000;
const OFS_MAXPATHNAME = 128;
const ENUM_E_LAST = 0x800401BF;
const SEC_I_COMPLETE_AND_CONTINUE = 0x00090314;
const ERROR_SMARTCARD_SUBSYSTEM_FAILURE = 1264;
const ERROR_JOURNAL_HOOK_SET = 1430;
const CERT_TRUST_PUB_ALLOW_TRUST_MASK = 0x3;
const CMSG_ENVELOPE_ALGORITHM_PARAM = 15;
const SERVICE_STOPPED = 0x00000001;
const ERROR_DISK_TOO_FRAGMENTED = 302;
const WINSTA_ENUMDESKTOPS = 0x0001;
const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG = 0x40000000;
const JOB_NOTIFY_FIELD_MACHINE_NAME = 0x01;
const RELATIVE = 2;
const SEC_E_NOT_OWNER = 0x80090306;
const CRYPT_E_ASN1_NYI = 0x80093134;
const ACL_REVISION = 2;
const __FLT_DIG__ = 6;
const TCI_SRCCODEPAGE = 2;
const OF_EXIST = 0x4000;
const CERT_NAME_URL_TYPE = 7;
const URLACTION_JAVA_PERMISSIONS = 0x00001C00;
const ICM_QUERYMATCH = 7;
const PORT_TYPE_NET_ATTACHED = 0x0008;
const ERROR_DS_SEC_DESC_INVALID = 8354;
const FKF_HOTKEYSOUND = 0x00000010;
const GCLP_HICONSM = -34;
const SPAPI_E_INF_IN_USE_BY_DEVICES = 0x800F023D;
const IMAGE_SCN_LNK_INFO = 0x00000200;
const CRYPT_EXPORT_KEY = 0x40;
const CHANGER_VOLUME_REPLACE = 0x00800000;
const REG_EXPAND_SZ = 2;
const META_SETSTRETCHBLTMODE = 0x0107;
const MDM_SHIFT_V110_SPEED = 0x0;
const WM_WTSSESSION_CHANGE = 0x02B1;
const MM_MOM_CLOSE = 0x3C8;
const MCI_STATUS_MODE = 0x00000004;
const CERT_TRUST_IS_COMPLEX_CHAIN = 0x10000;
const SPI_SETDROPSHADOW = 0x1025;
const CWP_ALL = 0x0000;
const CERT_STORE_ADD_NEWER = 6;
const CMSG_CRYPT_RELEASE_CONTEXT_FLAG = 0x8000;
const FILE_DEVICE_NETWORK = 0x00000012;
const ERROR_UNABLE_TO_INVENTORY_TRANSPORT = 4327;
const PDERR_PRINTERNOTFOUND = 0x100B;
const ERROR_DS_CROSS_REF_EXISTS = 8374;
const S_NORMAL = 0;
const ERROR_SHUTDOWN_IN_PROGRESS = 1115;
const MDM_V120_SPEED_64K = 0x1;
const CERT_QUERY_CONTENT_CRL = 3;
const MOD_WAVETABLE = 6;
const FS_SYMBOL = 0x80000000;
const APPLICATION_VERIFIER_COM_SMUGGLED_WRAPPER = 0x0408;
const LB_GETSEL = 0x0187;
const CTRY_COLOMBIA = 57;
const NIM_MODIFY = 0x00000001;
const __x86_64__ = 1;
const CAL_KOREA = 5;
const SM_NETWORK = 63;
const MCI_VD_SPIN_DOWN = 0x00020000;
const PSP_USEHEADERSUBTITLE = 0x00002000;
const IMAGE_DLLCHARACTERISTICS_NO_SEH = 0x0400;
const DC_DATATYPE_PRODUCED = 21;
const CERT_QUERY_CONTENT_CTL = 2;
const PD_USEDEVMODECOPIESANDCOLLATE = 0x40000;
const LCMAP_TRADITIONAL_CHINESE = 0x04000000;
const COMADMIN_E_DLLLOADFAILED = 0x8011041D;
const DC_PRINTRATE = 26;
const szOID_PKCS_7_SIGNEDANDENVELOPED = "1.2.840.113549.1.7.4";
const MAPVK_VSC_TO_VK_EX = 3;
const MNGO_NOERROR = 0x00000001;
const PSNRET_NOERROR = 0;
const VK_SPACE = 0x20;
const GW_HWNDLAST = 1;
const MDM_SPEED_ADJUST = 0x00000080;
const CMSG_CTRL_VERIFY_SIGNATURE = 1;
const EPS_SIGNATURE = 0x46535045;
const MB_SERVICE_NOTIFICATION = 0x00200000;
const KEY_ENUMERATE_SUB_KEYS = 0x0008;
const ALG_SID_SCHANNEL_MASTER_HASH = 2;
const CERTSRV_E_NO_CAADMIN_DEFINED = 0x8009400D;
const RIM_TYPEKEYBOARD = 1;
const ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = 5031;
const SOFTDIST_ADSTATE_INSTALLED = 0x00000003;
const CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL = 3;
const ERROR_SINGLE_INSTANCE_APP = 1152;
const COMADMIN_E_PROPERTY_OVERFLOW = 0x8011043C;
const MCI_VD_GETDEVCAPS_FAST_RATE = 0x00004003;
const ERROR_LOCK_VIOLATION = 33;
const WNNC_NET_QUINCY = 0x00380000;
const QDI_SETDIBITS = 1;
const __FLT_HAS_QUIET_NAN__ = 1;
const VK_OEM_FINISH = 0xF1;
const PERF_DELTA_BASE = 0x00800000;
const RPC_S_NO_PROTSEQS_REGISTERED = 1714;
const HCBT_ACTIVATE = 5;
const MMIO_ALLOCBUF = 0x00010000;
const SPAPI_E_INVALID_PROPPAGE_PROVIDER = 0x800F0224;
const ERROR_TOO_MANY_LINKS = 1142;
const EMR_SETMITERLIMIT = 58;
const ERROR_PAGEFILE_QUOTA = 1454;
const CRYPT_E_ASN1_BADARGS = 0x80093109;
const PSH_WIZARD_LITE = 0x00400000;
const SUBLANG_ORIYA_INDIA = 0x01;
const MAX_REASON_BUGID_LEN = 32;
const RTL_VRF_FLG_RESERVED_DONOTUSE = 0x00000002;
const SERVICE_QUERY_STATUS = 0x0004;
const ERROR_DS_TIMELIMIT_EXCEEDED = 8226;
const PORT_TYPE_WRITE = 0x0001;
const EV_EVENT1 = 0x800;
const EV_EVENT2 = 0x1000;
const __FLT_HAS_INFINITY__ = 1;
const FILE_OPEN_IF = 0x00000003;
const MCI_RECORD_OVERWRITE = 0x00000200;
const VFT2_DRV_LANGUAGE = 0x00000003;
const MAX_SID_SIZE = 256;
const WM_GETOBJECT = 0x003D;
const SO_SNDBUF = 0x1001;
const ERROR_NULL_LM_PASSWORD = 1304;
const FILE_DEVICE_FILE_SYSTEM = 0x00000009;
const ES_NUMBER = 0x2000;
const CMSG_OID_EXPORT_KEY_AGREE_FUNC = "CryptMsgDllExportKeyAgree";
const PROCESS_VM_OPERATION = 0x0008;
const ERROR_CTX_WINSTATION_NAME_INVALID = 7001;
const ACTIVEOBJECT_WEAK = 0x1;
const PWR_CRITICALRESUME = 3;
const CTRY_ESTONIA = 372;
const ERROR_INSTALL_FAILURE = 1603;
const IMAGE_ARCHIVE_START_SIZE = 8;
const IO_REPARSE_TAG_RESERVED_ZERO = 0;
const USN_SOURCE_REPLICATION_MANAGEMENT = 0x00000004;
const ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109;
const LBS_HASSTRINGS = 0x0040;
const JOB_STATUS_RESTART = 0x00000800;
const COM_RIGHTS_ACTIVATE_LOCAL = 8;
const PERF_COUNTER_BASE = 0x00030000;
const PDCAP_WARM_EJECT_SUPPORTED = 0x00000100;
const STG_E_CSS_AUTHENTICATION_FAILURE = 0x80030306;
const DMLERR_LAST = 0x4011;
const WH_FOREGROUNDIDLE = 11;
const OSS_BAD_TIME = 0x8009300C;
const SC_NEXTWINDOW = 0xF040;
const DCX_CLIPCHILDREN = 0x00000008;
const SUBLANG_GREENLANDIC_GREENLAND = 0x01;
const CS_DELETE_TRANSFORM = 0x00000003;
const MCI_CUE = 0x0830;
const MCI_CUT = 0x0851;
const RIDEV_APPKEYS = 0x00000400;
const SPAPI_E_ERROR_NOT_INSTALLED = 0x800F1000;
const CONNECT_NEED_DRIVE = 0x00000020;
const GL_ID_INPUTSYMBOL = 0x00000027;
const FR_WHOLEWORD = 0x2;
const szOID_DSALG_CRPT = "2.5.8.1";
const MOUSE_WHEELED = 0x4;
const PRINTACTION_OPENNETPRN = 5;
const __DEC32_MAX_EXP__ = 97;
const LPD_TRANSPARENT = 0x00001000;
const APPLICATION_VERIFIER_LOCK_ALREADY_INITIALIZED = 0x0211;
const PDERR_PARSEFAILURE = 0x1002;
const STG_S_BLOCK = 0x00030201;
const IMAGE_DIRECTORY_ENTRY_RESOURCE = 2;
const PROV_INTEL_SEC = 22;
const FR_ENABLETEMPLATEHANDLE = 0x2000;
const SPI_GETSCREENSAVERRUNNING = 0x0072;
const SPI_SETSOUNDSENTRY = 0x0041;
const VARIANT_CALENDAR_THAI = 0x20;
const RTL_VRF_FLG_VIRTUAL_MEM_CHECKS = 0x00002000;
const PARTITION_FAT_12 = 0x01;
const PARTITION_FAT_16 = 0x04;
const SET_SCREEN_ANGLE = 4105;
const DMPAPER_ENV_INVITE = 47;
const MCI_OVLY_OPEN_WS = 0x00010000;
const SUBLANG_DIVEHI_MALDIVES = 0x01;
const szOID_OIWSEC_keyHashSeal = "1.3.14.3.2.23";
const OFN_SHAREWARN = 0;
const SEC_E_UNFINISHED_CONTEXT_DELETED = 0x80090333;
const IDH_OK = 28443;
const DIALOPTION_QUIET = 0x00000080;
const ODT_COMBOBOX = 3;
const DMBIN_SMALLFMT = 9;
const SPAPI_E_INVALID_DEVINST_NAME = 0x800F0205;
const ENABLE_SMART = 0xD8;
const WM_CANCELMODE = 0x001F;
const BS_CHECKBOX = 0x00000002;
const INET_E_ERROR_FIRST = 0x800C0002;
const TOKEN_ADJUST_DEFAULT = 0x0080;
const CRYPT_READ = 0x8;
const PAN_WEIGHT_MEDIUM = 6;
const HEAP_CREATE_ALIGN_16 = 0x00010000;
const GCPCLASS_PREBOUNDLTR = 0x80;
const CRYPT_POLICY_OID_GROUP_ID = 8;
const SMART_INVALID_BUFFER = 4;
const CTRL_CLOSE_EVENT = 2;
const PBTF_APMRESUMEFROMFAILURE = 0x00000001;
const ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION = 3;
const IMAGE_SCN_ALIGN_16BYTES = 0x00500000;
const NETSCAPE_SMIME_CA_CERT_TYPE = 0x2;
const CRL_REASON_CA_COMPROMISE_FLAG = 0x20;
const CLIPBRD_E_CANT_OPEN = 0x800401D0;
const CDS_RESET = 0x40000000;
const PRINTER_STATUS_PAPER_PROBLEM = 0x00000040;
const szOID_RSA_SHA1RSA = "1.2.840.113549.1.1.5";
const CERT_RDN_GRAPHIC_STRING = 8;
const FR_RAW = 0x20000;
const CRYPT_OID_FIND_OID_INFO_FUNC = "CryptDllFindOIDInfo";
const WM_IME_CHAR = 0x0286;
const WM_CHANGECBCHAIN = 0x030D;
const ERROR_CONNECTION_ACTIVE = 1230;
const ERROR_NOT_CONNECTED = 2250;
const UPDFCACHE_ONSAVECACHE = 0x2;
const CERT_CHAIN_DISABLE_AUTH_ROOT_AUTO_UPDATE = 0x100;
const CTLCOLOR_BTN = 3;
const FR_NOT_ENUM = 0x20;
const IME_CMODE_LANGUAGE = 0x0003;
const GGO_UNHINTED = 0x0100;
const PRINTRATEUNIT_PPM = 1;
const FILE_ATTRIBUTE_SPARSE_FILE = 0x00000200;
const URLACTION_SCRIPT_RUN = 0x00001400;
const EVENT_SYSTEM_CAPTURESTART = 0x0008;
const ELEMENT_STATUS_AVOLTAG = 0x20000000;
const PSINJECT_ENDSTREAM = 20;
const CO_E_THREADPOOL_CONFIG = 0x80004031;
const MCI_BREAK_HWND = 0x00000200;
const SS_ELLIPSISMASK = 0x0000C000;
const WM_MOUSEFIRST = 0x0200;
const SMART_EXTENDED_SELFTEST_OFFLINE = 2;
const RTL_CRITSECT_TYPE = 0;
const FILE_FLAG_DELETE_ON_CLOSE = 0x4000000;
const PAN_MIDLINE_CONSTANT_SERIFED = 10;
const SUBLANG_LATVIAN_LATVIA = 0x01;
const FE_FONTSMOOTHINGORIENTATIONRGB = 0x0001;
const IPPROTO_RAW = 255;
const CB_SETITEMHEIGHT = 0x0153;
const SUBLANG_MOHAWK_MOHAWK = 0x01;
const __k8__ = 1;
const MA_ACTIVATE = 1;
const PSWIZB_FINISH = 0x00000004;
const CRYPT_E_OID_FORMAT = 0x80091003;
const IPPORT_CMDSERVER = 514;
const ORD_LANGDRIVER = 1;
const PID_FIRST_USABLE = 0x2;
const SERVICE_CONTINUE_PENDING = 0x00000005;
const GWL_STYLE = -16;
const JOB_STATUS_SPOOLING = 0x00000008;
const CERT_NAME_DISABLE_IE4_UTF8_FLAG = 0x10000;
const ERROR_DS_DRA_BUSY = 8438;
const MONITORINFOF_PRIMARY = 0x00000001;
const PERF_MULTI_COUNTER = 0x02000000;
const ERROR_IPSEC_IKE_CRL_FAILED = 13817;
const ERROR_DS_EXISTING_AD_CHILD_NC = 8613;
const SEC_E_CROSSREALM_DELEGATION_FAILURE = 0x80090357;
const MCI_WAVE_SET_FORMATTAG = 0x00010000;
const SPAPI_E_NO_DEVICE_ICON = 0x800F0229;
const MF_ERRORS = 0x10000000;
const STG_E_DISKISWRITEPROTECTED = 0x80030013;
const DEBUG_PROCESS = 0x1;
const OSS_COPIER_DLL_NOT_LINKED = 0x80093022;
const VK_MODECHANGE = 0x1F;
const CLIENTSITE_S_LAST = 0x0004019F;
const NORM_IGNOREKANATYPE = 0x00010000;
const ERROR_RESMON_CREATE_FAILED = 5017;
const szOID_PREFERRED_DELIVERY_METHOD = "2.5.4.28";
const WM_KEYUP = 0x0101;
const EVENTLOG_AUDIT_FAILURE = 0x0010;
const ERROR_SPL_NO_STARTDOC = 3003;
const LGRPID_KOREAN = 0x0008;
const PROCESSOR_ARCHITECTURE_ARM = 5;
const CERT_STORE_PROV_CLOSE_FUNC = 0;
const SERIAL_NUMBER_LENGTH = 32;
const RPC_S_INVALID_NAF_ID = 1763;
const ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = 8498;
const SM_CYSCREEN = 1;
const XST_POKEACKRCVD = 8;
const _INC_CRT_UNICODE_MACROS = 2;
const CERT_EXCLUDED_SUBTREE_BIT = 0x80000000;
const PROV_SSL = 6;
const DMPAPER_RESERVED_48 = 48;
const ERROR_INVALID_VERIFY_SWITCH = 118;
const DMPAPER_RESERVED_49 = 49;
const SPI_GETLISTBOXSMOOTHSCROLLING = 0x1006;
const INET_E_NO_VALID_MEDIA = 0x800C000A;
const GCP_ERROR = 0x8000;
const FADF_BSTR = 0x100;
const BS_USERBUTTON = 0x00000008;
const DEF_PRIORITY = 1;
const APPCOMMAND_OPEN = 30;
const CERT_CREATE_CONTEXT_SORTED_FLAG = 0x2;
const ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 8518;
const LB_GETTEXTLEN = 0x018A;
const CMSG_CTRL_MAIL_LIST_DECRYPT = 18;
const MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG = 0x10000;
const PO_THROTTLE_MAXIMUM = 4;
const MDITILE_VERTICAL = 0x0000;
const szOID_CERT_POLICIES_95_QUALIFIER1 = "2.16.840.1.113733.1.7.1.1";
const CALLBACK_WINDOW = 0x00010000;
const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 0x2000;
const CERT_COMPARE_SHIFT = 16;
const WNNC_NET_LOCK = 0x00350000;
const DCTT_BITMAP = 0x0000001;
const FLI_GLYPHS = 0x00040000;
const LC_NONE = 0;
const IDI_HAND = 32513;
const NRC_ILLNN = 0x13;
const JOB_OBJECT_LIMIT_PRIORITY_CLASS = 0x00000020;
const FILE_DEVICE_PRINTER = 0x00000018;
const DIFFERENCE = 11;
const PD_ENABLESETUPHOOK = 0x2000;
const STG_E_READFAULT = 0x8003001E;
const PC_WIDESTYLED = 64;
const HP_HMAC_INFO = 0x5;
const VP_CP_TYPE_MACROVISION = 0x0002;
const MIXERCONTROL_CT_UNITS_SIGNED = 0x00020000;
const XCLASS_FLAGS = 0x4000;
const DMPAPER_A2 = 66;
const DMPAPER_A3 = 8;
const DMPAPER_A4 = 9;
const DMPAPER_A5 = 11;
const DMPAPER_A6 = 70;
const PS_JOIN_ROUND = 0x00000000;
const SPI_SETMENUANIMATION = 0x1003;
const RPC_C_AUTHZ_DCE = 2;
const PSINJECT_EOF = 19;
const WMSZ_BOTTOM = 6;
const WNNC_NET_AVID = 0x001A0000;
const RTS_CONTROL_TOGGLE = 0x3;
const DMPAPER_B5 = 13;
const KP_CERTIFICATE = 26;
const ERROR_DS_FOREST_VERSION_TOO_HIGH = 8563;
const SEC_E_KDC_UNABLE_TO_REFER = 0x80090341;
const FD_CLOSE = 0x20;
const EMBDHLP_DELAYCREATE = 0x00010000;
const XACT_S_LAST = 0x0004D010;
const BF_DIAGONAL = 0x0010;
const ERROR_DS_OUT_OF_SCOPE = 8338;
const SEE_MASK_ASYNCOK = 0x00100000;
const CERT_RDN_ENCODED_BLOB = 1;
const WM_ENTERIDLE = 0x0121;
const LOCALE_SDAYNAME1 = 0x0000002A;
const PD_NOWARNING = 0x80;
const CMSG_SP3_COMPATIBLE_ENCRYPT_FLAG = 0x80000000;
const DMPAPER_PENV_1_ROTATED = 109;
const DM_COLOR = 0x00000800;
const szOID_CROSS_CERTIFICATE_PAIR = "2.5.4.40";
const CERT_KEY_CONTEXT_PROP_ID = 5;
const VK_OEM_PA2 = 0xEC;
const VK_OEM_PA3 = 0xED;
const WM_DELETEITEM = 0x002D;
const WM_IME_COMPOSITION = 0x010F;
const PD_ENABLEPRINTTEMPLATE = 0x4000;
const LOCALE_SDAYNAME6 = 0x0000002F;
const VP_FLAGS_POSITION = 0x0020;
const DMPAPER_LEDGER = 4;
const JOB_CONTROL_SENT_TO_PRINTER = 6;
const ERROR_JOURNAL_ENTRY_DELETED = 1181;
const ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = 8231;
const RPC_E_INVALIDMETHOD = 0x80010107;
const E_ABORT = 0x80004004;
const META_EXCLUDECLIPRECT = 0x0415;
const CERT_SET_KEY_PROV_HANDLE_PROP_ID = 0x1;
const RUNDLGORD = 1545;
const MMIOM_OPEN = 3;
const FOF_RENAMEONCOLLISION = 0x0008;
const ENABLE_MOUSE_INPUT = 0x10;
const ERROR_DS_ILLEGAL_MOD_OPERATION = 8311;
const RPC_S_NO_ENDPOINT_FOUND = 1708;
const MUTZ_DONT_UNESCAPE = 0x00000800;
const GGL_PRIVATE = 0x00000004;
const DRAWPATTERNRECT = 25;
const ERROR_DS_NO_CHECKPOINT_WITH_PDC = 8551;
const ERROR_CANNOT_MAKE = 82;
const SLE_MINORERROR = 0x00000002;
const OSS_LIMITED = 0x8009300A;
const _NLSCMPERROR = 2147483647;
const ERROR_CLUSTER_LAST_INTERNAL_NETWORK = 5066;
const SEEK_END = 2;
const OLE_E_NOT_INPLACEACTIVE = 0x80040010;
const QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX = 0x4;
const ERROR_NEGATIVE_SEEK = 131;
const LANG_LATVIAN = 0x26;
const ERROR_DELETE_PENDING = 303;
const WS_EX_TRANSPARENT = 0x00000020;
const CO_E_OBJISREG = 0x800401FC;
const WM_QUIT = 0x0012;
const IMAGE_SCN_TYPE_NO_PAD = 0x00000008;
const WIZ_BODYCX = 184;
const RRF_RT_REG_DWORD = 0x00000010;
const PARTITION_UNIX = 0x63;
const WM_NCXBUTTONDBLCLK = 0x00AD;
const ALG_SID_CYLINK_MEK = 12;
const ERROR_DS_SUB_CLS_TEST_FAIL = 8391;
const GMEM_NOCOMPACT = 0x10;
const DM_DITHERTYPE = 0x04000000;
const CAT_E_NODESCRIPTION = 0x80040161;
const DRAGDROP_S_DROP = 0x00040100;
const SKF_LALTLATCHED = 0x10000000;
const TYPE_E_WRONGTYPEKIND = 0x8002802A;
const OR_INVALID_OID = 1911;
const CE_TXFULL = 0x100;
const ERROR_DS_THREAD_LIMIT_EXCEEDED = 8587;
const UIS_INITIALIZE = 3;
const WINPERF_LOG_DEBUG = 2;
const _USEDENTRY = 1;
const SW_SHOWDEFAULT = 10;
const SPI_GETPOWEROFFACTIVE = 0x0054;
const PAN_MIDLINE_STANDARD_TRIMMED = 2;
const ERROR_BAD_DEV_TYPE = 66;
const RPC_C_MQ_JOURNAL_DEADLETTER = 1;
const ERROR_DS_REFUSING_FSMO_ROLES = 8433;
const DNS_STATUS_CONTINUE_NEEDED = 9801;
const ERROR_MOD_NOT_FOUND = 126;
const IME_CMODE_SYMBOL = 0x0400;
const PRINTER_ENUM_DEFAULT = 0x00000001;
const SERVICE_ENUMERATE_DEPENDENTS = 0x0008;
const PROP_LG_CXDLG = 252;
const ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = 5063;
const SPI_GETMENUSHOWDELAY = 0x006A;
const PMB_ACTIVE = 0x00000001;
const CERT_AUTH_ROOT_CERT_EXT = ".crt";
const WNNC_NET_FJ_REDIR = 0x00220000;
const PO_THROTTLE_DEGRADE = 2;
const CTRY_BAHRAIN = 973;
const IMAGE_REL_SH3_DIRECT8_WORD = 0x0004;
const ERROR_UNKNOWN_COMPONENT = 1607;
const DF_ALLOWOTHERACCOUNTHOOK = 0x0001;
const FS_JISJAPAN = 0x00020000;
const ERROR_SERVICE_SPECIFIC_ERROR = 1066;
const IMAGE_SYM_TYPE_DOUBLE = 0x0007;
const PSINJECT_PAGES = 4;
const DFCS_BUTTONPUSH = 0x0010;
const CERT_FIND_NO_ENHKEY_USAGE_FLAG = 0x8;
const ERROR_INVALID_ORDINAL = 182;
const STG_E_OLDDLL = 0x80030105;
const MCI_ANIM_PLAY_SCAN = 0x00100000;
const ERROR_SXS_XML_E_MISSINGROOT = 14057;
const szOID_OIWSEC_rsaXchg = "1.3.14.3.2.22";
const CERT_RDN_ENABLE_UTF8_UNICODE_FLAG = 0x20000000;
const FADF_EMBEDDED = 0x4;
const RPC_C_LISTEN_MAX_CALLS_DEFAULT = 1234;
const szOID_NETSCAPE_CERT_EXTENSION = "2.16.840.1.113730.1";
const RDW_NOERASE = 0x0020;
const PSP_HIDEHEADER = 0x00000800;
const NCBADDGRNAME = 0x36;
const CRYPT_OID_ENCODE_OBJECT_EX_FUNC = "CryptDllEncodeObjectEx";
const WARNING_IPSEC_MM_POLICY_PRUNED = 13024;
const DC_BUTTONS = 0x1000;
const MCI_WAVE_SET_BLOCKALIGN = 0x00100000;
const PDCAP_WAKE_FROM_D0_SUPPORTED = 0x00000010;
const ERROR_QUORUM_DISK_NOT_FOUND = 5086;
const CTRY_THAILAND = 66;
const ERROR_DISCARDED = 157;
const ERROR_IPSEC_IKE_POLICY_CHANGE = 13849;
const EMR_POLYBEZIERTO = 5;
const SERVER_ACCESS_ENUMERATE = 0x00000002;
const LB_SELITEMRANGEEX = 0x0183;
const NETINFO_DISKRED = 0x00000004;
const IMAGE_SCN_MEM_PURGEABLE = 0x00020000;
const BACKUP_REPARSE_DATA = 0x8;
const SPI_GETKEYBOARDSPEED = 0x000A;
const DMBIN_LARGECAPACITY = 11;
const FILE_SHARE_DELETE = 0x00000004;
const ERROR_CTX_MODEM_RESPONSE_BUSY = 7015;
const IMAGE_SUBSYSTEM_EFI_ROM = 13;
const SORT_GERMAN_PHONE_BOOK = 0x1;
const JOB_OBJECT_LIMIT_JOB_TIME = 0x00000004;
const LOCALE_IMEASURE = 0x0000000D;
const PRINTER_CONTROL_PAUSE = 1;
const CERT_QUERY_CONTENT_PKCS10 = 11;
const DIALOPTION_BILLING = 0x00000040;
const NORM_IGNOREWIDTH = 0x00020000;
const CHANGER_PREDISMOUNT_ALIGN_TO_SLOT = 0x80000001;
const _CRT_PACKING = 8;
const PAN_BENT_ARMS_WEDGE = 8;
const szOID_INFOSEC_mosaicKeyManagement = "2.16.840.1.101.2.1.1.10";
const CMC_FAIL_BAD_TIME = 3;
const RPC_C_HTTP_AUTHN_SCHEME_DIGEST = 0x00000008;
const ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14016;
const szOID_PKIX_KP_SERVER_AUTH = "1.3.6.1.5.5.7.3.1";
const MCI_SEQ_STATUS_OFFSET = 0x00004009;
const CHANGER_TO_TRANSPORT = 0x01;
const CERT_RDN_GENERAL_STRING = 10;
const szOID_INFOSEC_SuiteAIntegrity = "2.16.840.1.101.2.1.1.15";
const NTM_PS_OPENTYPE = 0x00020000;
const SPI_SETICONTITLEWRAP = 0x001A;
const CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE = 0x8009400E;
const SCARD_EJECT_CARD = 3;
const DNS_ERROR_UNKNOWN_RECORD_TYPE = 9704;
const EVENT_MAX = 0x7FFFFFFF;
const _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT = 0;
const szOID_CRL_DIST_POINTS = "2.5.29.31";
const IMAGE_REL_I386_SECREL7 = 0x000D;
const ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = 14060;
const ERROR_DS_DRA_BAD_NC = 8440;
const CRYPTPROTECT_PROMPT_REQUIRE_STRONG = 0x10;
const CERT_TRUST_PUB_ALLOW_END_USER_TRUST = 0x0;
const CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG = 0x8000;
const DV_E_DVASPECT = 0x8004006B;
const CTRY_NEW_ZEALAND = 64;
const VSS_E_UNEXPECTED_PROVIDER_ERROR = 0x8004230F;
const VSS_E_MAXIMUM_NUMBER_OF_VOLUMES_REACHED = 0x80042312;
const IMN_CLOSECANDIDATE = 0x0004;
const IMAGE_REL_CEF_SECREL = 0x0005;
const KP_IV = 1;
const ERROR_SEM_IS_SET = 102;
const CERT_TRUST_IS_PARTIAL_CHAIN = 0x10000;
const IMAGE_REL_MIPS_LITERAL = 0x0007;
const ARW_DOWN = 0x0004;
const SYSPAL_NOSTATIC256 = 3;
const szOID_EFS_RECOVERY = "1.3.6.1.4.1.311.10.3.4.1";
const ERROR_ACCOUNT_LOCKED_OUT = 1909;
const ERROR_NO_MORE_DEVICES = 1248;
const EVENTLOG_AUDIT_SUCCESS = 0x0008;
const DRV_REMOVE = 0x000A;
const CTLCOLOR_EDIT = 1;
const URLACTION_FEATURE_ZONE_ELEVATION = 0x00002101;
const SEC_E_ILLEGAL_MESSAGE = 0x80090326;
const SWP_NOREDRAW = 0x0008;
const BS_SOLID = 0;
const SPI_GETAUDIODESCRIPTION = 0x0074;
const META_SETVIEWPORTEXT = 0x020E;
const MOD_FMSYNTH = 4;
const CRYPT_FORMAT_OID = 0x4;
const PP_ENUMELECTROOTS = 26;
const BS_FLAT = 0x00008000;
const WIZ_CXDLG = 276;
const IMAGE_DIRECTORY_ENTRY_GLOBALPTR = 8;
const GDICOMMENT_ENDGROUP = 0x00000003;
const _WIN32_WINNT_NT4 = 0x0400;
const RPC_S_NOT_CANCELLED = 1826;
const CF_NOSCRIPTSEL = 0x800000;
const FLOODFILLSURFACE = 1;
const EVENT_MIN = 0x00000001;
const VK_DOWN = 0x28;
const CERT_REQUEST_V1 = 0;
const SUBLANG_NEPALI_INDIA = 0x02;
const VK_OEM_COMMA = 0xBC;
const OBJ_FONT = 6;
const IMPLTYPEFLAG_FRESTRICTED = 0x4;
const DRAGDROP_E_NOTREGISTERED = 0x80040100;
const USN_DELETE_FLAG_DELETE = 0x00000001;
const WT_EXECUTEINPERSISTENTIOTHREAD = 0x00000040;
const DRV_CLOSE = 0x0004;
const CRYPT_E_BAD_LEN = 0x80092001;
const NCBSEND = 0x14;
const URLACTION_SHELL_MIN = 0x00001800;
const __ATOMIC_CONSUME = 1;
const CRYPT_FORMAT_RDN_UNQUOTE = 0x400;
const ALERT_SYSTEM_ERROR = 3;
const IPPORT_WHOSERVER = 513;
const FILE_NO_INTERMEDIATE_BUFFERING = 0x00000008;
const EVENT_OBJECT_STATECHANGE = 0x800A;
const LGRPID_TURKISH = 0x0006;
const PDCAP_D2_SUPPORTED = 0x00000004;
const __GNUC_MINOR__ = 7;
const CRYPT_E_REVOKED = 0x80092010;
const __DEC32_MANT_DIG__ = 7;
const CRL_REASON_SUPERSEDED = 4;
const DCX_INTERSECTUPDATE = 0x00000200;
const SPI_GETSNAPSIZING = 0x008E;
const MCI_ANIM_STATUS_HWND = 0x00004003;
const KP_RA = 16;
const RPC_E_SERVER_CANTMARSHAL_DATA = 0x8001000D;
const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS = 0x8011081B;
const KP_RP = 23;
const IN_CLASSC_NSHIFT = 8;
const LCMAP_HIRAGANA = 0x00100000;
const SC_MOUSEMENU = 0xF090;
const BANDINFO = 24;
const APPLICATION_VERIFIER_PROBE_INVALID_START_OR_SIZE = 0x0607;
const __WINNT__ = 1;
const ERROR_NETWORK_UNREACHABLE = 1231;
const PWR_FAIL = -1;
const IMAGE_REL_AM_REL32_2 = 0x0006;
const TYPE_E_UNDEFINEDTYPE = 0x80028027;
const URLACTION_INFODELIVERY_NO_EDITING_CHANNELS = 0x00001D01;
const DS_CONTROL = 0x0400;
const MAX_REASON_NAME_LEN = 64;
const ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 8583;
const EVENT_E_INVALID_EVENT_CLASS_PARTITION = 0x8004020F;
const SORT_HUNGARIAN_TECHNICAL = 0x1;
const ARW_LEFT = 0x0000;
const COLOR_3DLIGHT = 22;
const CO_E_CANT_REMOTE = 0x80004013;
const IACE_DEFAULT = 0x0010;
const RPC_E_SERVER_DIED = 0x80010007;
const ERROR_READ_FAULT = 30;
const LOCALE_SABBREVMONTHNAME10 = 0x0000004D;
const LOCALE_SABBREVMONTHNAME13 = 0x0000100F;
const CERT_ALT_NAME_X400_ADDRESS = 4;
const IMAGE_SCN_ALIGN_MASK = 0x00F00000;
const ERROR_DS_CANT_ADD_SYSTEM_ONLY = 8358;
const SMART_SHORT_SELFTEST_OFFLINE = 1;
const SHTDN_REASON_MINOR_HOTFIX_UNINSTALL = 0x00000017;
const ERROR_VOLUME_CONTAINS_SYS_FILES = 4337;
const ERROR_DS_OPERATIONS_ERROR = 8224;
const DMLERR_MEMORY_ERROR = 0x4008;
const RRF_ZEROONFAILURE = 0x20000000;
const FACILITY_MSMQ = 14;
const PSP_DEFAULT = 0x00000000;
const SM_CYBORDER = 6;
const IMN_SETSTATUSWINDOWPOS = 0x000C;
const ERROR_TOO_MANY_TCBS = 155;
const CERT_STORE_SAVE_TO_FILENAME_A = 3;
const RESOURCEDISPLAYTYPE_GROUP = 0x00000005;
const DC_MEDIAREADY = 29;
const RI_MOUSE_RIGHT_BUTTON_DOWN = 0x0004;
const CERT_STORE_SAVE_TO_FILENAME_W = 4;
const WNCON_FORNETCARD = 0x00000001;
const SEF_DEFAULT_GROUP_FROM_PARENT = 0x40;
const PROCESSOR_STRONGARM = 2577;
const EIMES_GETCOMPSTRATONCE = 0x0001;
const LPD_SUPPORT_GDI = 0x00000010;
const PD_PRINTSETUP = 0x40;
const EMR_CREATEDIBPATTERNBRUSHPT = 94;
const WS_OVERLAPPED = 0x00000000;
const SM_MOUSEWHEELPRESENT = 75;
const ISC_SHOWUIALL = 0xC000000F;
const __SIZEOF_LONG_LONG__ = 8;
const PP_SIG_KEYSIZE_INC = 34;
const SUBLANG_TIGRIGNA_ERITREA = 0x02;
const SYSTEM_ALARM_OBJECT_ACE_TYPE = 0x8;
const JOY_BUTTON4CHG = 0x0800;
const CRYPT_I_NEW_PROTECTION_REQUIRED = 0x00091012;
const CERT_COMPARE_MD5_HASH = 4;
const DMPAPER_PENV_1 = 96;
const DMPAPER_PENV_2 = 97;
const STGM_READWRITE = 0x00000002;
const DMPAPER_PENV_4 = 99;
const DMPAPER_PENV_7 = 102;
const DMPAPER_PENV_8 = 103;
const DMPAPER_PENV_9 = 104;
const USN_REASON_NAMED_DATA_EXTEND = 0x00000020;
const OFN_NONETWORKBUTTON = 0x20000;
const CERT_CHAIN_POLICY_IGNORE_END_REV_UNKNOWN_FLAG = 0x100;
const ERROR_DS_ALIAS_PROBLEM = 8241;
const AF_UNIX = 1;
const DMPAPER_ESHEET = 26;
const S_SERDST = -16;
const MCI_SET_DOOR_OPEN = 0x00000100;
const ERROR_KEY_DELETED = 1018;
const PSD_NONETWORKBUTTON = 0x200000;
const SUBLANG_HAUSA_NIGERIA_LATIN = 0x01;
const FORMATDLGORD30 = 1544;
const ERROR_FAIL_I24 = 83;
const URLACTION_COOKIES_SESSION_THIRD_PARTY = 0x00001A06;
const CRYPT_SGCKEY = 0x2000;
const COMADMIN_E_ROLE_DOES_NOT_EXIST = 0x80110447;
const WH_MAX = 14;
const PP_DELETEKEY = 24;
const RPC_E_CLIENT_CANTMARSHAL_DATA = 0x8001000B;
const DPD_DELETE_UNUSED_FILES = 0x00000001;
const ERROR_CTX_WD_NOT_FOUND = 7004;
const USER_CALL_IS_ASYNC = 0x0100;
const IMAGE_FILE_MACHINE_M32R = 0x9041;
const WM_PARENTNOTIFY = 0x0210;
const ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178;
const SPI_GETSNAPTODEFBUTTON = 0x005F;
const APPCMD_MASK = 0x00000FF0;
const CO_E_RUNAS_CREATEPROCESS_FAILURE = 0x80004019;
const FILE_SUPPORTS_OPEN_BY_FILE_ID = 0x01000000;
const DISPID_COLLECT = -8;
const szOID_POLICY_CONSTRAINTS = "2.5.29.36";
const WM_MBUTTONDOWN = 0x0207;
const RT_ANIICON = 22;
const RTL_VRF_FLG_STACK_CHECKS = 0x00000008;
const THREAD_MODE_BACKGROUND_BEGIN = 0x00010000;
const MDM_V23_OVERRIDE = 0x00000400;
const SPAPI_E_NO_SUCH_INTERFACE_CLASS = 0x800F021E;
const WM_DESTROY = 0x0002;
const PSNRET_INVALID = 1;
const ERROR_COLORSPACE_MISMATCH = 2021;
const ERROR_APPHELP_BLOCK = 1259;
const ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 8606;
const NUMPRS_HEX_OCT = 0x0040;
const SEC_E_KDC_CERT_EXPIRED = 0x8009035A;
const VP_FLAGS_MAX_UNSCALED = 0x0010;
const CERT_STORE_SHARE_STORE_FLAG = 0x40;
const VFT2_FONT_RASTER = 0x00000001;
const DISABLE_SMART = 0xD9;
const SC_MANAGER_MODIFY_BOOT_CONFIG = 0x0020;
const LC_WIDE = 16;
const MB_DEFMASK = 0x00000F00;
const VK_OEM_COPY = 0xF2;
const MS_DEF_PROV_A = "Microsoft Base Cryptographic Provider v1.0";
const IMAGE_FILE_LINE_NUMS_STRIPPED = 0x0004;
const ERROR_NODE_CANT_HOST_RESOURCE = 5071;
const IMAGE_DLLCHARACTERISTICS_NO_BIND = 0x0800;
const MS_DEF_PROV_W = "Microsoft Base Cryptographic Provider v1.0";
const SPI_GETLOWPOWERACTIVE = 0x0053;
const ENABLERELATIVEWIDTHS = 768;
const IGIMII_CONFIGURE = 0x0004;
const WS_ACTIVECAPTION = 0x0001;
const STG_E_FILENOTFOUND = 0x80030002;
const ERROR_DS_RANGE_CONSTRAINT = 8322;
const LANG_ITALIAN = 0x10;
const ERROR_INVALID_TIME = 1901;
const MAX_LEADBYTES = 12;
const DRAGDROP_E_ALREADYREGISTERED = 0x80040101;
const RPC_S_GRP_ELT_NOT_REMOVED = 1929;
const EMR_SETLAYOUT = 115;
const JOB_OBJECT_LIMIT_ACTIVE_PROCESS = 0x00000008;
const PS_GEOMETRIC = 0x00010000;
const CERT_NAME_STR_NO_QUOTING_FLAG = 0x10000000;
const ERROR_IPSEC_IKE_DECRYPT = 13867;
const DMBIN_UPPER = 1;
const MDM_HDLCPPP_AUTH_DEFAULT = 0x0;
const SPI_SETDOUBLECLICKTIME = 0x0020;
const ERROR_DDE_FAIL = 1156;
const CRYPT_E_ASN1_EOD = 0x80093102;
const WH_MIN = -1;
const __MINGW64_VERSION_MAJOR = 3;
const SCARD_STATE_UNKNOWN = 0x00000004;
const __DEC32_MIN_EXP__ = -94;
const szOID_INFOSEC_SuiteAConfidentiality = "2.16.840.1.101.2.1.1.14";
const CERT_STORE_ADD_USE_EXISTING = 2;
const PDEVICESIZE = 26;
const MDM_PROTOCOLID_DEFAULT = 0x0;
const CERT_FIND_OR_ENHKEY_USAGE_FLAG = 0x10;
const RPC_E_SERVERFAULT = 0x80010105;
const LANG_PASHTO = 0x63;
const OVERWRITE_HIDDEN = 4;
const BI_RLE4 = 2;
const BIDI_ACTION_GET = "Get";
const BI_RLE8 = 1;
const FRERR_BUFFERLENGTHZERO = 0x4001;
const ELEMENT_STATUS_PVOLTAG = 0x10000000;
const JOY_BUTTON10 = 0x00000200;
const CERT_PHYSICAL_STORE_REMOTE_OPEN_DISABLE_FLAG = 0x4;
const NAME_FLAGS_MASK = 0x87;
const ALG_TYPE_ANY = 0;
const PURGE_TXCLEAR = 0x4;
const USN_REASON_DATA_OVERWRITE = 0x00000001;
const MF_APPEND = 0x00000100;
const MCI_OVLY_STATUS_HWND = 0x00004001;
const COMADMIN_E_SYSTEMAPP = 0x80110433;
const ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = 8609;
const FRAME_TRAP = 1;
const SHTDN_REASON_MAJOR_APPLICATION = 0x00040000;
const SOCK_RAW = 3;
const IMAGE_SYM_TYPE_STRUCT = 0x0008;
const REGDB_S_FIRST = 0x00040150;
const MF_RIGHTJUSTIFY = 0x00004000;
const VFT_STATIC_LIB = 0x00000007;
const NCBLANSTALERT = 0x73;
const ERROR_WMI_DP_FAILED = 4209;
const WM_IME_REQUEST = 0x0288;
const COMADMIN_E_APP_FILE_VERSION = 0x80110409;
const CTRY_MONGOLIA = 976;
const CS_E_INVALID_PATH = 0x8004016B;
const ERROR_DS_DUP_LDAP_DISPLAY_NAME = 8382;
const ERROR_CTX_INVALID_MODEMNAME = 7010;
const ID_DEFAULTINST = -2;
const MK_XBUTTON1 = 0x0020;
const MK_XBUTTON2 = 0x0040;
const ERROR_EXCEPTION_IN_SERVICE = 1064;
const APPCOMMAND_BASS_BOOST = 20;
const ERROR_IPSEC_IKE_UNSUPPORTED_ID = 13869;
const MOUSETRAILS = 39;
const ERROR_DS_NO_RESULTS_RETURNED = 8257;
const JOY_BUTTON17 = 0x00010000;
const ERROR_WMI_INVALID_MOF = 4210;
const CREATE_NEW = 1;
const TAPE_PSEUDO_LOGICAL_POSITION = 2;
const SOCK_RDM = 4;
const SBS_VERT = 0x0001;
const SC_HSCROLL = 0xF080;
const FLI_MASK = 0x103B;
const ERROR_NO_MEDIA_IN_DRIVE = 1112;
const DMPAPER_FANFOLD_US = 39;
const HTTRANSPARENT = -1;
const ERROR_MEDIA_NOT_AVAILABLE = 4318;
const HC_SYSMODALON = 4;
const PRINTER_CHANGE_DELETE_JOB = 0x00000400;
const psh10 = 0x0409;
const VER_AND = 6;
const MOUSEEVENTF_RIGHTUP = 0x0010;
const CMC_FAIL_BAD_ALG = 0;
const VK_PAUSE = 0x13;
const C3_NONSPACING = 0x0001;
const IMAGE_DIRECTORY_ENTRY_SECURITY = 4;
const ERROR_MESSAGE_EXCEEDS_MAX_SIZE = 4336;
const EWX_FORCEIFHUNG = 0x00000010;
const LOCALE_ILANGUAGE = 0x00000001;
const IME_HOTKEY_PRIVATE_LAST = 0x21F;
const ARW_TOPRIGHT = 0x0003;
const CSTR_GREATER_THAN = 3;
const EVENT_SYSTEM_MENUEND = 0x0005;
const IMAGE_FILE_MACHINE_ALPHA64 = 0x0284;
const DFCS_SCROLLSIZEGRIPRIGHT = 0x0010;
const CRYPT_USER_PROTECTED = 0x2;
const COMADMIN_E_CAN_NOT_EXPORT_SYS_APP = 0x8011044C;
const ES_CENTER = 0x0001;
const GMEM_MOVEABLE = 0x2;
const CO_E_SERVER_NOT_PAUSED = 0x80004026;
const CFS_EXCLUDE = 0x0080;
const NRC_IFBUSY = 0x21;
const COMADMIN_E_NOSERVERSHARE = 0x8011041B;
const PARTITION_ENTRY_UNUSED = 0x00;
const PAGE_EXECUTE_WRITECOPY = 0x80;
const MB_ICONMASK = 0x000000F0;
const CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC = "CertDllRegisterPhysicalStore";
const SPI_GETCURSORSHADOW = 0x101A;
const WM_IME_CONTROL = 0x0283;
const DMPAPER_LETTER_TRANSVERSE = 54;
const SWP_NOOWNERZORDER = 0x0200;
const EVENPARITY = 2;
const CACHE_S_FORMATETC_NOTSUPPORTED = 0x00040170;
const SEC_E_WRONG_PRINCIPAL = 0x80090322;
const COLOR_INFOBK = 24;
const LZERROR_BADVALUE = -7;
const CM_DEVICE_ICM = 0x00000001;
const THREAD_MODE_BACKGROUND_END = 0x00020000;
const ERROR_DS_DUP_LINK_ID = 8468;
const DESKTOP_SWITCHDESKTOP = 0x0100;
const ALTERNATE = 1;
const SCARD_W_UNPOWERED_CARD = 0x80100067;
const MIXERR_BASE = 1024;
const NOERROR = 0;
const VOS_DOS_WINDOWS32 = 0x00010004;
const IMAGE_REL_EBC_ADDR32NB = 0x0001;
const SMTO_ABORTIFHUNG = 0x0002;
const IMAGE_REL_PPC_TYPEMASK = 0x00FF;
const LOGON_NETCREDENTIALS_ONLY = 0x00000002;
const DMTT_DOWNLOAD = 2;
const RPC_S_INVALID_NET_ADDR = 1707;
const SE_ERR_DDETIMEOUT = 28;
const IMAGE_REL_CEE_SECREL = 0x0005;
const OSS_PER_DLL_NOT_LINKED = 0x8009302B;
const S_SERMACT = -3;
const ALL_TRANSPORTS = "M\0\0\0";
const WNNC_NET_DOCUSPACE = 0x001B0000;
const VER_SUITE_ENTERPRISE = 0x00000002;
const ERROR_NON_DOMAIN_SID = 1258;
const NTE_PROV_TYPE_ENTRY_BAD = 0x80090018;
const CERT_COMPARE_ISSUER_OF = 12;
const ERROR_DS_INVALID_DN_SYNTAX = 8242;
const CBR_2400 = 2400;
const SPI_SETDRAGFULLWINDOWS = 0x0025;
const ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = 14076;
const SM_IMMENABLED = 82;
const FOF_NOCOPYSECURITYATTRIBS = 0x0800;
const DWLP_MSGRESULT = 0;
const OSS_OID_DLL_NOT_LINKED = 0x8009301A;
const COMADMIN_E_PROCESSALREADYRECYCLED = 0x80110812;
const sz_CERT_STORE_PROV_FILENAME_W = "File";
const USN_REASON_HARD_LINK_CHANGE = 0x00010000;
const CRYPT_E_ASN1_UTF8 = 0x8009310E;
const SUBLANG_SWEDISH_FINLAND = 0x02;
const TPM_NOANIMATION = 0x4000;
const IPPORT_NAMESERVER = 42;
const SCARD_W_WRONG_CHV = 0x8010006B;
const FILE_DEVICE_SERENUM = 0x00000037;
const ACCESS_ALLOWED_ACE_TYPE = 0x0;
const MSSIPOTF_E_FILE_CHECKSUM = 0x8009700D;
const APPCOMMAND_MEDIA_STOP = 13;
const CERTSRV_E_BAD_RENEWAL_SUBJECT = 0x80094806;
const CERT_PHYSICAL_STORE_LOCAL_MACHINE_GROUP_POLICY_NAME = ".LocalMachineGroupPolicy";
const COMADMIN_E_OBJECTINVALID = 0x80110402;
const ERROR_DS_CANT_MIX_MASTER_AND_REPS = 8331;
const ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 8611;
const ERROR_SAME_DRIVE = 143;
const COMADMIN_E_CANTRECYCLELIBRARYAPPS = 0x8011080F;
const szOID_REQUIRE_CERT_CHAIN_POLICY = "1.3.6.1.4.1.311.21.15";
const ERROR_RESMON_INVALID_STATE = 5084;
const FILE_ADD_FILE = 0x0002;
const SUBLANG_UIGHUR_PRC = 0x01;
const ERROR_DS_CANT_REM_MISSING_ATT = 8324;
const szOID_NEXT_UPDATE_LOCATION = "1.3.6.1.4.1.311.10.2";
const ERROR_NO_PROC_SLOTS = 89;
const SUBLANG_MACEDONIAN_MACEDONIA = 0x01;
const MCI_VD_PLAY_SPEED = 0x00040000;
const szOID_OIWSEC_desECB = "1.3.14.3.2.6";
const SEC_E_NO_KERB_KEY = 0x80090348;
const OSS_TOO_LONG = 0x80093010;
const TYPE1_FONTTYPE = 0x40000;
const UOI_NAME = 2;
const C2_BLOCKSEPARATOR = 0x0008;
const APPLICATION_VERIFIER_COM_UNBALANCED_SWC = 0x0405;
const GR_GDIOBJECTS = 0;
const DUPLICATE = 0x06;
const MCI_DEVTYPE_VCR = 513;
const BACKUP_EA_DATA = 0x2;
const PSWIZB_BACK = 0x00000001;
const MOD_MAPPER = 5;
const BST_UNCHECKED = 0x0000;
const ERROR_LOCKED = 212;
const CLIPCAPS = 36;
const PD_PRINTTOFILE = 0x20;
const LMEM_MODIFY = 0x80;
const IN_CLASSB_NSHIFT = 16;
const EVENTLOG_END_ALL_PAIRED_EVENTS = 0x0004;
const LOCALE_IPOSSEPBYSPACE = 0x00000055;
const XACT_E_COMMITFAILED = 0x8004D002;
const IMAGE_SCN_CNT_UNINITIALIZED_DATA = 0x00000080;
const WH_GETMESSAGE = 3;
const GW_HWNDFIRST = 0;
const NTDDI_WS03 = 0x05020000;
const NIS_HIDDEN = 0x00000001;
const CBF_FAIL_SELFCONNECTIONS = 0x00001000;
const BS_DIBPATTERN = 5;
const PRODUCT_WEB_SERVER = 0x11;
const IMAGE_REL_BASED_HIGHADJ = 4;
const FACILITY_SCARD = 16;
const BS_TOP = 0x00000400;
const CERT_SIGNATURE_HASH_PROP_ID = 15;
const IME_CMODE_CHARCODE = 0x0020;
const IME_KHOTKEY_HANJACONVERT = 0x51;
const ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 5894;
const COLOR_BTNSHADOW = 16;
const ST_ISLOCAL = 0x0004;
const ENABLE_INSERT_MODE = 0x20;
const MARSHAL_E_FIRST = 0x80040120;
const FILE_MAXIMUM_DISPOSITION = 0x00000005;
const SPI_GETFOREGROUNDLOCKTIMEOUT = 0x2000;
const DMMEDIA_TRANSPARENCY = 2;
const CRYPT_STRING_BASE64 = 0x1;
const RTL_VRF_FLG_ENABLE_LOGGING = 0x00004000;
const BLACK_BRUSH = 4;
const TYPE_E_TYPEMISMATCH = 0x80028CA0;
const __UINT_LEAST8_MAX__ = 255;
const ERROR_WMI_DP_NOT_FOUND = 4204;
const szOID_SORTED_CTL = "1.3.6.1.4.1.311.10.1.1";
const SEC_E_CERT_UNKNOWN = 0x80090327;
const STM_GETICON = 0x0171;
const PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC = 0x3E;
const WM_SETFONT = 0x0030;
const FILE_DEVICE_NETWORK_BROWSER = 0x00000013;
const APPCOMMAND_TREBLE_DOWN = 22;
const ERROR_INVALID_DATA = 13;
const MCI_WAVE_OFFSET = 1152;
const CRL_DIST_POINT_ERR_INDEX_SHIFT = 24;
const STGM_DIRECT = 0x00000000;
const RPC_C_PROTSEQ_MAX_REQS_DEFAULT = 10;
const SUBLANG_FAEROESE_FAROE_ISLANDS = 0x01;
const CDERR_NOHINSTANCE = 0x0004;
const RGN_COPY = 5;
const WS_DISABLED = 0x08000000;
const IMN_SETSENTENCEMODE = 0x0007;
const X3_D_WH_INST_WORD_POS_X = 24;
const SSTF_NONE = 0;
const MK_E_EXCEEDEDDEADLINE = 0x800401E1;
const ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = 14006;
const ERROR_DS_DST_NC_MISMATCH = 8486;
const COMADMIN_E_COMPFILE_GETCLASSOBJ = 0x80110426;
const TYPE_E_REGISTRYACCESS = 0x8002801C;
const DNS_ERROR_ZONE_CREATION_FAILED = 9608;
const SC_MANAGER_CONNECT = 0x0001;
const CAL_JAPAN = 3;
const CP_WINUNICODE = 1200;
const MF_DEFAULT = 0x00001000;
const URLACTION_AUTOMATIC_DOWNLOAD_UI = 0x00002200;
const RPC_X_PIPE_EMPTY = 1918;
const ERROR_SUCCESS_REBOOT_INITIATED = 1641;
const RPC_E_FAULT = 0x80010104;
const SCARD_E_SYSTEM_CANCELLED = 0x80100012;
const CERT_STORE_BASE_CRL_FLAG = 0x100;
const TIME_ZONE_ID_STANDARD = 1;
const RI_MOUSE_RIGHT_BUTTON_UP = 0x0008;
const PORT_STATUS_TYPE_INFO = 3;
const LCMAP_FULLWIDTH = 0x00800000;
const szOID_INFOSEC_mosaicKMandUpdSig = "2.16.840.1.101.2.1.1.20";
const ERROR_BAD_USERNAME = 2202;
const szKEY_CACHE_SECONDS = "PrivateKeyLifetimeSeconds";
const CMSG_ENCODED_MESSAGE = 29;
const SCERR_NOCARDNAME = 0x4000;
const DMICM_CONTRAST = 2;
const WM_THEMECHANGED = 0x031A;
const PRODUCT_EMBEDDED = 0x41;
const STARTF_FORCEOFFFEEDBACK = 0x80;
const szOID_TITLE = "2.5.4.12";
const SPI_GETMENUFADE = 0x1012;
const ACCESS_MOUSEKEYS = 0x0003;
const ERROR_DS_CHILDREN_EXIST = 8332;
const ERROR_NOT_CONTAINER = 1207;
const HELPMSGSTRINGW = "commdlg_help";
const SEC_E_SECPKG_NOT_FOUND = 0x80090305;
const CTRY_ROMANIA = 40;
const S_QUEUEEMPTY = 0;
const EXIT_FAILURE = 1;
const ERROR_SEM_USER_LIMIT = 106;
const SUBLANG_SLOVENIAN_SLOVENIA = 0x01;
const CRYPT_CREATE_SALT = 0x4;
const PAN_LETT_NORMAL_CONTACT = 2;
const PRINTER_NOTIFY_FIELD_SHARE_NAME = 0x02;
const szOID_INFOSEC_sdnsSignature = "2.16.840.1.101.2.1.1.1";
const DI_NOMIRROR = 0x0010;
const DSPRINT_UNPUBLISH = 0x00000004;
const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174;
const __SCHAR_MAX__ = 127;
const UOI_USER_SID = 4;
const CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT = 0x40000000;
const JOB_OBJECT_SECURITY_ONLY_TOKEN = 0x00000004;
const C2_RIGHTTOLEFT = 0x0002;
const SERVICE_PAUSE_CONTINUE = 0x0040;
const EM_LINELENGTH = 0x00C1;
const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = 8495;
const ERROR_EXE_MACHINE_TYPE_MISMATCH = 216;
const DM_FORMNAME = 0x00010000;
const FILE_VOLUME_QUOTAS = 0x00000020;
const PROPSETFLAG_CASE_SENSITIVE = 8;
const FILE_DEVICE_MULTI_UNC_PROVIDER = 0x00000010;
const ERROR_INVALID_CURSOR_HANDLE = 1402;
const ELEMENT_STATUS_EXENAB = 0x00000010;
const CBM_INIT = 0x04;
const SPI_SETGRADIENTCAPTIONS = 0x1009;
const MDM_V110_SPEED_38DOT4K = 0x9;
const ERROR_DS_DRA_SCHEMA_CONFLICT = 8543;
const DDE_FACK = 0x8000;
const ETO_OPAQUE = 0x0002;
const LOCALE_USE_CP_ACP = 0x40000000;
const COMADMIN_E_CAT_UNACCEPTABLEBITNESS = 0x80110483;
const RTL_VRF_FLG_DIRTY_STACKS = 0x00000040;
const DETACHED_PROCESS = 0x8;
const RESETDEV = 7;
const CRL_REASON_CESSATION_OF_OPERATION_FLAG = 0x4;
const DCX_WINDOW = 0x00000001;
const EV_BREAK = 0x40;
const SEARCH_ALT_NO_SEQ = 0x6;
const PRODUCT_STANDARD_SERVER_CORE_V = 0x28;
const TAPE_SPACE_RELATIVE_BLOCKS = 5;
const EMARCH_ENC_I17_IMM41b_INST_WORD_X = 1;
const ERROR_IPSEC_IKE_GETSPIFAIL = 13857;
const DMPAPER_PENV_8_ROTATED = 116;
const REG_NO_COMPRESSION = 4;
const ERROR_DS_CANT_ADD_TO_GC = 8550;
const SECURITY_EFFECTIVE_ONLY = 0x80000;
const CRYPT_E_NO_VERIFY_USAGE_DLL = 0x80092027;
const GWL_EXSTYLE = -20;
const CONTEXT_E_WOULD_DEADLOCK = 0x8004E005;
const IMAGE_REL_M32R_ADDR24 = 0x0003;
const ERROR_DS_DRA_OBJ_NC_MISMATCH = 8545;
const SUBLANG_AZERI_LATIN = 0x01;
const DC_FILEDEPENDENCIES = 14;
const ERROR_DS_NAME_VALUE_TOO_LONG = 8349;
const ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 14079;
const CERT_LDAP_STORE_SIGN_FLAG = 0x10000;
const ERROR_DIRECTORY = 267;
const GGO_GLYPH_INDEX = 0x0080;
const CP_MACCP = 2;
const PDCAP_D1_SUPPORTED = 0x00000002;
const GL_ID_NOMODULE = 0x00000001;
const IMAGE_REL_M32R_ADDR32 = 0x0001;
const CO_E_FAILEDTOGETSECCTX = 0x80010124;
const MK_E_NEEDGENERIC = 0x800401E2;
const COMADMIN_E_REGDB_NOTINITIALIZED = 0x80110472;
const szOID_NETSCAPE_CERT_SEQUENCE = "2.16.840.1.113730.2.5";
const SEC_E_INVALID_TOKEN = 0x80090308;
const ERROR_CLUSTER_INVALID_NODE = 5039;
const __LDBL_HAS_INFINITY__ = 1;
const TT_PRIM_LINE = 1;
const IME_THOTKEY_SYMBOL_TOGGLE = 0x72;
const ERROR_CTX_NO_OUTBUF = 7008;
const IMAGE_REL_MIPS_TOKEN = 0x000E;
const WM_INITMENUPOPUP = 0x0117;
const TC_SA_INTEGER = 0x00000080;
const IMAGE_WEAK_EXTERN_SEARCH_LIBRARY = 2;
const PSIDENT_GDICENTRIC = 0;
const DMPAPER_12X11 = 90;
const URLMON_OPTION_URL_ENCODING = 0x10000004;
const OSS_REAL_CODE_NOT_LINKED = 0x80093020;
const BIDI_ACTION_GET_ALL = "GetAll";
const SORT_INVARIANT_MATH = 0x1;
const STG_S_CONSOLIDATIONFAILED = 0x00030205;
const ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 14018;
const APPLICATION_VERIFIER_COM_UNSAFE_IMPERSONATION = 0x0407;
const FF_DECORATIVE = 5<<4;
const ERROR_REPARSE_ATTRIBUTE_CONFLICT = 4391;
const BM_CLICK = 0x00F5;
const RPC_BUFFER_ASYNC = 0x00008000;
const PP_KEYX_KEYSIZE_INC = 35;
const ELEMENT_STATUS_ACCESS = 0x00000008;
const PROCESSOR_HITACHI_SH3 = 10003;
const PROCESSOR_HITACHI_SH4 = 10005;
const CTRY_PUERTO_RICO = 1;
const CP_OEMCP = 1;
const HC_ACTION = 0;
const CERT_STORE_SIGNATURE_FLAG = 0x1;
const ERROR_INSTALL_NOTUSED = 1634;
const COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER = 0x8011044E;
const CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_DEFAULT = 5;
const PRINTER_STATUS_PAUSED = 0x00000001;
const szOID_PKCS_7_DATA = "1.2.840.113549.1.7.1";
const META_SAVEDC = 0x001E;
const QS_MOUSEMOVE = 0x0002;
const RPC_S_FP_DIV_ZERO = 1769;
const VK_LMENU = 0xA4;
const URLPOLICY_ACTIVEX_CHECK_LIST = 0x00010000;
const ERROR_DS_DIFFERENT_REPL_EPOCHS = 8593;
const CTLCOLOR_DLG = 4;
const CTRY_UZBEKISTAN = 7;
const CO_E_BAD_PATH = 0x80080004;
const szOID_CERTSRV_PREVIOUS_CERT_HASH = "1.3.6.1.4.1.311.21.2";
const EVENT_SYSTEM_MENUSTART = 0x0004;
const LANG_KASHMIRI = 0x60;
const ILLUMINANT_A = 1;
const ILLUMINANT_B = 2;
const ILLUMINANT_C = 3;
const BACKUP_SECURITY_DATA = 0x3;
const MIXERCONTROL_CONTROLF_UNIFORM = 0x00000001;
const CERT_PROT_ROOT_DISABLE_NOT_DEFINED_NAME_CONSTRAINT_FLAG = 0x20;
const SUBLANG_AFRIKAANS_SOUTH_AFRICA = 0x01;
const SPACEPARITY = 4;
const EXCEPTION_EXECUTE_FAULT = 8;
const SMART_INVALID_DRIVE = 5;
const META_SETBKMODE = 0x0102;
const IMAGE_REL_AMD64_ADDR32NB = 0x0003;
const MOUSEEVENTF_MIDDLEUP = 0x0040;
const SETBREAK = 8;
const XACT_E_NOISORETAIN = 0x8004D00B;
const IMAGE_SYM_CLASS_UNDEFINED_LABEL = 0x0007;
const OSVERSION_MASK = 0xFFFF0000;
const WNNC_NET_SERNET = 0x001D0000;
const PP_SIGNATURE_KEYSIZE = 13;
const ERROR_NO_LOGON_SERVERS = 1311;
const SHGFI_ADDOVERLAYS = 0x000000020;
const SEC_E_QOP_NOT_SUPPORTED = 0x8009030A;
const DT_TOP = 0x00000000;
const SCARD_E_READER_UNSUPPORTED = 0x8010001A;
const STG_E_INSUFFICIENTMEMORY = 0x80030008;
const MS_DEF_RSA_SCHANNEL_PROV_A = "Microsoft RSA SChannel Cryptographic Provider";
const IMAGE_SIZEOF_SHORT_NAME = 8;
const MS_DEF_RSA_SCHANNEL_PROV_W = "Microsoft RSA SChannel Cryptographic Provider";
const BROADCAST_QUERY_DENY = 0x424D5144;
const CAL_SABBREVDAYNAME6 = 0x00000013;
const ERROR_NOT_ENOUGH_QUOTA = 1816;
const SUBLANG_UKRAINIAN_UKRAINE = 0x01;
const PERF_NUMBER_DEC_1000 = 0x00020000;
const ERROR_SPECIAL_USER = 1373;
const PWR_SUSPENDREQUEST = 1;
const ERROR_DS_PARENT_IS_AN_ALIAS = 8330;
const REGDB_S_LAST = 0x0004015F;
const LEFT_CTRL_PRESSED = 0x8;
const WINSTA_READATTRIBUTES = 0x0002;
const CBN_SELENDOK = 9;
const CBF_SKIP_REGISTRATIONS = 0x00080000;
const ERROR_GENERIC_NOT_MAPPED = 1360;
const SPI_GETMENUANIMATION = 0x1002;
const RPC_S_UUID_LOCAL_ONLY = 1824;
const LB_GETITEMDATA = 0x0199;
const RPC_S_BINDING_HAS_NO_AUTH = 1746;
const IS_TEXT_UNICODE_STATISTICS = 0x0002;
const CO_E_OBJSRV_RPC_FAILURE = 0x80080006;
const DMPAPER_B4 = 12;
const _WIN32_IE_IE401 = 0x0401;
const CRYPT_DECRYPT_RSA_NO_PADDING_CHECK = 0x20;
const STGOPTIONS_VERSION = 2;
const SCARD_UNKNOWN = 0;
const ERROR_RMODE_APP = 1153;
const IMAGE_DIRECTORY_ENTRY_TLS = 9;
const ERROR_IPSEC_IKE_MM_LIMIT = 13882;
const XACT_S_LASTRESOURCEMANAGER = 0x0004D010;
const PIPE_UNLIMITED_INSTANCES = 255;
const PROV_EC_ECNRA_SIG = 15;
const RPC_S_NO_INTERFACES = 1817;
const SUBLANG_CHINESE_TRADITIONAL = 0x01;
const CERT_SYSTEM_STORE_MASK = 0xFFFF0000;
const szOID_NETSCAPE_CERT_RENEWAL_URL = "2.16.840.1.113730.1.7";
const DMPAPER_ENV_B4 = 33;
const ERROR_DS_NAME_ERROR_RESOLVING = 8469;
const DISK_LOGGING_STOP = 1;
const MK_E_CANTOPENFILE = 0x800401EA;
const DLGWINDOWEXTRA = 30;
const CPS_CONVERT = 0x0002;
const HEAP_TAIL_CHECKING_ENABLED = 0x00000020;
const SS_LEFT = 0x00000000;
const ERROR_INVALID_FUNCTION = 1;
const szOID_AUTHORITY_KEY_IDENTIFIER = "2.5.29.1";
const DMPAPER_ENV_ITALY = 36;
const CTL_FIND_USAGE = 3;
const LOCALE_IDIGITSUBSTITUTION = 0x00001014;
const SOUND_SYSTEM_MENUPOPUP = 16;
const CMSG_OID_IMPORT_KEY_AGREE_FUNC = "CryptMsgDllImportKeyAgree";
const RPC_E_INVALID_OBJECT = 0x80010114;
const AUTHTYPE_SERVER = 2;
const HELP_TCARD_DATA = 0x0010;
const ERROR_NOT_SAFEBOOT_SERVICE = 1084;
const ACCESS_MAX_LEVEL = 4;
const IMAGE_ARCHIVE_LINKER_MEMBER = "/ ";
const RC_SAVEBITMAP = 0x0040;
const RPC_IF_ALLOW_LOCAL_ONLY = 0x0020;
const ERROR_DS_AUTH_UNKNOWN = 8234;
const ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = 8608;
const MMIO_CREATELIST = 0x0040;
const VK_LAUNCH_APP1 = 0xB6;
const FILE_END = 2;
const MAC_CHARSET = 77;
const CMSG_INNER_CONTENT_TYPE_PARAM = 4;
const SEE_MASK_NOQUERYCLASSSTORE = 0x01000000;
const PAN_LETT_NORMAL_BOXED = 4;
const RPC_C_PARM_BUFFER_LENGTH = 2;
const RI_KEY_E1 = 4;
const ERROR_DS_GENERIC_ERROR = 8341;
const INET_E_CANNOT_REPLACE_SFP_FILE = 0x800C0300;
const ERROR_HOST_DOWN = 1256;
const ERROR_SPECIAL_GROUP = 1372;
const SEC_E_CRYPTO_SYSTEM_INVALID = 0x80090337;
const CS_E_FIRST = 0x80040164;
const DNS_ERROR_RECORD_ALREADY_EXISTS = 9711;
const MM_DRVM_OPEN = 0x3D0;
const CTRY_RUSSIA = 7;
const MDM_HDLCPPP_ML_2 = 0x2;
const ERROR_DUP_NAME = 52;
const VK_SEPARATOR = 0x6C;
const GDICOMMENT_UNICODE_END = 0x00000080;
const ERROR_CANTOPEN = 1011;
const CMSG_ENCRYPTED_DIGEST = 27;
const CREATE_NEW_PROCESS_GROUP = 0x200;
const __GNUC__ = 4;
const COMADMIN_E_OBJECT_PARENT_MISSING = 0x80110808;
const CONNDLG_USE_MRU = 0x00000004;
const CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG = 0x2;
const IPPROTO_TCP = 6;
const IME_SMODE_CONVERSATION = 0x0010;
const IMAGE_SCN_ALIGN_8BYTES = 0x00400000;
const ERROR_NET_WRITE_FAULT = 88;
const WMSZ_BOTTOMLEFT = 7;
const CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED = 0x80094803;
const JOY_RETURNCENTERED = 0x00000400;
const CERT_STORE_SET_LOCALIZED_NAME_FLAG = 0x2;
const FILE_OPEN_BY_FILE_ID = 0x00002000;
const DST_ICON = 0x0003;
const RPC_X_WRONG_ES_VERSION = 1828;
const WINSTA_CREATEDESKTOP = 0x0008;
const WM_DEADCHAR = 0x0103;
const RC_STRETCHDIB = 0x2000;
const CLIP_DFA_DISABLE = 4<<4;
const MCI_SEQ_SET_OFFSET = 0x01000000;
const MDM_X75_DATA_T_70 = 0x3;
const SYSTEM_AUDIT_ACE_TYPE = 0x2;
const SPI_SETTOOLTIPANIMATION = 0x1017;
const LOCALE_ICALENDARTYPE = 0x00001009;
const CMSG_TRUSTED_SIGNER_FLAG = 0x1;
const APPCOMMAND_MEDIA_PLAY_PAUSE = 14;
const INPLACE_E_NOTUNDOABLE = 0x800401A0;
const SPAPI_E_AUTHENTICODE_DISALLOWED = 0x800F0240;
const ODS_SELECTED = 0x0001;
const IME_ESC_MAX_KEY = 0x1005;
const ERROR_REM_NOT_LIST = 51;
const STARTF_FORCEONFEEDBACK = 0x40;
const ANTIALIASED_QUALITY = 4;
const SUBLANG_BENGALI_BANGLADESH = 0x02;
const WNNC_NET_10NET = 0x00050000;
const ERROR_CLUSTER_DATABASE_SEQMISMATCH = 5083;
const DISP_E_BADPARAMCOUNT = 0x8002000E;
const SE_ERR_SHARE = 26;
const ENUMPAPERMETRICS = 34;
const ACCESS_ALLOWED_OBJECT_ACE_TYPE = 0x5;
const SLE_WARNING = 0x00000003;
const CTRY_MOROCCO = 212;
const VK_RMENU = 0xA5;
const MM_DRVM_ERROR = 0x3D3;
const LBS_NODATA = 0x2000;
const C2_WHITESPACE = 0x000A;
const PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS = 0x00000100;
const TAPE_SPACE_END_OF_DATA = 4;
const LBS_DISABLENOSCROLL = 0x1000;
const RPC_BUFFER_PARTIAL = 0x00002000;
const NIM_DELETE = 0x00000002;
const FEATURESETTING_MIRROR = 4;
const DNS_ERROR_NO_ZONE_INFO = 9602;
const EXIT_SUCCESS = 0;
const SCARD_E_UNSUPPORTED_FEATURE = 0x80100022;
const GCL_CONVERSION = 0x0001;
const VK_MULTIPLY = 0x6A;
const CERT_E_UNTRUSTEDROOT = 0x800B0109;
const WM_NCMBUTTONUP = 0x00A8;
const CBS_DROPDOWNLIST = 0x0003;
const AW_BLEND = 0x00080000;
const szOID_REQUEST_CLIENT_INFO = "1.3.6.1.4.1.311.21.20";
const RPC_C_EP_MATCH_BY_OBJ = 2;
const SS_WORDELLIPSIS = 0x0000C000;
const PO_REN_PORT = 0x0034;
const WINVER = 0x0502;
const IE_BYTESIZE = -11;
const ERROR_INSTALL_REMOTE_PROHIBITED = 1645;
const CBF_FAIL_ADVISES = 0x00004000;
const XACT_E_UNABLE_TO_LOAD_DTC_PROXY = 0x8004D028;
const FOREGROUND_RED = 0x4;
const DFC_CAPTION = 1;
const SC_DLG_FORCE_UI = 0x04;
const SERVICE_ERROR_SEVERE = 0x00000002;
const WM_MENURBUTTONUP = 0x0122;
const CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG = 0x10000;
const WM_MDIICONARRANGE = 0x0228;
const INPLACE_E_LAST = 0x800401AF;
const CTRY_ECUADOR = 593;
const ALG_SID_HASH_REPLACE_OWF = 11;
const SUBLANG_KASHMIRI_INDIA = 0x02;
const WM_NCLBUTTONDOWN = 0x00A1;
const szOID_INFOSEC_mosaicUpdatedInteg = "2.16.840.1.101.2.1.1.21";
const ERROR_IPSEC_IKE_PEER_CRL_FAILED = 13848;
const CDERR_LOADRESFAILURE = 0x0007;
const WS_CAPTION = 0x00C00000;
const BDR_SUNKENINNER = 0x0008;
const ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 8372;
const IDI_QUESTION = 32514;
const ERROR_ALREADY_ASSIGNED = 85;
const JOB_NOTIFY_FIELD_DATATYPE = 0x05;
const ERROR_DS_USER_BUFFER_TO_SMALL = 8309;
const CO_E_FAILEDTOQUERYCLIENTBLANKET = 0x80010128;
const __LDBL_HAS_DENORM__ = 1;
const IMAGE_REL_AMD64_SSPAN32 = 0x0010;
const CFS_CANDIDATEPOS = 0x0040;
const OSS_NULL_TBL = 0x80093014;
const CO_E_FAILEDTOCREATEFILE = 0x80010137;
const SCARD_PROVIDER_CSP = 2;
const VS_FF_PRERELEASE = 0x00000002;
const CLASSFACTORY_E_FIRST = 0x80040110;
const CRYPT_E_NOT_FOUND = 0x80092004;
const AW_CENTER = 0x00000010;
const __USING_SJLJ_EXCEPTIONS__ = 1;
const RT_FONTDIR = 7;
const LOCALE_SCURRENCY = 0x00000014;
const PRINTER_CHANGE_CONFIGURE_PORT = 0x00200000;
const IGP_SETCOMPSTR = 0x00000014;
const PIDSI_CHARCOUNT = 0x00000010;
const WM_GETICON = 0x007F;
const CTRY_PRCHINA = 86;
const ERROR_INVALID_LB_MESSAGE = 1432;
const RPC_E_CANTCALLOUT_ININPUTSYNCCALL = 0x8001010D;
const JOB_OBJECT_UI_VALID_FLAGS = 0x000000FF;
const CFS_POINT = 0x0002;
const CMSG_BARE_CONTENT_FLAG = 0x1;
const HW_PROFILE_GUIDLEN = 39;
const PRINTER_CHANGE_PRINTER_DRIVER = 0x70000000;
const ERROR_TRUSTED_DOMAIN_FAILURE = 1788;
const LR_CREATEDIBSECTION = 0x2000;
const SE_SELF_RELATIVE = 0x8000;
const MCI_ANIM_UPDATE_HDC = 0x00020000;
const MaxNumberOfEEInfoParams = 4;
const MAX_HW_COUNTERS = 16;
const CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC = "ContextDllCreateObjectContext";
const ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = 5078;
const CONSOLE_SELECTION_IN_PROGRESS = 0x1;
const DNS_ERROR_CNAME_LOOP = 9707;
const CMSG_CTRL_ADD_CERT = 10;
const ERROR_DS_INVALID_NAME_FOR_SPN = 8554;
const FKF_CLICKON = 0x00000040;
const SBS_LEFTALIGN = 0x0002;
const WM_HSCROLLCLIPBOARD = 0x030E;
const ICM_ADDPROFILE = 1;
const KF_UP = 0x8000;
const EMR_POLYDRAW16 = 92;
const szOID_KP_KEY_RECOVERY = "1.3.6.1.4.1.311.10.3.11";
const ULW_OPAQUE = 0x00000004;
const ERROR_NO_SUCH_LOGON_SESSION = 1312;
const CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL = 4;
const DM_DISPLAYFIXEDOUTPUT = 0x20000000;
const ERROR_DS_COMPARE_FALSE = 8229;
const TIME_ONESHOT = 0x0000;
const PAN_PROP_CONDENSED = 6;
const WM_AFXFIRST = 0x0360;
const CO_E_FAILEDTOCLOSEHANDLE = 0x80010138;
const IMAGE_FILE_SYSTEM = 0x1000;
const MCI_VD_STATUS_FORWARD = 0x00004003;
const URLPOLICY_CREDENTIALS_SILENT_LOGON_OK = 0x00000000;
const EMARCH_ENC_I17_IC_SIZE_X = 1;
const RPC_C_MGMT_INQ_PRINC_NAME = 1;
const LGRPID_GEORGIAN = 0x0010;
const VARIABLE_PITCH = 2;
const EVENT_OBJECT_REORDER = 0x8004;
const SS_ENDELLIPSIS = 0x00004000;
const rad10 = 0x0429;
const IMAGE_SYM_TYPE_CHAR = 0x0002;
const DOCKINFO_UNDOCKED = 0x1;
const SEC_E_ALGORITHM_MISMATCH = 0x80090331;
const MIXERCONTROL_CT_CLASS_LIST = 0x70000000;
const CERT_RDN_DISABLE_CHECK_TYPE_FLAG = 0x40000000;
const TC_RA_ABLE = 0x00002000;
const RPC_C_STATS_CALLS_OUT = 1;
const GCP_NEUTRALOVERRIDE = 0x02000000;
const CRYPT_BLOB_VER3 = 0x80;
const SET_BACKGROUND_COLOR = 4103;
const DCX_CACHE = 0x00000002;
const GWLP_HINSTANCE = -6;
const META_SELECTOBJECT = 0x012D;
const STATE_SYSTEM_MARQUEED = 0x00002000;
const ANSI_VAR_FONT = 12;
const VIEW_E_FIRST = 0x80040140;
const BSF_NOHANG = 0x00000008;
const E_POINTER = 0x80004003;
const CERT_ACCESS_STATE_PROP_ID = 14;
const CS_E_NETWORK_ERROR = 0x8004016C;
const SERVICE_SYSTEM_START = 0x00000001;
const ALG_SID_SCHANNEL_ENC_KEY = 7;
const COMADMIN_E_START_APP_DISABLED = 0x80110451;
const DMPAPER_ENV_9 = 19;
const DT_RTLREADING = 0x00020000;
const COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET = 0x8011081F;
const DNS_ERROR_INVALID_ZONE_OPERATION = 9603;
const CTRY_HUNGARY = 36;
const SC_SIZE = 0xF000;
const __SIZEOF_WINT_T__ = 2;
const szOID_KEYID_RDN = "1.3.6.1.4.1.311.10.7.1";
const ERROR_INVALID_FORM_SIZE = 1903;
const CM_GAMMA_RAMP = 0x00000002;
const SM_DEBUG = 22;
const ERROR_GLOBAL_ONLY_HOOK = 1429;
const DNS_FILTERON = 0x0004;
const ERROR_DS_FOREST_VERSION_TOO_LOW = 8565;
const MM_JOY2BUTTONUP = 0x3B8;
const ERROR_INVALID_PRINT_MONITOR = 3007;
const FOF_NOERRORUI = 0x0400;
const WS_EX_CLIENTEDGE = 0x00000200;
const WNNC_NET_RDR2SAMPLE = 0x00250000;
const IMAGE_SIZEOF_AUX_SYMBOL = 18;
const szOID_STREET_ADDRESS = "2.5.4.9";
const szOID_OIWDIR_md2 = "1.3.14.7.2.2.1";
const ERROR_EXE_MARKED_INVALID = 192;
const szOID_NAME_CONSTRAINTS = "2.5.29.30";
const EVENT_OBJECT_CREATE = 0x8000;
const SS_GRAYRECT = 0x00000005;
const META_PATBLT = 0x061D;
const DIALOPTION_DIALTONE = 0x00000100;
const META_CREATEBRUSHINDIRECT = 0x02FC;
const NTE_BAD_FLAGS = 0x80090009;
const DMICMMETHOD_DEVICE = 4;
const MF_HELP = 0x00004000;
const LBN_SELCANCEL = 3;
const CRYPT_E_ASN1_CORRUPT = 0x80093103;
const CRYPT_OFFLINE_CHECK_RETRIEVAL = 0x4000;
const TA_BASELINE = 24;
const X509_NDR_ENCODING = 0x2;
const TT_OPENTYPE_FONTTYPE = 0x20000;
const ENABLE_DISABLE_AUTOSAVE = 0xD2;
const WS_EX_LAYERED = 0x00080000;
const JOY_RETURNBUTTONS = 0x00000080;
const IDLE_PRIORITY_CLASS = 0x40;
const PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE = 0x39;
const FROM_LEFT_1ST_BUTTON_PRESSED = 0x1;
const TYPE_E_BUFFERTOOSMALL = 0x80028016;
const VS_USER_DEFINED = 100;
const CAL_SCALNAME = 0x00000002;
const FILE_OVERWRITE_IF = 0x00000005;
const CMSG_CTRL_ADD_CMS_SIGNER_INFO = 20;
const STG_E_PATHNOTFOUND = 0x80030003;
const KP_BLOCKLEN = 8;
const SCARD_W_REMOVED_CARD = 0x80100069;
const PROCESS_TERMINATE = 0x0001;
const CHANGER_OPEN_IEPORT = 0x00000008;
const MCI_FORMAT_BYTES = 8;
const SPI_GETFOCUSBORDERHEIGHT = 0x2010;
const ERROR_IPSEC_IKE_INVALID_POLICY = 13861;
const CERTSRV_E_NO_CERT_TYPE = 0x80094801;
const ERROR_DS_NO_CHAINED_EVAL = 8328;
const PROPSETFLAG_UNBUFFERED = 4;
const PSCB_PRECREATE = 2;
const RPC_C_AUTHN_GSS_KERBEROS = 16;
const ODS_DISABLED = 0x0004;
const CTRY_JAPAN = 81;
const USN_REASON_INDEXABLE_CHANGE = 0x00004000;
const SND_ALIAS = 0x00010000;
const CMSG_SIGNED_DATA_V3 = 3;
const SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC = "SchemeDllRetrieveEncodedObject";
const CRYPT_FORMAT_SIMPLE = 0x1;
const XENROLL_E_KEYSPEC_SMIME_MISMATCH = 0x80095005;
const ERROR_DRIVE_MEDIA_MISMATCH = 4303;
const VK_OEM_PA1 = 0xEB;
const ERROR_DS_DS_REQUIRED = 8478;
const ERROR_SHARING_VIOLATION = 32;
const SPI_SETPOWEROFFTIMEOUT = 0x0052;
const DMPAPER_LEGAL = 5;
const XACT_E_LAST = 0x8004D029;
const DRIVER_KERNELMODE = 0x00000001;
const MCI_WAVE_STATUS_LEVEL = 0x00004007;
const ERROR_SECRET_TOO_LONG = 1382;
const WM_PAINTICON = 0x0026;
const TME_LEAVE = 0x00000002;
const RPC_E_UNEXPECTED = 0x8001FFFF;
const JOY_CAL_READZONLY = 0x01000000;
const ERROR_WMI_UNRESOLVED_INSTANCE_REF = 4205;
const FEATURESETTING_PSLEVEL = 2;
const RPC_S_UNKNOWN_IF = 1717;
const DMPAPER_A3_EXTRA_TRANSVERSE = 68;
const SS_EDITCONTROL = 0x00002000;
const MCI_STATUS_NUMBER_OF_TRACKS = 0x00000003;
const APPCOMMAND_BROWSER_FAVORITES = 6;
const PP_CONTAINER = 6;
const FILE_SHARE_READ = 0x00000001;
const CS_DISABLE = 0x00000002;
const DISPID_PROPERTYPUT = -3;
const WS_EX_TOPMOST = 0x00000008;
const AF_VOICEVIEW = 18;
const MK_E_NOTBINDABLE = 0x800401E8;
const IMAGE_REL_IA64_LTOFF22 = 0x000A;
const WINPERF_LOG_NONE = 0;
const ERROR_IS_SUBST_TARGET = 149;
const IMAGE_SCN_LNK_REMOVE = 0x00000800;
const CRYPT_TYPE2_FORMAT = 0x2;
const MIXERCONTROL_CT_SUBCLASS_MASK = 0x0F000000;
const SS_REALSIZEIMAGE = 0x00000800;
const IMAGE_REL_PPC_REFHI = 0x0010;
const PRF_CHILDREN = 0x00000010;
const IMAGE_REL_SH3_PCREL8_LONG = 0x000A;
const FILE_OVERWRITE = 0x00000004;
const CERT_NAME_DNS_TYPE = 6;
const TOKEN_ADJUST_PRIVILEGES = 0x0020;
const SPI_SETPOWEROFFACTIVE = 0x0056;
const MDM_BEARERMODE_ISDN = 0x1;
const ERROR_DS_SCHEMA_ALLOC_FAILED = 8415;
const PRINTER_CHANGE_TIMEOUT = 0x80000000;
const PRINTER_NOTIFY_FIELD_PRIORITY = 0x0E;
const KP_INFO = 18;
const PIDSI_DOC_SECURITY = 0x00000013;
const EM_LINEFROMCHAR = 0x00C9;
const LZERROR_READ = -3;
const RPC_E_RETRY = 0x80010109;
const RPC_C_MQ_PERMANENT = 0x0001;
const SEC_E_TARGET_UNKNOWN = 0x80090303;
const WTS_SESSION_UNLOCK = 0x8;
const FS_HEBREW = 0x00000020;
const WH_CALLWNDPROC = 4;
const CRL_FIND_ISSUED_BY = 1;
const MARK_HANDLE_NOT_REALTIME = 0x00000040;
const FILE_TYPE_CHAR = 0x2;
const JOB_OBJECT_LIMIT_RESERVED3 = 0x00008000;
const JOB_OBJECT_LIMIT_RESERVED5 = 0x00020000;
const JOB_OBJECT_LIMIT_RESERVED6 = 0x00040000;
const UNIVERSAL_NAME_INFO_LEVEL = 0x00000001;
const POLICY_AUDIT_SUBCATEGORY_COUNT = 53;
const FADF_FIXEDSIZE = 0x10;
const EMR_RESIZEPALETTE = 51;
const MCI_WAVE_SET_AVGBYTESPERSEC = 0x00080000;
const CB_SETEDITSEL = 0x0142;
const DNS_ERROR_NO_PACKET = 9503;
const ERROR_CTX_NOT_CONSOLE = 7038;
const IMAGE_REL_PPC_REFLO = 0x0011;
const WS_EX_MDICHILD = 0x00000040;
const szOID_RSA_unstructName = "1.2.840.113549.1.9.2";
const ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 1795;
const SETKERNTRACK = 770;
const ERROR_SERVER_NOT_DISABLED = 1342;
const TAPE_DRIVE_END_OF_DATA = 0x80010000;
const CLIENTSITE_S_FIRST = 0x00040190;
const VK_KANJI = 0x19;
const SETLINEJOIN = 22;
const PROCESS_CREATE_PROCESS = 0x0080;
const PIDMSI_SOURCE = 0x00000004;
const ERROR_INVALID_CATEGORY = 117;
const CHANGER_LOCK_UNLOCK = 0x00000080;
const MB_ERR_INVALID_CHARS = 0x00000008;
const TRUETYPE_FONTTYPE = 0x004;
const COMADMIN_E_COMP_MOVE_LOCKED = 0x8011042D;
const IMAGE_REL_M32R_REFHALF = 0x0008;
const MCI_STATUS_START = 0x00000200;
const SPI_SETMOUSEHOVERWIDTH = 0x0063;
const CRYPT_OID_INFO_NAME_KEY = 2;
const X3_D_WH_SIZE_X = 3;
const szOID_INFOSEC_SuiteAKMandSig = "2.16.840.1.101.2.1.1.18";
const HCBT_QS = 2;
const LANG_DIVEHI = 0x65;
const MCI_OVLY_WINDOW_DISABLE_STRETCH = 0x00200000;
const VK_CLEAR = 0x0C;
const FW_BOLD = 700;
const RESOURCEDISPLAYTYPE_NDSCONTAINER = 0x0000000B;
const KLF_NOTELLSHELL = 0x00000080;
const IMAGE_DOS_SIGNATURE = 0x5A4D;
const ERROR_CLUSTER_INVALID_REQUEST = 5048;
const MDM_PIAFS_INCOMING = 0;
const szOID_VERISIGN_PRIVATE_6_9 = "2.16.840.1.113733.1.6.9";
const INPUTLANGCHANGE_FORWARD = 0x0002;
const PDCAP_D0_SUPPORTED = 0x00000001;
const FILE_DEVICE_BEEP = 0x00000001;
const CMSG_CMS_RECIPIENT_ENCRYPTED_KEY_INDEX_PARAM = 35;
const STG_E_INVALIDFUNCTION = 0x80030001;
const RESOURCE_GLOBALNET = 0x00000002;
const DDL_READWRITE = 0x0000;
const DT_BOTTOM = 0x00000008;
const COMADMIN_E_COMP_MOVE_SOURCE = 0x8011081C;
const ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = 14050;
const SUCCESSFUL_ACCESS_ACE_FLAG = 0x40;
const ERROR_SWAPERROR = 999;
const DATA_S_SAMEFORMATETC = 0x00040130;
const DATA_S_LAST = 0x0004013F;
const COMADMIN_E_CAT_WRONGAPPBITNESS = 0x80110484;
const MIDISTRM_ERROR = -2;
const PRINTER_STATUS_PROCESSING = 0x00004000;
const PAGE_EXECUTE_READ = 0x20;
const R2_MASKNOTPEN = 3;
const CONSOLE_CARET_SELECTION = 0x0001;
const ERROR_SERVICE_ALREADY_RUNNING = 1056;
const WM_MENUCOMMAND = 0x0126;
const ERROR_INVALID_KEYBOARD_HANDLE = 1457;
const _WIN32 = 1;
const IME_SMODE_SINGLECONVERT = 0x0002;
const FEATURESETTING_CUSTPAPER = 3;
const DOF_PROGMAN = 0x0001;
const VK_VOLUME_UP = 0xAF;
const EMARCH_ENC_I17_IMM9D_VAL_POS_X = 7;
const szOID_X21_ADDRESS = "2.5.4.24";
const TMPF_FIXED_PITCH = 0x01;
const SPI_SETMOUSEDOCKTHRESHOLD = 0x007F;
const E_PENDING = 0x8000000A;
const WS_EX_CONTEXTHELP = 0x00000400;
const WM_USER = 0x0400;
const IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8;
const IMAGE_REL_CEF_ADDR32 = 0x0001;
const CERT_DSS_R_LEN = 20;
const COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT = 0x8011044D;
const FRS_ERR_PARENT_INSUFFICIENT_PRIV = 8009;
const SCARD_T1_EPILOGUE_LENGTH = 2;
const IME_CMODE_RESERVED = 0xF0000000;
const META_RESIZEPALETTE = 0x0139;
const PRINTER_STATUS_OUT_OF_MEMORY = 0x00200000;
const VIF_DIFFTYPE = 0x00000020;
const ERROR_DS_INVALID_GROUP_TYPE = 8513;
const __GCC_ATOMIC_INT_LOCK_FREE = 2;
const SSWF_TITLE = 1;
const IDC_APPSTARTING = 32650;
const APPLICATION_VERIFIER_COM_GCO_SUCCESS_WITH_NULL = 0x040B;
const ERROR_IPSEC_IKE_NO_MM_POLICY = 13850;
const SPI_GETKEYBOARDPREF = 0x0044;
const WH_JOURNALRECORD = 0;
const FLASHW_TIMER = 0x00000004;
const IMAGE_REL_CEF_ADDR64 = 0x0002;
const PAN_MIDLINE_LOW_SERIFED = 13;
const C2_ARABICNUMBER = 0x0006;
const ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = 8426;
const LMEM_INVALID_HANDLE = 0x8000;
const FKF_HOTKEYACTIVE = 0x00000004;
const RPC_S_ZERO_DIVIDE = 1767;
const VARIANT_ALPHABOOL = 0x02;
const IME_SMODE_PLAURALCLAUSE = 0x0001;
const SPAPI_E_UNKNOWN_EXCEPTION = 0x800F0239;
const DST_TEXT = 0x0001;
const SUBLANG_MAPUDUNGUN_CHILE = 0x01;
const CERT_INFO_VERSION_FLAG = 1;
const ERROR_DS_CANT_ADD_ATT_VALUES = 8320;
const MSSIPOTF_E_TABLE_CHECKSUM = 0x8009700C;
const DT_CALCRECT = 0x00000400;
const _WIN32_IE_IE501 = 0x0501;
const CTRY_UKRAINE = 380;
const szOID_CMC_GET_CERT = "1.3.6.1.5.5.7.7.15";
const EVENT_OBJECT_HIDE = 0x8003;
const PIDSI_AUTHOR = 0x00000004;
const RIM_INPUT = 0;
const IME_ITHOTKEY_UISTYLE_TOGGLE = 0x202;
const ERROR_DS_SRC_SID_EXISTS_IN_FOREST = 8539;
const WC_DISCARDNS = 0x00000010;
const FACILITY_INTERNET = 12;
const IPPORT_SYSTAT = 11;
const SEF_DACL_AUTO_INHERIT = 0x01;
const RESOURCEUSAGE_RESERVED = 0x80000000;
const DMPAPER_P16K = 93;
const C3_NOTAPPLICABLE = 0x0000;
const ERROR_LIBRARY_FULL = 4322;
const WM_LBUTTONUP = 0x0202;
const WM_NCPAINT = 0x0085;
const BN_CLICKED = 0;
const ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION = 4;
const NINF_KEY = 0x1;
const ERROR_NO_RECOVERY_PROGRAM = 1082;
const WM_ENABLE = 0x000A;
const MOUSE_ATTRIBUTES_CHANGED = 0x04;
const SCARD_SHARE_DIRECT = 3;
const IMAGE_REL_M32R_PAIR = 0x000B;
const URLACTION_MIN = 0x00001000;
const MCI_STOP = 0x0808;
const SIF_RANGE = 0x0001;
const EMR_SETCOLORSPACE = 100;
const MIXERCONTROL_CT_CLASS_MASK = 0xF0000000;
const SS_BLACKFRAME = 0x00000007;
const ST_INLIST = 0x0040;
const IDCONTINUE = 11;
const PAN_MIDLINE_HIGH_SERIFED = 7;
const FIND_FIRST_EX_CASE_SENSITIVE = 0x1;
const ODS_DEFAULT = 0x0020;
const DM_NUP = 0x00000040;
const VIEW_E_DRAW = 0x80040140;
const DNS_INFO_ADDED_LOCAL_WINS = 9753;
const CONNECT_TEMPORARY = 0x00000004;
const MKF_LEFTBUTTONSEL = 0x10000000;
const PSINJECT_ORIENTATION = 8;
const SPI_SETMOUSEBUTTONSWAP = 0x0021;
const DO_DROPFILE = 0x454C4946;
const PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR = 0x09;
const FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
const FILE_ATTRIBUTE_REPARSE_POINT = 0x00000400;
const chx1 = 0x0410;
const chx2 = 0x0411;
const chx3 = 0x0412;
const chx5 = 0x0414;
const chx6 = 0x0415;
const chx7 = 0x0416;
const IMAGE_REL_BASED_ABSOLUTE = 0;
const chx9 = 0x0418;
const ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 217;
const X3_P_INST_WORD_X = 3;
const SB_LINERIGHT = 1;
const szOID_ECDSA_SPECIFIED = "1.2.840.10045.4.3";
const TAPE_DRIVE_ERASE_IMMEDIATE = 0x00000080;
const STG_E_RESETS_EXHAUSTED = 0x8003030B;
const SPI_GETSCREENSAVETIMEOUT = 0x000E;
const C2_OTHERNEUTRAL = 0x000B;
const CERT_E_PATHLENCONST = 0x800B0104;
const EMARCH_ENC_I17_IMM41b_VAL_POS_X = 32;
const PD_ENABLESETUPTEMPLATEHANDLE = 0x20000;
const TYPE_E_INCONSISTENTPROPFUNCS = 0x80029C83;
const PSH_USEHBMHEADER = 0x00100000;
const SHGFI_DISPLAYNAME = 0x000000200;
const PRODUCT_STANDARD_SERVER_SOLUTIONS = 0x34;
const PID_CODEPAGE = 0x1;
const PD_RETURNIC = 0x200;
const IDHELP = 9;
const KP_VERIFY_PARAMS = 40;
const EM_LINEINDEX = 0x00BB;
const STG_E_MEDIUMFULL = 0x80030070;
const IME_PROP_UNICODE = 0x00080000;
const RIDI_DEVICENAME = 0x20000007;
const CTRY_ICELAND = 354;
const ERROR_IS_SUBST_PATH = 146;
const __USE_MINGW_OUTPUT_FORMAT_EMU = 1;
const LOGON32_LOGON_NEW_CREDENTIALS = 9;
const IPPROTO_UDP = 17;
const DFCS_ADJUSTRECT = 0x2000;
const CONNECT_UPDATE_PROFILE = 0x00000001;
const LANG_YAKUT = 0x85;
const COMADMIN_E_ALREADYINSTALLED = 0x80110404;
const CC_RGBINIT = 0x1;
const VS_FFI_FILEFLAGSMASK = 0x0000003F;
const PRINTER_ERROR_WARNING = 0x40000000;
const CERT_CHAIN_ENABLE_SHARE_STORE = 0x20;
const ERROR_NETNAME_DELETED = 64;
const PARAMFLAG_NONE = 0;
const __INT16_MAX__ = 32767;
const EM_SETSEL = 0x00B1;
const RT_CURSOR = 1;
const ERROR_SXS_XML_E_INVALIDATROOTLEVEL = 14055;
const ICON_SMALL = 0;
const ERROR_INVALID_EVENT_COUNT = 151;
const RRF_RT_REG_BINARY = 0x00000008;
const CERT_PROT_ROOT_ONLY_LM_GPT_FLAG = 0x8;
const SPAPI_E_DEVINST_ALREADY_EXISTS = 0x800F0207;
const CTRY_BELARUS = 375;
const EM_GETLIMITTEXT = 0x00D5;
const RPC_C_OPT_MQ_PRIORITY = 2;
const ERROR_NO_SYSTEM_MENU = 1437;
const PARTITION_IFS = 0x07;
const CRYPT_KEK = 0x400;
const ABM_GETSTATE = 0x00000004;
const COLOR_WINDOWFRAME = 6;
const ERROR_FULLSCREEN_MODE = 1007;
const MNGOF_BOTTOMGAP = 0x00000002;
const ERROR_DS_CONFIG_PARAM_MISSING = 8427;
const CRYPT_E_INVALID_NUMERIC_STRING = 0x80092020;
const IMAGE_SYM_CLASS_TYPE_DEFINITION = 0x000D;
const GCP_DIACRITIC = 0x0100;
const KEY_CREATE_LINK = 0x0020;
const OLE_E_NOSTORAGE = 0x80040012;
const CHANGER_CLEANER_AUTODISMOUNT = 0x80000004;
const ERROR_NO_SUCH_GROUP = 1319;
const ERROR_JOURNAL_NOT_ACTIVE = 1179;
const LANG_GREEK = 0x08;
const TAPE_DRIVE_LOG_BLK_IMMED = 0x80008000;
const APPLICATION_VERIFIER_INVALID_MAPVIEW = 0x0602;
const FE_FONTSMOOTHINGCLEARTYPE = 0x0002;
const S_SERDVL = -9;
const PRINTER_CHANGE_FORM = 0x00070000;
const CHANGER_STORAGE_IEPORT = 0x00002000;
const EMR_ROUNDRECT = 44;
const CONTEXT_S_FIRST = 0x0004E000;
const ERROR_SERVICE_LOGON_FAILED = 1069;
const DPD_DELETE_SPECIFIC_VERSION = 0x00000002;
const ERROR_IPSEC_QM_POLICY_EXISTS = 13000;
const SERVICE_FILE_SYSTEM_DRIVER = 0x00000002;
const DEVICE_NOTIFY_SERVICE_HANDLE = 0x00000001;
const MCI_SEQ_SET_PORT = 0x00020000;
const CRYPT_SILENT = 0x40;
const ERROR_NO_LOG_SPACE = 1019;
const IMM_ERROR_GENERAL = -2;
const CTRY_BRUNEI_DARUSSALAM = 673;
const WM_INPUTLANGCHANGE = 0x0051;
const ERROR_CLASS_ALREADY_EXISTS = 1410;
const ERROR_CLUSTER_NODE_NOT_FOUND = 5042;
const ERROR_NO_PROMOTION_ACTIVE = 8222;
const MDM_ANALOG_V34 = 0x2;
const RTL_VRF_FLG_FIRST_CHANCE_EXCEPTION_CHECKS = 0x00001000;
const OEM_CHARSET = 255;
const ERROR_CANCEL_VIOLATION = 173;
const APPLICATION_VERIFIER_COM_API_IN_DLLMAIN = 0x0401;
const SUBLANG_DUTCH = 0x01;
const CRYPTPROTECT_PROMPT_ON_PROTECT = 0x2;
const ID_PSRESTARTWINDOWS = 0x2;
const __SEH__ = 1;
const POLYGONALCAPS = 32;
const __LDBL_MAX_10_EXP__ = 4932;
const SM_CYDLGFRAME = 8;
const ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = 14053;
const ERROR_BAD_DRIVER_LEVEL = 119;
const ERROR_WRONG_TARGET_NAME = 1396;
const TAPE_DRIVE_TAPE_CAPACITY = 0x00000100;
const ACL_REVISION_DS = 4;
const X3_IMM39_2_INST_WORD_X = 1;
const JOB_ACCESS_ADMINISTER = 0x00000010;
const ERROR_UNKNOWN_PORT = 1796;
const MCI_SYSINFO_OPEN = 0x00000200;
const CO_E_CLASS_DISABLED = 0x80004027;
const SSWF_NONE = 0;
const RTL_RESOURCE_TYPE = 1;
const RPC_X_WRONG_STUB_VERSION = 1829;
const SUBLANG_SPANISH_BOLIVIA = 0x10;
const MDM_PROTOCOLID_HDLCPPP = 0x1;
const __GCC_ATOMIC_WCHAR_T_LOCK_FREE = 2;
const FILEOKSTRINGW = "commdlg_FileNameOK";
const DISP_E_BADCALLEE = 0x80020010;
const SEC_E_INCOMPLETE_CREDENTIALS = 0x80090320;
const QUOTA_LIMITS_HARDWS_MAX_DISABLE = 0x00000008;
const HTERROR = -2;
const REGDB_E_KEYMISSING = 0x80040152;
const ERROR_DS_REMOTE_CROSSREF_OP_FAILED = 8601;
const SPI_SETLOWPOWERACTIVE = 0x0055;
const CRYPT_E_BAD_MSG = 0x8009200D;
const szOID_ISSUER_ALT_NAME2 = "2.5.29.18";
const SPI_SETANIMATION = 0x0049;
const RPC_E_INVALID_IPID = 0x80010113;
const REG_FULL_RESOURCE_DESCRIPTOR = 9;
const CP_NONE = 0;
const IS_TEXT_UNICODE_UNICODE_MASK = 0x000F;
const WM_NCCALCSIZE = 0x0083;
const KLF_SHIFTLOCK = 0x00010000;
const RPC_E_NO_GOOD_SECURITY_PACKAGES = 0x8001011A;
const SPI_GETCARETWIDTH = 0x2006;
const WTS_CONSOLE_DISCONNECT = 0x2;
const TYPE_E_CANTLOADLIBRARY = 0x80029C4A;
const CF_ENHMETAFILE = 14;
const SYSTEM_MANDATORY_LABEL_NO_READ_UP = 0x2;
const DRVCNF_OK = 0x0001;
const ERROR_BAD_NET_RESP = 58;
const URLPOLICY_QUERY = 0x01;
const STG_S_MONITORING = 0x00030203;
const CHANGER_MOVE_EXTENDS_IEPORT = 0x80000200;
const IMAGE_REL_SH3_DIRECT4_WORD = 0x0007;
const FMFD_ENABLEMIMESNIFFING = 0x00000002;
const SPAPI_E_REMOTE_COMM_FAILURE = 0x800F0221;
const RPC_X_WRONG_PIPE_VERSION = 1832;
const CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC = "CertDllOpenSystemStoreProv";
const ERROR_INSTALL_SOURCE_ABSENT = 1612;
const szOID_PKIX_KP_CODE_SIGNING = "1.3.6.1.5.5.7.3.3";
const CO_E_NOTPOOLED = 0x8004E02C;
const APPLICATION_VERIFIER_INVALID_FREEMEM = 0x0600;
const LOCALE_SENGCURRNAME = 0x00001007;
const ERROR_RESOURCE_ONLINE = 5019;
const szOID_RSA_SMIMEalgCMSRC2wrap = "1.2.840.113549.1.9.16.3.7";
const MK_SHIFT = 0x0004;
const GDICOMMENT_BEGINGROUP = 0x00000002;
const FR_REPLACE = 0x10;
const ERROR_IPSEC_MM_AUTH_IN_USE = 13012;
const RPC_C_AUTHN_LEVEL_CALL = 3;
const SPAPI_E_SECTION_NOT_FOUND = 0x800F0101;
const __INT_FAST16_MAX__ = 32767;
const MSG_OOB = 0x1;
const BSM_NETDRIVER = 0x00000002;
const EN_CHANGE = 0x0300;
const PP_KEYSTORAGE = 17;
const PIDDSI_HIDDENCOUNT = 0x00000009;
const MCI_OVLY_STATUS_STRETCH = 0x00004002;
const OSS_TRACE_FILE_ALREADY_OPEN = 0x8009301C;
const NLS_KATAKANA = 0x20000;
const SCARD_F_COMM_ERROR = 0x80100013;
const WM_IME_SETCONTEXT = 0x0281;
const SM_CYVTHUMB = 9;
const MCI_STEP = 0x080E;
const C2_SEGMENTSEPARATOR = 0x0009;
const ERROR_DS_REFERRAL_LIMIT_EXCEEDED = 8260;
const LPD_TYPE_COLORINDEX = 1;
const WS_EX_RTLREADING = 0x00002000;
const ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE = 2;
const LOCALE_ILDATE = 0x00000022;
const ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 8589;
const IMAGE_SYM_CLASS_MEMBER_OF_UNION = 0x000B;
const BST_CHECKED = 0x0001;
const MIDI_UNCACHE = 4;
const SUBLANG_ENGLISH_MALAYSIA = 0x11;
const S_SERDVNA = -1;
const INET_E_QUERYOPTION_UNKNOWN = 0x800C0013;
const CB_GETCOUNT = 0x0146;
const DNS_ERROR_RCODE_NOT_IMPLEMENTED = 9004;
const CMC_FAIL_BAD_IDENTITY = 7;
const IMAGE_RESOURCE_DATA_IS_DIRECTORY = 0x80000000;
const MCI_BREAK_OFF = 0x00000400;
const CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC = "CryptDllImportPublicKeyInfoEx";
const MCI_GETDEVCAPS_COMPOUND_DEVICE = 0x00000006;
const C3_KASHIDA = 0x0200;
const DCTT_SUBDEV = 0x0000004;
const APPCOMMAND_FIND = 28;
const EVENT_MODIFY_STATE = 0x0002;
const CRYPT_STRING_HEXASCII = 0x5;
const OSS_COMPARATOR_DLL_NOT_LINKED = 0x80093024;
const ERROR_DS_DRA_ACCESS_DENIED = 8453;
const ERROR_INSTALL_TRANSFORM_REJECTED = 1644;
const ERROR_OUTOFMEMORY = 14;
const RIDEV_NOHOTKEYS = 0x00000200;
const VSS_E_INVALID_XML_DOCUMENT = 0x80042311;
const PSD_SHOWHELP = 0x800;
const WM_NCLBUTTONDBLCLK = 0x00A3;
const PAN_FAMILY_TEXT_DISPLAY = 2;
const ERROR_LABEL_TOO_LONG = 154;
const PBT_APMQUERYSUSPEND = 0x0000;
const __PRAGMA_REDEFINE_EXTNAME = 1;
const WM_MOUSELEAVE = 0x02A3;
const DROPEFFECT_SCROLL = 0x80000000;
const ATTR_INPUT_ERROR = 0x04;
const szOID_BASIC_CONSTRAINTS2 = "2.5.29.19";
const SHTDN_REASON_MINOR_BLUESCREEN = 0x0000000F;
const CRL_FIND_ISSUED_BY_SIGNATURE_FLAG = 0x2;
const CRYPT_DEFAULT_CONTEXT_PROCESS_FLAG = 0x2;
const SPI_GETMOUSESIDEMOVETHRESHOLD = 0x0088;
const ERROR_IS_SUBSTED = 135;
const __DEC64_MANT_DIG__ = 16;
const STDOLE_MAJORVERNUM = 0x1;
const BF_LEFT = 0x0001;
const USER_MARSHAL_FC_WCHAR = 5;
const REGDB_E_INVALIDVALUE = 0x80040153;
const LANG_FAEROESE = 0x38;
const ERROR_DS_NAME_NOT_UNIQUE = 8571;
const RPC_QUERY_CLIENT_PRINCIPAL_NAME = 4;
const SO_TYPE = 0x1008;
const SS_ICON = 0x00000003;
const MAXLOGICALLOGNAMESIZE = 256;
const GCPCLASS_LOCALNUMBER = 4;
const szOID_CERT_EXTENSIONS = "1.3.6.1.4.1.311.2.1.14";
const DC_COLLATE = 22;
const IMAGE_SUBSYSTEM_NATIVE = 1;
const STG_E_INVALIDNAME = 0x800300FC;
const FW_EXTRABOLD = 800;
const RPC_C_MQ_AUTHN_LEVEL_PKT_INTEGRITY = 0x0008;
const IMAGE_REL_CEE_ADDR32 = 0x0001;
const CS_PARENTDC = 0x0080;
const JOB_STATUS_USER_INTERVENTION = 0x00000400;
const SPAPI_E_NO_SUCH_DEVICE_INTERFACE = 0x800F0225;
const FILE_DEVICE_VIRTUAL_DISK = 0x00000024;
const KEY_NOTIFY = 0x0010;
const IMAGE_REL_CEE_ADDR64 = 0x0002;
const PD_NOSELECTION = 0x4;
const PIDSI_REVNUMBER = 0x00000009;
const EPT_S_CANT_CREATE = 1899;
const MSSIPOTF_E_OUTOFMEMRANGE = 0x80097001;
const ERROR_IPSEC_IKE_FAILSSPINIT = 13853;
const URLPOLICY_JAVA_CUSTOM = 0x00800000;
const CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID = 0x40000;
const szOID_KP_CA_EXCHANGE = "1.3.6.1.4.1.311.21.5";
const XACT_E_REENLISTTIMEOUT = 0x8004D01E;
const PRINTER_ENUM_REMOTE = 0x00000010;
const DDL_SYSTEM = 0x0004;
const SUBLANG_ENGLISH_SOUTH_AFRICA = 0x07;
const SPAPI_E_NO_SUCH_DEVINST = 0x800F020B;
const ERROR_NETWORK_NOT_AVAILABLE = 5035;
const RPC_S_DUPLICATE_ENDPOINT = 1740;
const __GXX_MERGED_TYPEINFO_NAMES = 0;
const ERROR_MEMBER_NOT_IN_ALIAS = 1377;
const FS_JOHAB = 0x00200000;
const DMPAPER_PENV_6_ROTATED = 114;
const COMADMIN_E_CANTCOPYFILE = 0x8011040D;
const MAP_EXPAND_LIGATURES = 0x00002000;
const ERROR_TRUSTED_RELATIONSHIP_FAILURE = 1789;
const PAN_CONTRAST_NONE = 2;
const MINSHORT = 0x8000;
const PAN_LETT_OBLIQUE_FLATTENED = 12;
const REG_MULTI_SZ = 7;
const ERROR_END_OF_MEDIA = 1100;
const CMSG_CTRL_ADD_SIGNER = 6;
const PAGE_WRITECOMBINE = 0x400;
const CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_PARA_FLAG = 0x8;
const ERROR_WINS_INTERNAL = 4000;
const ERROR_SXS_CANT_GEN_ACTCTX = 14001;
const DNS_ERROR_RCODE = 9504;
const __SSE2__ = 1;
const STGM_CREATE = 0x00001000;
const RPC_C_AUTHN_DPA = 17;
const IMAGE_COMDAT_SELECT_LARGEST = 6;
const LLMHF_INJECTED = 0x00000001;
const IMAGE_SCN_SCALE_INDEX = 0x00000001;
const PC_SCANLINE = 8;
const EMR_DELETECOLORSPACE = 101;
const CERT_STORE_SAVE_AS_STORE = 1;
const MIXER_OBJECTF_WAVEIN = 0x20000000;
const JOB_STATUS_BLOCKED_DEVQ = 0x00000200;
const CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG = 0x80000000;
const PSD_MARGINS = 0x2;
const ERROR_DS_ADMIN_LIMIT_EXCEEDED = 8228;
const CRYPT_E_NO_PROVIDER = 0x80092006;
const ERROR_ITERATED_DATA_EXCEEDS_64k = 194;
const CAL_SERASTRING = 0x00000004;
const MM_MIM_CLOSE = 0x3C2;
const DT_TABSTOP = 0x00000080;
const _CALL_REPORTFAULT = 0x2;
const DISP_CHANGE_BADDUALVIEW = -6;
const WM_MOUSEMOVE = 0x0200;
const CLRDTR = 6;
const JOY_CAL_READVONLY = 0x08000000;
const PORT_STATUS_WARMING_UP = 11;
const IMAGE_SIZEOF_NT_OPTIONAL32_HEADER = 224;
const PERF_TEXT_ASCII = 0x00010000;
const STGM_SHARE_DENY_WRITE = 0x00000020;
const CRL_FIND_ISSUED_FOR = 3;
const PRINTER_CHANGE_DELETE_PRINT_PROCESSOR = 0x04000000;
const ERROR_IPSEC_IKE_DH_FAILURE = 13864;
const IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 0x0100;
const CMSG_RC4_NO_SALT_FLAG = 0x40000000;
const CMSG_ENVELOPED_DATA_V0 = 0;
const VER_SUITENAME = 0x0000040;
const URLACTION_DOWNLOAD_CURR_MAX = 0x00001004;
const WM_ICONERASEBKGND = 0x0027;
const ERROR_CAN_NOT_COMPLETE = 1003;
const CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED = 0x8009480E;
const WHITE_BRUSH = 0;
const SPI_GETANIMATION = 0x0048;
const __SIZEOF_FLOAT__ = 4;
const STARTF_USEFILLATTRIBUTE = 0x10;
const COLOR_GRADIENTINACTIVECAPTION = 28;
const CACHE_FULLY_ASSOCIATIVE = 0xFF;
const VIF_DIFFCODEPG = 0x00000010;
const EVENT_E_INTERNALEXCEPTION = 0x80040205;
const ERROR_DEPENDENT_RESOURCE_EXISTS = 5001;
const szOID_SERVER_GATED_CRYPTO = "1.3.6.1.4.1.311.10.3.3";
const IMAGE_SYM_TYPE_FLOAT = 0x0006;
const __pic__ = 1;
const MB_ICONHAND = 0x00000010;
const TC_SF_X_YINDEP = 0x00000020;
const APPCOMMAND_SAVE = 32;
const SPI_SETHUNGAPPTIMEOUT = 0x0079;
const ERROR_IPSEC_IKE_LOAD_FAILED = 13876;
const WS_VSCROLL = 0x00200000;
const TPM_NONOTIFY = 0x0080;
const ERROR_ACCOUNT_RESTRICTION = 1327;
const DISCHARGE_POLICY_CRITICAL = 0;
const IMAGE_SIZEOF_SECTION_HEADER = 40;
const LGRPID_SUPPORTED = 0x00000002;
const CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG = 0x2;
const AUXCAPS_LRVOLUME = 0x0002;
const MM_MOM_POSITIONCB = 0x3CA;
const IMN_CLOSESTATUSWINDOW = 0x0001;
const HORZSIZE = 4;
const JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME = 0x00000040;
const FILE_ANY_ACCESS = 0;
const ATTR_FIXEDCONVERTED = 0x05;
const __FLT_MAX_10_EXP__ = 38;
const SE_ERR_DDEFAIL = 29;
const CONNECT_RESERVED = 0xFF000000;
const CTL_ENTRY_FROM_PROP_CHAIN_FLAG = 0x1;
const GET_TAPE_DRIVE_INFORMATION = 1;
const SPI_SETBORDER = 0x0006;
const WNNC_NET_DECORB = 0x00200000;
const MCI_DEVTYPE_WAVEFORM_AUDIO = 522;
const PSINJECT_BEGINSETUP = 16;
const CERT_DATE_STAMP_PROP_ID = 27;
const CFS_DEFAULT = 0x0000;
const WAVE_FORMAT_48M08 = 0x00001000;
const MCI_ANIM_INFO_TEXT = 0x00010000;
const PERF_COUNTER_PRECISION = 0x00070000;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_DEFAULT = 100000;
const szOID_CERTIFICATE_TEMPLATE = "1.3.6.1.4.1.311.21.7";
const PAN_SERIF_SQUARE = 6;
const WAVE_FORMAT_48M16 = 0x00004000;
const WM_UNINITMENUPOPUP = 0x0125;
const PAN_LETT_NORMAL_WEIGHTED = 3;
const lst1 = 0x0460;
const lst2 = 0x0461;
const lst3 = 0x0462;
const lst5 = 0x0464;
const lst6 = 0x0465;
const lst8 = 0x0467;
const lst9 = 0x0468;
const MK_E_ENUMERATION_FAILED = 0x800401EF;
const APD_COPY_ALL_FILES = 0x00000004;
const IMR_CONFIRMRECONVERTSTRING = 0x0005;
const MCI_WAVE_STATUS_BITSPERSAMPLE = 0x00004006;
const NTM_BOLD = 0x00000020;
const CTLCOLOR_LISTBOX = 2;
const FILE_READ_EA = 0x0008;
const SHGFI_PIDL = 0x000000008;
const ODS_FOCUS = 0x0010;
const JOYSTICKID1 = 0;
const JOYSTICKID2 = 1;
const PRSPEC_LPWSTR = 0;
const BACKGROUND_RED = 0x40;
const APD_STRICT_UPGRADE = 0x00000001;
const CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT = 0x8000000;
const WM_CTLCOLORLISTBOX = 0x0134;
const SSGF_NONE = 0;
const RPC_C_NS_SYNTAX_DEFAULT = 0;
const ERROR_FUNCTION_NOT_CALLED = 1626;
const ERROR_PATCH_PACKAGE_OPEN_FAILED = 1635;
const FILE_ROOT_DIR = 3;
const IGIMII_HELP = 0x0010;
const GCS_COMPCLAUSE = 0x0020;
const ERROR_MACHINE_LOCKED = 1271;
const QID_SYNC = 0xFFFFFFFF;
const NRC_SNUMOUT = 0x08;
const RT_ANICURSOR = 21;
const CTRY_DEFAULT = 0;
const CHANGER_SLOTS_USE_TRAYS = 0x80000010;
const R2_NOTCOPYPEN = 4;
const URLACTION_INFODELIVERY_NO_REMOVING_CHANNELS = 0x00001D02;
const KP_PRECOMP_SHA = 25;
const __SSE__ = 1;
const COMADMIN_E_NOTINREGISTRY = 0x8011043E;
const CRYPT_FIND_MACHINE_KEYSET_FLAG = 0x2;
const FLASHW_STOP = 0;
const FORMAT_MESSAGE_FROM_STRING = 0x400;
const MDM_TONE_DIAL = 0x00000100;
const SUBLANG_SLOVAK_SLOVAKIA = 0x01;
const FF_MODERN = 3<<4;
const CERT_TRUST_IS_REVOKED = 0x4;
const MEDIA_WRITE_ONCE = 0x00000002;
const ERROR_NO_WILDCARD_CHARACTERS = 1417;
const ERROR_IPSEC_IKE_INVALID_HASH_ALG = 13871;
const SERVICE_CONFIG_DESCRIPTION = 1;
const ENABLE_AUTO_POSITION = 0x100;
const AC_SRC_OVER = 0x00;
const URLACTION_AUTOMATIC_ACTIVEX_UI = 0x00002201;
const STG_E_INVALIDFLAG = 0x800300FF;
const LANG_GERMAN = 0x07;
const szOID_INFOSEC_mosaicKMandSig = "2.16.840.1.101.2.1.1.12";
const ERROR_ARENA_TRASHED = 7;
const URLACTION_HTML_MIN = 0x00001600;
const FEATURESETTING_NUP = 0;
const CERT_STORE_DELTA_CRL_FLAG = 0x200;
const KEYEVENTF_KEYUP = 0x0002;
const __LDBL_MAX_EXP__ = 16384;
const VK_PACKET = 0xE7;
const USN_PAGE_SIZE = 0x1000;
const CB_SHOWDROPDOWN = 0x014F;
const GRAY_BRUSH = 2;
const TRANSPORT_TYPE_WMSG = 0x08;
const APPLICATION_VERIFIER_LOCK_IN_UNMAPPED_MEM = 0x0213;
const END_PATH = 4098;
const CRYPT_E_STREAM_INSUFFICIENT_DATA = 0x80091011;
const MIXERCONTROL_CONTROLF_MULTIPLE = 0x00000002;
const LCMAP_SIMPLIFIED_CHINESE = 0x02000000;
const ERROR_AUTHENTICATION_FIREWALL_FAILED = 1935;
const MS_ENH_RSA_AES_PROV_XP_A = "Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)";
const szOID_INFOSEC_sdnsConfidentiality = "2.16.840.1.101.2.1.1.3";
const CERT_ALT_NAME_ENTRY_ERR_INDEX_SHIFT = 16;
const RPC_C_AUTHN_DIGEST = 21;
const MS_ENH_RSA_AES_PROV_XP_W = "Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)";
const CERT_E_UNTRUSTEDTESTROOT = 0x800B010D;
const OSS_PDU_MISMATCH = 0x80093009;
const SCARD_PROTOCOL_T0 = 0x00000001;
const SCARD_PROTOCOL_T1 = 0x00000002;
const PARTITION_HUGE = 0x06;
const WM_SYSCOLORCHANGE = 0x0015;
const FACILITY_DPLAY = 21;
const RPC_S_PRF_ELT_NOT_ADDED = 1926;
const WM_MDIDESTROY = 0x0221;
const CO_S_MACHINENAMENOTFOUND = 0x00080013;
const WM_COPYDATA = 0x004A;
const RPC_E_TIMEOUT = 0x8001011F;
const XST_REQSENT = 5;
const IGIMIF_RIGHTMENU = 0x0001;
const LOCALE_RETURN_NUMBER = 0x20000000;
const RGN_DIFF = 4;
const PROTOCOLFLAG_NO_PICS_CHECK = 0x00000001;
const ESB_ENABLE_BOTH = 0x0000;
const CERT_E_REVOCATION_FAILURE = 0x800B010E;
const PIDDSI_SCALE = 0x0000000B;
const CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG = 0x4000;
const GCPCLASS_NEUTRAL = 3;
const SCARD_F_WAITED_TOO_LONG = 0x80100007;
const PRINTDLGORD = 1538;
const ERROR_CTX_CLIENT_LICENSE_NOT_SET = 7053;
const CLIPBRD_S_LAST = 0x000401DF;
const IMAGE_FILE_BYTES_REVERSED_HI = 0x8000;
const EVENT_SYSTEM_SWITCHEND = 0x0015;
const ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = 14011;
const FILE_WRITE_DATA = 0x0002;
const SUBLANG_SAMI_NORTHERN_NORWAY = 0x01;
const WM_MDINEXT = 0x0224;
const MAX_DEFAULTCHAR = 2;
const STG_E_REVERTED = 0x80030102;
const MEM_FREE = 0x10000;
const INET_E_REDIRECT_FAILED = 0x800C0014;
const EMR_CREATECOLORSPACEW = 122;
const EMARCH_ENC_I17_IC_VAL_POS_X = 21;
const RI_MOUSE_LEFT_BUTTON_UP = 0x0002;
const SUBLANG_ENGLISH_CAN = 0x04;
const COMADMIN_E_PRIVATE_ACCESSDENIED = 0x80110821;
const ABM_GETAUTOHIDEBAR = 0x00000007;
const ERROR_INSTALL_ALREADY_RUNNING = 1618;
const CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_UNTRUSTED_ROOT_LOGGING_FLAG = 0x1;
const GUI_16BITTASK = 0x00000020;
const CRYPT_E_AUTH_ATTR_MISSING = 0x80091006;
const IMAGE_REL_AM_FUNCINFO = 0x0004;
const ERROR_DISK_CORRUPT = 1393;
const SUBLANG_MARATHI_INDIA = 0x01;
const SEC_E_UNTRUSTED_ROOT = 0x80090325;
const MAXIMUM_ATTR_STRING_LENGTH = 32;
const ERROR_BROKEN_PIPE = 109;
const MEDIA_CURRENTLY_MOUNTED = 0x80000000;
const ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = 8392;
const GL_LEVEL_NOGUIDELINE = 0x00000000;
const WM_COMPACTING = 0x0041;
const IMAGE_FILE_BYTES_REVERSED_LO = 0x0080;
const WS_EX_COMPOSITED = 0x02000000;
const HTOBJECT = 19;
const DMPAPER_A5_ROTATED = 78;
const SORT_CHINESE_BIG5 = 0x0;
const DRIVE_NO_ROOT_DIR = 1;
const ATTR_INPUT = 0x00;
const JOY_CAL_READ6 = 0x00800000;
const MCI_WAVE_STATUS_FORMATTAG = 0x00004001;
const SERVICE_CONTROL_NETBINDENABLE = 0x00000009;
const NTDDI_WIN6SP2 = 0x06000200;
const NTDDI_WIN6SP3 = 0x06000300;
const NTDDI_WIN6SP4 = 0x06000400;
const JOB_NOTIFY_FIELD_DOCUMENT = 0x0D;
const ERROR_CLUSTER_NODE_UP = 5056;
const ERROR_NO_USER_KEYS = 6006;
const PAN_FAMILY_SCRIPT = 3;
const PSBTN_HELP = 6;
const SEC_E_CERT_WRONG_USAGE = 0x80090349;
const TC_UA_ABLE = 0x00000800;
const PRINTER_CHANGE_DELETE_PRINTER_DRIVER = 0x40000000;
const CRYPT_SSL2_FALLBACK = 0x2;
const SUBLANG_TATAR_RUSSIA = 0x01;
const CRYPT_E_NOT_IN_REVOCATION_DATABASE = 0x80092014;
const EVENTLOG_PAIRED_EVENT_ACTIVE = 0x0008;
const PIDDSI_LINKSDIRTY = 0x00000010;
const ERROR_QUORUMLOG_OPEN_FAILED = 5028;
const SPI_SETHANDHELD = 0x004E;
const SEC_WRITECOMBINE = 0x40000000;
const SOCK_STREAM = 1;
const ERROR_DS_DRA_ABANDON_SYNC = 8462;
const FILE_ATTRIBUTE_SYSTEM = 0x00000004;
const ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807;
const MMIO_WRITE = 0x00000001;
const RI_MOUSE_BUTTON_4_DOWN = 0x0040;
const LCMAP_SORTKEY = 0x00000400;
const TAPE_LOGICAL_POSITION = 1;
const E_UNEXPECTED = 0x8000FFFF;
const DC_PRINTRATEUNIT = 27;
const ODS_COMBOBOXEDIT = 0x1000;
const NTE_BAD_KEY_STATE = 0x8009000B;
const STATE_SYSTEM_VALID = 0x3FFFFFFF;
const szOID_ORGANIZATIONAL_UNIT_NAME = "2.5.4.11";
const IME_ESC_HANJA_MODE = 0x1008;
const SETDIBSCALING = 32;
const __SIZEOF_WCHAR_T__ = 2;
const ERROR_HWNDS_HAVE_DIFF_PARENT = 1441;
const FO_DELETE = 0x0003;
const VK_LSHIFT = 0xA0;
const CHANGER_MOVE_RETRACTS_IEPORT = 0x80000400;
const CPS_REVERT = 0x0003;
const CO_E_INIT_TLS_CHANNEL_CONTROL = 0x8000400C;
const LR_VGACOLOR = 0x0080;
const GCP_LIGATE = 0x0020;
const SPI_SETSNAPTODEFBUTTON = 0x0060;
const __ORDER_BIG_ENDIAN__ = 4321;
const TAPE_DRIVE_WRITE_SHORT_FMKS = 0x84000000;
const SE_SACL_AUTO_INHERIT_REQ = 0x0200;
const EMR_SAVEDC = 33;
const GS_8BIT_INDICES = 0x00000001;
const CE_OOP = 0x1000;
const BN_PAINT = 1;
const IMN_SETCANDIDATEPOS = 0x0009;
const CONNDLG_PERSIST = 0x00000010;
const SO_SNDTIMEO = 0x1005;
const META_INTERSECTCLIPRECT = 0x0416;
const C3_LEXICAL = 0x0400;
const TIME_NOMINUTESORSECONDS = 0x00000001;
const RIM_TYPEMOUSE = 0;
const GMMP_USE_HIGH_RESOLUTION_POINTS = 2;
const ERROR_DS_WRONG_OM_OBJ_CLASS = 8476;
const RPC_E_CANTTRANSMIT_CALL = 0x8001000A;
const ERROR_DLL_INIT_FAILED = 1114;
const CF_NOSTYLESEL = 0x100000;
const REPLACE_PRIMARY = 0xA;
const PRODUCT_STORAGE_EXPRESS_SERVER = 0x14;
const CHANGER_KEYPAD_ENABLE_DISABLE = 0x10000000;
const PERSIST_E_SIZEDEFINITE = 0x800B0009;
const XACT_S_DEFECT = 0x0004D001;
const CRYPT_RC2_40BIT_VERSION = 160;
const SUBLANG_SAMI_LULE_SWEDEN = 0x05;
const POLYFILL_LAST = 2;
const GETVECTORBRUSHSIZE = 27;
const PDCAP_WAKE_FROM_D2_SUPPORTED = 0x00000040;
const CO_E_INIT_SCM_MUTEX_EXISTS = 0x8000400E;
const ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 8517;
const KP_SALT_EX = 10;
const CONVERT10_E_OLESTREAM_FMT = 0x800401C2;
const XTYPF_ACKREQ = 0x0008;
const VIF_CANNOTDELETE = 0x00001000;
const _PUNCT = 0x10;
const SND_RESOURCE = 0x00040004;
const LB_MSGMAX = 0x01B3;
const CO_E_SERVER_PAUSED = 0x80004025;
const SPI_SETFONTSMOOTHINGCONTRAST = 0x200D;
const DNS_ERROR_FORWARDER_ALREADY_EXISTS = 9619;
const CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL = 0x8009400C;
const MM_DRVM_DATA = 0x3D2;
const STATE_SYSTEM_TRAVERSED = 0x00800000;
const META_SCALEWINDOWEXT = 0x0410;
const IE_MEMORY = -4;
const PAN_CONTRAST_HIGH = 8;
const URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX = 0x00001004;
const REGDB_E_LAST = 0x8004015F;
const RPC_E_INVALID_HEADER = 0x80010111;
const CONTEXT_E_OLDREF = 0x8004E007;
const ERROR_DRIVER_BLOCKED = 1275;
const FOREGROUND_GREEN = 0x2;
const ERROR_IPSEC_IKE_NEGOTIATION_PENDING = 13803;
const BSM_ALLDESKTOPS = 0x00000010;
const MIXERCONTROL_CT_SC_LIST_SINGLE = 0x00000000;
const ERROR_EA_TABLE_FULL = 277;
const ERROR_DS_INIT_FAILURE = 8532;
const SCHED_S_TASK_DISABLED = 0x00041302;
const ERROR_IS_JOIN_PATH = 147;
const INET_E_AUTHENTICATION_REQUIRED = 0x800C0009;
const ALG_SID_RSA_PGP = 4;
const IMAGE_REL_I386_SEG12 = 0x0009;
const MDM_BLIND_DIAL = 0x00000200;
const CERT_IE30_RESERVED_PROP_ID = 7;
const JOY_BUTTON1CHG = 0x0100;
const CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID = 28;
const FILE_CREATE_TREE_CONNECTION = 0x00000080;
const TAPE_RETURN_STATISTICS = 0;
const NI_COMPOSITIONSTR = 0x0015;
const MDM_PROTOCOLID_AUTO = 0x6;
const ERROR_INVALID_COLORSPACE = 2017;
const TYPE_E_CANTCREATETMPFILE = 0x80028CA3;
const szOID_AUTHORITY_REVOCATION_LIST = "2.5.4.38";
const URLACTION_ACTIVEX_TREATASUNTRUSTED = 0x00001205;
const SEC_E_NO_S4U_PROT_SUPPORT = 0x80090356;
const DESKTOP_HOOKCONTROL = 0x0008;
const NIF_INFO = 0x00000010;
const JOY_RETURNR = 0x00000008;
const HCBT_KEYSKIPPED = 7;
const szOID_PKIX_NO_SIGNATURE = "1.3.6.1.5.5.7.6.2";
const ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = 8581;
const SPI_SETWHEELSCROLLCHARS = 0x006D;
const CTRY_TRINIDAD_Y_TOBAGO = 1;
const AW_VER_NEGATIVE = 0x00000008;
const ERROR_IPSEC_IKE_ENCRYPT = 13866;
const SPI_SETDOCKMOVING = 0x0091;
const DC_SIZE = 8;
const CREATECOLORSPACE_EMBEDED = 0x00000001;
const PF_NX_ENABLED = 12;
const VER_SERVER_NT = 0x80000000;
const NUMPRS_CURRENCY = 0x0400;
const _INTEGRAL_MAX_BITS = 64;
const COMADMIN_E_PARTITIONS_DISABLED = 0x80110824;
const FLUSHOUTPUT = 6;
const RPC_C_AUTHN_INFO_TYPE_HTTP = 1;
const MAXPNAMELEN = 32;
const PS_NULL = 5;
const SM_CARETBLINKINGENABLED = 0x2002;
const ERROR_BAD_ENVIRONMENT = 10;
const EMR_SETBRUSHORGEX = 13;
const CS_E_INVALID_VERSION = 0x80040167;
const NI_SETCANDIDATE_PAGESTART = 0x0016;
const WM_WINDOWPOSCHANGED = 0x0047;
const CERT_RDN_INT4_STRING = 11;
const WNNC_NET_COGENT = 0x00110000;
const ERROR_INVALID_SERVICENAME = 1213;
const RPC_C_AUTHZ_NAME = 1;
const RPC_E_NOT_REGISTERED = 0x80010103;
const ERROR_WRONG_DISK = 34;
const ERROR_SEEK_ON_DEVICE = 132;
const DDE_FREQUESTED = 0x1000;
const SERVICE_CONTROL_HARDWAREPROFILECHANGE = 0x0000000C;
const EM_FMTLINES = 0x00C8;
const SPI_GETBORDER = 0x0005;
const CRYPT_ENCODE_DECODE_NONE = 0;
const szOID_KEY_USAGE_RESTRICTION = "2.5.29.4";
const CRYPT_CREATE_IV = 0x200;
const COMADMIN_E_OBJECT_DOES_NOT_EXIST = 0x80110809;
const FINDMSGSTRINGA = "commdlg_FindReplace";
const COMMON_LVB_LEADING_BYTE = 0x100;
const BM_SETSTATE = 0x00F3;
const PRF_CHECKVISIBLE = 0x00000001;
const OLE_E_CLASSDIFF = 0x80040008;
const __DBL_MAX_10_EXP__ = 308;
const ERROR_DS_SAM_INIT_FAILURE_CONSOLE = 8562;
const USN_REASON_NAMED_DATA_TRUNCATION = 0x00000040;
const ASYNC_MODE_COMPATIBILITY = 0x00000001;
const CERT_DECIPHER_ONLY_KEY_USAGE = 0x80;
const POWER_USER_NOTIFY_BUTTON = 0x00000008;
const WM_HSCROLL = 0x0114;
const ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = 13020;
const JOB_NOTIFY_FIELD_POSITION = 0x0F;
const XACT_E_CANTRETAIN = 0x8004D001;
const FEATURESETTING_PRIVATE_END = 0x1FFF;
const __STDC__ = 1;
const MF_POSTMSGS = 0x04000000;
const SEC_RESERVE = 0x4000000;
const SKF_RSHIFTLOCKED = 0x00020000;
const EMR_RESERVED_107 = 107;
const CRYPT_KEYID_SET_NEW_FLAG = 0x2000;
const NTDDI_WIN2K = 0x05000000;
const SCHED_S_TASK_NO_VALID_TRIGGERS = 0x00041307;
const E_NOTIMPL = 0x80004001;
const EMR_POLYPOLYLINE16 = 90;
const CDERR_MEMALLOCFAILURE = 0x0009;
const VER_EQUAL = 1;
const IMAGE_REL_SHM_PAIR = 0x0018;
const HSHELL_SYSMENU = 9;
const GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS = 0x4;
const SUBLANG_FRENCH_SWISS = 0x04;
const VER_NT_DOMAIN_CONTROLLER = 0x0000002;
const OSS_UNAVAIL_ENCRULES = 0x80093017;
const MCI_GETDEVCAPS_USES_FILES = 0x00000005;
const DATE_YEARMONTH = 0x00000008;
const R2_BLACK = 1;
const SPI_GETWINDOWSEXTENSION = 0x005C;
const VK_MEDIA_STOP = 0xB2;
const SC_MINIMIZE = 0xF020;
const MFS_GRAYED = 0x00000003;
const GCP_KASHIDA = 0x0400;
const STG_E_SEEKERROR = 0x80030019;
const KEY_LENGTH_MASK = 0xFFFF0000;
const UNICODE_STRING_MAX_CHARS = 32767;
const MDM_SHIFT_HDLCPPP_SPEED = 0x0;
const CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID = 25;
const SKF_INDICATOR = 0x00000020;
const WA_INACTIVE = 0;
const PSD_DEFAULTMINMARGINS = 0x0;
const ERROR_DS_DRA_DN_EXISTS = 8441;
const PRODUCT_SERVER_FOR_SMALLBUSINESS = 0x18;
const IE_DEFAULT = -5;
const PAN_STROKE_RAPID_HORZ = 7;
const SEE_MASK_WAITFORINPUTIDLE = 0x02000000;
const DMPAPER_A3_EXTRA = 63;
const HCBT_CLICKSKIPPED = 6;
const SUBLANG_ALSATIAN_FRANCE = 0x01;
const __DEC128_MANT_DIG__ = 34;
const NUMPRS_LEADING_PLUS = 0x0004;
const RESOURCEDISPLAYTYPE_TREE = 0x0000000A;
const SIF_POS = 0x0004;
const CMSG_INDEFINITE_LENGTH = 0xFFFFFFFF;
const IMAGE_SCN_ALIGN_64BYTES = 0x00700000;
const SPI_ICONHORIZONTALSPACING = 0x000D;
const OBJ_ENHMETAFILE = 13;
const IS_TEXT_UNICODE_NOT_UNICODE_MASK = 0x0F00;
const DLGC_STATIC = 0x0100;
const LBS_MULTICOLUMN = 0x0200;
const CERT_TRUST_PUB_ALLOW_ENTERPRISE_ADMIN_TRUST = 0x2;
const ERROR_EA_LIST_INCONSISTENT = 255;
const COMADMIN_E_COMPFILE_NOTINSTALLABLE = 0x80110429;
const SHTDN_REASON_MINOR_TERMSRV = 0x00000020;
const VOS_OS232_PM32 = 0x00030003;
const DI_NORMAL = 0x0003;
const IMAGE_SCN_MEM_EXECUTE = 0x20000000;
const VSS_E_NESTED_VOLUME_LIMIT = 0x8004232C;
const SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA = 0x01;
const szOID_ANSI_X942 = "1.2.840.10046";
const WAVE_FORMAT_44S08 = 0x00000200;
const LBN_SETFOCUS = 4;
const PP_KEYEXCHANGE_ALG = 14;
const MCI_GETDEVCAPS_CAN_EJECT = 0x00000007;
const ERROR_INVALID_DRIVE_OBJECT = 4321;
const DM_ORIENTATION = 0x00000001;
const __FLT_DECIMAL_DIG__ = 9;
const ERROR_EMPTY = 4306;
const VOS_NT_WINDOWS32 = 0x00040004;
const WAVE_FORMAT_44S16 = 0x00000800;
const _LEADBYTE = 0x8000;
const ERROR_SXS_XML_E_INTERNALERROR = 14041;
const ERROR_DS_NO_REQUESTED_ATTS_FOUND = 8308;
const IE_BAUDRATE = -12;
const CALERT_SYSTEM = 6;
const CRYPT_E_ISSUER_SERIALNUMBER = 0x8009100D;
const ERROR_SXS_SECTION_NOT_FOUND = 14000;
const MB_LEN_MAX = 5;
const ERROR_NOT_ENOUGH_MEMORY = 8;
const CERT_KEY_PROV_HANDLE_PROP_ID = 1;
const ERROR_INVALID_AT_INTERRUPT_TIME = 104;
const ELEMENT_STATUS_NOT_BUS = 0x00008000;
const MCI_SEQ_FILE = 0x4002;
const X3_I_SIGN_VAL_POS_X = 59;
const CO_E_ACTIVATIONFAILED = 0x8004E021;
const ERROR_FILE_CORRUPT = 1392;
const SCARD_P_SHUTDOWN = 0x80100018;
const ERROR_IPSEC_IKE_LOAD_SOFT_SA = 13844;
const ERROR_JOIN_TO_SUBST = 140;
const AF_BAN = 21;
const CTRY_MEXICO = 52;
const ERROR_ACTIVE_CONNECTIONS = 2402;
const IMAGE_REL_SHM_PCRELPT = 0x0013;
const EMR_CREATEPEN = 38;
const CMSG_OID_IMPORT_KEY_TRANS_FUNC = "CryptMsgDllImportKeyTrans";
const CHANGER_VOLUME_SEARCH = 0x00200000;
const CRYPT_E_NO_REVOCATION_CHECK = 0x80092012;
const PROCESS_HEAP_ENTRY_BUSY = 0x4;
const CONNECT_REFCOUNT = 0x00000040;
const WC_DEFAULTCHAR = 0x00000040;
const VS_FF_SPECIALBUILD = 0x00000020;
const SKF_LSHIFTLOCKED = 0x00010000;
const szOID_DSALG_RSA = "2.5.8.1.1";
const CERT_STORE_UNSAFE_PHYSICAL_FLAG = 0x20;
const IMAGE_SIZEOF_BASE_RELOCATION = 8;
const CERT_KEYGEN_REQUEST_V1 = 0;
const IME_ITHOTKEY_RESEND_RESULTSTR = 0x200;
const EVENT_E_QUERYFIELD = 0x80040204;
const IMAGE_SCN_MEM_DISCARDABLE = 0x02000000;
const LANG_GUJARATI = 0x47;
const PD_DISABLEPRINTTOFILE = 0x80000;
const ERROR_SXS_XML_E_UNCLOSEDSTRING = 14062;
const TPM_HORPOSANIMATION = 0x0400;
const CRYPT_E_VERIFY_USAGE_OFFLINE = 0x80092029;
const EMR_RESERVED_110 = 110;
const IPPORT_WHOIS = 43;
const SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER = 0x800F0241;
const DDE_FBUSY = 0x4000;
const ERROR_NO_TRUST_SAM_ACCOUNT = 1787;
const CMSG_MAIL_LIST_HANDLE_KEY_CHOICE = 1;
const CRYPT_NOHASHOID = 0x1;
const VFT_APP = 0x00000001;
const EM_SETPASSWORDCHAR = 0x00CC;
const ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = 8205;
const VER_WORKSTATION_NT = 0x40000000;
const URLACTION_SCRIPT_CURR_MAX = 0x00001407;
const IMAGE_REL_ARM_ABSOLUTE = 0x0000;
const szOID_OWNER = "2.5.4.32";
const RPC_X_BYTE_COUNT_TOO_SMALL = 1782;
const EMR_FILLPATH = 62;
const BACKGROUND_INTENSITY = 0x80;
const szOID_ISSUED_CERT_HASH = "1.3.6.1.4.1.311.21.17";
const C3_HALFWIDTH = 0x0040;
const MIIM_CHECKMARKS = 0x00000008;
const CERT_STORE_NO_ISSUER_FLAG = 0x20000;
const JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS = 8;
const MEM_MAPPED = 0x40000;
const MCI_OVLY_WHERE_VIDEO = 0x00100000;
const VER_NT_SERVER = 0x0000003;
const META_ARC = 0x0817;
const DM_PRINTQUALITY = 0x00000400;
const PSINJECT_DOCNEEDEDRES = 5;
const CERT_REGISTRY_STORE_ROAMING_FLAG = 0x40000;
const DT_RASCAMERA = 3;
const SM_MEDIACENTER = 87;
const X3_BTYPE_QP_SIZE_X = 9;
const EMARCH_ENC_I17_IMM9D_SIZE_X = 9;
const ERROR_INVALID_THREAD_ID = 1444;
const IMAGE_SYM_DTYPE_NULL = 0;
const IMAGE_REL_IA64_GPREL32 = 0x001C;
const _CONTROL = 0x20;
const OSS_MORE_BUF = 0x80093001;
const SND_PURGE = 0x0040;
const CDERR_LOCKRESFAILURE = 0x0008;
const WT_EXECUTEINIOTHREAD = 0x00000001;
const BS_INDEXED = 4;
const ERROR_DS_UNAVAILABLE = 8207;
const CO_E_WRONG_SERVER_IDENTITY = 0x80004015;
const NRC_LOCKFAIL = 0x3C;
const SPI_SETDRAGFROMMAXIMIZE = 0x008D;
const ERROR_HOST_UNREACHABLE = 1232;
const WNNC_NET_LOCUS = 0x00060000;
const INET_E_USE_DEFAULT_PROTOCOLHANDLER = 0x800C0011;
const MCI_DEVTYPE_FIRST_USER = 0x1000;
const REPLACE_ALTERNATE = 0xB;
const CLEARTYPE_NATURAL_QUALITY = 6;
const META_SETRELABS = 0x0105;
const IMAGE_REL_M32R_REFHI = 0x0009;
const COMPRESSION_FORMAT_SPARSE = 0x4000;
const ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808;
const JOB_OBJECT_MSG_JOB_MEMORY_LIMIT = 10;
const ERROR_IPSEC_IKE_RPC_DELETE = 13877;
const XST_UNADVSENT = 12;
const VP_CP_CMD_DEACTIVATE = 0x0002;
const CBF_FAIL_REQUESTS = 0x00020000;
const MNS_NOTIFYBYPOS = 0x08000000;
const DISPLAY_DEVICE_ATTACHED_TO_DESKTOP = 0x00000001;
const SUBLANG_FRENCH = 0x01;
const THREAD_GET_CONTEXT = 0x0008;
const DNS_ERROR_PACKET_FMT_BASE = 9500;
const PBT_APMRESUMESTANDBY = 0x0008;
const LEFT_ALT_PRESSED = 0x2;
const PC_NOCOLLAPSE = 0x04;
const PAN_XHEIGHT_DUCKING_STD = 6;
const __FLT_EVAL_METHOD__ = 0;
const IME_CONFIG_GENERAL = 1;
const SPI_SETPENDRAGOUTTHRESHOLD = 0x0087;
const _ALLOCA_S_HEAP_MARKER = 0xDDDD;
const SESSION_QUERY_ACCESS = 0x1;
const SHTDN_REASON_MINOR_MMC = 0x00000019;
const THREAD_QUERY_LIMITED_INFORMATION = 0x0800;
const SUBLANG_BASQUE_BASQUE = 0x01;
const CO_E_SCM_ERROR = 0x80080002;
const PAN_STRAIGHT_ARMS_DOUBLE_SERIF = 6;
const PROV_RSA_FULL = 1;
const SM_CXMENUCHECK = 71;
const SM_SLOWMACHINE = 73;
const COMPRESSION_FORMAT_NONE = 0x0000;
const DM_MODIFY = 8;
const MCI_OVLY_GETDEVCAPS_CAN_FREEZE = 0x00004002;
const SUBLANG_KASHMIRI_SASIA = 0x02;
const DMPAPER_P32K = 94;
const __GCC_ATOMIC_CHAR32_T_LOCK_FREE = 2;
const GCS_COMPREADATTR = 0x0002;
const CMSG_KEY_AGREE_ORIGINATOR_CERT = 1;
const VP_TV_STANDARD_PAL_M = 0x0040;
const KP_CMS_DH_KEY_INFO = 38;
const CB_INITSTORAGE = 0x0161;
const MF_UNCHECKED = 0x00000000;
const BACKUP_SPARSE_BLOCK = 0x9;
const LOGON32_LOGON_NETWORK = 3;
const LBS_NOREDRAW = 0x0004;
const SPI_SETHOTTRACKING = 0x100F;
const CERT_PHYSICAL_STORE_INSERT_COMPUTER_NAME_ENABLE_FLAG = 0x8;
const DMPAPER_LETTER = 1;
const ENHMETA_SIGNATURE = 0x464D4520;
const THREAD_BASE_PRIORITY_LOWRT = 15;
const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG = 10;
const JOY_POVLEFT = 27000;
const SUBLANG_CHINESE_HONGKONG = 0x03;
const TIME_TICKS = 0x0020;
const SYSTEM_AUDIT_CALLBACK_ACE_TYPE = 0xD;
const SIZEPALETTE = 104;
const TAPE_DRIVE_GET_ABSOLUTE_BLK = 0x00100000;
const RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779;
const CTL_FIND_SHA1_HASH = 1;
const FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
const COMADMIN_E_APP_FILE_READFAIL = 0x80110408;
const REGDB_E_WRITEREGDB = 0x80040151;
const RC_GDI20_STATE = 0x0020;
const DATE_LONGDATE = 0x00000002;
const RPC_E_FULLSIC_REQUIRED = 0x80010121;
const VK_APPS = 0x5D;
const SCARD_STATE_CHANGED = 0x00000002;
const ERROR_IPSEC_IKE_INVALID_HEADER = 13824;
const COM_RIGHTS_EXECUTE_REMOTE = 4;
const SUBLANG_SAMI_SOUTHERN_SWEDEN = 0x07;
const OPAQUE = 2;
const CRYPT_UI_PROMPT = 0x4;
const PFD_SWAP_COPY = 0x00000400;
const COLOR_APPWORKSPACE = 12;
const _SECURECRT_FILL_BUFFER_PATTERN = 0xFD;
const SUBLANG_SPANISH_VENEZUELA = 0x08;
const RPC_INTERFACE_HAS_PIPES = 0x0001;
const MIDIPROP_SET = 0x80000000;
const PROOF_QUALITY = 2;
const WMSZ_BOTTOMRIGHT = 8;
const ERROR_CANT_EVICT_ACTIVE_NODE = 5009;
const RI_KEY_E0 = 2;
const MAX_PRIORITY = 99;
const MCI_STATUS_MEDIA_PRESENT = 0x00000005;
const URLACTION_HTML_META_REFRESH = 0x00001608;
const FILE_READ_ATTRIBUTES = 0x0080;
const NTDDI_WINXP = 0x05010000;
const DMDITHER_USER = 256;
const EV_RXCHAR = 0x1;
const KP_OAEP_PARAMS = 36;
const SERVICE_ERROR_IGNORE = 0x00000000;
const CRYPT_MAC = 0x20;
const CF_TEXT = 1;
const S_SERDCC = -7;
const szOID_AUTHORITY_INFO_ACCESS = "1.3.6.1.5.5.7.1.1";
const STG_E_OLDFORMAT = 0x80030104;
const _HEAPOK = -2;
const ERROR_CANNOT_DETECT_PROCESS_ABORT = 1081;
const RPC_S_COMM_FAILURE = 1820;
const NCBCALL = 0x10;
const CTRY_KUWAIT = 965;
const APPLICATION_VERIFIER_PROBE_GUARD_PAGE = 0x0605;
const VK_OEM_FJ_LOYA = 0x95;
const CRYPT_STICKY_CACHE_RETRIEVAL = 0x1000;
const SB_NONE = 0x00000000;
const FILE_RESERVE_OPFILTER = 0x00100000;
const PHYSICALWIDTH = 110;
const ERROR_DS_NO_TREE_DELETE_ABOVE_NC = 8501;
const LCID_INSTALLED = 0x00000001;
const WNNC_NET_SUN_PC_NFS = 0x00070000;
const PASSTHROUGH = 19;
const FILE_CASE_PRESERVED_NAMES = 0x00000002;
const XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH = 0x80095003;
const DNS_ERROR_RCODE_YXRRSET = 9007;
const DM_PANNINGWIDTH = 0x08000000;
const RPC_S_UUID_NO_ADDRESS = 1739;
const SCARD_E_TIMEOUT = 0x8010000A;
const FACILITY_RPC = 1;
const ERROR_TOO_MANY_CONTEXT_IDS = 1384;
const CONVERT10_S_FIRST = 0x000401C0;
const NCBCANCEL = 0x35;
const szOID_WHQL_CRYPTO = "1.3.6.1.4.1.311.10.3.5";
const ERROR_DS_DRA_INCONSISTENT_DIT = 8443;
const ABM_WINDOWPOSCHANGED = 0x0000009;
const MCI_GETDEVCAPS_HAS_AUDIO = 0x00000002;
const TT_POLYGON_TYPE = 24;
const PAGE_WRITECOPY = 0x08;
const MDM_CELLULAR = 0x00000008;
const CONSOLE_FULLSCREEN = 1;
const SCARD_SWALLOWED = 3;
const MCI_LOAD_FILE = 0x00000100;
const WNNC_NET_VINES = 0x00040000;
const POLICY_SHOWREASONUI_SERVERONLY = 3;
const VP_TV_STANDARD_SECAM_B = 0x0100;
const VP_TV_STANDARD_SECAM_D = 0x0200;
const VP_TV_STANDARD_SECAM_G = 0x0400;
const VP_TV_STANDARD_SECAM_H = 0x0800;
const VP_TV_STANDARD_SECAM_K = 0x1000;
const VP_TV_STANDARD_SECAM_L = 0x4000;
const SB_LINEUP = 0;
const SHIL_SMALL = 0x1;
const SB_PIXEL_ALPHA = 0x00000002;
const CERT_ENCIPHER_ONLY_KEY_USAGE = 0x1;
const EVENT_E_FIRST = 0x80040200;
const OLEOBJ_E_INVALIDVERB = 0x80040181;
const KP_PREHASH = 34;
const SWP_NOZORDER = 0x0004;
const DC_MINEXTENT = 4;
const CONVERT10_E_OLESTREAM_GET = 0x800401C0;
const VER_LESS_EQUAL = 5;
const INET_E_DATA_NOT_AVAILABLE = 0x800C0007;
const __MINGW_MSVC2005_DEPREC_STR = "This POSIX function is deprecated beginning in Visual C++ 2005, use _CRT_NONSTDC_NO_DEPRECATE to disable deprecation";
const MDMSPKRFLAG_OFF = 0x00000001;
const HEAP_NO_SERIALIZE = 0x00000001;
const FIND_ACTCTX_SECTION_KEY_RETURN_FLAGS = 0x2;
const PRINTER_ERROR_JAM = 0x00000002;
const ERROR_PROMOTION_ACTIVE = 8221;
const ERROR_SERVER_HAS_OPEN_HANDLES = 1811;
const szOID_OIWSEC_md4RSA2 = "1.3.14.3.2.4";
const IMAGE_REL_AM_CALL32 = 0x0003;
const DMPAPER_STATEMENT = 6;
const DATA_E_LAST = 0x8004013F;
const DMRES_LOW = -2;
const DFCS_BUTTONRADIOMASK = 0x0002;
const CRYPT_E_INVALID_X500_STRING = 0x80092023;
const PROGRESS_QUIET = 3;
const QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS = 0x10;
const FILE_SUPPORTS_EXTENDED_ATTRIBUTES = 0x00800000;
const CF_APPLY = 0x200;
const BACKUP_ALTERNATE_DATA = 0x4;
const ERROR_NOT_LOCKED = 158;
const COLOR_BTNTEXT = 18;
const TT_PRIM_QSPLINE = 2;
const COMADMIN_E_CAT_BITNESSMISMATCH = 0x80110482;
const WH_MOUSE_LL = 14;
const MCI_WAVE_SET_ANYOUTPUT = 0x08000000;
const VS_FF_PRIVATEBUILD = 0x00000008;
const SYMBOL_CHARSET = 2;
const _REPORT_ERRMODE = 3;
const CS_E_SCHEMA_MISMATCH = 0x8004016E;
const HIDE_WINDOW = 0;
const HINSTANCE_ERROR = 32;
const MIXER_OBJECTF_HANDLE = 0x80000000;
const IMAGE_REL_ALPHA_SECREL = 0x000F;
const IPPORT_FTP = 21;
const DLL_PROCESS_ATTACH = 1;
const FD_SETSIZE = 64;
const WM_XBUTTONDOWN = 0x020B;
const IDI_WINLOGO = 32517;
const CRYPT_OID_ENUM_SYSTEM_STORE_FUNC = "CertDllEnumSystemStore";
const MEM_COMMIT = 0x1000;
const SCARD_T1_MAX_IFS = 254;
const CERT_NAME_EMAIL_TYPE = 1;
const PAN_BENT_ARMS_DOUBLE_SERIF = 11;
const RC_DEVBITS = 0x8000;
const ACCESS_ALLOWED_COMPOUND_ACE_TYPE = 0x4;
const SPAPI_E_NOT_AN_INSTALLED_OEM_INF = 0x800F023C;
const REG_SZ = 1;
const SCARD_E_PROTO_MISMATCH = 0x8010000F;
const ERROR_LOGON_SESSION_COLLISION = 1366;
const ERROR_DS_INCOMPATIBLE_CONTROLS_USED = 8574;
const MDM_DIAGNOSTICS = 0x00000800;
const CS_BYTEALIGNWINDOW = 0x2000;
const ERROR_REPARSE_TAG_INVALID = 4393;
const PIPE_CLIENT_END = 0x0;
const XACT_S_FIRST = 0x0004D000;
const DCX_LOCKWINDOWUPDATE = 0x00000400;
const STATE_SYSTEM_ALERT_HIGH = 0x10000000;
const MDMVOLFLAG_LOW = 0x00000001;
const NUMPRS_DECIMAL = 0x0100;
const SPI_SETSELECTIONFADE = 0x1015;
const PSINJECT_PLATECOLOR = 104;
const szOID_INFOSEC_SuiteASignature = "2.16.840.1.101.2.1.1.13";
const CE_PTO = 0x200;
const SO_REUSEADDR = 0x0004;
const PRODUCT_DATACENTER_SERVER_CORE_V = 0x27;
const VIF_TEMPFILE = 0x00000001;
const ERROR_CLEANER_CARTRIDGE_SPENT = 4333;
const ERROR_IPSEC_QM_POLICY_PENDING_DELETION = 13023;
const IPPORT_ROUTESERVER = 520;
const FILE_FLAG_POSIX_SEMANTICS = 0x1000000;
const FILE_FLAG_RANDOM_ACCESS = 0x10000000;
const EN_HSCROLL = 0x0601;
const META_LINETO = 0x0213;
const ERROR_CHILD_NOT_COMPLETE = 129;
const DSPRINT_UPDATE = 0x00000002;
const SEC_E_INCOMPLETE_MESSAGE = 0x80090318;
const MF_SENDMSGS = 0x02000000;
const STATE_SYSTEM_FOCUSABLE = 0x00100000;
const WMSZ_LEFT = 1;
const FILE_SUPPORTS_REPARSE_POINTS = 0x00000080;
const MCI_SEQ_STATUS_COPYRIGHT = 0x0000400C;
const szOID_CMC_ID_POP_LINK_WITNESS = "1.3.6.1.5.5.7.7.23";
const BS_BOTTOM = 0x00000800;
const BS_OWNERDRAW = 0x0000000B;
const CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT = 2;
const ERROR_IOPL_NOT_ENABLED = 197;
const IMAGE_REL_PPC_TOCDEFN = 0x0800;
const GDICOMMENT_IDENTIFIER = 0x43494447;
const CERT_ALT_NAME_ENTRY_ERR_INDEX_MASK = 0xFF;
const TA_TOP = 0;
const ICM_QUERYPROFILE = 3;
const ERROR_INVALID_MENU_HANDLE = 1401;
const XACT_E_NETWORK_TX_DISABLED = 0x8004D024;
const LOCKFILE_FAIL_IMMEDIATELY = 0x1;
const CRYPT_WIRE_ONLY_RETRIEVAL = 0x4;
const MF_REMOVE = 0x00001000;
const MSSIPOTF_E_NOT_OPENTYPE = 0x80097012;
const SEC_E_PKINIT_CLIENT_FAILURE = 0x80090354;
const CERTSRV_E_SIGNATURE_POLICY_REQUIRED = 0x80094809;
const SIMPLEREGION = 2;
const RPC_E_ACCESS_DENIED = 0x8001011B;
const WSADESCRIPTION_LEN = 256;
const DMRES_HIGH = -4;
const EVENT_E_INTERNALERROR = 0x80040206;
const ERROR_SXS_XML_E_BADSTARTNAMECHAR = 14032;
const DISK_LOGGING_DUMP = 2;
const IDC_HAND = 32649;
const CTL_CERT_SUBJECT_TYPE = 2;
const sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W = "SystemRegistry";
const PD_SHOWHELP = 0x800;
const EVENT_CONSOLE_LAYOUT = 0x4005;
const ERROR_INVALID_WINDOW_STYLE = 2002;
const CF_FIXEDPITCHONLY = 0x4000;
const PO_PORTCHANGE = 0x0020;
const ERROR_DS_DRA_CONNECTION_FAILED = 8444;
const CADV_LATEACK = 0xFFFF;
const SCHED_E_NO_SECURITY_SERVICES = 0x80041312;
const C3_IDEOGRAPH = 0x0100;
const GUI_INMENUMODE = 0x00000004;
const CONVERT10_E_OLESTREAM_BITMAP_TO_DIB = 0x800401C3;
const TAPE_DRIVE_EJECT_MEDIA = 0x01000000;
const CAL_SABBREVMONTHNAME2 = 0x00000023;
const CDERR_INITIALIZATION = 0x0002;
const DRAGDROP_S_CANCEL = 0x00040101;
const ERROR_PRIVILEGE_NOT_HELD = 1314;
const CBF_SKIP_DISCONNECTS = 0x00200000;
const PROCESS_HEAP_ENTRY_MOVEABLE = 0x10;
const RSA1024BIT_KEY = 0x4000000;
const WM_MBUTTONUP = 0x0208;
const DT_RASPRINTER = 2;
const CAL_SABBREVMONTHNAME8 = 0x00000029;
const IMAGE_VXD_SIGNATURE = 0x454C;
const MCI_PASTE = 0x0853;
const DMPAPER_PENV_4_ROTATED = 112;
const EMR_SETPALETTEENTRIES = 50;
const NO_ERROR = 0;
const LOCALE_SABBREVMONTHNAME1 = 0x00000044;
const ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = 13881;
const SCARD_SCOPE_TERMINAL = 1;
const szOID_VERISIGN_BITSTRING_6_13 = "2.16.840.1.113733.1.6.13";
const ERROR_SERVER_SHUTDOWN_IN_PROGRESS = 1255;
const LPD_SWAP_EXCHANGE = 0x00000200;
const ISMEX_SEND = 0x00000001;
const IMC_SETCOMPOSITIONWINDOW = 0x000C;
const CFS_FORCE_POSITION = 0x0020;
const STATE_SYSTEM_SELECTED = 0x00000002;
const TME_CANCEL = 0x80000000;
const PRODUCT_CLUSTER_SERVER_V = 0x40;
const CS_E_CLASS_NOTFOUND = 0x80040166;
const SEC_LARGE_PAGES = 0x80000000;
const szOID_OIWSEC_dsaCommSHA = "1.3.14.3.2.21";
const SEC_E_UNKNOWN_CREDENTIALS = 0x8009030D;
const GW_HWNDPREV = 3;
const TAPE_REWIND = 0;
const PP_CERTCHAIN = 9;
const CO_E_CLRNOTAVAILABLE = 0x80004028;
const PSD_INTHOUSANDTHSOFINCHES = 0x4;
const CRYPT_RC2_128BIT_VERSION = 58;
const CONTEXT_EXCEPTION_REPORTING = 0x80000000;
const TAPE_DRIVE_LOAD_UNLOAD = 0x80000001;
const IME_PROP_SPECIAL_UI = 0x00020000;
const SW_MAXIMIZE = 3;
const ERROR_IPSEC_IKE_INVALID_KEY_USAGE = 13818;
const ERROR_ALREADY_RUNNING_LKG = 1074;
const PERF_OBJECT_TIMER = 0x00200000;
const JOB_STATUS_PAUSED = 0x00000001;
const ELF_CULTURE_LATIN = 0;
const SP_APPABORT = -2;
const ERROR_NONPAGED_SYSTEM_RESOURCES = 1451;
const RC_DI_BITMAP = 0x0080;
const OFN_EXTENSIONDIFFERENT = 0x400;
const OR_INVALID_OXID = 1910;
const ERROR_DS_LOCAL_ERROR = 8251;
const ODT_LISTBOX = 2;
const IDOK = 1;
const SC_ARRANGE = 0xF110;
const MNGO_NOINTERFACE = 0x00000000;
const ERROR_MEMBER_IN_GROUP = 1320;
const SE_SACL_DEFAULTED = 0x0020;
const FKF_FILTERKEYSON = 0x00000001;
const CDS_TEST = 0x00000002;
const IS_TEXT_UNICODE_REVERSE_ASCII16 = 0x0010;
const POSTSCRIPT_IDENTIFY = 4117;
const MCI_VD_STATUS_SPEED = 0x00004002;
const RRF_RT_REG_SZ = 0x00000002;
const szOID_APPLICATION_POLICY_MAPPINGS = "1.3.6.1.4.1.311.21.11";
const MDM_BEARERMODE_GSM = 0x2;
const EFS_USE_RECOVERY_KEYS = 0x1;
const szOID_CMC_REVOKE_REQUEST = "1.3.6.1.5.5.7.7.17";
const RPC_C_MGMT_IS_SERVER_LISTEN = 3;
const SPAPI_E_CANT_REMOVE_DEVINST = 0x800F0232;
const EVENT_SYSTEM_SCROLLINGEND = 0x0013;
const MM_WIM_OPEN = 0x3BE;
const LBS_MULTIPLESEL = 0x0008;
const IPPORT_BIFFUDP = 512;
const SUBLANG_MALTESE_MALTA = 0x01;
const CRYPT_OID_CREATE_COM_OBJECT_FUNC = "CryptDllCreateCOMObject";
const DEVICEDATA = 19;
const CPS_CANCEL = 0x0004;
const CF_DSPMETAFILEPICT = 0x0083;
const SUBLANG_CUSTOM_DEFAULT = 0x03;
const __SIZEOF_LONG__ = 4;
const PERF_TYPE_ZERO = 0x00000C00;
const DMBIN_ONLYONE = 1;
const NEWFILEOPENV2ORD = 1552;
const CALLBACK_TYPEMASK = 0x00070000;
const BSF_SENDNOTIFYMESSAGE = 0x00000100;
const PO_RENAME = 0x0014;
const RPC_C_MQ_EXPRESS = 0;
const DMNUP_ONEUP = 2;
const KEY_WOW64_64KEY = 0x0100;
const ERROR_EA_ACCESS_DENIED = 994;
const IMAGE_SCN_ALIGN_1024BYTES = 0x00B00000;
const CMSG_ENVELOPED_DATA_V2 = 2;
const MK_S_LAST = 0x000401EF;
const CF_ENABLETEMPLATE = 0x10;
const CERT_CHAIN_POLICY_IGNORE_NOT_TIME_NESTED_FLAG = 0x4;
const PC_WIDE = 16;
const SS_OWNERDRAW = 0x0000000D;
const CERT_E_CHAINING = 0x800B010A;
const MCI_VD_PLAY_SCAN = 0x00080000;
const ERROR_DS_ALIASED_OBJ_MISSING = 8334;
const HELP_QUIT = 0x0002;
const CRYPT_ENCRYPT = 0x1;
const IMAGE_DIRECTORY_ENTRY_IMPORT = 1;
const IMAGE_SCN_CNT_CODE = 0x00000020;
const DCX_CLIPSIBLINGS = 0x00000010;
const FILE_FLAG_OPEN_NO_RECALL = 0x100000;
const ERROR_IPSEC_IKE_ATTRIB_FAIL = 13802;
const RPC_E_CANTCALLOUT_AGAIN = 0x80010011;
const REG_QWORD = 11;
const CLRBREAK = 9;
const PKCS_7_NDR_ENCODING = 0x20000;
const SE_DACL_AUTO_INHERIT_REQ = 0x0100;
const OFN_LONGNAMES = 0x200000;
const EMR_POLYPOLYGON16 = 91;
const FW_DONTCARE = 0;
const ERROR_DS_NOT_AN_OBJECT = 8352;
const FILE_DELETE_ON_CLOSE = 0x00001000;
const EM_SETTABSTOPS = 0x00CB;
const CERTSRV_E_PROPERTY_EMPTY = 0x80094004;
const GCL_REVERSE_LENGTH = 0x0003;
const ERROR_NO_VOLUME_ID = 1173;
const IME_CMODE_NATIVE = 0x0001;
const _OUT_TO_DEFAULT = 0;
const JOY_CAL_READXYONLY = 0x00020000;
const TPM_LEFTALIGN = 0x0000;
const MCI_GETDEVCAPS_HAS_VIDEO = 0x00000003;
const ACTIVATION_CONTEXT_PATH_TYPE_URL = 3;
const szOID_NETSCAPE_CA_REVOCATION_URL = "2.16.840.1.113730.1.4";
const SUBLANG_ARABIC_SAUDI_ARABIA = 0x01;
const CERT_IE_DIRTY_FLAGS_REGPATH = "Software\\Microsoft\\Cryptography\\IEDirtyFlags";
const ELF_VENDOR_SIZE = 4;
const ERROR_SXS_KEY_NOT_FOUND = 14007;
const PRODUCT_SMALLBUSINESS_SERVER = 0x9;
const ABM_SETAUTOHIDEBAR = 0x00000008;
const ERROR_NOT_QUORUM_CLASS = 5025;
const SM_CXFOCUSBORDER = 83;
const PAN_STRAIGHT_ARMS_SINGLE_SERIF = 5;
const CF_NOFACESEL = 0x80000;
const IMAGE_RESOURCE_NAME_IS_STRING = 0x80000000;
const MOD_CONTROL = 0x0002;
const PSD_MINMARGINS = 0x1;
const CERT_E_ROLE = 0x800B0103;
const DNS_ERROR_WINS_INIT_FAILED = 9615;
const CHECKPNGFORMAT = 4120;
const BM_SETCHECK = 0x00F1;
const MF_STRING = 0x00000000;
const WB_RIGHT = 1;
const DM_SPECVERSION = 0x0401;
const LB_SETLOCALE = 0x01A5;
const ERROR_INVALID_SHARENAME = 1215;
const CRYPT_E_ASN1_OVERFLOW = 0x80093107;
const CONTEXT_SERVICE_ACTIVE = 0x10000000;
const VOS_DOS_WINDOWS16 = 0x00010001;
const ELEMENT_STATUS_INENAB = 0x00000020;
const SHTDN_REASON_MINOR_DISK = 0x00000007;
const SPI_GETMOUSEHOVERHEIGHT = 0x0064;
const ALERT_SYSTEM_INFORMATIONAL = 1;
const ERROR_DEVICE_REQUIRES_CLEANING = 1165;
const VK_HOME = 0x24;
const SEF_SACL_AUTO_INHERIT = 0x02;
const MM_STREAM_DONE = 0x3D6;
const SCERR_NOGUIDS = 0x8000;
const SUBLANG_URDU_PAKISTAN = 0x01;
const CHANGER_EXCHANGE_MEDIA = 0x00000020;
const IME_HOTKEY_PRIVATE_FIRST = 0x200;
const CERT_STORE_CTRL_COMMIT = 3;
const ERROR_CANT_DELETE_LAST_ITEM = 4335;
const MCI_SET_DOOR_CLOSED = 0x00000200;
const CTRY_SLOVAK = 421;
const KP_G = 12;
const KP_P = 11;
const KP_Q = 13;
const FILE_READ_ACCESS = 0x0001;
const KP_X = 14;
const KP_Y = 15;
const FW_SEMIBOLD = 600;
const ERROR_NOT_CHILD_WINDOW = 1442;
const PRINTER_ATTRIBUTE_PUBLISHED = 0x00002000;
const ERROR_LIBRARY_OFFLINE = 4305;
const XACT_E_PARTNER_NETWORK_TX_DISABLED = 0x8004D025;
const WM_DESTROYCLIPBOARD = 0x0307;
const EMR_PIXELFORMAT = 104;
const DESKTOPVERTRES = 117;
const IGIMII_SMODE = 0x0002;
const IMN_SETCOMPOSITIONWINDOW = 0x000B;
const MCI_OVLY_PUT_SOURCE = 0x00020000;
const SUBLANG_SPANISH_MEXICAN = 0x02;
const EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT = 0x8004020D;
const IMPLTYPEFLAG_FDEFAULTVTABLE = 0x8;
const URLACTION_SCRIPT_JAVA_USE = 0x00001402;
const ERROR_IPSEC_MM_AUTH_PENDING_DELETION = 13022;
const CBR_1200 = 1200;
const CALL_PENDING = 0x02;
const PAN_CONTRAST_MEDIUM_HIGH = 7;
const ERROR_INVALID_SECURITY_DESCR = 1338;
const DST_PREFIXTEXT = 0x0002;
const TYPE_E_BADMODULEKIND = 0x800288BD;
const JOB_NOTIFY_FIELD_PRINTER_NAME = 0x00;
const RESOURCEDISPLAYTYPE_GENERIC = 0x00000000;
const SPI_GETFLATMENU = 0x1022;
const CTRY_LITHUANIA = 370;
const WM_SIZE = 0x0005;
const AD_CLOCKWISE = 2;
const COMADMIN_E_SESSION = 0x8011042C;
const LB_GETSELITEMS = 0x0191;
const WAVE_FORMAT_PCM = 1;
const KEYEVENTF_EXTENDEDKEY = 0x0001;
const QUOTA_LIMITS_HARDWS_MIN_DISABLE = 0x00000002;
const ERROR_IPSEC_IKE_MM_DELAY_DROP = 13814;
const CERT_STORE_MAXIMUM_ALLOWED_FLAG = 0x1000;
const FILE_SUPPORTS_TRANSACTIONS = 0x00200000;
const szOID_INFOSEC_mosaicConfidentiality = "2.16.840.1.101.2.1.1.4";
const WM_NEXTMENU = 0x0213;
const RPC_C_VERS_UPTO = 5;
const PROCESS_HEAP_UNCOMMITTED_RANGE = 0x2;
const SCARD_RESET_CARD = 1;
const ABSOLUTE = 1;
const DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 9610;
const SPAPI_E_INVALID_CLASS = 0x800F0206;
const IOCTL_SMARTCARD_EJECT = 6;
const APPLICATION_VERIFIER_INVALID_EXIT_PROCESS_CALL = 0x0102;
const IMAGE_DEBUG_TYPE_CODEVIEW = 2;
const CERT_CREATE_CONTEXT_NOCOPY_FLAG = 0x1;
const CMSG_CTRL_DEL_CRL = 13;
const CM_NONE = 0x00000000;
const GCP_JUSTIFYIN = 0x00200000;
const STATE_SYSTEM_ANIMATED = 0x00004000;
const ERROR_DS_CANT_CREATE_UNDER_SCHEMA = 8510;
const HEAP_PSEUDO_TAG_FLAG = 0x8000;
const SPI_GETACTIVEWNDTRKZORDER = 0x100C;
const IACE_IGNORENOCONTEXT = 0x0020;
const WINEVENT_SKIPOWNPROCESS = 0x0002;
const WH_JOURNALPLAYBACK = 1;
const CLASS_E_NOAGGREGATION = 0x80040110;
const MINGW_HAS_DDK_H = 1;
const SETRTS = 3;
const LOCALE_STIME = 0x0000001E;
const szOID_RSA_SMIMECapabilities = "1.2.840.113549.1.9.15";
const ERROR_INVALID_COLORINDEX = 2022;
const MK_E_NOINVERSE = 0x800401EC;
const SPI_GETWHEELSCROLLLINES = 0x0068;
const DMBIN_CASSETTE = 14;
const APPCOMMAND_NEW = 29;
const VK_ICO_HELP = 0xE3;
const OFN_SHARENOWARN = 1;
const GCPCLASS_PREBOUNDRTL = 0x40;
const HCF_DEFAULTDESKTOP = 0x00000200;
const AUXCAPS_VOLUME = 0x0001;
const UISF_ACTIVE = 0x4;
const FILE_DEVICE_PHYSICAL_NETCARD = 0x00000017;
const ERROR_CTX_WINSTATION_ALREADY_EXISTS = 7023;
const DMPAPER_A3_ROTATED = 76;
const RPC_X_NULL_REF_POINTER = 1780;
const CMSG_CONTENT_PARAM = 2;
const ERROR_RESMON_ONLINE_FAILED = 5018;
const _WIN32_IE_WS03 = 0x0602;
const MIXER_GETLINEINFOF_SOURCE = 0x00000001;
const BS_RADIOBUTTON = 0x00000004;
const WH_KEYBOARD_LL = 13;
const ERROR_HOST_NODE_NOT_AVAILABLE = 5005;
const CTL_FIND_ANY = 0;
const GET_MODULE_HANDLE_EX_FLAG_PIN = 0x1;
const FILE_OPEN_REMOTE_INSTANCE = 0x00000400;
const BS_DIBPATTERN8X8 = 8;
const IMAGE_SCN_LNK_OTHER = 0x00000100;
const LANG_PORTUGUESE = 0x16;
const DNS_ERROR_INVALID_IP_ADDRESS = 9552;
const SCARD_READER_CONFISCATES = 0x00000004;
const _M_X64 = 100;
const SM_CXMINTRACK = 34;
const DESKTOP_ENUMERATE = 0x0040;
const CERT_KEY_PROV_INFO_PROP_ID = 2;
const PS_USERSTYLE = 7;
const RPC_E_INVALID_CALLDATA = 0x8001010C;
const WM_CHANGEUISTATE = 0x0127;
const DCBA_FACEDOWNNONE = 0x0100;
const APPLICATION_VERIFIER_COM_OBJECT_IN_UNLOADED_DLL = 0x040D;
const DISP_E_UNKNOWNINTERFACE = 0x80020001;
const ERROR_INVALID_MESSAGENAME = 1217;
const ERROR_DS_STRONG_AUTH_REQUIRED = 8232;
const __amd64 = 1;
const GREEK_CHARSET = 161;
const MCI_ANIM_PUT_DESTINATION = 0x00040000;
const COMADMIN_E_BASE_PARTITION_ONLY = 0x80110450;
const MDM_V120_ML_2 = 0x2;
const PRINTER_NOTIFY_FIELD_AVERAGE_PPM = 0x15;
const NIIF_WARNING = 0x00000002;
const PROCESSOR_ARCHITECTURE_MIPS = 1;
const EXIT_PROCESS_DEBUG_EVENT = 5;
const SPI_SETMOUSETRAILS = 0x005D;
const PAN_BENT_ARMS_SINGLE_SERIF = 10;
const DMPAPER_JENV_KAKU3 = 72;
const TAPE_DRIVE_REPORT_SMKS = 0x00080000;
const CB_SETLOCALE = 0x0159;
const SCARD_CLASS_ICC_STATE = 9;
const WM_RBUTTONUP = 0x0205;
const MCI_ANIM_PLAY_FAST = 0x00040000;
const DUPLICATE_DEREG = 0x07;
const CBR_256000 = 256000;
const GA_ROOTOWNER = 3;
const PRINTER_CHANGE_ADD_FORM = 0x00010000;
const APPLICATION_VERIFIER_LOCK_CORRUPTED = 0x0205;
const IMAGE_REL_IA64_TOKEN = 0x001B;
const INET_E_NO_SESSION = 0x800C0003;
const DNS_ERROR_ZONE_NOT_SECONDARY = 9613;
const APPCOMMAND_CORRECTION_LIST = 45;
const FILE_DEVICE_CD_ROM_FILE_SYSTEM = 0x00000003;
const DI_DEFAULTSIZE = 0x0008;
const SCS_WOW_BINARY = 2;
const PD_NONETWORKBUTTON = 0x200000;
const ALG_SID_AGREED_KEY_ANY = 3;
const PIDSI_LASTAUTHOR = 0x00000008;
const SPI_SETDESKPATTERN = 0x0015;
const RESOURCEDISPLAYTYPE_DIRECTORY = 0x00000009;
const RPC_C_BINDING_DEFAULT_TIMEOUT = 5;
const DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 9562;
const PARTITION_LDM = 0x42;
const CRYPT_FLAG_SIGNING = 0x20;
const frm1 = 0x0434;
const IOCTL_SMARTCARD_GET_LAST_ERROR = 15;
const FILE_DEVICE_UNKNOWN = 0x00000022;
const APPLICATION_VERIFIER_INTERNAL_WARNING = 0x40000000;
const MCI_OPEN_TYPE_ID = 0x00001000;
const ERROR_PRINTER_DELETED = 1905;
const ERROR_SEEK = 25;
const COPYFILE_SIS_FLAGS = 0x0003;
const ERROR_ALREADY_WAITING = 1904;
const WC_SEPCHARS = 0x00000020;
const IDC_IBEAM = 32513;
const DROPEFFECT_NONE = 0;
const PRODUCT_PROFESSIONAL = 0x30;
const FORMAT_MESSAGE_FROM_HMODULE = 0x800;
const SERVICE_CONTROL_STOP = 0x00000001;
const ARW_STARTRIGHT = 0x0001;
const ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 8595;
const ERROR_DS_GROUP_CONVERSION_ERROR = 8607;
const FW_HEAVY = 900;
const FACILITY_WIN32 = 7;
const sz_CERT_STORE_PROV_SYSTEM_W = "System";
const DT_VCENTER = 0x00000004;
const LB_SETITEMHEIGHT = 0x01A0;
const IMAGE_REL_CEF_ABSOLUTE = 0x0000;
const FILE_OPEN_NO_RECALL = 0x00400000;
const VK_OEM_2 = 0xBF;
const RT_PLUGPLAY = 19;
const VK_OEM_4 = 0xDB;
const VK_OEM_5 = 0xDC;
const VK_OEM_6 = 0xDD;
const VK_OEM_7 = 0xDE;
const VK_OEM_8 = 0xDF;
const ERROR_DS_INTERNAL_FAILURE = 8430;
const VK_ICO_00 = 0xE4;
const MIXERCONTROL_CT_CLASS_CUSTOM = 0x00000000;
const RPC_C_BIND_TO_ALL_NICS = 1;
const CC_CHORD = 4;
const BSF_POSTMESSAGE = 0x00000010;
const CO_E_FAILEDTOSETDACL = 0x80010129;
const RPC_E_CONNECTION_TERMINATED = 0x80010006;
const XST_CONNECTED = 2;
const NCBENUM = 0x37;
const PIDDSI_MANAGER = 0x0000000E;
const RPC_C_HTTP_AUTHN_SCHEME_NTLM = 0x00000002;
const PP_ENUMALGS_EX = 22;
const ERROR_NO_SUPPORTING_DRIVES = 4339;
const STATE_SYSTEM_HOTTRACKED = 0x00000080;
const SHTDN_REASON_FLAG_USER_DEFINED = 0x40000000;
const CRYPT_SGC_ENUM = 4;
const FACILITY_SXS = 23;
const szOID_CMC = "1.3.6.1.5.5.7.7";
const FOCUS_EVENT = 0x10;
const DNS_ERROR_RCODE_NAME_ERROR = 9003;
const FILE_ATTRIBUTE_ARCHIVE = 0x00000020;
const SUBLANG_CHINESE_SIMPLIFIED = 0x02;
const STG_E_INVALIDHANDLE = 0x80030006;
const RPC_S_INVALID_ASYNC_HANDLE = 1914;
const ICM_QUERY = 3;
const VP_FLAGS_COPYPROTECT = 0x0100;
const CC_SOLIDCOLOR = 0x80;
const RIDEV_EXCLUDE = 0x00000010;
const PSINJECT_BEGINPAGESETUP = 101;
const MND_CONTINUE = 0;
const SM_CXDOUBLECLK = 36;
const ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122;
const SUBLANG_ARABIC_IRAQ = 0x02;
const EMR_SETCOLORADJUSTMENT = 23;
const NLS_HIRAGANA = 0x40000;
const SEC_E_UNSUPPORTED_FUNCTION = 0x80090302;
const CMSG_SIGNER_HASH_ALGORITHM_PARAM = 8;
const IMAGE_WEAK_EXTERN_SEARCH_ALIAS = 3;
const EVENT_OBJECT_PARENTCHANGE = 0x800F;
const HCBT_SETFOCUS = 9;
const CRYPT_MESSAGE_KEYID_SIGNER_FLAG = 0x4;
const SEF_AVOID_PRIVILEGE_CHECK = 0x08;
const CTRY_BULGARIA = 359;
const WM_PALETTECHANGED = 0x0311;
const PUBLICKEYBLOB = 0x6;
const CERT_ALT_NAME_EDI_PARTY_NAME = 6;
const INET_E_CANNOT_LOAD_DATA = 0x800C000F;
const PORT_TYPE_READ = 0x0002;
const MHDR_DONE = 0x00000001;
const PRINTER_NOTIFY_FIELD_OBJECT_GUID = 0x1A;
const CERT_STORE_PROV_WRITE_CTL_FUNC = 10;
const IPPORT_DISCARD = 9;
const JOB_NOTIFY_FIELD_TOTAL_BYTES = 0x16;
const FNERR_INVALIDFILENAME = 0x3002;
const CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE = 0x80094013;
const CRYPTPROTECT_PROMPT_RESERVED = 0x4;
const MIXER_GETLINECONTROLSF_ONEBYID = 0x00000001;
const NRC_NAMERR = 0x17;
const MCI_SEQ_MIDI = 0x4003;
const HCBT_CREATEWND = 3;
const GCS_COMPATTR = 0x0010;
const RT_STRING = 6;
const SCHED_E_ACCOUNT_DBASE_CORRUPT = 0x80041311;
const ERROR_NO_VOLUME_LABEL = 125;
const XACT_S_SOMENORETAIN = 0x0004D003;
const ERROR_SYSTEM_TRACE = 150;
const GMEM_NOT_BANKED = 0x1000;
const OSS_PDV_CODE_NOT_LINKED = 0x80093028;
const szOID_KP_TIME_STAMP_SIGNING = "1.3.6.1.4.1.311.10.3.2";
const ERROR_MAX_THRDS_REACHED = 164;
const ERROR_DS_DRA_REF_ALREADY_EXISTS = 8448;
const CRYPT_E_ASN1_PDU_TYPE = 0x80093133;
const MDMSPKR_OFF = 0x00000000;
const ERROR_INVALID_MEDIA = 4300;
const LOCALE_SDATE = 0x0000001D;
const QS_SENDMESSAGE = 0x0040;
const WAVE_FORMAT_4M08 = 0x00000100;
const MDM_MASK_V120_SPEED = 0x7;
const RPC_S_CALL_FAILED_DNE = 1727;
const NEXTBAND = 3;
const MCI_ESCAPE = 0x0805;
const IMAGE_ARCHIVE_END = "`\n";
const SKF_AVAILABLE = 0x00000002;
const CLIPBRD_E_LAST = 0x800401DF;
const URLOSTRM_GETNEWESTVERSION = 0x3;
const NRC_NOSAPS = 0x37;
const CMSG_DETACHED_FLAG = 0x4;
const REMOTE_NAME_INFO_LEVEL = 0x00000002;
const ETO_PDY = 0x2000;
const PROCESSOR_ARCHITECTURE_INTEL = 0;
const STG_E_DOCFILETOOLARGE = 0x80030111;
const stc1 = 0x0440;
const stc2 = 0x0441;
const stc3 = 0x0442;
const stc4 = 0x0443;
const stc5 = 0x0444;
const stc6 = 0x0445;
const stc7 = 0x0446;
const stc8 = 0x0447;
const stc9 = 0x0448;
const SUBLANG_CUSTOM_UNSPECIFIED = 0x04;
const WS_EX_CONTROLPARENT = 0x00010000;
const FORM_PRINTER = 0x00000002;
const SM_CXFRAME = 32;
const APPLICATION_VERIFIER_LOCK_NOT_INITIALIZED = 0x0210;
const EC_QUERYWAITING = 2;
const SEC_E_NO_PA_DATA = 0x8009033C;
const PAGE_EXECUTE = 0x10;
const COMADMIN_E_CANNOT_ALIAS_EVENTCLASS = 0x80110820;
const IMAGE_ROM_OPTIONAL_HDR_MAGIC = 0x107;
const szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID = "1.3.6.1.4.1.311.10.11.29";
const CS_DROPSHADOW = 0x00020000;
const CRYPT_FIND_USER_KEYSET_FLAG = 0x1;
const DC_PRINTERMEM = 28;
const ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 8540;
const GCLP_HICON = -14;
const NTE_BAD_KEYSET = 0x80090016;
const IMAGE_FILE_MACHINE_POWERPC = 0x01F0;
const ERROR_RING2_STACK_IN_USE = 207;
const SCARD_E_NO_FILE = 0x80100026;
const ERROR_UNIDENTIFIED_ERROR = 1287;
const CRYPT_OID_INFO_ALGID_KEY = 3;
const CRYPT_NO_SALT = 0x10;
const IMAGE_SYM_CLASS_ENUM_TAG = 0x000F;
const AD_COUNTERCLOCKWISE = 1;
const ERROR_REQUEST_ABORTED = 1235;
const GET_FEATURE_FROM_THREAD_RESTRICTED = 0x00000080;
const EM_SETRECTNP = 0x00B4;
const PERF_TIMER_100NS = 0x00100000;
const IMAGE_FILE_RELOCS_STRIPPED = 0x0001;
const DC_MAXEXTENT = 5;
const SHGSI_ICONLOCATION = 0;
const ERROR_DS_CANT_MOD_OBJ_CLASS = 8215;
const CS_BYTEALIGNCLIENT = 0x1000;
const szOID_CERT_POLICIES_95 = "2.5.29.3";
const CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_PARTIAL_CHAIN_LOGGING_FLAG = 0x2;
const ALG_SID_TLS1_MASTER = 6;
const META_FLOODFILL = 0x0419;
const SCHED_E_UNKNOWN_OBJECT_VERSION = 0x80041313;
const AW_HIDE = 0x00010000;
const SEC_I_COMPLETE_NEEDED = 0x00090313;
const STATE_SYSTEM_PROTECTED = 0x20000000;
const RES_ICON = 1;
const CO_E_FAILEDTOOPENPROCESSTOKEN = 0x8001013C;
const PSD_ENABLEPAGEPAINTHOOK = 0x40000;
const ERROR_DS_SRC_AND_DST_NC_IDENTICAL = 8485;
const szOID_INFOSEC = "2.16.840.1.101.2.1";
const DNS_ERROR_DP_NOT_AVAILABLE = 9905;
const RTL_VRF_FLG_COM_CHECKS = 0x00000100;
const IME_PROP_COMPLETE_ON_UNSELECT = 0x00100000;
const CMSG_CERT_PARAM = 12;
const CO_E_OBJNOTCONNECTED = 0x800401FD;
const MM_HIENGLISH = 5;
const WM_QUERYUISTATE = 0x0129;
const MCI_FROM = 0x00000004;
const WNNC_NET_LANTASTIC = 0x000A0000;
const LOGON_WITH_PROFILE = 0x00000001;
const PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC = 0x3D;
const DC_BINNAMES = 12;
const MM_JOY1BUTTONDOWN = 0x3B5;
const PROFILE_USER = 0x10000000;
const SHTDN_REASON_MINOR_DC_DEMOTION = 0x00000022;
const DNS_ERROR_NEED_SECONDARY_ADDRESSES = 9614;
const WM_NCXBUTTONUP = 0x00AC;
const ACL_REVISION2 = 2;
const KP_SCHANNEL_ALG = 20;
const JOB_OBJECT_SECURITY_RESTRICTED_TOKEN = 0x00000002;
const ACL_REVISION4 = 4;
const SMART_INVALID_COMMAND = 3;
const IMAGE_SYM_TYPE_WORD = 0x000D;
const POWER_USER_NOTIFY_SHUTDOWN = 0x00000010;
const HTBOTTOMRIGHT = 17;
const DFCS_INACTIVE = 0x0100;
const ERROR_BAD_COMMAND = 22;
const CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY = 0x2000000;
const EMR_POLYLINETO16 = 89;
const CP_SUPPORTED = 0x00000002;
const SO_OOBINLINE = 0x0100;
const SHTDN_REASON_MAJOR_SOFTWARE = 0x00030000;
const ERROR_CLUSTER_NODE_DOWN = 5050;
const SPI_GETWAITTOKILLTIMEOUT = 0x007A;
const MCI_UNFREEZE = 0x0845;
const IME_HOTKEY_DSWITCH_FIRST = 0x100;
const CP_THREAD_ACP = 3;
const CMSG_CMS_RECIPIENT_COUNT_PARAM = 33;
const NCBFINDNAME = 0x78;
const SPAPI_E_NO_DRIVER_SELECTED = 0x800F0203;
const LB_ERRSPACE = -2;
const VARIANT_CALENDAR_HIJRI = 0x08;
const CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC = "CryptMsgDllGenContentEncryptKey";
const SMART_INVALID_REGISTER = 8;
const MCI_SEQ_FORMAT_SONGPTR = 0x4001;
const MIXERLINE_COMPONENTTYPE_DST_FIRST = 0x0;
const PROV_RSA_SCHANNEL = 12;
const PERF_COUNTER_QUEUELEN = 0x00050000;
const ERROR_CTX_WINSTATION_ACCESS_DENIED = 7045;
const MCI_SET_VIDEO = 0x00001000;
const SEC_NOCACHE = 0x10000000;
const ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 2015;
const URLPOLICY_BEHAVIOR_CHECK_LIST = 0x00010000;
const JOHAB_CHARSET = 130;
const URLACTION_INFODELIVERY_NO_REMOVING_SUBSCRIPTIONS = 0x00001D05;
const EMR_POLYLINETO = 6;
const SE_ERR_OOM = 8;
const CMSG_ATTR_CERT_COUNT_PARAM = 31;
const _WIN32_WINNT = 0x502;
const DMPAPER_LEGAL_EXTRA = 51;
const CERT_NEXT_UPDATE_LOCATION_PROP_ID = 10;
const ERROR_IPSEC_IKE_INVALID_GROUP = 13865;
const SPI_GETFONTSMOOTHINGTYPE = 0x200A;
const JOB_STATUS_PRINTING = 0x00000010;
const IMC_GETCANDIDATEPOS = 0x0007;
const PORT_STATUS_DOOR_OPEN = 7;
const TAPE_DRIVE_ERASE_SHORT = 0x00000010;
const WGL_FONT_POLYGONS = 1;
const ERROR_DEVICE_ALREADY_REMEMBERED = 1202;
const PSP_USETITLE = 0x00000008;
const SUBLANG_INUKTITUT_CANADA_LATIN = 0x02;
const SMART_EXTENDED_SELFTEST_CAPTIVE = 130;
const szOID_OIWSEC_md5RSA = "1.3.14.3.2.3";
const HSHELL_TASKMAN = 7;
const NRC_OSRESNOTAV = 0x35;
const WNNC_CRED_MANAGER = 0xFFFF0000;
const NIIF_ICON_MASK = 0x0000000F;
const SPI_GETSELECTIONFADE = 0x1014;
const szOID_CMC_ADD_ATTRIBUTES = "1.3.6.1.4.1.311.10.10.1";
const BACKUP_DATA = 0x1;
const R2_LAST = 16;
const ILLUMINANT_DEVICE_DEFAULT = 0;
const BN_KILLFOCUS = 7;
const PAGE_NOACCESS = 0x01;
const CRYPT_SIGN_ALG_OID_GROUP_ID = 4;
const ERROR_SXS_XML_E_INVALIDSWITCH = 14068;
const CAL_GREGORIAN_XLIT_ENGLISH = 11;
const SHGFI_SMALLICON = 0x000000001;
const CERT_TRUST_IS_OFFLINE_REVOCATION = 0x1000000;
const COMADMIN_E_COMP_MOVE_PRIVATE = 0x8011081E;
const BELOW_NORMAL_PRIORITY_CLASS = 0x4000;
const CLIPBRD_E_FIRST = 0x800401D0;
const SEC_E_CONTEXT_EXPIRED = 0x80090317;
const GGL_STRING = 0x00000003;
const TPM_RETURNCMD = 0x0100;
const SCHED_E_ACCOUNT_NAME_NOT_FOUND = 0x80041310;
const ERROR_CTX_INVALID_PD = 7002;
const RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774;
const DV_E_TYMED = 0x80040069;
const CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_BITS_FLAG = 0x10;
const PFD_GENERIC_FORMAT = 0x00000040;
const CERT_FRIENDLY_NAME_PROP_ID = 11;
const WS_EX_ACCEPTFILES = 0x00000010;
const ERROR_MENU_ITEM_NOT_FOUND = 1456;
const MN_GETHMENU = 0x01E1;
const CHANGER_CLEANER_ACCESS_NOT_VALID = 0x00040000;
const SBM_GETPOS = 0x00E1;
const MCI_OVLY_WINDOW_DEFAULT = 0x00000000;
const SPI_GETMENUDROPALIGNMENT = 0x001B;
const CMSG_DATA = 1;
const BACKGROUND_GREEN = 0x20;
const MDMVOL_LOW = 0x00000000;
const szOID_RSA_encryptedData = "1.2.840.113549.1.7.6";
const SM_CYVIRTUALSCREEN = 79;
const CS_E_PACKAGE_NOTFOUND = 0x80040164;
const CS_VREDRAW = 0x0001;
const RPC_S_PROFILE_NOT_ADDED = 1925;
const PDERR_CREATEICFAILURE = 0x100A;
const USN_REASON_REPARSE_POINT_CHANGE = 0x00100000;
const PROCESSOR_ARCHITECTURE_ALPHA64 = 7;
const RC_OP_DX_OUTPUT = 0x4000;
const ERROR_CTX_LOGON_DISABLED = 7037;
const CERT_TRUST_IS_NOT_TIME_VALID = 0x1;
const PRINTER_NOTIFY_FIELD_DEVMODE = 0x07;
const GROUP_NAME = 0x80;
const SEARCH_PRIMARY = 0x1;
const CONVERT10_S_NO_PRESENTATION = 0x000401C0;
const SCARD_E_COMM_DATA_LOST = 0x8010002F;
const DISPLAY_DEVICE_REMOVABLE = 0x00000020;
const USAGE_MATCH_TYPE_OR = 0x1;
const C3_VOWELMARK = 0x0004;
const DNS_ERROR_SETUP_BASE = 9850;
const TC_GP_TRAP = 2;
const ERROR_BAD_TOKEN_TYPE = 1349;
const URLACTION_SCRIPT_SAFE_ACTIVEX = 0x00001405;
const ENABLE_LINE_INPUT = 0x2;
const MIIM_DATA = 0x00000020;
const CRYPT_OID_REGPATH = "Software\\Microsoft\\Cryptography\\OID";
const EMBDHLP_CREATENOW = 0x00000000;
const DRV_QUERYCONFIGURE = 0x0008;
const JOB_ACCESS_READ = 0x00000020;
const DMPAPER_B4_JIS_ROTATED = 79;
const EMARCH_ENC_I17_IC_INST_WORD_X = 3;
const DFCS_CAPTIONMAX = 0x0002;
const ERROR_NO_SUCH_PRIVILEGE = 1313;
const RPC_C_STATS_PKTS_OUT = 3;
const CRYPT_GET_URL_FROM_AUTH_ATTRIBUTE = 0x8;
const CBS_LOWERCASE = 0x4000;
const ERROR_DS_CANT_FIND_NC_IN_CACHE = 8421;
const ERROR_CTX_SHADOW_DENIED = 7044;
const MDM_ERROR_CONTROL = 0x00000002;
const ERROR_CTX_INVALID_WD = 7049;
const DT_END_ELLIPSIS = 0x00008000;
const CTRY_GREECE = 30;
const CLOSECHANNEL = 4112;
const QS_PAINT = 0x0020;
const FILE_DEVICE_SMARTCARD = 0x00000031;
const MARK_HANDLE_NOT_TXF_SYSTEM_LOG = 0x00000008;
const ERROR_INVALID_PIXEL_FORMAT = 2000;
const ERROR_CTX_MODEM_RESPONSE_ERROR = 7011;
const AF_DLI = 13;
const LCS_GM_GRAPHICS = 0x00000002;
const CERT_ENHKEY_USAGE_PROP_ID = 9;
const CONTEXT_E_NOTRANSACTION = 0x8004E027;
const META_CREATEPENINDIRECT = 0x02FA;
const MCI_INFO_FILE = 0x00000200;
const CBR_19200 = 19200;
const COPY_FILE_OPEN_SOURCE_FOR_WRITE = 0x4;
const KF_ALTDOWN = 0x2000;
const CTRY_VENEZUELA = 58;
const szOID_NT_PRINCIPAL_NAME = "1.3.6.1.4.1.311.20.2.3";
const PD_SELECTION = 0x1;
const MOUSEEVENTF_LEFTDOWN = 0x0002;
const LOAD_DLL_DEBUG_EVENT = 6;
const CERTSRV_E_KEY_LENGTH = 0x80094811;
const WGL_SWAP_OVERLAY9 = 0x00000200;
const SPI_SETDISABLEOVERLAPPEDCONTENT = 0x1041;
const SCARD_E_CANCELLED = 0x80100002;
const CERT_CONTEXT_REVOCATION_TYPE = 1;
const PRINTACTION_TESTPAGE = 4;
const GETSETPRINTORIENT = 30;
const ERROR_SXS_PROTECTION_RECOVERY_FAILED = 14074;
const SOUND_SYSTEM_SHUTDOWN = 2;
const CO_E_CONVERSIONFAILED = 0x8001012E;
const IME_CHOTKEY_SYMBOL_TOGGLE = 0x12;
const VK_OEM_1 = 0xBA;
const CERT_RDN_UTF8_STRING = 13;
const SBM_GETSCROLLINFO = 0x00EA;
const __FLT_RADIX__ = 2;
const RPC_S_ALREADY_LISTENING = 1713;
const RPC_C_QOS_CAPABILITIES_LOCAL_MA_HINT = 0x10;
const PDERR_NODEVICES = 0x1007;
const SHGFI_SELECTED = 0x000010000;
const ERROR_INVALID_ICON_HANDLE = 1414;
const RPC_C_IMP_LEVEL_DEFAULT = 0;
const CREATE_PRESERVE_CODE_AUTHZ_LEVEL = 0x2000000;
const szOID_CMC_DATA_RETURN = "1.3.6.1.5.5.7.7.4";
const SUBLANG_HEBREW_ISRAEL = 0x01;
const __GCC_ATOMIC_LLONG_LOCK_FREE = 2;
const EM_GETHANDLE = 0x00BD;
const SKF_RCTLLOCKED = 0x00080000;
const META_OFFSETWINDOWORG = 0x020F;
const ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = 14042;
const PP_KEYSET_TYPE = 27;
const _HEAP_MAXREQ = 0xFFFFFFFFFFFFFFE0;
const ERROR_MEDIA_UNAVAILABLE = 4308;
const MS_SCARD_PROV_A = "Microsoft Base Smart Card Crypto Provider";
const CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB = 1;
const PIPE_ACCESS_DUPLEX = 0x3;
const MS_SCARD_PROV_W = "Microsoft Base Smart Card Crypto Provider";
const IP_DEFAULT_MULTICAST_LOOP = 1;
const ERROR_RESOURCE_NOT_FOUND = 5007;
const RPC_X_SS_HANDLES_MISMATCH = 1778;
const PROCESSOR_MIPS_R4000 = 4000;
const MCI_COPY = 0x0852;
const ERROR_ALREADY_THREAD = 1281;
const FS_TURKISH = 0x00000010;
const BM_GETCHECK = 0x00F0;
const WAIT_TIMEOUT = 258;
const CRYPT_ENHKEY_USAGE_OID_GROUP_ID = 7;
const COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES = 0x8011045A;
const MDM_HDLCPPP_AUTH_NONE = 0x1;
const ERROR_EXTENDED_ERROR = 1208;
const MKF_MOUSEMODE = 0x80000000;
const IME_CAND_READ = 0x0001;
const CERTSRV_E_SERVER_SUSPENDED = 0x80094006;
const CCHILDREN_TITLEBAR = 5;
const META_SETMAPMODE = 0x0103;
const EXCEPTION_NESTED_CALL = 0x10;
const WH_KEYBOARD = 2;
const ATF_TIMEOUTON = 0x00000001;
const IMAGE_DIRECTORY_ENTRY_IAT = 12;
const NTE_BAD_KEYSET_PARAM = 0x8009001F;
const DMDITHER_ERRORDIFFUSION = 5;
const EN_UPDATE = 0x0400;
const ISMEX_REPLIED = 0x00000008;
const SB_LEFT = 6;
const APPLICATION_VERIFIER_PROBE_NULL = 0x0606;
const CRYPTPROTECT_PROMPT_STRONG = 0x8;
const SHIFTJIS_CHARSET = 128;
const TMPF_DEVICE = 0x08;
const ERROR_SEVERITY_SUCCESS = 0x00000000;
const REGDB_E_BADTHREADINGMODEL = 0x80040156;
const STGM_WRITE = 0x00000001;
const szOID_RSA_SETOAEP_RSA = "1.2.840.113549.1.1.6";
const JOB_NOTIFY_FIELD_PRINT_PROCESSOR = 0x06;
const MIXERCONTROL_CT_CLASS_SLIDER = 0x40000000;
const ERROR_MEDIA_CHANGED = 1110;
const SM_CYSMCAPTION = 51;
const THREAD_PROFILING_FLAG_DISPATCH = 0x1;
const ERROR_INVALID_HOOK_FILTER = 1426;
const CROSS_CERT_DIST_POINT_ERR_INDEX_MASK = 0xFF;
const UNICODE_NOCHAR = 0xFFFF;
const FILE_DEVICE_NETWORK_FILE_SYSTEM = 0x00000014;
const PSINJECT_DOCSUPPLIEDRES = 6;
const E_OUTOFMEMORY = 0x8007000E;
const ERROR_IPSEC_MM_POLICY_NOT_FOUND = 13004;
const AF_FIREFOX = 19;
const WNNC_NET_STAC = 0x002A0000;
const VK_EREOF = 0xF9;
const SM_MOUSEPRESENT = 19;
const RPC_C_OPT_BINDING_NONCAUSAL = 9;
const SERVICE_PAUSED = 0x00000007;
const ERROR_DS_CODE_INCONSISTENCY = 8408;
const IMAGE_REL_PPC_IFGLUE = 0x000D;
const SCARD_E_UNEXPECTED = 0x8010001F;
const STARTF_USESHOWWINDOW = 0x1;
const LBS_NOSEL = 0x4000;
const MDM_V120_ML_DEFAULT = 0x0;
const ERROR_DS_NONEXISTENT_MUST_HAVE = 8388;
const ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = 5891;
const ARW_BOTTOMRIGHT = 0x0001;
const S_PERIOD2048 = 2;
const CONTEXT_E_ABORTED = 0x8004E002;
const PERF_COUNTER_HISTOGRAM = 0x00060000;
const CERT_ACCESS_STATE_WRITE_PERSIST_FLAG = 0x1;
const szOID_PKIX_POLICY_QUALIFIER_CPS = "1.3.6.1.5.5.7.2.1";
const TAPE_DRIVE_SET_REPORT_SMKS = 0x80000800;
const EMARCH_ENC_I17_IMM41c_SIZE_X = 23;
const STATE_SYSTEM_READONLY = 0x00000040;
const ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = 13845;
const MCI_OVLY_WINDOW_ENABLE_STRETCH = 0x00100000;
const ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 14019;
const GM_ADVANCED = 2;
const WHDR_INQUEUE = 0x00000010;
const GCP_NUMERICSLOCAL = 0x08000000;
const CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL = 0x4;
const ERROR_CREATE_FAILED = 1631;
const GL_ID_PRIVATE_LAST = 0x0000FFFF;
const JOY_BUTTON31 = 0x40000000;
const PSINJECT_DOCUMENTPROCESSCOLORSATEND = 21;
const LB_GETITEMHEIGHT = 0x01A1;
const APPCOMMAND_MEDIA_PAUSE = 47;
const ERROR_UNABLE_TO_CLEAN = 4311;
const IS_TEXT_UNICODE_REVERSE_MASK = 0x00F0;
const OFN_ENABLETEMPLATE = 0x40;
const SCARD_E_ICC_CREATEORDER = 0x80100021;
const SEC_I_LOCAL_LOGON = 0x00090315;
const CMC_STATUS_NO_SUPPORT = 4;
const ERROR_CTX_CLOSE_PENDING = 7007;
const IMAGE_REL_AMD64_SECREL7 = 0x000C;
const WM_CLOSE = 0x0010;
const MAX_JOYSTICKOEMVXDNAME = 260;
const META_EXTFLOODFILL = 0x0548;
const FILE_DEVICE_CONTROLLER = 0x00000004;
const DISPLAY_DEVICE_ATTACHED = 0x00000002;
const SSWF_WINDOW = 2;
const STATE_SYSTEM_MIXED = 0x00000020;
const SHTDN_REASON_FLAG_COMMENT_REQUIRED = 0x01000000;
const SCHED_S_EVENT_TRIGGER = 0x00041308;
const IME_SMODE_RESERVED = 0x0000F000;
const SEARCH_ALL_NO_SEQ = 0x4;
const RESOURCE_CONTEXT = 0x00000005;
const FILE_DEVICE_INFINIBAND = 0x0000003B;
const szOID_RENEWAL_CERTIFICATE = "1.3.6.1.4.1.311.13.1";
const IOCTL_SMARTCARD_TRANSMIT = 5;
const THREAD_BASE_PRIORITY_MAX = 2;
const IMAGE_SYM_CLASS_WEAK_EXTERNAL = 0x0069;
const GWLP_HWNDPARENT = -8;
const PRODUCT_ENTERPRISE_E = 0x46;
const APPLICATION_VERIFIER_EXTREME_SIZE_REQUEST = 0x0004;
const DRIVE_REMOTE = 4;
const XACT_E_TIP_CONNECT_FAILED = 0x8004D01F;
const RI_MOUSE_BUTTON_5_UP = 0x0200;
const JOB_OBJECT_UILIMIT_EXITWINDOWS = 0x00000080;
const ERROR_DS_OBJECT_RESULTS_TOO_LARGE = 8248;
const TURKISH_CHARSET = 162;
const CMSG_CTRL_ADD_ATTR_CERT = 14;
const NUMPRS_TRAILING_MINUS = 0x0020;
const ERROR_DS_NO_REF_DOMAIN = 8575;
const MS_ENH_RSA_AES_PROV_W = "Microsoft Enhanced RSA and AES Cryptographic Provider";
const DNS_ERROR_SECURE_BASE = 9800;
const ERROR_SEM_TIMEOUT = 121;
const KP_GET_USE_COUNT = 42;
const szOID_RDN_DUMMY_SIGNER = "1.3.6.1.4.1.311.21.9";
const FLOODFILLBORDER = 0;
const szOID_SUR_NAME = "2.5.4.4";
const CAL_IYEAROFFSETRANGE = 0x00000003;
const COMADMIN_E_KEYMISSING = 0x80110403;
const VP_TV_STANDARD_NTSC_M_J = 0x0002;
const CBR_56000 = 56000;
const PROGRESS_CANCEL = 1;
const RP_LOGON = 0x01;
const NRC_NORES = 0x09;
const CMSG_BARE_CONTENT_PARAM = 3;
const WAVE_FORMAT_96M08 = 0x00010000;
const MOUSE_EVENT = 0x2;
const COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY = 0x8011044A;
const STARTF_USESIZE = 0x2;
const EMR_POLYPOLYLINE = 7;
const VK_JUNJA = 0x17;
const CERT_TRUST_REVOCATION_STATUS_UNKNOWN = 0x40;
const ERROR_INVALID_PASSWORD = 86;
const SMART_CMD = 0xB0;
const __GCC_ATOMIC_LONG_LOCK_FREE = 2;
const DSS_DISABLED = 0x0020;
const ERROR_PRODUCT_UNINSTALLED = 1614;
const ENUM_S_FIRST = 0x000401B0;
const LANG_PUNJABI = 0x46;
const SPI_GETACTIVEWNDTRKTIMEOUT = 0x2002;
const SUBLANG_NORWEGIAN_NYNORSK = 0x02;
const TYPE_E_INVALIDID = 0x800288CF;
const TAPE_DRIVE_PADDING = 0x00040000;
const COLOR_WINDOW = 5;
const PD_ALLPAGES = 0x0;
const LGRPID_JAPANESE = 0x0007;
const RT_ACCELERATOR = 9;
const THREAD_BASE_PRIORITY_MIN = -2;
const CF_DSPENHMETAFILE = 0x008E;
const THREAD_SET_LIMITED_INFORMATION = 0x0400;
const VIF_CANNOTLOADCABINET = 0x00100000;
const IMAGE_REL_MIPS_REFHALF = 0x0001;
const ERROR_NO_SUCH_SITE = 1249;
const PARTITION_XINT13 = 0x0E;
const CONTEXT_E_LAST = 0x8004E02F;
const ERROR_DS_UNKNOWN_OPERATION = 8365;
const DEVICE_NOTIFY_ALL_INTERFACE_CLASSES = 0x00000004;
const STG_E_CSS_SCRAMBLED_SECTOR = 0x80030309;
const XACT_E_REPLAYREQUEST = 0x8004D085;
const IMC_SETSTATUSWINDOWPOS = 0x0010;
const CAPSLOCK_ON = 0x80;
const EMR_SETTEXTALIGN = 22;
const LANG_RUSSIAN = 0x19;
const DNS_ERROR_ZONE_LOCKED = 9607;
const WM_IME_COMPOSITIONFULL = 0x0284;
const szOID_POST_OFFICE_BOX = "2.5.4.18";
const SWP_FRAMECHANGED = 0x0020;
const SPI_SETNONCLIENTMETRICS = 0x002A;
const sz_CERT_STORE_PROV_SMART_CARD_W = "SmartCard";
const CAT_E_CATIDNOEXIST = 0x80040160;
const ERROR_DS_ROLE_NOT_VERIFIED = 8610;
const URLACTION_INFODELIVERY_NO_ADDING_CHANNELS = 0x00001D00;
const MDITILE_ZORDER = 0x0004;
const CSOUND_SYSTEM = 16;
const MAP_COMPOSITE = 0x00000040;
const IMAGE_SCN_ALIGN_2BYTES = 0x00200000;
const MARK_HANDLE_TXF_SYSTEM_LOG = 0x00000004;
const ERROR_NO_MORE_FILES = 18;
const CERT_STORE_PROV_READ_CTL_FUNC = 9;
const ACCESS_MAX_MS_ACE_TYPE = 0x8;
const CO_E_MSI_ERROR = 0x80004023;
const MDITILE_SKIPDISABLED = 0x0002;
const ERROR_IPSEC_IKE_POLICY_MATCH = 13868;
const PARAMFLAG_FHASCUSTDATA = 0x40;
const GGL_INDEX = 0x00000002;
const CTRL_LOGOFF_EVENT = 5;
const CERT_RDN_ENABLE_T61_UNICODE_FLAG = 0x80000000;
const ERROR_CTX_SHADOW_INVALID = 7050;
const MB_TASKMODAL = 0x00002000;
const SO_UPDATE_ACCEPT_CONTEXT = 0x700B;
const SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN = 0x04;
const REPORT_NO_PRIVATE_KEY = 0x1;
const SM_CYMENUSIZE = 55;
const VK_OEM_FJ_MASSHOU = 0x93;
const WM_COMMNOTIFY = 0x0044;
const FOF_MULTIDESTFILES = 0x0001;
const WNNC_NET_PROTSTOR = 0x00210000;
const QUOTA_LIMITS_HARDWS_MIN_ENABLE = 0x00000001;
const MIIM_STATE = 0x00000001;
const ACE_INHERITED_OBJECT_TYPE_PRESENT = 0x2;
const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x4;
const ERROR_SXS_XML_E_UNCLOSEDCDATA = 14065;
const RPC_S_NO_MORE_MEMBERS = 1757;
const EVENT_OBJECT_VALUECHANGE = 0x800E;
const CRYPT_E_PENDING_CLOSE = 0x8009200F;
const WS_EX_LAYOUTRTL = 0x00400000;
const KP_ROUNDS = 35;
const SBM_ENABLE_ARROWS = 0x00E4;
const DCB_ENABLE = 0x0004;
const WGL_SWAP_UNDERLAY12 = 0x08000000;
const GCS_COMPSTR = 0x0008;
const WM_SPOOLERSTATUS = 0x002A;
const SUBLANG_PASHTO_AFGHANISTAN = 0x01;
const LCS_GM_ABS_COLORIMETRIC = 0x00000008;
const ENUMPAPERBINS = 31;
const DMPAPER_PENV_2_ROTATED = 110;
const TAPE_QUERY_MEDIA_CAPACITY = 1;
const BDR_RAISEDINNER = 0x0004;
const CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE = 0x80000;
const DM_DISPLAYFREQUENCY = 0x00400000;
const CERT_PROT_ROOT_INHIBIT_PURGE_LM_FLAG = 0x4;
const BATTERY_FLAG_HIGH = 0x1;
const SC_DLG_MINIMAL_UI = 0x01;
const DM_MEDIATYPE = 0x02000000;
const DCBA_FACEDOWNCENTER = 0x0101;
const AF_ISO = 7;
const CMSG_VERIFY_SIGNER_CHAIN = 3;
const PRINTER_NOTIFY_FIELD_DATATYPE = 0x0B;
const SPI_GETFONTSMOOTHINGORIENTATION = 0x2012;
const ALG_SID_ANY = 0;
const EMR_MOVETOEX = 27;
const WM_SYNCPAINT = 0x0088;
const ELEMENT_STATUS_SVALID = 0x00800000;
const CLIENTSITE_E_LAST = 0x8004019F;
const CMSG_VERIFY_SIGNER_NULL = 4;
const SELECT_CAP_CONVERSION = 0x00000001;
const NUMPRS_TRAILING_WHITE = 0x0002;
const FALSE = 0;
const GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT = 0x2;
const FMFD_DEFAULT = 0x00000000;
const ERROR_BAD_UNIT = 20;
const WTS_SESSION_LOGON = 0x5;
const IPPROTO_ICMP = 1;
const STDOLE2_LCID = 0x0000;
const MCI_SEQ_STATUS_SLAVE = 0x00004007;
const SEC_E_OUT_OF_SEQUENCE = 0x80090310;
const TA_BOTTOM = 8;
const DISP_E_DIVBYZERO = 0x80020012;
const EMR_SELECTOBJECT = 37;
const MOD_MIDIPORT = 1;
const ERROR_NO_SPOOL_SPACE = 62;
const VFT2_FONT_TRUETYPE = 0x00000003;
const OFN_CREATEPROMPT = 0x2000;
const GETTECHNOLGY = 20;
const OSS_PDV_DLL_NOT_LINKED = 0x80093027;
const CF_NOSIZESEL = 0x200000;
const FILE_FLAG_OPEN_REPARSE_POINT = 0x200000;
const PDERR_SETUPFAILURE = 0x1001;
const X3_BTYPE_QP_INST_WORD_X = 2;
const CRYPT_OWF_REPL_LM_HASH = 0x1;
const MDM_V110_SPEED_14DOT4K = 0x6;
const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL = 1;
const DD_DEFSCROLLINSET = 11;
const SEC_I_CONTEXT_EXPIRED = 0x00090317;
const RPC_C_HTTP_AUTHN_SCHEME_PASSPORT = 0x00000004;
const FILE_ATTRIBUTE_NORMAL = 0x00000080;
const ERROR_DS_ATT_VAL_ALREADY_EXISTS = 8323;
const RPC_C_IMP_LEVEL_IDENTIFY = 2;
const __RPCNDR_H_VERSION__ = 475;
const PS_JOIN_MASK = 0x0000F000;
const IMAGE_SYM_CLASS_ARGUMENT = 0x0009;
const BM_GETIMAGE = 0x00F6;
const DEFAULT_PITCH = 0;
const SHTDN_REASON_MINOR_INSTALLATION = 0x00000002;
const SM_CXSMICON = 49;
const szOID_CT_PKI_RESPONSE = "1.3.6.1.5.5.7.12.3";
const COLOR_INACTIVEBORDER = 11;
const IDCLOSE = 8;
const LBSELCHSTRINGW = "commdlg_LBSelChangedNotify";
const PS_ENDCAP_SQUARE = 0x00000100;
const ERROR_CANTREAD = 1012;
const APPCOMMAND_BASS_DOWN = 19;
const VER_SUITE_BLADE = 0x00000400;
const SUBLANG_FRENCH_BELGIAN = 0x02;
const OLE_S_USEREG = 0x00040000;
const IDANI_OPEN = 1;
const ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = 5890;
const PF_CHANNELS_ENABLED = 16;
const CERT_DIGITAL_SIGNATURE_KEY_USAGE = 0x80;
const X3_TMPLT_SIZE_X = 4;
const SEM_FAILCRITICALERRORS = 0x1;
const CRYPT_IMPL_SOFTWARE = 2;
const MF_SEPARATOR = 0x00000800;
const MMIO_PARSE = 0x00000100;
const CERT_COMPARE_MASK = 0xFFFF;
const VP_CP_TYPE_APS_TRIGGER = 0x0001;
const CERT_E_REVOKED = 0x800B010C;
const TYPE_E_INVALIDSTATE = 0x80028029;
const CF_BITMAP = 2;
const NULLREGION = 1;
const MDMSPKRFLAG_CALLSETUP = 0x00000008;
const PRINTER_ENUM_LOCAL = 0x00000002;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_PREFIX = 0x0012;
const EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X = 14;
const CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH = "Software\\Microsoft\\SystemCertificates";
const URLACTION_CHANNEL_SOFTDIST_PERMISSIONS = 0x00001E05;
const EMR_EXTFLOODFILL = 53;
const MOD_RIGHT = 0x4000;
const DCTT_DOWNLOAD = 0x0000002;
const SUBLANG_GERMAN_LIECHTENSTEIN = 0x05;
const ERROR_PRINT_MONITOR_IN_USE = 3008;
const UIS_SET = 1;
const ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = 5033;
const SEC_E_CANNOT_PACK = 0x80090309;
const CO_E_NOIISINTRINSICS = 0x8004E029;
const VK_EXECUTE = 0x2B;
const APPLICATION_VERIFIER_COM_VTBL_IN_FREED_MEMORY = 0x040E;
const MCI_ANIM_STATUS_SPEED = 0x00004001;
const CTRY_ARGENTINA = 54;
const WIN64 = 1;
const FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004;
const OLE_E_BLANK = 0x80040007;
const DNS_ERROR_MASK = 0x00002328;
const PAN_SERIF_BONE = 8;
const PF_COMPARE_EXCHANGE_DOUBLE = 2;
const LR_COLOR = 0x0002;
const COMMON_LVB_GRID_LVERTICAL = 0x800;
const CHANGER_RESERVED_BIT = 0x80000000;
const FADF_VARIANT = 0x800;
const CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG = 0x1;
const PRODUCT_DATACENTER_SERVER_V = 0x25;
const SBS_HORZ = 0x0000;
const DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 9718;
const CERT_TRUST_CTL_IS_NOT_TIME_VALID = 0x20000;
const ALG_CLASS_ANY = 0;
const GCPCLASS_LATINNUMBER = 5;
const ERROR_NOT_LOGGED_ON = 1245;
const __GCC_ATOMIC_BOOL_LOCK_FREE = 2;
const MDM_SHIFT_V120_SPEED = 0x0;
const RTS_CONTROL_DISABLE = 0x0;
const ACCESS_FILTERKEYS = 0x0002;
const RDW_INTERNALPAINT = 0x0002;
const SMART_ERROR_NO_MEM = 7;
const DV_E_STGMEDIUM = 0x80040066;
const IMAGE_SCN_GPREL = 0x00008000;
const OFN_NOCHANGEDIR = 0x8;
const SE_ERR_PNF = 3;
const DATE_SHORTDATE = 0x00000001;
const DCBA_FACEUPRIGHT = 0x0003;
const LANG_SINDHI = 0x59;
const SO_DISCOPTLEN = 0x7007;
const ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 8579;
const OSS_REAL_DLL_NOT_LINKED = 0x8009301F;
const ERROR_DS_OBJ_CLASS_NOT_DEFINED = 8371;
const MB_ABORTRETRYIGNORE = 0x00000002;
const CMSG_UNPROTECTED_ATTR_PARAM = 37;
const WM_MDIMAXIMIZE = 0x0225;
const DCBA_FACEUPCENTER = 0x0001;
const RESOURCETYPE_UNKNOWN = 0xFFFFFFFF;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_VALUE_NAME = "MaxAIAUrlRetrievalCountPerChain";
const SB_GRAD_RECT = 0x00000010;
const szOID_CMC_DECRYPTED_POP = "1.3.6.1.5.5.7.7.10";
const PRINTER_STATUS_BUSY = 0x00000200;
const __ATOMIC_RELAXED = 0;
const SET_FEATURE_ON_THREAD_INTERNET = 0x00000040;
const SEC_E_SMARTCARD_LOGON_REQUIRED = 0x8009033E;
const COPYFILE_SIS_LINK = 0x0001;
const USN_REASON_FILE_DELETE = 0x00000200;
const DOF_DIRECTORY = 0x8003;
const szOID_USER_CERTIFICATE = "2.5.4.36";
const NCBDELNAME = 0x31;
const FILE_ATTRIBUTE_ENCRYPTED = 0x00004000;
const PSINJECT_PSADOBE = 2;
const SPI_GETPENDOCKTHRESHOLD = 0x0080;
const APPCMD_FILTERINITS = 0x00000020;
const CO_E_DECODEFAILED = 0x8001013D;
const PAN_WEIGHT_NORD = 11;
const DMLERR_ADVACKTIMEOUT = 0x4000;
const VFT_DLL = 0x00000002;
const ERROR_DS_AFFECTS_MULTIPLE_DSAS = 8249;
const CO_E_EXCEEDSYSACLLIMIT = 0x80010139;
const ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = 8582;
const SPAPI_E_INVALID_FILTER_DRIVER = 0x800F022C;
const IE_BADID = -1;
const ELEMENT_STATUS_LUN_VALID = 0x00001000;
const DMLERR_FIRST = 0x4000;
const PROV_FORTEZZA = 4;
const CBF_FAIL_EXECUTES = 0x00008000;
const LOGON32_PROVIDER_WINNT35 = 1;
const FRAME_FPO = 0;
const EMARCH_ENC_I17_IMM41b_SIZE_X = 8;
const CF_SCREENFONTS = 0x1;
const ERROR_CONTEXT_EXPIRED = 1931;
const LOGON32_PROVIDER_WINNT40 = 2;
const SEC_I_CONTINUE_NEEDED = 0x00090312;
const RESOURCEDISPLAYTYPE_DOMAIN = 0x00000001;
const META_SETROP2 = 0x0104;
const ERROR_ENVVAR_NOT_FOUND = 203;
const ALG_SID_DH_EPHEM = 2;
const MB_DEFAULT_DESKTOP_ONLY = 0x00020000;
const EASTEUROPE_CHARSET = 238;
const SPI_GETMOUSETRAILS = 0x005E;
const FILE_DEVICE_NULL = 0x00000015;
const szOID_PKIX_ACC_DESCR = "1.3.6.1.5.5.7.48";
const LOGON32_PROVIDER_WINNT50 = 3;
const ERROR_DISK_CHANGE = 107;
const ODS_NOFOCUSRECT = 0x0200;
const cmb1 = 0x0470;
const cmb2 = 0x0471;
const cmb3 = 0x0472;
const cmb4 = 0x0473;
const cmb6 = 0x0475;
const cmb7 = 0x0476;
const cmb8 = 0x0477;
const cmb9 = 0x0478;
const ERROR_SPL_NO_ADDJOB = 3004;
const _I8_MAX = 127;
const RPC_S_OBJECT_NOT_FOUND = 1710;
const DT_DISPFILE = 6;
const CTRY_LIECHTENSTEIN = 41;
const MCI_REALIZE = 0x0840;
const ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = 14002;
const MCI_GETDEVCAPS_DEVICE_TYPE = 0x00000004;
const CERT_NAME_STR_CRLF_FLAG = 0x8000000;
const NO_PROPAGATE_INHERIT_ACE = 0x4;
const FOF_WANTMAPPINGHANDLE = 0x0020;
const SPI_GETWAITTOKILLSERVICETIMEOUT = 0x007C;
const NIF_MESSAGE = 0x00000001;
const ERROR_CLEANER_CARTRIDGE_INSTALLED = 4340;
const DNS_STATUS_SINGLE_PART_NAME = 9559;
const IPPORT_LOGINSERVER = 513;
const SORT_CHINESE_UNICODE = 0x1;
const MCI_OVLY_WINDOW_STATE = 0x00040000;
const SERVICE_CONTROL_DEVICEEVENT = 0x0000000B;
const SPAPI_E_WRONG_INF_STYLE = 0x800F0100;
const SE_SACL_AUTO_INHERITED = 0x0800;
const WM_ENTERMENULOOP = 0x0211;
const SERVICE_CONTROL_NETBINDREMOVE = 0x00000008;
const LR_COPYFROMRESOURCE = 0x4000;
const OFN_PATHMUSTEXIST = 0x800;
const HSHELL_APPCOMMAND = 12;
const MM_MOM_DONE = 0x3C9;
const DC_BINADJUST = 19;
const SPAPI_E_DI_BAD_PATH = 0x800F0214;
const AF_DATAKIT = 9;
const ERROR_DATABASE_DOES_NOT_EXIST = 1065;
const MCI_NOTIFY = 0x00000001;
const ERROR_IPSEC_IKE_INVALID_CERT_TYPE = 13819;
const SPI_GETMINIMIZEDMETRICS = 0x002B;
const SKF_LSHIFTLATCHED = 0x01000000;
const CERT_AUTH_ROOT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME = "RootDirUrl";
const LOCALE_ICOUNTRY = 0x00000005;
const PROP_SM_CYDLG = 188;
const TPM_HORIZONTAL = 0x0000;
const ERROR_INTERNAL_DB_ERROR = 1383;
const DMPAPER_LETTERSMALL = 2;
const PRINTER_CHANGE_DELETE_PORT = 0x00400000;
const APPCOMMAND_LAUNCH_MEDIA_SELECT = 16;
const IME_ESC_SEQUENCE_TO_INTERNAL = 0x1001;
const ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = 7058;
const CF_OEMTEXT = 7;
const CB_ERRSPACE = -2;
const INET_E_UNKNOWN_PROTOCOL = 0x800C000D;
const GL_ID_NODICTIONARY = 0x00000010;
const VK_BROWSER_STOP = 0xA9;
const DT_NOFULLWIDTHCHARBREAK = 0x00080000;
const ENCRYPTION_FORMAT_DEFAULT = 0x01;
const ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = 8491;
const SETCHARSET = 772;
const __MINGW64__ = 1;
const PRODUCT_SERVER_FOR_SB_SOLUTIONS = 0x33;
const DC_NUP = 33;
const ENHMETA_STOCK_OBJECT = 0x80000000;
const PRAGMA_DEPRECATED_DDK = 0;
const HCBT_DESTROYWND = 4;
const EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X = 0;
const LANG_FARSI = 0x29;
const PERF_DISPLAY_PER_SEC = 0x10000000;
const SCARD_E_NO_READERS_AVAILABLE = 0x8010002E;
const DS_SETFONT = 0x40;
const CERT_STORE_PROV_GET_CRL_PROPERTY_FUNC = 19;
const COLOR_INACTIVECAPTION = 3;
const RETRACT_IEPORT = 3;
const EMARCH_ENC_I17_IMM7B_INST_WORD_X = 3;
const ERROR_SEVERITY_ERROR = 0xC0000000;
const VP_TV_STANDARD_SECAM_L1 = 0x00080000;
const MCI_ANIM_OPEN_WS = 0x00010000;
const ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 8514;
const WINNT = 1;
const WM_NULL = 0x0000;
const COMADMIN_E_APPLICATIONEXISTS = 0x8011040B;
const NTE_SYS_ERR = 0x80090021;
const MCI_WAVE_STATUS_CHANNELS = 0x00004002;
const ERROR_RESOURCE_TYPE_NOT_FOUND = 1813;
const MEDIA_READ_ONLY = 0x00000004;
const FF_SWISS = 2<<4;
const XTYPF_NOBLOCK = 0x0002;
const ABE_RIGHT = 2;
const ERROR_DS_LINK_ID_NOT_AVAILABLE = 8577;
const PRINTER_NOTIFY_FIELD_START_TIME = 0x10;
const CRYPT_IMPORT_KEY = 0x80;
const MNS_NOCHECK = 0x80000000;
const SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY = 0x00000014;
const MCI_OPEN_SHAREABLE = 0x00000100;
const CE_FRAME = 0x8;
const MDM_CCITT_OVERRIDE = 0x00000040;
const ERROR_UNABLE_TO_INVENTORY_SLOT = 4326;
const ERROR_SXS_XML_E_BADXMLDECL = 14056;
const REVISION_LENGTH = 4;
const XACT_E_NOTCURRENT = 0x8004D00D;
const VK_SELECT = 0x29;
const MIDI_IO_STATUS = 0x00000020;
const MF_CHANGE = 0x00000080;
const ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = 8536;
const S_WHITE1024 = 5;
const CC_WIDE = 16;
const ERROR_INVALID_GROUPNAME = 1209;
const FACILITY_DIRECTORYSERVICE = 37;
const IMAGE_REL_SH3_DIRECT4 = 0x0006;
const IMAGE_REL_SH3_DIRECT8 = 0x0003;
const APPCOMMAND_VOLUME_UP = 10;
const TAPE_FIXED_PARTITIONS = 0;
const MEM_RELEASE = 0x8000;
const GMEM_DDESHARE = 0x2000;
const ES_READONLY = 0x0800;
const SUBLANG_DUTCH_BELGIAN = 0x02;
const ATTR_TARGET_CONVERTED = 0x01;
const CO_E_INITIALIZATIONFAILED = 0x8004E025;
const WM_HANDHELDFIRST = 0x0358;
const PSINJECT_PAGESATEND = 3;
const MCI_SEEK_TO_END = 0x00000200;
const EVENT_SYSTEM_SOUND = 0x0001;
const MK_E_LAST = 0x800401EF;
const ERROR_SOME_NOT_MAPPED = 1301;
const X3_OPCODE_SIGN_VAL_POS_X = 0;
const META_FILLREGION = 0x0228;
const APPCOMMAND_BROWSER_STOP = 4;
const CRYPT_STRING_NOCR = 0x80000000;
const SPI_SETACCESSTIMEOUT = 0x003D;
const X3_TMPLT_INST_WORD_POS_X = 0;
const SSGF_DISPLAY = 3;
const __UINT_FAST8_MAX__ = 255;
const ERROR_NOT_OWNER = 288;
const SPI_SETSCREENSAVEACTIVE = 0x0011;
const ERROR_DS_NONSAFE_SCHEMA_CHANGE = 8508;
const MDM_HDLCPPP_ML_NONE = 0x1;
const rad1 = 0x0420;
const rad2 = 0x0421;
const rad3 = 0x0422;
const rad4 = 0x0423;
const APPLICATION_VERIFIER_COM_OBJECT_IN_FREED_MEMORY = 0x040C;
const rad6 = 0x0425;
const rad7 = 0x0426;
const rad8 = 0x0427;
const RTL_VRF_FLG_MISCELLANEOUS_CHECKS = 0x00020000;
const _MAX_DIR = 256;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_VALUE_NAME = "MaxAIAUrlRetrievalCertCount";
const VER_NT_WORKSTATION = 0x0000001;
const ES_RIGHT = 0x0002;
const COLORRES = 108;
const MF_HILITE = 0x00000080;
const SP_OUTOFMEMORY = -5;
const XACT_E_CONNECTION_DOWN = 0x8004D01C;
const ODA_FOCUS = 0x0004;
const SHTDN_REASON_MINOR_RECONFIG = 0x00000004;
const MB_TOPMOST = 0x00040000;
const SORT_JAPANESE_XJIS = 0x0;
const S_WHITEVOICE = 7;
const SCARD_ATR_LENGTH = 33;
const FILE_ATTRIBUTE_DEVICE = 0x00000040;
const SIZE_MAXHIDE = 4;
const szOID_PKIX_KP_IPSEC_END_SYSTEM = "1.3.6.1.5.5.7.3.5";
const SPAPI_E_BAD_SERVICE_INSTALLSECT = 0x800F0217;
const WVR_VREDRAW = 0x0200;
const RC_STRETCHBLT = 0x0800;
const CF_PRIVATELAST = 0x02FF;
const BM_SETSTYLE = 0x00F4;
const FACILITY_UMI = 22;
const PP_ADMIN_PIN = 31;
const SEF_DEFAULT_OWNER_FROM_PARENT = 0x20;
const SOUND_SYSTEM_APPSTART = 12;
const LB_DIR = 0x018D;
const ERROR_INVALID_DOMAINNAME = 1212;
const szOID_RSA_counterSign = "1.2.840.113549.1.9.6";
const CRYPT_KEYID_MACHINE_FLAG = 0x20;
const SEM_NOOPENFILEERRORBOX = 0x8000;
const WM_IME_SELECT = 0x0285;
const ERROR_DS_CANT_RETRIEVE_INSTANCE = 8407;
const ERROR_CANT_ACCESS_FILE = 1920;
const SPI_SETBLOCKSENDINPUTRESETS = 0x1027;
const DC_MODEL = 24;
const SUBLANG_TSWANA_SOUTH_AFRICA = 0x01;
const SPI_GETSCREENSAVESECURE = 0x0076;
const MINIMUM_RESERVED_MANIFEST_RESOURCE_ID = 1;
const SEC_E_MUST_BE_KDC = 0x80090339;
const MIM_BACKGROUND = 0x00000002;
const QUOTA_LIMITS_HARDWS_MAX_ENABLE = 0x00000004;
const ERROR_CONNECTION_COUNT_LIMIT = 1238;
const IMAGE_DEBUG_TYPE_CLSID = 11;
const ERROR_INVALID_COMBOBOX_MESSAGE = 1422;
const MDM_SHIFT_PROTOCOLID = 16;
const MCI_SEQ_SMPTE = 0x4004;
const IMN_SETCOMPOSITIONFONT = 0x000A;
const CERT_RDN_ISO646_STRING = 9;
const ERROR_DIR_EFS_DISALLOWED = 6010;
const __MINGW_HAVE_ANSI_C99_PRINTF = 1;
const DNS_STATUS_FQDN = 9557;
const ASPECT_FILTERING = 0x0001;
const X3_EMPTY_INST_WORD_X = 1;
const IS_TEXT_UNICODE_NULL_BYTES = 0x1000;
const FACILITY_URT = 19;
const CRYPT_GET_URL_FROM_UNAUTH_ATTRIBUTE = 0x4;
const ERROR_CLEANER_SLOT_NOT_SET = 4332;
const ERROR_INSTALL_LOG_FAILURE = 1622;
const PRINTER_ATTRIBUTE_DIRECT = 0x00000002;
const FILE_ACTION_REMOVED = 0x00000002;
const META_POLYPOLYGON = 0x0538;
const PRINTER_ENUM_HIDE = 0x01000000;
const ERROR_INVALID_DATATYPE = 1804;
const WM_MENUSELECT = 0x011F;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK_HEADER = 0x000D;
const X3_D_WH_SIGN_VAL_POS_X = 0;
const CTRY_YEMEN = 967;
const szOID_INFOSEC_mosaicIntegrity = "2.16.840.1.101.2.1.1.6";
const CMSG_ENCRYPTED = 6;
const CERT_QUERY_FORMAT_BINARY = 1;
const FACILITY_WINDOWS_CE = 24;
const CC_SHOWHELP = 0x8;
const CP_SYMBOL = 42;
const FS_CHINESETRAD = 0x00100000;
const EMR_ANGLEARC = 41;
const PRINTER_NOTIFY_FIELD_PAGES_PRINTED = 0x17;
const SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED = 0x800F0243;
const ERROR_RESOURCE_NAME_NOT_FOUND = 1814;
const ERROR_BAD_LOGON_SESSION_STATE = 1365;
const ERROR_PASSWORD_RESTRICTION = 1325;
const EXIT_THREAD_DEBUG_EVENT = 4;
const LPD_SHARE_ACCUM = 0x00000100;
const LPD_DOUBLEBUFFER = 0x00000001;
const IDENTIFY_BUFFER_SIZE = 512;
const EMR_INVERTRGN = 73;
const ERROR_BAD_PATHNAME = 161;
const RPC_S_NO_CALL_ACTIVE = 1725;
const R2_MASKPENNOT = 5;
const WM_MOUSEWHEEL = 0x020A;
const szOID_CMC_GET_CRL = "1.3.6.1.5.5.7.7.16";
const DMBIN_USER = 256;
const MSGF_MENU = 2;
const PROCESS_QUERY_LIMITED_INFORMATION = 0x1000;
const EV_RING = 0x100;
const ERROR_FILE_INVALID = 1006;
const PROGRESS_STOP = 2;
const SUBLANG_NEUTRAL = 0x00;
const ERROR_WMI_INSTANCE_NOT_FOUND = 4201;
const DEVICE_NOTIFY_WINDOW_HANDLE = 0x00000000;
const PROV_REPLACE_OWF = 23;
const PSNRET_INVALID_NOCHANGEPAGE = 2;
const SND_ALIAS_START = 0;
const NUMPRS_TRAILING_PLUS = 0x0008;
const ERROR_ALL_NODES_NOT_AVAILABLE = 5037;
const NI_CHANGECANDIDATELIST = 0x0013;
const LOCALE_SLONGDATE = 0x00000020;
const PF_COMPARE_EXCHANGE128 = 14;
const WIZ_CXBMP = 80;
const TC_SA_CONTIN = 0x00000100;
const MCI_SEEK_TO_START = 0x00000100;
const cbNDRContext = 20;
const CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG = 0x8;
const NRC_CANOCCR = 0x24;
const DV_E_DVTARGETDEVICE = 0x80040065;
const JOYCAPS_POVCTS = 0x0040;
const MCI_VD_FORMAT_TRACK = 0x4001;
const ERROR_SUCCESS = 0;
const DC_STAPLE = 30;
const PD_NOPAGENUMS = 0x8;
const SHTDN_REASON_MINOR_DC_PROMOTION = 0x00000021;
const QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE = 0x8;
const CAL_GREGORIAN_XLIT_FRENCH = 12;
const APD_COPY_FROM_DIRECTORY = 0x00000010;
const DNS_ERROR_NBSTAT_INIT_FAILED = 9617;
const PBT_APMPOWERSTATUSCHANGE = 0x000A;
const MSDTC_E_DUPLICATE_RESOURCE = 0x80110701;
const LB_GETITEMRECT = 0x0198;
const IMAGE_SUBSYSTEM_EFI_APPLICATION = 10;
const ERROR_LOCAL_USER_SESSION_KEY = 1303;
const BLTALIGNMENT = 119;
const ES_NOHIDESEL = 0x0100;
const ERROR_INSTALL_USEREXIT = 1602;
const LR_LOADFROMFILE = 0x0010;
const ENABLE_DISABLE_AUTO_OFFLINE = 0xDB;
const IMAGE_REL_PPC_REL14 = 0x0007;
const EMR_SETICMPROFILEA = 112;
const RTL_VRF_FLG_RPC_CHECKS = 0x00000080;
const ERROR_INVALID_STATE = 5023;
const HANGEUL_CHARSET = 129;
const EMR_SETICMPROFILEW = 113;
const DFCS_MENUBULLET = 0x0002;
const ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 8557;
const IMAGE_REL_PPC_REL24 = 0x0006;
const PSBTN_MAX = 6;
const CRYPT_DEFAULT_CONTEXT_CERT_SIGN_OID = 1;
const CB_GETITEMHEIGHT = 0x0154;
const SE_SACL_PROTECTED = 0x2000;
const CO_E_IIDREG_INCONSISTENT = 0x80004020;
const SCS_PIF_BINARY = 3;
const STG_E_NOTSIMPLEFORMAT = 0x80030112;
const PD_RESULT_APPLY = 2;
const DRIVE_FIXED = 3;
const CDS_UPDATEREGISTRY = 0x00000001;
const CERT_X500_NAME_STR = 3;
const WB_ISDELIMITER = 2;
const WINPERF_LOG_USER = 1;
const RPC_S_SERVER_UNAVAILABLE = 1722;
const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI = 9;
const IPPORT_SMTP = 25;
const PRINTER_NOTIFY_FIELD_TOTAL_PAGES = 0x16;
const ISMEX_NOTIFY = 0x00000002;
const RPC_E_INVALID_DATA = 0x8001000F;
const RPC_S_ENTRY_TYPE_MISMATCH = 1922;
const PSH_DEFAULT = 0x00000000;
const TAPE_SHORT_FILEMARKS = 2;
const GPT_BASIC_DATA_ATTRIBUTE_HIDDEN = 0x4000000000000000;
const EMARCH_ENC_I17_IMM41a_SIZE_X = 10;
const ERROR_INTERNAL_DB_CORRUPTION = 1358;
const OFN_NODEREFERENCELINKS = 0x100000;
const CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG = 0x8000;
const SHTDN_REASON_MAJOR_HARDWARE = 0x00010000;
const STM_SETICON = 0x0170;
const SHGFI_EXETYPE = 0x000002000;
const SB_TOP = 6;
const SND_NOWAIT = 0x00002000;
const ERROR_DS_REFERRAL = 8235;
const MEM_DECOMMIT = 0x4000;
const SB_PAGERIGHT = 3;
const URLACTION_SHELL_CURR_MAX = 0x0000180B;
const N_BTMASK = 0x000F;
const SCHED_E_UNSUPPORTED_ACCOUNT_OPTION = 0x80041314;
const SERVICE_CONTROL_CONTINUE = 0x00000003;
const SHOW_ICONWINDOW = 2;
const IME_CMODE_NOCONVERSION = 0x0100;
const SUBLANG_ENGLISH_AUS = 0x03;
const ERROR_INVALID_REPARSE_DATA = 4392;
const CERT_UNICODE_RDN_ERR_INDEX_SHIFT = 22;
const COMMON_LVB_REVERSE_VIDEO = 0x4000;
const CMC_FAIL_BAD_MESSAGE_CHECK = 1;
const IP_TOS = 8;
const SBM_SETSCROLLINFO = 0x00E9;
const szOID_SUBJECT_ALT_NAME = "2.5.29.7";
const FOF_ALLOWUNDO = 0x0040;
const CRYPT_FORMAT_RDN_SEMICOLON = 0x100;
const DS_CONTEXTHELP = 0x2000;
const SUBLANG_BENGALI_INDIA = 0x01;
const SB_RIGHT = 7;
const APPLICATION_VERIFIER_LOCK_IN_UNLOADED_DLL = 0x0201;
const ERROR_RESOURCE_LANG_NOT_FOUND = 1815;
const CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG = 0x8;
const N_BTSHFT = 4;
const __CHAR_BIT__ = 8;
const KP_HIGHEST_VERSION = 41;
const CERT_SYSTEM_STORE_SERVICES_ID = 5;
const ERROR_SXS_XML_E_MULTIPLEROOTS = 14054;
const szOID_ENROLLMENT_CSP_PROVIDER = "1.3.6.1.4.1.311.13.2.2";
const MCI_STATUS_TIME_FORMAT = 0x00000006;
const CBR_4800 = 4800;
const AW_ACTIVATE = 0x00020000;
const SCARD_T1_PROLOGUE_LENGTH = 3;
const LC_INTERIORS = 128;
const SERVICE_AUTO_START = 0x00000002;
const MCI_VD_STEP_FRAMES = 0x00010000;
const READ_THRESHOLD_BUFFER_SIZE = 512;
const WM_SYSKEYUP = 0x0105;
const SCARD_E_READER_UNAVAILABLE = 0x80100017;
const LOCALE_SSORTNAME = 0x00001013;
const LISTEN_OUTSTANDING = 0x01;
const META_POLYLINE = 0x0325;
const STG_E_UNKNOWN = 0x800300FD;
const PBT_APMRESUMEAUTOMATIC = 0x0012;
const ERROR_INVALID_FLAGS = 1004;
const SCARD_READER_TYPE_PCMCIA = 0x40;
const SUBLANG_ITALIAN_SWISS = 0x02;
const VS_FF_INFOINFERRED = 0x00000010;
const NONANTIALIASED_QUALITY = 3;
const IP_TTL = 7;
const WH_MSGFILTER = -1;
const ERROR_SERVICE_START_HANG = 1070;
const WM_CTLCOLORSCROLLBAR = 0x0137;
const MNC_CLOSE = 1;
const IMAGE_REL_PPC_BRNTAKEN = 0x0400;
const SMART_READ_LOG = 0xD5;
const SHGNLI_NOLNK = 0x000000008;
const SUBLANG_OCCITAN_FRANCE = 0x01;
const MCI_OVLY_GETDEVCAPS_MAX_WINDOWS = 0x00004003;
const ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435;
const CERT_INFO_SUBJECT_FLAG = 7;
const SUBLANG_INUKTITUT_CANADA = 0x01;
const ERROR_NO_SIGNAL_SENT = 205;
const ALG_SID_SCHANNEL_MAC_KEY = 3;
const __ORDER_LITTLE_ENDIAN__ = 1234;
const SUBLANG_AMHARIC_ETHIOPIA = 0x01;
const USN_DELETE_FLAG_NOTIFY = 0x00000002;
const RPC_C_OPT_MQ_TIME_TO_BE_RECEIVED = 8;
const S_STACCATO = 2;
const ERROR_DS_ATT_NOT_DEF_FOR_CLASS = 8317;
const IMAGE_SIZEOF_SYMBOL = 18;
const ERROR_DS_CANT_RETRIEVE_ATTS = 8481;
const MCI_VD_SPIN_UP = 0x00010000;
const APPLICATION_VERIFIER_CORRUPTED_HEAP_BLOCK = 0x0008;
const szOID_RSA_SMIMEalgCMS3DESwrap = "1.2.840.113549.1.9.16.3.6";
const HELP_CONTEXT = 0x0001;
const LCS_CALIBRATED_RGB = 0x00000000;
const CERT_COMPARE_CERT_ID = 16;
const RPC_C_AUTHN_LEVEL_PKT_INTEGRITY = 5;
const ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = 8464;
const ERROR_CTX_PD_NOT_FOUND = 7003;
const CERT_STORE_SAVE_TO_MEMORY = 2;
const CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT = 2;
const LANG_KONKANI = 0x57;
const XACT_E_HEURISTICDANGER = 0x8004D007;
const APPCOMMAND_VOLUME_MUTE = 8;
const ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 8376;
const DDL_HIDDEN = 0x0002;
const szOID_ISSUING_DIST_POINT = "2.5.29.28";
const HDATA_APPOWNED = 0x0001;
const MIDIERR_BASE = 64;
const IMAGE_SYM_CLASS_CLR_TOKEN = 0x006B;
const ALG_SID_SEAL = 2;
const ICM_REGISTERICMATCHER = 5;
const QS_KEY = 0x0001;
const CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC = "CertDllUnregisterPhysicalStore";
const ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 8578;
const SUBLANG_SYRIAC = 0x01;
const ERROR_UNABLE_TO_REMOVE_REPLACED = 1175;
const CERT_STORE_PROV_WRITE_ADD_FLAG = 0x1;
const INDEXID_CONTAINER = 0;
const PIDDSI_CATEGORY = 0x00000002;
const CACHE_S_SOMECACHES_NOTUPDATED = 0x00040172;
const JOB_NOTIFY_TYPE = 0x01;
const CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED = 10;
const SET_SPREAD = 4106;
const EMR_SETVIEWPORTEXTEX = 11;
const FO_COPY = 0x0002;
const ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = 8492;
const MIDICAPS_VOLUME = 0x0001;
const TRUST_E_SUBJECT_FORM_UNKNOWN = 0x800B0003;
const MMIO_INSTALLPROC = 0x00010000;
const RPC_S_WAITONTIMER = 0x80010116;
const PAN_MIDLINE_STANDARD_SERIFED = 4;
const __DBL_MIN_10_EXP__ = -307;
const MDM_V120_ML_NONE = 0x1;
const szOID_DEVICE_SERIAL_NUMBER = "2.5.4.5";
const IMAGE_REL_SH3_TOKEN = 0x0012;
const VOS__PM16 = 0x00000002;
const CERT_SYSTEM_STORE_USERS_ID = 6;
const SUBLANG_TELUGU_INDIA = 0x01;
const C1_CNTRL = 0x0020;
const STATE_SYSTEM_ALERT_LOW = 0x04000000;
const SP_ERROR = -1;
const DONT_RESOLVE_DLL_REFERENCES = 0x1;
const RPC_C_VERS_MAJOR_ONLY = 4;
const MEM_4MB_PAGES = 0x80000000;
const CMSG_OID_GEN_ENCRYPT_KEY_FUNC = "CryptMsgDllGenEncryptKey";
const CHANGER_BAR_CODE_SCANNER_INSTALLED = 0x00000001;
const URLACTION_COOKIES = 0x00001A02;
const EXCEPTION_STACK_INVALID = 0x8;
const VOS__PM32 = 0x00000003;
const IMAGE_REL_BASED_IA64_IMM64 = 9;
const VK_BROWSER_HOME = 0xAC;
const APPCOMMAND_SEND_MAIL = 41;
const PRINTER_NOTIFY_FIELD_UNTIL_TIME = 0x11;
const N_TMASK = 0x0030;
const KP_PUB_PARAMS = 39;
const C2_EUROPETERMINATOR = 0x0005;
const CP_REGION = 2;
const SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT = 0x04;
const STGFMT_ANY = 4;
const LGRPID_ARMENIAN = 0x0011;
const WNNC_NET_MASFAX = 0x00310000;
const MM_JOY2MOVE = 0x3A1;
const FW_EXTRALIGHT = 200;
const LANG_OCCITAN = 0x82;
const VP_FLAGS_TV_MODE = 0x0001;
const JOB_NOTIFY_FIELD_PAGES_PRINTED = 0x15;
const FR_MATCHCASE = 0x4;
const ERROR_SERVICE_NO_THREAD = 1054;
const CRYPT_E_SECURITY_SETTINGS = 0x80092026;
const WM_DEVICECHANGE = 0x0219;
const MDM_V120_SPEED_DEFAULT = 0x0;
const TAPE_DRIVE_COMPRESSION = 0x00020000;
const MIXER_GETLINEINFOF_QUERYMASK = 0x0000000F;
const SECTION_EXTEND_SIZE = 0x0010;
const _WIN32_WINNT_VISTA = 0x0600;
const NTE_KEYSET_ENTRY_BAD = 0x8009001A;
const DISPLAY_DEVICE_ACTIVE = 0x00000001;
const DNS_ERROR_NOT_UNIQUE = 9555;
const szOID_RSA_HASH = "1.2.840.113549.2";
const DST_COMPLEX = 0x0000;
const MDIS_ALLCHILDSTYLES = 0x0001;
const CERT_KEY_CERT_SIGN_KEY_USAGE = 0x4;
const STREAM_SET_ENCRYPTION = 0x00000003;
const IE_HARDWARE = -10;
const MCI_ANIM_GETDEVCAPS_PALETTES = 0x00004006;
const VK_ICO_CLEAR = 0xE6;
const NI_SETCANDIDATE_PAGESIZE = 0x0017;
const IOC_IN = 0x80000000;
const LAYOUT_BITMAPORIENTATIONPRESERVED = 0x00000008;
const COMADMIN_E_APP_NOT_RUNNING = 0x8011080A;
const RPC_E_INVALID_EXTENSION = 0x80010112;
const FR_HIDEWHOLEWORD = 0x10000;
const NTE_BAD_PROV_TYPE = 0x80090014;
const FF_ROMAN = 1<<4;
const CT_CTYPE1 = 0x00000001;
const CT_CTYPE2 = 0x00000002;
const CT_CTYPE3 = 0x00000004;
const szOID_AUTHORITY_KEY_IDENTIFIER2 = "2.5.29.35";
const CF_METAFILEPICT = 3;
const CF_TIFF = 6;
const ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 13860;
const IMAGE_SIZEOF_RELOCATION = 10;
const SETMITERLIMIT = 23;
const ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = 8555;
const ERROR_INTERNAL_ERROR = 1359;
const PSH_WIZARDHASFINISH = 0x00000010;
const DMPAPER_P16K_ROTATED = 106;
const NRC_BADDR = 0x07;
const STGM_NOSCRATCH = 0x00100000;
const SPI_GETPENSIDEMOVETHRESHOLD = 0x008A;
const NETSCAPE_SMIME_CERT_TYPE = 0x20;
const STATE_SYSTEM_MULTISELECTABLE = 0x01000000;
const SNAPSHOT_POLICY_ALWAYS = 1;
const ERROR_UNABLE_TO_LOAD_MEDIUM = 4324;
const RDW_VALIDATE = 0x0008;
const COMADMIN_E_APPDIRNOTFOUND = 0x8011041F;
const MIDICAPS_STREAM = 0x0008;
const FLASHW_TIMERNOFG = 0x0000000C;
const R2_MERGEPEN = 15;
const CRYPT_E_SELF_SIGNED = 0x80092007;
const DMLERR_UNFOUND_QUEUE_ID = 0x4011;
const FACILITY_SSPI = 9;
const szOID_RSA_preferSignedData = "1.2.840.113549.1.9.15.1";
const PID_BEHAVIOR = 0x80000003;
const FR_DIALOGTERM = 0x40;
const JOB_OBJECT_UILIMIT_NONE = 0x00000000;
const WNNC_NET_FARALLON = 0x00120000;
const VFT2_DRV_KEYBOARD = 0x00000002;
const VK_OEM_JUMP = 0xEA;
const APPCLASS_MONITOR = 0x00000001;
const RPC_S_UNKNOWN_MGR_TYPE = 1716;
const IMAGE_DEBUG_MISC_EXENAME = 1;
const NTE_BAD_DATA = 0x80090005;
const ERROR_ICM_NOT_ENABLED = 2018;
const PRIVATEKEYBLOB = 0x7;
const GET_TAPE_MEDIA_INFORMATION = 0;
const R2_MERGENOTPEN = 12;
const MM_JOY2BUTTONDOWN = 0x3B6;
const KP_MODE = 4;
const psh1 = 0x0400;
const psh2 = 0x0401;
const psh3 = 0x0402;
const psh4 = 0x0403;
const psh5 = 0x0404;
const psh6 = 0x0405;
const psh7 = 0x0406;
const psh8 = 0x0407;
const psh9 = 0x0408;
const TAPE_DRIVE_SEQUENTIAL_FMKS = 0x80080000;
const ERROR_NO_RECOVERY_POLICY = 6003;
const ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = 13836;
const INET_E_RESULT_DISPATCHED = 0x800C0200;
const DEREGISTERED = 0x05;
const PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY = 0x0F;
const ERROR_TRUST_FAILURE = 1790;
const MS_STRONG_PROV_A = "Microsoft Strong Cryptographic Provider";
const IMEVER_0400 = 0x00040000;
const MS_STRONG_PROV_W = "Microsoft Strong Cryptographic Provider";
const PM_NOYIELD = 0x0002;
const ERROR_DS_CANT_FIND_EXPECTED_NC = 8420;
const IMAGE_REL_ALPHA_MATCH = 0x000D;
const ERROR_DRIVE_LOCKED = 108;
const MM_ANISOTROPIC = 8;
const szOID_BASIC_CONSTRAINTS = "2.5.29.10";
const PAN_PROP_MONOSPACED = 9;
const TC_CR_90 = 0x00000008;
const ERROR_SXS_XML_E_MULTIPLE_COLONS = 14046;
const WM_MDICASCADE = 0x0227;
const RPC_S_NO_ENTRY_NAME = 1735;
const QS_ALLPOSTMESSAGE = 0x0100;
const ERROR_DS_CANT_CACHE_ATT = 8401;
const ERROR_IPSEC_IKE_AUTH_FAIL = 13801;
const SUBLANG_GEORGIAN_GEORGIA = 0x01;
const MIDIPROP_TIMEDIV = 0x00000001;
const MIXER_GETLINEINFOF_DESTINATION = 0x00000000;
const PROCESSOR_ARM_7TDMI = 70001;
const ERROR_SERVICE_DISABLED = 1058;
const NTE_KEYSET_NOT_DEF = 0x80090019;
const RC_DIBTODEV = 0x0200;
const CALLBACK_NULL = 0x00000000;
const MIXERLINE_TARGETTYPE_AUX = 5;
const SUBLANG_YORUBA_NIGERIA = 0x01;
const ERROR_MESSAGE_SYNC_ONLY = 1159;
const DTR_CONTROL_HANDSHAKE = 0x2;
const SNAPSHOT_POLICY_NEVER = 0;
const WAVECAPS_SYNC = 0x0010;
const AF_ECMA = 8;
const PSH_NOCONTEXTHELP = 0x02000000;
const DO_PRINTFILE = 0x544E5250;
const CO_E_ACCESSCHECKFAILED = 0x8001012A;
const LANG_KYRGYZ = 0x40;
const __DBL_DIG__ = 15;
const CONSOLE_MOUSE_SELECTION = 0x4;
const CACHE_E_NOCACHE_UPDATED = 0x80040170;
const ERROR_ACCESS_DISABLED_WEBBLADE = 1277;
const IMAGE_REL_ARM_ADDR32 = 0x0001;
const SBS_SIZEBOXBOTTOMRIGHTALIGN = 0x0004;
const ERROR_INSTALL_PACKAGE_INVALID = 1620;
const TAPE_DRIVE_FORMAT_IMMEDIATE = 0xC0000000;
const COLOR_HIGHLIGHTTEXT = 14;
const WNNC_NET_DCE = 0x00190000;
const SW_MINIMIZE = 6;
const ERROR_SXS_XML_E_MISSINGWHITESPACE = 14037;
const FILE_DEVICE_KSEC = 0x00000039;
const SEMAPHORE_MODIFY_STATE = 0x0002;
const MCI_ANIM_REALIZE_BKGD = 0x00020000;
const TRANSFORM_CTM = 4107;
const SHTDN_REASON_MAJOR_SYSTEM = 0x00050000;
const ERROR_DS_NOT_INSTALLED = 8200;
const RI_KEY_TERMSRV_SHADOW = 0x10;
const USN_REASON_RENAME_NEW_NAME = 0x00002000;
const JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT = 9;
const EVENT_SYSTEM_CAPTUREEND = 0x0009;
const DRV_RESERVED = 0x0800;
const SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE = 0x800F021A;
const ERROR_MAPPED_ALIGNMENT = 1132;
const CRYPT_PSTORE = 0x2;
const VP_FLAGS_OVERSCAN = 0x0008;
const CO_E_PATHTOOLONG = 0x80010135;
const MDM_X75_DATA_BTX = 0x4;
const OLEOBJ_S_FIRST = 0x00040180;
const CRYPT_E_NOT_CHAR_STRING = 0x80092024;
const LZERROR_GLOBLOCK = -6;
const WVR_ALIGNBOTTOM = 0x0040;
const MS_DEF_RSA_SIG_PROV_W = "Microsoft RSA Signature Cryptographic Provider";
const DT_PLOTTER = 0;
const META_SETTEXTCOLOR = 0x0209;
const PP_SIGNATURE_PIN = 33;
const CS_IME = 0x00010000;
const WM_SIZECLIPBOARD = 0x030B;
const PROP_LG_CYDLG = 218;
const FILE_READ_ONLY_VOLUME = 0x00080000;
const SPOOL_FILE_PERSISTENT = 0x00000001;
const DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION = 0x1;
const OFN_ENABLEHOOK = 0x20;
const PSD_DISABLEPAPER = 0x200;
const HELP_TCARD = 0x8000;
const COMMON_LVB_UNDERSCORE = 0x8000;
const LB_GETTEXT = 0x0189;
const FACILITY_SETUPAPI = 15;
const FILE_CREATE_PIPE_INSTANCE = 0x0004;
const ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 14020;
const SIZEOF_RFPO_DATA = 16;
const ERROR_COMMITMENT_LIMIT = 1455;
const IMC_CLOSESTATUSWINDOW = 0x0021;
const RPC_C_OPT_MQ_JOURNAL = 3;
const VER_GREATER = 2;
const IMAGE_FILE_MACHINE_MIPSFPU16 = 0x0466;
const XACT_E_TRANSACTIONCLOSED = 0x8004D083;
const CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY = 0x80000000;
const CWCSTORAGENAME = 32;
const szOID_INITIALS = "2.5.4.43";
const DC_PAPERNAMES = 16;
const XACT_E_INVALIDLSN = 0x8004D084;
const PAN_FAMILYTYPE_INDEX = 0;
const DLGC_WANTARROWS = 0x0001;
const SPAPI_E_NO_CATALOG_FOR_OEM_INF = 0x800F022F;
const QUERYROPSUPPORT = 40;
const IMAGE_REL_AMD64_TOKEN = 0x000D;
const DMPAPER_LETTER_ROTATED = 75;
const EVENTLOG_END_PAIRED_EVENT = 0x0002;
const FILE_ATTRIBUTE_HIDDEN = 0x00000002;
const POLICY_SHOWREASONUI_ALWAYS = 1;
const MCI_ANIM_GETDEVCAPS_CAN_STRETCH = 0x00004007;
const MUTZ_ENFORCERESTRICTED = 0x00000100;
const USER_MARSHAL_FC_LONG = 8;
const ERROR_DS_CANT_REMOVE_ATT_CACHE = 8403;
const SUBLANG_SWEDISH = 0x01;
const DISP_E_UNKNOWNLCID = 0x8002000C;
const PAN_XHEIGHT_CONSTANT_LARGE = 4;
const SCS_CAP_COMPSTR = 0x00000001;
const GL_ID_TOOMANYSTROKE = 0x00000022;
const IME_CAND_STROKE = 0x0005;
const FE_FONTSMOOTHINGSTANDARD = 0x0001;
const OSS_CONSTRAINT_DLL_NOT_LINKED = 0x80093023;
const LOCALE_IDEFAULTCODEPAGE = 0x0000000B;
const IMAGE_REL_ALPHA_SECRELHI = 0x0012;
const EVENT_OBJECT_SHOW = 0x8002;
const PAN_BENT_ARMS_VERT = 9;
const SHTDN_REASON_MINOR_UNSTABLE = 0x00000006;
const CBS_DISABLENOSCROLL = 0x0800;
const WM_SETICON = 0x0080;
const PDERR_NODEFAULTPRN = 0x1008;
const URLACTION_SHELL_SHELLEXECUTE = 0x00001806;
const IMN_SETCONVERSIONMODE = 0x0006;
const AC_LINE_OFFLINE = 0x0;
const CERT_E_EXPIRED = 0x800B0101;
const ERROR_DS_INIT_FAILURE_CONSOLE = 8561;
const EMARCH_ENC_I17_IMM5C_SIZE_X = 5;
const DMBIN_LOWER = 2;
const FD_OOB = 0x04;
const REG_FORCE_UNLOAD = 1;
const CRYPT_OID_INFO_SIGN_KEY = 4;
const ALG_SID_IDEA = 5;
const BS_PATTERN = 3;
const RPC_C_SECURITY_QOS_VERSION = 1;
const IMPLTYPEFLAG_FSOURCE = 0x2;
const APPLICATION_VERIFIER_COM_CF_SUCCESS_WITH_NULL = 0x040A;
const DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 9564;
const MOD_SWSYNTH = 7;
const ERROR_IPSEC_IKE_KERBEROS_ERROR = 13827;
const PF_PAE_ENABLED = 9;
const __MINGW32__ = 1;
const TC_SIGNAL = 3;
const CERTSRV_E_TEMPLATE_DENIED = 0x80094012;
const LOCALE_SGROUPING = 0x00000010;
const SERVICE_USER_DEFINED_CONTROL = 0x0100;
const _MAX_EXT = 256;
const RPC_C_DONT_FAIL = 0x4;
const IMAGE_REL_ALPHA_SECRELLO = 0x0011;
const DNS_ERROR_RCODE_BADKEY = 9017;
const ESB_DISABLE_BOTH = 0x0003;
const __INT32_MAX__ = 2147483647;
const PSH_USEHBMWATERMARK = 0x00010000;
const ERROR_EAS_NOT_SUPPORTED = 282;
const MIN_PRIORITY = 1;
const DS_CENTERMOUSE = 0x1000;
const DNS_INFO_AXFR_COMPLETE = 9751;
const CRYPT_DELETEKEYSET = 0x10;
const VFF_BUFFTOOSMALL = 0x0004;
const CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS = 0x80;
const MCI_INFO_NAME = 0x00001000;
const RPC_S_BINDING_INCOMPLETE = 1819;
const WM_GETHOTKEY = 0x0033;
const ERROR_DS_NAMING_MASTER_GC = 8523;
const PRINTER_ENUM_EXPAND = 0x00004000;
const META_CREATEREGION = 0x06FF;
const CF_INITTOLOGFONTSTRUCT = 0x40;
const PF_MMX_INSTRUCTIONS_AVAILABLE = 3;
const META_PAINTREGION = 0x012B;
const DC_MEDIATYPENAMES = 34;
const RPC_S_UNKNOWN_AUTHN_LEVEL = 1748;
const RT_MENU = 4;
const LB_GETHORIZONTALEXTENT = 0x0193;
const WM_SYSKEYDOWN = 0x0104;
const DOF_SHELLDATA = 0x0002;
const MCI_OVLY_INFO_TEXT = 0x00010000;
const WIZ_CYDLG = 140;
const GCP_REORDER = 0x0002;
const NRC_INVADDRESS = 0x39;
const CRYPT_RDN_ATTR_OID_GROUP_ID = 5;
const OF_SHARE_DENY_READ = 0x30;
const PAN_SERIF_THIN = 7;
const VSS_E_RESYNC_IN_PROGRESS = 0x800423FF;
const ISC_SHOWUIGUIDELINE = 0x40000000;
const IMAGE_SCN_MEM_PRELOAD = 0x00080000;
const EVENT_SYSTEM_MINIMIZESTART = 0x0016;
const SM_CYSMSIZE = 53;
const MMIO_FINDPROC = 0x00040000;
const JOB_CONTROL_RESUME = 2;
const ALERT_SYSTEM_QUERY = 4;
const MIXERCONTROL_CT_UNITS_UNSIGNED = 0x00030000;
const CRYPT_ACQUIRE_USE_PROV_INFO_FLAG = 0x2;
const EVENT_SYSTEM_CONTEXTHELPSTART = 0x000C;
const COMADMIN_E_APP_FILE_WRITEFAIL = 0x80110407;
const _OUT_TO_MSGBOX = 2;
const SEVERITY_SUCCESS = 0;
const ERROR_DS_HAVE_PRIMARY_MEMBERS = 8521;
const IMAGE_REL_MIPS_JMPADDR = 0x0003;
const CERT_TRUST_IS_NOT_TIME_NESTED = 0x2;
const VK_NUMPAD7 = 0x67;
const SS_ETCHEDVERT = 0x00000011;
const SHIL_EXTRALARGE = 0x2;
const VIF_WRITEPROT = 0x00000040;
const IDC_HELP = 32651;
const COLOR_INFOTEXT = 23;
const LOCALE_IPOSSYMPRECEDES = 0x00000054;
const PERF_DELTA_COUNTER = 0x00400000;
const PRINTER_CHANGE_DELETE_FORM = 0x00040000;
const RPC_C_USE_INTRANET_PORT = 0x2;
const szOID_OIWSEC_desMAC = "1.3.14.3.2.10";
const ERROR_CONTROL_ID_NOT_FOUND = 1421;
const WT_EXECUTELONGFUNCTION = 0x00000010;
const PRINTER_ATTRIBUTE_RAW_ONLY = 0x00001000;
const META_DIBCREATEPATTERNBRUSH = 0x0142;
const CHECKJPEGFORMAT = 4119;
const PRINTER_ACCESS_USE = 0x00000008;
const PFD_DOUBLEBUFFER = 0x00000001;
const DOF_EXECUTABLE = 0x8001;
const FD_READ = 0x01;
const SPI_SETSCREENSAVETIMEOUT = 0x000F;
const SYSTEM_FONT = 13;
const GCPGLYPH_LINKAFTER = 0x4000;
const BS_TYPEMASK = 0x0000000F;
const SND_NODEFAULT = 0x0002;
const szOID_CMC_IDENTITY_PROOF = "1.3.6.1.5.5.7.7.3";
const FRS_ERR_SYSVOL_POPULATE = 8013;
const FS_BALTIC = 0x00000080;
const GMEM_NODISCARD = 0x20;
const CMSG_KEY_TRANS_RECIPIENT = 1;
const JOB_NOTIFY_FIELD_SUBMITTED = 0x10;
const IMR_QUERYCHARPOSITION = 0x0006;
const CHANGER_STORAGE_TRANSPORT = 0x00008000;
const COM_RIGHTS_EXECUTE = 1;
const SPI_SETFOREGROUNDFLASHCOUNT = 0x2005;
const ERROR_KM_DRIVER_BLOCKED = 1930;
const USN_REASON_BASIC_INFO_CHANGE = 0x00008000;
const ERROR_NOACCESS = 998;
const DNS_ERROR_RCODE_REFUSED = 9005;
const WM_PASTE = 0x0302;
const S_PERIODVOICE = 3;
const PD_USELARGETEMPLATE = 0x10000000;
const SS_SIMPLE = 0x0000000B;
const COMADMIN_E_COMPFILE_NOREGISTRAR = 0x80110434;
const SCARD_STATE_ATRMATCH = 0x00000040;
const PROV_SPYRUS_LYNKS = 20;
const SECTION_MAP_EXECUTE = 0x0008;
const ERROR_GROUP_NOT_AVAILABLE = 5012;
const PP_KEYSET_SEC_DESCR = 8;
const OSS_OPEN_TYPE_ERROR = 0x8009302C;
const IMAGE_REL_CEE_ADDR32NB = 0x0003;
const WHITE_PEN = 6;
const COLOR_WINDOWTEXT = 8;
const LB_GETCURSEL = 0x0188;
const WM_CTLCOLORMSGBOX = 0x0132;
const EMR_SETTEXTCOLOR = 24;
const WVR_HREDRAW = 0x0100;
const WHEEL_DELTA = 120;
const NUMPRS_USE_ALL = 0x1000;
const ERROR_VC_DISCONNECTED = 240;
const APPLICATION_VERIFIER_COM_VTBL_IN_UNLOADED_DLL = 0x040F;
const CC_INTERIORS = 128;
const CERT_E_CN_NO_MATCH = 0x800B010F;
const TRUST_E_TIME_STAMP = 0x80096005;
const MEM_WRITE_WATCH = 0x200000;
const CONSOLE_FULLSCREEN_HARDWARE = 2;
const frm2 = 0x0435;
const frm3 = 0x0436;
const frm4 = 0x0437;
const DT_NOPREFIX = 0x00000800;
const ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = 14071;
const PRODUCT_SMALLBUSINESS_SERVER_PREMIUM = 0x19;
const szOID_CMC_RECIPIENT_NONCE = "1.3.6.1.5.5.7.7.7";
const IME_REGWORD_STYLE_USER_FIRST = 0x80000000;
const BITSPIXEL = 12;
const FR_MATCHALEFHAMZA = 0x80000000;
const CRYPT_VERIFY_DATA_HASH = 0x40;
const VIF_CANNOTRENAME = 0x00002000;
const SEC_FILE = 0x800000;
const RPC_E_INVALID_STD_NAME = 0x80010122;
const CTRY_INDONESIA = 62;
const CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE = 0x80000002;
const szOID_NETSCAPE_DATA_TYPE = "2.16.840.1.113730.2";
const CRYPTPROTECT_LOCAL_MACHINE = 0x4;
const ERROR_REGISTRY_IO_FAILED = 1016;
const ERROR_DS_RECALCSCHEMA_FAILED = 8396;
const SKF_HOTKEYSOUND = 0x00000010;
const EVENT_S_NOSUBSCRIBERS = 0x00040202;
const OFN_ALLOWMULTISELECT = 0x200;
const CREATE_PROCESS_DEBUG_EVENT = 3;
const GMEM_DISCARDABLE = 0x100;
const ALG_SID_HMAC = 9;
const IDNO = 7;
const IMAGE_REL_MIPS_ABSOLUTE = 0x0000;
const LCS_GM_BUSINESS = 0x00000001;
const PSBTN_OK = 3;
const RECOVERED_WRITES_VALID = 0x00000001;
const SCARD_E_INVALID_ATR = 0x80100015;
const szOID_CRL_NEXT_PUBLISH = "1.3.6.1.4.1.311.21.4";
const FF_SCRIPT = 4<<4;
const SEC_E_INTERNAL_ERROR = 0x80090304;
const ERROR_TOO_MANY_LUIDS_REQUESTED = 1333;
const MIXER_SHORT_NAME_CHARS = 16;
const SUBLANG_HINDI_INDIA = 0x01;
const LOCALE_SABBREVMONTHNAME3 = 0x00000046;
const ERROR_DS_ROOT_REQUIRES_CLASS_TOP = 8432;
const LOCALE_SABBREVMONTHNAME4 = 0x00000047;
const szOID_IPSEC_KP_IKE_INTERMEDIATE = "1.3.6.1.5.5.8.2.2";
const ALG_SID_SAFERSK64 = 7;
const PRINTER_ATTRIBUTE_ENABLE_DEVQ = 0x00000080;
const JOB_OBJECT_LIMIT_PROCESS_TIME = 0x00000002;
const PRINTER_ENUM_ICON2 = 0x00020000;
const LOCALE_SABBREVMONTHNAME7 = 0x0000004A;
const DNS_ERROR_RCODE_FORMAT_ERROR = 9001;
const DST_BITMAP = 0x0004;
const FILE_ATTRIBUTE_DIRECTORY = 0x00000010;
const PERF_DETAIL_ADVANCED = 200;
const CONSOLE_APPLICATION_16BIT = 0x0001;
const PRINTER_STATUS_PAPER_JAM = 0x00000008;
const HEAP_MAXIMUM_TAG = 0x0FFF;
const SWP_NOSIZE = 0x0001;
const PRINTER_ENUM_ICON5 = 0x00100000;
const SP_USERABORT = -3;
const VK_MENU = 0x12;
const __MINGW_HAS_DXSDK = 1;
const PSH_MODELESS = 0x00000400;
const DC_PEN = 19;
const TRUST_E_SUBJECT_NOT_TRUSTED = 0x800B0004;
const PERF_DISPLAY_SECONDS = 0x30000000;
const ERROR_SET_NOT_FOUND = 1170;
const ERROR_BUFFER_OVERFLOW = 111;
const COMADMIN_E_CAT_SERVERFAULT = 0x80110486;
const DM_COLLATE = 0x00008000;
const PFD_SUPPORT_GDI = 0x00000010;
const IO_COMPLETION_MODIFY_STATE = 0x0002;
const RPC_BUFFER_EXTRA = 0x00004000;
const EM_EMPTYUNDOBUFFER = 0x00CD;
const IMAGE_SCN_ALIGN_4BYTES = 0x00300000;
const CF_ENABLETEMPLATEHANDLE = 0x20;
const PERF_COUNTER_RATE = 0x00010000;
const PSH_STRETCHWATERMARK = 0x00040000;
const cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT = 86400;
const SNAPSHOT_POLICY_UNPLANNED = 2;
const CRL_DIST_POINT_ERR_INDEX_MASK = 0x7F;
const CAL_GREGORIAN_ME_FRENCH = 9;
const __SSE2_MATH__ = 1;
const DT_CHARSTREAM = 4;
const TAPE_DRIVE_SET_COMPRESSION = 0x80000200;
const DMPAPER_ENV_MONARCH = 37;
const szOID_OIWSEC_dsaCommSHA1 = "1.3.14.3.2.28";
const CREATE_SUSPENDED = 0x4;
const ERROR_IPSEC_IKE_DH_FAIL = 13822;
const RPC_X_SS_IN_NULL_CONTEXT = 1775;
const IMAGE_SYM_CLASS_REGISTER = 0x0004;
const STGTY_REPEAT = 0x00000100;
const XACT_E_NOTSUPPORTED = 0x8004D00F;
const VOS_OS216_PM16 = 0x00020002;
const szOID_CERT_KEY_IDENTIFIER_PROP_ID = "1.3.6.1.4.1.311.10.11.20";
const SM_CLEANBOOT = 67;
const MA_NOACTIVATEANDEAT = 4;
const CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES = 5;
const MINLONG = 0x80000000;
const PD_NOCURRENTPAGE = 0x800000;
const NTE_SIGNATURE_FILE_BAD = 0x8009001C;
const SPI_GETACCESSTIMEOUT = 0x003C;
const CERT_TRUST_HAS_PREFERRED_ISSUER = 0x100;
const WAVE_FORMAT_96M16 = 0x00040000;
const PP_SESSION_KEYSIZE = 20;
const SEC_E_INVALID_HANDLE = 0x80090301;
const MCI_ANIM_PLAY_SLOW = 0x00080000;
const EMR_SETMAPPERFLAGS = 16;
const CONNECT_LOCALDRIVE = 0x00000100;
const APPLICATION_VERIFIER_INVALID_HANDLE = 0x0300;
const DM_COPIES = 0x00000100;
const ERROR_DS_SRC_NAME_MISMATCH = 8484;
const ERROR_IPSEC_IKE_DROP_NO_RESPONSE = 13813;
const ERROR_EVENTLOG_CANT_START = 1501;
const SCARD_READER_TYPE_KEYBOARD = 0x04;
const SE_DACL_AUTO_INHERITED = 0x0400;
const TAPE_INITIATOR_PARTITIONS = 2;
const BS_VCENTER = 0x00000C00;
const DMPAPER_ENV_10 = 20;
const DMPAPER_ENV_11 = 21;
const DMPAPER_ENV_12 = 22;
const DMPAPER_ENV_14 = 23;
const ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130;
const CO_E_IIDSTRING = 0x800401F4;
const URLACTION_DOWNLOAD_SIGNED_ACTIVEX = 0x00001001;
const DMICMMETHOD_DRIVER = 3;
const OSS_OUT_MEMORY = 0x80093008;
const NTDDI_WIN6 = 0x06000000;
const CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG = 0x1;
const FRAME_TSS = 2;
const ABE_BOTTOM = 3;
const COLOR_GRAYTEXT = 17;
const ERROR_ONLY_IF_CONNECTED = 1251;
const SC_HOTKEY = 0xF150;
const SEC_E_REVOCATION_OFFLINE_C = 0x80090353;
const WAVE_FORMAT_1M08 = 0x00000001;
const IMAGE_REL_IA64_ADDEND = 0x001F;
const ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 13879;
const GRADIENT_FILL_TRIANGLE = 0x00000002;
const szOID_PKCS_4 = "1.2.840.113549.1.4";
const APPCOMMAND_CLOSE = 31;
const GCP_USEKERNING = 0x0008;
const DFCS_BUTTONCHECK = 0x0000;
const PERF_COUNTER_FRACTION = 0x00020000;
const IOC_VOID = 0x20000000;
const WAVE_FORMAT_1M16 = 0x00000004;
const PO_THROTTLE_NONE = 0;
const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 14017;
const PSPCB_ADDREF = 0;
const MCI_BREAK = 0x0811;
const szOID_PKCS_8 = "1.2.840.113549.1.8";
const PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL = 0x3C;
const CB_GETCURSEL = 0x0147;
const IMAGE_DEBUG_TYPE_RESERVED10 = 10;
const szOID_PKCS_9 = "1.2.840.113549.1.9";
const ERROR_SCOPE_NOT_FOUND = 318;
const VFT2_DRV_VERSIONED_PRINTER = 0x0000000C;
const CDS_FULLSCREEN = 0x00000004;
const STGFMT_DOCUMENT = 0;
const WAVE_FORMAT_48S08 = 0x00002000;
const SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP = 0x4;
const ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = 5043;
const DESKTOP_JOURNALPLAYBACK = 0x0020;
const EPT_S_NOT_REGISTERED = 1753;
const CERTSRV_E_TEMPLATE_CONFLICT = 0x80094802;
const ACCESS_PROPERTY_GUID = 2;
const WAVE_FORMAT_48S16 = 0x00008000;
const CHANGER_TO_DRIVE = 0x08;
const ALG_SID_3DES_112 = 9;
const SOUND_SYSTEM_WARNING = 6;
const CRL_REASON_CA_COMPROMISE = 2;
const PF_SSE_DAZ_MODE_AVAILABLE = 11;
const CERT_RDN_T61_STRING = 5;
const __FLT_MIN_EXP__ = -125;
const PRODUCT_ULTIMATE_E = 0x47;
const IMAGE_FILE_MACHINE_IA64 = 0x0200;
const MCI_VD_GETDEVCAPS_SLOW_RATE = 0x00004004;
const SUBLANG_TIBETAN_BHUTAN = 0x02;
const MCI_ANIM_GETDEVCAPS_SLOW_RATE = 0x00004003;
const BS_HATCHED = 2;
const INPLACE_E_NOTOOLSPACE = 0x800401A1;
const COMADMIN_E_PROPERTYSAVEFAILED = 0x80110437;
const DNS_ERROR_DP_DOES_NOT_EXIST = 9901;
const CRYPT_OID_REG_ENCODING_TYPE_PREFIX = "EncodingType ";
const PROCESS_SET_QUOTA = 0x0100;
const LOCALE_SMONTHNAME6 = 0x0000003D;
const R2_MERGEPENNOT = 14;
const ANSI_CHARSET = 0;
const MIM_MENUDATA = 0x00000008;
const HELP_PARTIALKEY = 0x0105;
const CERT_PHYSICAL_STORE_DS_USER_CERTIFICATE_NAME = ".UserCertificate";
const POWER_USER_NOTIFY_FORCED_SHUTDOWN = 0x00000020;
const ERROR_DS_DRA_INVALID_PARAMETER = 8437;
const CERT_VERIFY_TRUSTED_SIGNERS_FLAG = 0x2;
const DMNUP_SYSTEM = 1;
const RPC_S_FP_OVERFLOW = 1771;
const DCX_EXCLUDERGN = 0x00000040;
const MF_HSZ_INFO = 0x01000000;
const IS_TEXT_UNICODE_ODD_LENGTH = 0x0200;
const ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
const OUT_DEFAULT_PRECIS = 0;
const szOID_OIWSEC = "1.3.14.3.2";
const WT_EXECUTEINPERSISTENTTHREAD = 0x00000080;
const VK_DECIMAL = 0x6E;
const DT_WORDBREAK = 0x00000010;
const PAN_ANY = 0;
const OPENCHANNEL = 4110;
const GCP_NUMERICOVERRIDE = 0x01000000;
const IPPORT_TFTP = 69;
const APPLICATION_VERIFIER_UNEXPECTED_EXCEPTION = 0x000A;
const ERROR_DS_CANT_REM_MISSING_ATT_VAL = 8325;
const ARW_STARTMASK = 0x0003;
const SPI_SETMOUSE = 0x0004;
const ERROR_TOO_MANY_OPEN_FILES = 4;
const FILE_FLAG_WRITE_THROUGH = 0x80000000;
const CMSG_SIGNER_CERT_ID_PARAM = 38;
const MSSIPOTF_E_DSIG_STRUCTURE = 0x80097016;
const CAL_ICALINTVALUE = 0x00000001;
const PIDSI_TEMPLATE = 0x00000007;
const CTRY_EGYPT = 20;
const CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC = "CryptMsgDllExportEncryptKey";
const CERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY = 0x200;
const PRINTER_CHANGE_SET_PRINTER_DRIVER = 0x20000000;
const PIDDSI_PARCOUNT = 0x00000006;
const DC_PAPERS = 2;
const IMAGE_REL_EBC_SECTION = 0x0003;
const PSH_RTLREADING = 0x00000800;
const SUBLANG_YI_PRC = 0x01;
const SEC_E_KDC_INVALID_REQUEST = 0x80090340;
const CTRY_CARIBBEAN = 1;
const ERROR_CHILD_MUST_BE_VOLATILE = 1021;
const APPCOMMAND_MICROPHONE_VOLUME_UP = 26;
const DMPAPER_ENV_B5 = 34;
const DMPAPER_ENV_B6 = 35;
const SETCOPYCOUNT = 17;
const DNS_ERROR_TRY_AGAIN_LATER = 9554;
const WT_EXECUTEONLYONCE = 0x00000008;
const OLE_E_NOCACHE = 0x80040006;
const DMPAPER_ENV_PERSONAL = 38;
const DMPAPER_ENV_C3 = 29;
const DMPAPER_ENV_C4 = 30;
const DMPAPER_ENV_C5 = 28;
const DMPAPER_ENV_C6 = 31;
const ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 8516;
const PRINTER_ENUM_NETWORK = 0x00000040;
const WPF_SETMINPOSITION = 0x0001;
const FORM_USER = 0x00000000;
const NUMPRS_EXPONENT = 0x0800;
const ERROR_DS_ATT_SCHEMA_REQ_ID = 8399;
const SOCKET_ERROR = -1;
const PP_SGC_INFO = 37;
const BS_RIGHT = 0x00000200;
const RTL_VRF_FLG_ENABLED_SYSTEM_WIDE = 0x00020000;
const EMR_MODIFYWORLDTRANSFORM = 36;
const DMPAPER_ENV_DL = 27;
const FILE_DEVICE_CHANGER = 0x00000030;
const SCARD_PROTOCOL_UNDEFINED = 0x00000000;
const RPC_C_PARM_MAX_PACKET_LENGTH = 1;
const ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = 8429;
const RESOURCETYPE_RESERVED = 0x00000008;
const RPC_C_FULL_CERT_CHAIN = 0x0001;
const MEM_TOP_DOWN = 0x100000;
const ACCESS_DS_SOURCE_A = "DS";
const ERROR_INVALID_SID = 1337;
const DC_PRINTRATEPPM = 31;
const DMDUP_HORIZONTAL = 3;
const ACCESS_DS_SOURCE_W = "DS";
const CLIP_DEFAULT_PRECIS = 0;
const WSF_VISIBLE = 0x0001;
const PC_RESERVED = 0x01;
const CRYPT_ACQUIRE_CACHE_FLAG = 0x1;
const COMADMIN_E_REGDB_ALREADYRUNNING = 0x80110475;
const NLS_IME_DISABLE = 0x20000000;
const ERROR_SXS_THREAD_QUERIES_DISABLED = 14010;
const SM_CXBORDER = 5;
const szOID_CMC_RESPONSE_INFO = "1.3.6.1.5.5.7.7.19";
const ERROR_DS_INVALID_SCRIPT = 8600;
const VK_CRSEL = 0xF7;
const MCI_GETDEVCAPS_CAN_PLAY = 0x00000008;
const ERROR_CLUSTER_NO_SECURITY_CONTEXT = 5059;
const CTRY_ALBANIA = 355;
const SMART_NO_IDE_DEVICE = 10;
const PID_MODIFY_TIME = 0x80000001;
const GETPENWIDTH = 16;
const FRAME_NONFPO = 3;
const PSINJECT_BEGINDEFAULTS = 12;
const OSS_BERDER_DLL_NOT_LINKED = 0x8009302A;
const CB_OKAY = 0;
const IMAGE_SYM_CLASS_UNION_TAG = 0x000C;
const CERT_STORE_CTRL_AUTO_RESYNC = 4;
const CRYPT_LOCALIZED_NAME_OID = "LocalizedNames";
const MDM_BEARERMODE_ANALOG = 0x0;
const ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS = 10;
const MCI_ANIM_STATUS_STRETCH = 0x00004005;
const FIND_ACTCTX_SECTION_KEY_RETURN_ASSEMBLY_METADATA = 0x4;
const ERROR_INVALID_CLEANER = 4310;
const SCARD_CLASS_POWER_MGMT = 4;
const ERROR_UNABLE_TO_INVENTORY_DRIVE = 4325;
const GUI_POPUPMENUMODE = 0x00000010;
const IGIMII_CMODE = 0x0001;
const CALLBACK_FUNCTION = 0x00030000;
const HSHELL_ACCESSIBILITYSTATE = 11;
const PDCAP_WAKE_FROM_D3_SUPPORTED = 0x00000080;
const ERROR_POLICY_ONLY_IN_DS = 8220;
const OLE_E_CANTCONVERT = 0x80040011;
const PIDMSI_SEQUENCE_NO = 0x00000005;
const CRYPTPROTECT_NO_RECOVERY = 0x20;
const SS_GRAYFRAME = 0x00000008;
const APPCOMMAND_LAUNCH_APP1 = 17;
const APPCOMMAND_LAUNCH_APP2 = 18;
const CRYPT_X942_COUNTER_BYTE_LENGTH = 4;
const WM_KEYLAST = 0x0109;
const DI_CHANNEL = 1;
const ERROR_DS_NC_STILL_HAS_DSAS = 8546;
const VOS__WINDOWS16 = 0x00000001;
const NUMCOLORS = 24;
const CRYPT_FLAG_PCT1 = 0x1;
const PAN_LETT_OBLIQUE_CONTACT = 9;
const ERROR_STATIC_INIT = 4002;
const HELP_COMMAND = 0x0102;
const RDW_UPDATENOW = 0x0100;
const CTRY_MONACO = 33;
const WNNC_NET_BMC = 0x00180000;
const MCI_OPEN_TYPE = 0x00002000;
const ALG_SID_AES = 17;
const VALID_INHERIT_FLAGS = 0x1F;
const ERROR_UNRECOGNIZED_MEDIA = 1785;
const OLE_E_NOTRUNNING = 0x80040005;
const SM_ARRANGE = 56;
const LAYOUT_RTL = 0x00000001;
const IDI_EXCLAMATION = 32515;
const KEY_WOW64_RES = 0x0300;
const PRINTER_ATTRIBUTE_TS = 0x00008000;
const CRYPT_SECRETDIGEST = 0x1;
const STG_E_WRITEFAULT = 0x8003001D;
const SO_SYNCHRONOUS_NONALERT = 0x20;
const FD_ACCEPT = 0x08;
const JOY_CAL_READYONLY = 0x00200000;
const ERROR_DS_INCOMPATIBLE_VERSION = 8567;
const IMR_DOCUMENTFEED = 0x0007;
const PSD_ENABLEPAGESETUPHOOK = 0x2000;
const CTRY_ALGERIA = 213;
const CONSOLE_WINDOWED_MODE = 2;
const COMMON_LVB_GRID_HORIZONTAL = 0x400;
const SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE = 0x800F0230;
const DOWNLOADFACE = 514;
const CERT_STORE_ENUM_ARCHIVED_FLAG = 0x200;
const _MAX_PATH = 260;
const WTS_SESSION_LOCK = 0x7;
const COMADMIN_E_REGISTRY_ACCESSDENIED = 0x80110823;
const LOCALE_SISO639LANGNAME = 0x00000059;
const HP_HASHSIZE = 0x4;
const ERROR_TOO_MANY_NAMES = 68;
const SPI_SETMOUSEVANISH = 0x1021;
const SM_CXMIN = 28;
const MS_ENH_RSA_AES_PROV_A = "Microsoft Enhanced RSA and AES Cryptographic Provider";
const PROV_RSA_AES = 24;
const COLOR_MENUBAR = 30;
const MDM_MASK_HDLCPPP_ML = 0x3<<6;
const VIF_OUTOFMEMORY = 0x00008000;
const EM_REPLACESEL = 0x00C2;
const DFCS_SCROLLUP = 0x0000;
const PERSIST_E_NOTSELFSIZING = 0x800B000B;
const URL_MK_NO_CANONICALIZE = 2;
const STG_E_TOOMANYOPENFILES = 0x80030004;
const SPI_GETMOUSESPEED = 0x0070;
const VOS_WINCE = 0x00050000;
const SM_CYEDGE = 46;
const IMAGE_REL_ALPHA_ABSOLUTE = 0x0000;
const PSINJECT_BEGINPROLOG = 14;
const OFN_NOTESTFILECREATE = 0x10000;
const RT_MESSAGETABLE = 11;
const DNS_UNREGISTER = 0x0002;
const rct1 = 0x0438;
const rct2 = 0x0439;
const XENROLL_E_RESPONSE_KA_HASH_MISMATCH = 0x80095004;
const WT_EXECUTEDELETEWAIT = 0x00000008;
const STG_E_CSS_REGION_MISMATCH = 0x8003030A;
const OSS_UNIMPLEMENTED = 0x80093019;
const PC_TRAPEZOID = 4;
const INPLACE_S_FIRST = 0x000401A0;
const MOUSEEVENTF_XDOWN = 0x0080;
const VK_END = 0x23;
const LSFW_UNLOCK = 2;
const RPC_S_CALL_FAILED = 1726;
const LANG_MAORI = 0x81;
const CRYPT_OID_FORMAT_OBJECT_FUNC = "CryptDllFormatObject";
const USN_REASON_STREAM_CHANGE = 0x00200000;
const GMEM_DISCARDED = 0x4000;
const FADF_RECORD = 0x20;
const ULW_ALPHA = 0x00000002;
const RPC_S_GRP_ELT_NOT_ADDED = 1928;
const RPC_C_AUTHN_LEVEL_PKT_PRIVACY = 6;
const RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737;
const META_SETPIXEL = 0x041F;
const XACT_E_ABORTED = 0x8004D019;
const APPCOMMAND_MEDIA_REWIND = 50;
const CMC_OTHER_INFO_FAIL_CHOICE = 1;
const SO_KEEPALIVE = 0x0008;
const CRYPT_DONT_VERIFY_SIGNATURE = 0x100;
const FLASHW_TRAY = 0x00000002;
const ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID = 0x1;
const ERROR_ALREADY_FIBER = 1280;
const CF_SHOWHELP = 0x4;
const SEE_MASK_FLAG_LOG_USAGE = 0x04000000;
const CERT_E_UNTRUSTEDCA = 0x800B0112;
const ERROR_SXS_MANIFEST_PARSE_ERROR = 14005;
const SC_SEPARATOR = 0xF00F;
const JOB_OBJECT_MSG_END_OF_JOB_TIME = 1;
const HSHELL_ENDTASK = 10;
const IME_ESC_RESERVED_FIRST = 0x0004;
const CERTSRV_E_NO_REQUEST = 0x80094002;
const TT_AVAILABLE = 0x0001;
const VSS_E_LEGACY_PROVIDER = 0x800423F7;
const STG_E_NOTCURRENT = 0x80030101;
const SPAPI_E_NO_ASSOCIATED_CLASS = 0x800F0200;
const POWER_LEVEL_USER_NOTIFY_TEXT = 0x00000001;
const DFCS_BUTTONRADIO = 0x0004;
const LOGON32_LOGON_NETWORK_CLEARTEXT = 8;
const ATTR_TARGET_NOTCONVERTED = 0x03;
const FOREGROUND_BLUE = 0x1;
const RDW_ERASE = 0x0004;
const WTS_CONSOLE_CONNECT = 0x1;
const szOID_RSA_signingTime = "1.2.840.113549.1.9.5";
const URLOSTRM_USECACHEDCOPY_ONLY = 0x1;
const LB_SELITEMRANGE = 0x019B;
const DMDO_DEFAULT = 0;
const ERROR_IPSEC_QM_POLICY_NOT_FOUND = 13001;
const C1_UPPER = 0x0001;
const RPC_C_STATS_PKTS_IN = 2;
const PROCESS_SUSPEND_RESUME = 0x0800;
const FILE_FLAG_OVERLAPPED = 0x40000000;
const EM_GETRECT = 0x00B2;
const FS_WANSUNG = 0x00080000;
const DISABLE_MAX_PRIVILEGE = 0x1;
const PARAMFLAG_FIN = 0x1;
const SCARD_SHARE_SHARED = 2;
const WM_PRINTCLIENT = 0x0318;
const ERROR_DS_CONSTRUCTED_ATT_MOD = 8475;
const JOY_RETURNRAWDATA = 0x00000100;
const APPLICATION_VERIFIER_LOCK_IN_FREED_MEMORY = 0x0204;
const IMAGE_SUBSYSTEM_UNKNOWN = 0;
const BSF_FORCEIFHUNG = 0x00000020;
const OF_CREATE = 0x1000;
const IDC_CROSS = 32515;
const STATE_SYSTEM_MOVEABLE = 0x00040000;
const HEAP_TAG_SHIFT = 18;
const MDITILE_HORIZONTAL = 0x0001;
const ERROR_IPSEC_IKE_NO_PEER_CERT = 13847;
const BATTERY_FLAG_NO_BATTERY = 0x80;
const COMPRESSION_FORMAT_DEFAULT = 0x0001;
const LOCALE_IDEFAULTEBCDICCODEPAGE = 0x00001012;
const TC_CP_STROKE = 0x00000004;
const IMAGE_COMDAT_SELECT_NEWEST = 7;
const MIXERLINE_LINEF_DISCONNECTED = 0x00008000;
const SCARD_E_SHARING_VIOLATION = 0x8010000B;
const ERROR_IPSEC_IKE_NO_POLICY = 13825;
const ICON_BIG = 1;
const DT_PREFIXONLY = 0x00200000;
const DMLERR_DLL_NOT_INITIALIZED = 0x4003;
const THREAD_IMPERSONATE = 0x0100;
const LOAD_IGNORE_CODE_AUTHZ_LEVEL = 0x10;
const CERT_RDN_UNIVERSAL_STRING = 11;
const ERROR_INIT_STATUS_NEEDED = 0x00000011;
const SCARD_READER_TYPE_SERIAL = 0x01;
const EPSPRINTING = 33;
const ICM_DONE_OUTSIDEDC = 4;
const RT_HTML = 23;
const GGO_GRAY8_BITMAP = 6;
const VP_COMMAND_SET = 0x0002;
const XBUTTON2 = 0x0002;
const SPI_SETDRAGHEIGHT = 0x004D;
const CO_E_BAD_SERVER_NAME = 0x80004014;
const ERROR_DS_NTDSCRIPT_PROCESS_ERROR = 8592;
const CMSG_ENVELOPED_RECIPIENT_V0 = 0;
const BLACKONWHITE = 1;
const CMSG_ENVELOPED_RECIPIENT_V2 = 2;
const CMSG_ENVELOPED_RECIPIENT_V3 = 3;
const POWER_ACTION_UI_ALLOWED = 0x00000002;
const MMIO_COMPAT = 0x00000000;
const TIME_NOTIMEMARKER = 0x00000004;
const LC_STYLED = 32;
const MCI_FORMAT_SAMPLES = 9;
const PRODUCT_HOME_BASIC_E = 0x43;
const PRINTER_NOTIFY_FIELD_STATUS_STRING = 0x13;
const CURVECAPS = 28;
const PRODUCT_HOME_BASIC_N = 0x5;
const VARIANT_NOUSEROVERRIDE = 0x04;
const EM_SETMODIFY = 0x00B9;
const CERTSRV_E_ARCHIVED_KEY_REQUIRED = 0x80094804;
const __REQUIRED_RPCNDR_H_VERSION__ = 475;
const PT_LINETO = 0x02;
const HS_BDIAGONAL = 3;
const RRF_RT_REG_EXPAND_SZ = 0x00000004;
const STATE_SYSTEM_INVISIBLE = 0x00008000;
const CF_GDIOBJFIRST = 0x0300;
const COMADMIN_E_MIG_SCHEMANOTFOUND = 0x80110481;
const MDM_V120_SPEED_56K = 0x2;
const RPC_S_UNKNOWN_AUTHN_TYPE = 1741;
const NUMPRS_PARENS = 0x0080;
const NCBACTION = 0x77;
const IMAGE_REL_AM_TOKEN = 0x0009;
const ERROR_IS_JOIN_TARGET = 133;
const URLPOLICY_AUTHENTICATE_MUTUAL_ONLY = 0x00030000;
const PO_THROTTLE_CONSTANT = 1;
const SUBLANG_MALAY_MALAYSIA = 0x01;
const ERROR_INVALID_EA_NAME = 254;
const CTRY_CROATIA = 385;
const PSH_USEPSTARTPAGE = 0x00000040;
const szOID_RSA_unstructAddr = "1.2.840.113549.1.9.8";
const RPC_E_THREAD_NOT_INIT = 0x8001010F;
const SCARD_CLASS_MECHANICAL = 6;
const SCHED_E_ACCOUNT_INFORMATION_NOT_SET = 0x8004130F;
const NRC_CMDTMO = 0x05;
const CMSG_HASH_DATA_PARAM = 21;
const SPI_SETPENWINDOWS = 0x0031;
const ERROR_REMOTE_STORAGE_NOT_ACTIVE = 4351;
const COMPRESSION_ENGINE_HIBER = 0x0200;
const LANG_BULGARIAN = 0x02;
const PF_SSE3_INSTRUCTIONS_AVAILABLE = 13;
const LANG_TAJIK = 0x28;
const SPI_GETMOUSESONAR = 0x101C;
const PF_ALPHA_BYTE_INSTRUCTIONS = 5;
const APPLICATION_VERIFIER_INVALID_TLS_VALUE = 0x0301;
const ERROR_DS_ATT_IS_NOT_ON_OBJ = 8310;
const EMR_CREATEBRUSHINDIRECT = 39;
const TOKEN_IMPERSONATE = 0x0004;
const MNS_DRAGDROP = 0x20000000;
const IMAGE_REL_AMD64_SECTION = 0x000A;
const SW_SHOWNORMAL = 1;
const CTL_FIND_EXISTING = 5;
const URLPOLICY_NOTIFY_ON_DISALLOW = 0x20;
const SO_SYNCHRONOUS_ALERT = 0x10;
const JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION = 0x00000400;
const MFT_RIGHTORDER = 0x00002000;
const CERT_ALT_NAME_DNS_NAME = 3;
const META_SETVIEWPORTORG = 0x020D;
const ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = 5077;
const SE_SACL_PRESENT = 0x0010;
const PRINTER_ATTRIBUTE_DEFAULT = 0x00000004;
const COMADMIN_E_BADREGISTRYPROGID = 0x80110412;
const ERROR_INVALID_PROFILE = 2011;
const CTRY_NETHERLANDS = 31;
const CTRY_SINGAPORE = 65;
const HTHSCROLL = 6;
const URLPOLICY_CREDENTIALS_ANONYMOUS_ONLY = 0x00030000;
const ABN_WINDOWARRANGE = 0x0000003;
const SECURITY_CONTEXT_TRACKING = 0x40000;
const CERT_STORE_PROV_FREE_FIND_CRL_FUNC = 18;
const APPLICATION_VERIFIER_NULL_HANDLE = 0x0303;
const LB_SETTOPINDEX = 0x0197;
const CRYPT_INITIATOR = 0x40;
const PERF_COUNTER_HISTOGRAM_TYPE = 0x80000000;
const RTL_VRF_FLG_VIRTUAL_SPACE_TRACKING = 0x00010000;
const SPI_SETMOUSEDRAGOUTTHRESHOLD = 0x0085;
const SPAPI_E_DEVINFO_LIST_LOCKED = 0x800F0212;
const TRUST_E_FINANCIAL_CRITERIA = 0x8009601E;
const ABE_LEFT = 0;
const IMAGE_FILE_LARGE_ADDRESS_AWARE = 0x0020;
const VIFF_FORCEINSTALL = 0x0001;
const ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION = 6;
const APPCOMMAND_LAUNCH_MAIL = 15;
const ERROR_DS_OBJ_CLASS_VIOLATION = 8212;
const SB_LINELEFT = 0;
const IMAGE_SYM_CLASS_EXTERNAL_DEF = 0x0005;
const ERROR_TOO_MANY_CMDS = 56;
const TOKEN_QUERY_SOURCE = 0x0010;
const SUBLANG_TURKISH_TURKEY = 0x01;
const CO_E_LOOKUPACCNAMEFAILED = 0x80010132;
const STG_S_RETRYNOW = 0x00030202;
const HCF_INDICATOR = 0x00000020;
const VP_CP_CMD_CHANGE = 0x0004;
const SKF_STICKYKEYSON = 0x00000001;
const DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 9651;
const VP_TV_STANDARD_NTSC_433 = 0x00010000;
const ELF_VERSION = 0;
const BF_SOFT = 0x1000;
const ALG_SID_DSS_ANY = 0;
const SP_NOTREPORTED = 0x4000;
const ERROR_DS_SYNTAX_MISMATCH = 8384;
const SEC_E_TIME_SKEW = 0x80090324;
const CF_EFFECTS = 0x100;
const SHGFI_ICONLOCATION = 0x000001000;
const DMICM_USER = 256;
const VK_OEM_WSCTRL = 0xEE;
const WNNC_NET_HOB_NFS = 0x00320000;
const CTLCOLOR_MAX = 7;
const CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG = 0x80000;
const TC_SA_DOUBLE = 0x00000040;
const CRYPT_E_ASN1_INTERNAL = 0x80093101;
const SB_PAGEDOWN = 3;
const SPIF_SENDWININICHANGE = 0x0002;
const PC_POLYGON = 1;
const QDI_STRETCHDIB = 8;
const ST_BLOCKNEXT = 0x0080;
const ERROR_CONNECTION_ABORTED = 1236;
const SPI_SETFOCUSBORDERHEIGHT = 0x2011;
const ERROR_REVISION_MISMATCH = 1306;
const APPCOMMAND_MEDIA_CHANNEL_DOWN = 52;
const PRINTER_CHANGE_PRINT_PROCESSOR = 0x07000000;
const SKF_RSHIFTLATCHED = 0x02000000;
const SID_MAX_SUB_AUTHORITIES = 15;
const RRF_RT_REG_MULTI_SZ = 0x00000020;
const TF_DISCONNECT = 0x01;
const CERT_E_MALFORMED = 0x800B0108;
const ERROR_NO_EFS = 6004;
const GCP_NUMERICSLATIN = 0x04000000;
const DFCS_TRANSPARENT = 0x0800;
const DMBIN_MIDDLE = 3;
const SE_ERR_ACCESSDENIED = 5;
const VSS_E_SNAPSHOT_NOT_IN_SET = 0x8004232B;
const WM_MOVING = 0x0216;
const FILE_DEVICE_NAMED_PIPE = 0x00000011;
const ERROR_NOT_SUBSTED = 137;
const TYPE_E_LIBNOTREGISTERED = 0x8002801D;
const ERROR_INVALID_ACCEL_HANDLE = 1403;
const ERROR_TLW_WITH_WSCHILD = 1406;
const PID_SECURITY = 0x80000002;
const SUBLANG_SPANISH_GUATEMALA = 0x04;
const ERROR_SXS_XML_E_MISSING_PAREN = 14044;
const LB_GETLISTBOXINFO = 0x01B2;
const DD_DEFSCROLLINTERVAL = 50;
const RPC_C_MQ_JOURNAL_NONE = 0;
const DNS_ERROR_INCONSISTENT_ROOT_HINTS = 9565;
const ERROR_CTX_SHADOW_DISABLED = 7051;
const TAPE_FILEMARKS = 1;
const TAPE_PSEUDO_LOGICAL_BLOCK = 3;
const szOID_OIWDIR_HASH = "1.3.14.7.2.2";
const CONVERT10_E_LAST = 0x800401CF;
const szOID_TELETEXT_TERMINAL_IDENTIFIER = "2.5.4.22";
const ERROR_HOOK_NEEDS_HMOD = 1428;
const TKF_HOTKEYSOUND = 0x00000010;
const ERROR_SERVER_DISABLED = 1341;
const SKF_HOTKEYACTIVE = 0x00000004;
const NCBSENDNA = 0x71;
const SPI_GETTOOLTIPFADE = 0x1018;
const PD_ENABLESETUPTEMPLATE = 0x8000;
const MUTZ_ACCEPT_WILDCARD_SCHEME = 0x00000080;
const LOCALE_ICURRDIGITS = 0x00000019;
const VSS_E_PROVIDER_VETO = 0x80042306;
const CERT_AUTH_ROOT_SEQ_FILENAME = "authrootseq.txt";
const SPI_SETCURSORSHADOW = 0x101B;
const VK_F10 = 0x79;
const VK_F12 = 0x7B;
const VK_F13 = 0x7C;
const VK_F14 = 0x7D;
const VK_F15 = 0x7E;
const VK_F16 = 0x7F;
const VK_F17 = 0x80;
const VK_F19 = 0x82;
const CDS_SET_PRIMARY = 0x00000010;
const OLE_E_ENUM_NOMORE = 0x80040002;
const LB_SETCOUNT = 0x01A7;
const MOUSE_MOVE_RELATIVE = 0;
const FRS_ERR_STARTING_SERVICE = 8002;
const ERROR_ENCRYPTION_FAILED = 6000;
const ERROR_COUNTER_TIMEOUT = 1121;
const CERT_COMPARE_ATTR = 3;
const VK_F20 = 0x83;
const VK_F22 = 0x85;
const VK_F23 = 0x86;
const VK_F24 = 0x87;
const DIGSIG_E_CRYPTO = 0x800B0008;
const JOB_OBJECT_MSG_END_OF_PROCESS_TIME = 2;
const PBT_APMSTANDBY = 0x0005;
const CAL_TAIWAN = 4;
const CRL_REASON_CERTIFICATE_HOLD = 6;
const RPC_C_PROFILE_ALL_ELT = 1;
const SCARD_READER_SWALLOWS = 0x00000001;
const META_SETPALENTRIES = 0x0037;
const ERROR_INSTALL_UI_FAILURE = 1621;
const RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH = 0x0010;
const ERROR_EFS_VERSION_NOT_SUPPORT = 6016;
const JOB_STATUS_PRINTED = 0x00000080;
const THREAD_PRIORITY_NORMAL = 0;
const IMAGE_OS2_SIGNATURE = 0x454E;
const USN_REASON_OBJECT_ID_CHANGE = 0x00080000;
const STATE_SYSTEM_FOCUSED = 0x00000004;
const RPC_C_MGMT_STOP_SERVER_LISTEN = 4;
const USN_REASON_DATA_EXTEND = 0x00000002;
const szOID_OIWSEC_sha1RSASign = "1.3.14.3.2.29";
const FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
const JOYCAPS_HASPOV = 0x0010;
const ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = 13841;
const ERROR_WMI_GUID_NOT_FOUND = 4200;
const SCHED_S_TASK_HAS_NOT_RUN = 0x00041303;
const FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX = 0x1;
const SB_PAGELEFT = 2;
const HS_FDIAGONAL = 2;
const VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED = 0x80042317;
const META_STRETCHBLT = 0x0B23;
const SO_CONNOPTLEN = 0x7005;
const ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 8559;
const CRYPT_FIND_SILENT_KEYSET_FLAG = 0x40;
const MSSIPOTF_E_CRYPT = 0x80097014;
const SID_RECOMMENDED_SUB_AUTHORITIES = 1;
const VK_MEDIA_PREV_TRACK = 0xB1;
const CMSG_KEY_AGREE_ENCRYPT_FREE_MATERIAL_FLAG = 0x2;
const CERT_E_VALIDITYPERIODNESTING = 0x800B0102;
const FILE_BEGIN = 0;
const CRYPT_OID_ENCODE_OBJECT_FUNC = "CryptDllEncodeObject";
const RI_MOUSE_WHEEL = 0x0400;
const EVENTLOG_WARNING_TYPE = 0x0002;
const ERROR_DS_NAME_REFERENCE_INVALID = 8373;
const MARSHAL_S_LAST = 0x0004012F;
const SEC_E_SECURITY_QOS_FAILED = 0x80090332;
const WM_IME_KEYLAST = 0x010F;
const CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION = 0x2;
const ERROR_PRIVATE_DIALOG_INDEX = 1415;
const CERT_OFFLINE_CRL_SIGN_KEY_USAGE = 0x2;
const MCI_DEVTYPE_OVERLAY = 515;
const MH_CREATE = 1;
const ERROR_DS_CANT_REMOVE_CLASS_CACHE = 8404;
const RI_KEY_TERMSRV_SET_LED = 8;
const INET_E_OBJECT_NOT_FOUND = 0x800C0006;
const ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 8304;
const RPC_S_STRING_TOO_LONG = 1743;
const FO_MOVE = 0x0001;
const XACT_E_XA_TX_DISABLED = 0x8004D026;
const LOCALE_SNATIVEDIGITS = 0x00000013;
const MCI_SYSINFO_NAME = 0x00000400;
const CERTSRV_E_SUBJECT_UPN_REQUIRED = 0x8009480D;
const CERT_RDN_NUMERIC_STRING = 3;
const CS_DBLCLKS = 0x0008;
const SUBLANG_KICHE_GUATEMALA = 0x01;
const CRYPT_E_ASN1_MEMORY = 0x80093106;
const PAN_SERIF_OBTUSE_SQUARE_COVE = 5;
const EVENT_S_LAST = 0x0004021F;
const DDE_FACKREQ = 0x8000;
const JOB_OBJECT_LIMIT_PROCESS_MEMORY = 0x00000100;
const HALFTONE = 4;
const GWLP_ID = -12;
const ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = 8204;
const ERROR_DIR_NOT_ROOT = 144;
const JOB_OBJECT_TERMINATE = 0x0008;
const SW_SHOWMINIMIZED = 2;
const CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC = "CertDllVerifyCertificateChainPolicy";
const WM_XBUTTONUP = 0x020C;
const JOB_NOTIFY_FIELD_STATUS_STRING = 0x0B;
const TEXTCAPS = 34;
const FILE_DEVICE_SCANNER = 0x00000019;
const MKF_MOUSEKEYSON = 0x00000001;
const STG_E_INCOMPLETE = 0x80030201;
const LR_COPYRETURNORG = 0x0004;
const PERF_NUMBER_HEX = 0x00000000;
const CERTSRV_E_CERT_TYPE_OVERLAP = 0x80094814;
const XACT_E_UNKNOWNRMGRID = 0x8004D010;
const CF_PRINTERFONTS = 0x2;
const RPC_E_VERSION_MISMATCH = 0x80010110;
const CMSG_SIGNER_INFO_PARAM = 6;
const GCP_DISPLAYZWG = 0x00400000;
const SERVICE_DEMAND_START = 0x00000003;
const ERROR_CURRENT_DOMAIN_NOT_ALLOWED = 1399;
const ERROR_DS_DST_DOMAIN_NOT_NATIVE = 8496;
const szOID_ENROLLMENT_AGENT = "1.3.6.1.4.1.311.20.2.1";
const ERROR_INVALID_EDIT_HEIGHT = 1424;
const MAXINTATOM = 0xC000;
const szOID_OIWSEC_md5RSASign = "1.3.14.3.2.25";
const SPAPI_E_DI_NOFILECOPY = 0x800F020F;
const VERTRES = 10;
const TYPE_E_DLLFUNCTIONNOTFOUND = 0x8002802F;
const BSF_FLUSHDISK = 0x00000004;
const ERROR_HOST_NODE_NOT_GROUP_OWNER = 5016;
const MCI_VD_STATUS_MEDIA_TYPE = 0x00004004;
const SET_TAPE_DRIVE_INFORMATION = 1;
const SMART_SHORT_SELFTEST_CAPTIVE = 129;
const CF_FORCEFONTEXIST = 0x10000;
const MK_S_HIM = 0x000401E5;
const ERROR_SXS_POLICY_PARSE_ERROR = 14029;
const RPC_S_NO_PROTSEQS = 1719;
const SET_FEATURE_ON_PROCESS = 0x00000002;
const DLGC_UNDEFPUSHBUTTON = 0x0020;
const PRINTER_CHANGE_DELETE_PRINTER = 0x00000004;
const WM_MDIREFRESHMENU = 0x0234;
const JOB_NOTIFY_FIELD_PORT_NAME = 0x02;
const FILE_NOTIFY_CHANGE_CREATION = 0x00000040;
const ODT_BUTTON = 4;
const CERT_CREATE_CONTEXT_NO_HCRYPTMSG_FLAG = 0x4;
const ERROR_INVALID_HANDLE_STATE = 1609;
const IMAGE_SYM_DTYPE_POINTER = 1;
const URLPOLICY_CHANNEL_SOFTDIST_PRECACHE = 0x00020000;
const RPC_C_PROFILE_MATCH_BY_MBR = 3;
const IMAGE_SYM_TYPE_BYTE = 0x000C;
const EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X = 18;
const RPC_C_MQ_AUTHN_LEVEL_PKT_PRIVACY = 0x0010;
const APPCOMMAND_MIC_ON_OFF_TOGGLE = 44;
const VER_NUM_BITS_PER_CONDITION_MASK = 3;
const DMBIN_LARGEFMT = 10;
const WM_AFXLAST = 0x037F;
const ERROR_BAD_CONFIGURATION = 1610;
const WM_MENUDRAG = 0x0123;
const AT_KEYEXCHANGE = 1;
const LOCALE_IINTLCURRDIGITS = 0x0000001A;
const PSINJECT_BEGINSTREAM = 1;
const SE_DACL_PRESENT = 0x0004;
const SC_MANAGER_QUERY_LOCK_STATUS = 0x0010;
const scr6 = 0x0495;
const ERROR_CLEANER_SLOT_SET = 4331;
const ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = 1459;
const SPAPI_E_NO_COMPAT_DRIVERS = 0x800F0228;
const SPAPI_E_NOT_DISABLEABLE = 0x800F0231;
const CBR_115200 = 115200;
const LANG_POLISH = 0x15;
const __NO_INLINE__ = 1;
const CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG = 0x20;
const szOID_COMMON_NAME = "2.5.4.3";
const MDM_MASK_AUTO_ML = 0x3<<6;
const SUBLANG_SAMI_INARI_FINLAND = 0x09;
const MB_OK = 0x00000000;
const MIXER_OBJECTF_MIDIOUT = 0x30000000;
const SEC_IMAGE = 0x1000000;
const ERROR_DISK_RECALIBRATE_FAILED = 1126;
const __FLT_MAX_EXP__ = 128;
const CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_ALG_FLAG = 0x4;
const SEC_E_INSUFFICIENT_MEMORY = 0x80090300;
const DMDITHER_FINE = 3;
const DNS_ERROR_CNAME_COLLISION = 9709;
const CMC_FAIL_TRY_LATER = 12;
const szOID_KP_QUALIFIED_SUBORDINATION = "1.3.6.1.4.1.311.10.3.10";
const BSM_APPLICATIONS = 0x00000008;
const CRYPT_STRING_BINARY = 0x2;
const VARCMP_EQ = 1;
const VK_VOLUME_MUTE = 0xAD;
const PRODUCT_SB_SOLUTION_SERVER_EM = 0x36;
const CRYPT_SGC = 0x1;
const IME_CAND_RADICAL = 0x0004;
const ERROR_DS_INAPPROPRIATE_AUTH = 8233;
const ERROR_STACK_OVERFLOW = 1001;
const DISP_E_ARRAYISLOCKED = 0x8002000D;
const CTRY_PAKISTAN = 92;
const szOID_FACSIMILE_TELEPHONE_NUMBER = "2.5.4.23";
const FILE_NO_COMPRESSION = 0x00008000;
const WS_EX_NOINHERITLAYOUT = 0x00100000;
const SCHED_S_TASK_NO_MORE_RUNS = 0x00041304;
const SCARD_E_INVALID_HANDLE = 0x80100003;
const DNS_ERROR_INVALID_ZONE_TYPE = 9611;
const MIXER_OBJECTF_WAVEOUT = 0x10000000;
const SERVICE_BOOT_START = 0x00000000;
const NFR_ANSI = 1;
const SHGFI_OVERLAYINDEX = 0x000000040;
const ABOVE_NORMAL_PRIORITY_CLASS = 0x8000;
const IP_OPTIONS = 1;
const SPAPI_E_NO_ASSOCIATED_SERVICE = 0x800F0219;
const SERVICE_INTERROGATE = 0x0080;
const TIME_MIDI = 0x0010;
const ERROR_INVALID_TRANSFORM = 2020;
const SPI_GETSCREENREADER = 0x0046;
const MAPVK_VK_TO_CHAR = 2;
const NRC_LOCTFUL = 0x11;
const JOY_CAL_READUONLY = 0x04000000;
const CMSG_ENVELOPED_RECIPIENT_V4 = 4;
const ERROR_IPSEC_IKE_NOTCBPRIV = 13851;
const PRINTER_ERROR_SEVERE = 0x20000000;
const DC_COLORDEVICE = 32;
const GL_ID_CHOOSECANDIDATE = 0x00000028;
const IMC_GETCOMPOSITIONFONT = 0x0009;
const FILE_DEVICE_NETWORK_REDIRECTOR = 0x00000028;
const VK_RCONTROL = 0xA3;
const ERROR_SXS_FILE_HASH_MISMATCH = 14028;
const R2_NOTMASKPEN = 8;
const ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID = 0x4;
const EMR_SELECTPALETTE = 48;
const DDD_RAW_TARGET_PATH = 0x1;
const MDM_V110_SPEED_DEFAULT = 0x0;
const VARCMP_LT = 0;
const SKF_LALTLOCKED = 0x00100000;
const CO_E_FAILEDTOOPENTHREADTOKEN = 0x80010125;
const ERROR_BAD_QUERY_SYNTAX = 1615;
const SERVICE_ERROR_NORMAL = 0x00000001;
const OPEN_EXISTING = 3;
const ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = 8201;
const EXCEPTION_READ_FAULT = 0;
const RPC_C_MQ_TEMPORARY = 0x0000;
const ERROR_INSTALL_PLATFORM_UNSUPPORTED = 1633;
const SEARCH_ALL = 0x0;
const MK_S_MONIKERALREADYREGISTERED = 0x000401E7;
const CTRY_GEORGIA = 995;
const COMQC_E_BAD_MESSAGE = 0x80110604;
const XACT_E_INVALIDCOOKIE = 0x8004D015;
const APPLICATION_VERIFIER_UNSYNCHRONIZED_ACCESS = 0x0003;
const MCI_GETDEVCAPS_ITEM = 0x00000100;
const FILE_WRITE_ATTRIBUTES = 0x0100;
const ERROR_MEDIA_OFFLINE = 4304;
const CRL_REASON_AFFILIATION_CHANGED_FLAG = 0x10;
const RPC_C_IMP_LEVEL_IMPERSONATE = 3;
const WM_KEYDOWN = 0x0100;
const SERVICE_DISABLED = 0x00000004;
const DMPAPER_B5_TRANSVERSE = 62;
const SUBLANG_HUNGARIAN_HUNGARY = 0x01;
const PERF_DISPLAY_NO_SUFFIX = 0x00000000;
const stc10 = 0x0449;
const stc17 = 0x0450;
const stc18 = 0x0451;
const ERROR_CANT_DISABLE_MANDATORY = 1310;
const SPI_SETMOUSESONAR = 0x101D;
const CERT_INFO_SUBJECT_PUBLIC_KEY_INFO_FLAG = 8;
const ERROR_CLUSTER_NODE_EXISTS = 5040;
const stc20 = 0x0453;
const stc21 = 0x0454;
const stc22 = 0x0455;
const stc23 = 0x0456;
const stc24 = 0x0457;
const stc25 = 0x0458;
const WM_RBUTTONDOWN = 0x0204;
const KP_RB = 17;
const STM_SETIMAGE = 0x0172;
const OFFLINE_STATUS_LOCAL = 0x0001;
const PAN_PROPORTION_INDEX = 3;
const FD_WRITE = 0x02;
const SCARD_WARM_RESET = 2;
const WM_NCRBUTTONUP = 0x00A5;
const JOB_STATUS_ERROR = 0x00000002;
const SECTION_MAP_READ = 0x0004;
const SUBLANG_MAORI_NEW_ZEALAND = 0x01;
const CERT_TRUST_HAS_NAME_MATCH_ISSUER = 0x4;
const szOID_RSA_hashedData = "1.2.840.113549.1.7.5";
const ERROR_REGISTRY_CORRUPT = 1015;
const CO_E_APPSINGLEUSE = 0x800401F6;
const RPC_S_NO_BINDINGS = 1718;
const szOID_DESTINATION_INDICATOR = "2.5.4.27";
const IMAGE_SCN_LNK_NRELOC_OVFL = 0x01000000;
const PARTITION_PREP = 0x41;
const SCARD_E_INVALID_CHV = 0x8010002A;
const TC_RESERVED = 0x00008000;
const DLGC_RADIOBUTTON = 0x0040;
const RIGHT_CTRL_PRESSED = 0x4;
const CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID = 9;
const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063;
const PIDMSI_COPYRIGHT = 0x0000000B;
const EEInfoNextRecordsMissing = 2;
const SM_CXVSCROLL = 2;
const CLASS_E_NOTLICENSED = 0x80040112;
const BST_FOCUS = 0x0008;
const ERROR_INVALID_LEVEL = 124;
const RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773;
const SOFTDIST_FLAG_USAGE_PRECACHE = 0x00000002;
const PAN_LETT_NORMAL_SQUARE = 8;
const ERROR_DS_OBJ_GUID_EXISTS = 8361;
const NIM_ADD = 0x00000000;
const CREATE_DEFAULT_ERROR_MODE = 0x4000000;
const szOID_INFOSEC_sdnsKMandSig = "2.16.840.1.101.2.1.1.11";
const LOCALE_ICENTURY = 0x00000024;
const ERROR_DS_DOMAIN_VERSION_TOO_LOW = 8566;
const SORT_KOREAN_UNICODE = 0x1;
const APPLICATION_VERIFIER_PROBE_INVALID_ADDRESS = 0x0603;
const PSINJECT_ENDDEFAULTS = 13;
const SCARD_E_INVALID_VALUE = 0x80100011;
const ERROR_DS_DRA_SCHEMA_MISMATCH = 8418;
const FILE_OPEN_FOR_FREE_SPACE_QUERY = 0x00800000;
const CHANGER_POSITION_TO_ELEMENT = 0x00000400;
const ERROR_DS_NAME_ERROR_NOT_UNIQUE = 8471;
const ALERT_SYSTEM_WARNING = 2;
const ACCESS_MIN_MS_ACE_TYPE = 0x0;
const IPPORT_EFSSERVER = 520;
const WT_EXECUTEINLONGTHREAD = 0x00000010;
const ERROR_SXS_XML_E_MISSINGSEMICOLON = 14039;
const WS_EX_STATICEDGE = 0x00020000;
const HTTOPRIGHT = 14;
const IMAGE_SYM_CLASS_BIT_FIELD = 0x0012;
const EMR_POLYPOLYGON = 8;
const DMPAPER_JENV_CHOU4_ROTATED = 87;
const DISP_E_BADINDEX = 0x8002000B;
const MCI_SEQ_STATUS_DIVTYPE = 0x0000400A;
const szOID_OIWSEC_desOFB = "1.3.14.3.2.8";
const COLOR_BACKGROUND = 1;
const BN_DISABLE = 4;
const META_SELECTPALETTE = 0x0234;
const JOB_STATUS_DELETING = 0x00000004;
const LB_SETANCHORINDEX = 0x019C;
const VK_OEM_RESET = 0xE9;
const CALLBACK_TASK = 0x00020000;
const IDANI_CAPTION = 3;
const CTRY_AUSTRIA = 43;
const CTRY_VIET_NAM = 84;
const MEM_ROTATE = 0x800000;
const IMAGE_SYM_DTYPE_ARRAY = 3;
const EM_SETIMESTATUS = 0x00D8;
const LB_GETCARETINDEX = 0x019F;
const ONESTOPBIT = 0;
const ERROR_DS_DSA_MUST_BE_INT_MASTER = 8342;
const CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC = "CryptMsgDllImportEncryptKey";
const EV_TXEMPTY = 0x4;
const SEC_E_BAD_BINDINGS = 0x80090346;
const NIIF_NONE = 0x00000000;
const ERROR_CLUSTER_MEMBERSHIP_HALT = 5892;
const ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = 13842;
const CMSG_CTRL_DEL_ATTR_CERT = 15;
const PW_CLIENTONLY = 0x00000001;
const RPC_CALL_ATTRIBUTES_VERSION = 1;
const LANG_NEUTRAL = 0x00;
const CERTSRV_E_SIGNATURE_COUNT = 0x8009480A;
const WM_GETTEXT = 0x000D;
const IMAGE_REL_MIPS_REFWORDNB = 0x0022;
const PAN_PROP_VERY_CONDENSED = 8;
const LANG_CZECH = 0x05;
const READ_COMPRESSION_INFO_VALID = 0x00000020;
const ACTCTX_FLAG_SET_PROCESS_DEFAULT = 0x10;
const SB_THUMBTRACK = 5;
const OSS_NEGATIVE_UINTEGER = 0x80093002;
const ERROR_LB_WITHOUT_TABSTOPS = 1434;
const VK_BROWSER_REFRESH = 0xA8;
const PAN_LETT_OBLIQUE_BOXED = 11;
const ACCESS_DENIED_ACE_TYPE = 0x1;
const HTMINBUTTON = 8;
const MIXER_LONG_NAME_CHARS = 64;
const szOID_FRESHEST_CRL = "2.5.29.46";
const ERROR_NO_SITENAME = 1919;
const ERROR_DS_GCVERIFY_ERROR = 8417;
const FILE_OPEN = 0x00000001;
const SESSION_ABORTED = 0x06;
const READ_ATTRIBUTE_BUFFER_SIZE = 512;
const STGFMT_NATIVE = 1;
const _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_MEMORY = 0;
const DMBIN_ENVMANUAL = 6;
const NLS_ALPHANUMERIC = 0x0;
const MB_RTLREADING = 0x00100000;
const PRODUCT_BUSINESS = 0x6;
const GCS_COMPREADCLAUSE = 0x0004;
const DMPAPER_DSHEET = 25;
const MCI_ANIM_WINDOW_STATE = 0x00040000;
const SM_MENUDROPALIGNMENT = 40;
const DLGC_DEFPUSHBUTTON = 0x0010;
const HP_TLS1PRF_LABEL = 0x6;
const SET_FEATURE_ON_THREAD_RESTRICTED = 0x00000080;
const VK_RIGHT = 0x27;
const RGN_XOR = 3;
const CRYPTPROTECTMEMORY_SAME_PROCESS = 0x0;
const LB_SETTABSTOPS = 0x0192;
const RPC_S_INVALID_NAME_SYNTAX = 1736;
const COMADMIN_E_CANTMAKEINPROCSERVICE = 0x80110814;
const SEC_E_REVOCATION_OFFLINE_KDC = 0x80090358;
const RPC_S_NO_CONTEXT_AVAILABLE = 1765;
const WM_CTLCOLOREDIT = 0x0133;
const ALG_SID_SHA1 = 4;
const XST_POKESENT = 7;
const WIZ_BODYX = 92;
const ERROR_DS_COULDNT_CONTACT_FSMO = 8367;
const SM_REMOTECONTROL = 0x2001;
const TAPE_SPACE_SETMARKS = 8;
const ETO_RTLREADING = 0x0080;
const ERROR_REPARSE_TAG_MISMATCH = 4394;
const GCS_RESULTREADSTR = 0x0200;
const SPAPI_E_INVALID_MACHINENAME = 0x800F0220;
const MMIO_READ = 0x00000000;
const RPC_S_INVALID_STRING_BINDING = 1700;
const APPCOMMAND_BROWSER_SEARCH = 5;
const ERROR_PRINTER_HAS_JOBS_QUEUED = 3009;
const NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE = 0x80;
const IMAGE_SIZEOF_STD_OPTIONAL_HEADER = 28;
const ABN_STATECHANGE = 0x0000000;
const SEC_E_MESSAGE_ALTERED = 0x8009030F;
const PSBTN_NEXT = 1;
const szOID_DSALG_SIGN = "2.5.8.3";
const VK_OEM_FJ_TOUROKU = 0x94;
const CONFIRMSAFETYACTION_LOADOBJECT = 0x00000001;
const CSTR_LESS_THAN = 1;
const CRYPT_SF = 0x100;
const CO_E_SERVER_START_TIMEOUT = 0x8000401E;
const JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK = 0x00001000;
const GCPGLYPH_LINKBEFORE = 0x8000;
const GCP_SYMSWAPOFF = 0x00800000;
const UI_CAP_ROT90 = 0x00000002;
const EWX_SHUTDOWN = 0x00000001;
const STGM_READ = 0x00000000;
const GET_FEATURE_FROM_THREAD_INTRANET = 0x00000010;
const MFCOMMENT = 15;
const SUBLANG_SPANISH_MODERN = 0x03;
const szOID_ENHANCED_KEY_USAGE = "2.5.29.37";
const PFD_UNDERLAY_PLANE = -1;
const VSS_E_UNSELECTED_VOLUME = 0x8004232A;
const WT_TRANSFER_IMPERSONATION = 0x00000100;
const ERROR_BEGINNING_OF_MEDIA = 1102;
const DRV_OPEN = 0x0003;
const LOCALE_ICURRENCY = 0x0000001B;
const RC_FLOODFILL = 0x1000;
const MKF_HOTKEYACTIVE = 0x00000004;
const OLE_E_INVALIDHWND = 0x8004000F;
const CERT_REGISTRY_STORE_REMOTE_FLAG = 0x10000;
const CERT_STORE_PROV_DELETED_FLAG = 0x2;
const DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 9719;
const NTE_BAD_KEY = 0x80090003;
const MKF_RIGHTBUTTONDOWN = 0x02000000;
const PIPE_READMODE_BYTE = 0x0;
const ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = 8533;
const ERROR_INVALID_MESSAGEDEST = 1218;
const PF_XMMI_INSTRUCTIONS_AVAILABLE = 6;
const IMAGE_REL_SH3_SIZEOF_SECTION = 0x000D;
const MDM_FORCED_EC = 0x00000004;
const szOID_CERTSRV_CROSSCA_VERSION = "1.3.6.1.4.1.311.21.22";
const PF_3DNOW_INSTRUCTIONS_AVAILABLE = 7;
const LOCALE_INEGNUMBER = 0x00001010;
const JOY_POVBACKWARD = 18000;
const ERROR_SUBST_TO_JOIN = 141;
const ALERT_SYSTEM_CRITICAL = 5;
const VS_FF_DEBUG = 0x00000001;
const ELEMENT_STATUS_IMPEXP = 0x00000002;
const URLACTION_INFODELIVERY_MIN = 0x00001D00;
const URLACTION_INFODELIVERY_CURR_MAX = 0x00001D06;
const XTYP_MASK = 0x00F0;
const WM_QUEUESYNC = 0x0023;
const ERROR_UNKNOWN_PRINTPROCESSOR = 1798;
const CERT_QUERY_CONTENT_PKCS7_SIGNED = 8;
const szOID_CRL_NUMBER = "2.5.29.20";
const VOS_OS216 = 0x00020000;
const MCI_WAVE_GETDEVCAPS_OUTPUTS = 0x00004002;
const IMAGE_REL_ARM_ADDR32NB = 0x0002;
const APPLICATION_VERIFIER_DOUBLE_FREE = 0x0007;
const ERROR_BAD_LENGTH = 24;
const SUBLANG_THAI_THAILAND = 0x01;
const URL_MK_UNIFORM = 1;
const DMMEDIA_STANDARD = 1;
const APPLICATION_VERIFIER_ACCESS_VIOLATION = 0x0002;
const GCS_DELTASTART = 0x0100;
const INET_E_CANNOT_CONNECT = 0x800C0004;
const IPPORT_EXECSERVER = 512;
const KEY_CREATE_SUB_KEY = 0x0004;
const CMSG_KEY_AGREE_STATIC_KEY_CHOICE = 2;
const BS_LEFT = 0x00000100;
const CRYPT_ONLINE = 0x80;
const VOS_OS232 = 0x00030000;
const NTDDI_WS03SP1 = 0x05020100;
const NTDDI_WS03SP2 = 0x05020200;
const NTDDI_WS03SP3 = 0x05020300;
const NTDDI_WS03SP4 = 0x05020400;
const FILE_OPEN_REPARSE_POINT = 0x00200000;
const WGL_SWAP_OVERLAY15 = 0x00008000;
const SS_WHITEFRAME = 0x00000009;
const CERT_SHA1_HASH_PROP_ID = 3;
const MOVEFILE_REPLACE_EXISTING = 0x1;
const HELP_CONTEXTPOPUP = 0x0008;
const SS_NOTIFY = 0x00000100;
const LOAD_LIBRARY_AS_DATAFILE = 0x2;
const SECURITY_DESCRIPTOR_REVISION1 = 1;
const SORT_HUNGARIAN_DEFAULT = 0x0;
const PORT_TYPE_REDIRECTED = 0x0004;
const ERROR_DS_CROSS_DOM_MOVE_ERROR = 8216;
const ERROR_RING2SEG_MUST_BE_MOVABLE = 200;
const SPI_SETMOUSESPEED = 0x0071;
const S_SERQFUL = -4;
const CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED = 0x8009400A;
const VK_OEM_CLEAR = 0xFE;
const DNS_FILTEROFF = 0x0008;
const IMAGE_SCN_ALIGN_2048BYTES = 0x00C00000;
const IMAGE_SCN_MEM_READ = 0x40000000;
const OLEOBJ_S_INVALIDVERB = 0x00040180;
const KP_MODE_BITS = 5;
const ERROR_IO_DEVICE = 1117;
const ELEMENT_STATUS_FULL = 0x00000001;
const CERT_STORE_PROV_FIND_CTL_FUNC = 20;
const LMEM_NODISCARD = 0x20;
const INPLACE_S_LAST = 0x000401AF;
const ACTCTX_FLAG_SOURCE_IS_ASSEMBLYREF = 0x40;
const STG_E_CANTSAVE = 0x80030103;
const EMR_FRAMERGN = 72;
const SETXON = 2;
const SKF_RALTLATCHED = 0x20000000;
const MK_E_NO_NORMALIZED = 0x80080007;
const WM_CUT = 0x0300;
const LSFW_LOCK = 1;
const CO_E_CANTDETERMINECLASS = 0x800401F2;
const JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR = 0x0C;
const NRC_NORESOURCES = 0x38;
const JOY_BUTTON11 = 0x00000400;
const JOY_BUTTON12 = 0x00000800;
const JOY_BUTTON13 = 0x00001000;
const JOY_BUTTON14 = 0x00002000;
const JOY_BUTTON15 = 0x00004000;
const JOY_BUTTON16 = 0x00008000;
const JOY_BUTTON18 = 0x00020000;
const JOY_BUTTON19 = 0x00040000;
const JOB_NOTIFY_FIELD_DRIVER_NAME = 0x08;
const CERT_STORE_PROV_DELETE_CRL_FUNC = 7;
const AF_IPX = 6;
const SCARD_ABSENT = 1;
const PSP_USEHEADERTITLE = 0x00001000;
const IMAGE_REL_PPC_ABSOLUTE = 0x0000;
const NCBASTAT = 0x33;
const CERT_SET_KEY_CONTEXT_PROP_ID = 0x1;
const JOY_BUTTON20 = 0x00080000;
const JOY_BUTTON21 = 0x00100000;
const JOY_BUTTON22 = 0x00200000;
const JOY_BUTTON23 = 0x00400000;
const JOY_BUTTON24 = 0x00800000;
const JOY_BUTTON25 = 0x01000000;
const JOY_BUTTON26 = 0x02000000;
const JOY_BUTTON27 = 0x04000000;
const JOY_BUTTON28 = 0x08000000;
const JOY_BUTTON29 = 0x10000000;
const szOID_INFOSEC_mosaicUpdatedSig = "2.16.840.1.101.2.1.1.19";
const WGL_SWAP_OVERLAY2 = 0x00000004;
const WGL_SWAP_OVERLAY3 = 0x00000008;
const WGL_SWAP_OVERLAY4 = 0x00000010;
const WGL_SWAP_OVERLAY5 = 0x00000020;
const WGL_SWAP_OVERLAY6 = 0x00000040;
const WGL_SWAP_OVERLAY7 = 0x00000080;
const WGL_SWAP_OVERLAY8 = 0x00000100;
const MIDIPROP_TEMPO = 0x00000002;
const SEF_AVOID_OWNER_CHECK = 0x10;
const LBN_ERRSPACE = -2;
const CRYPT_DECODE_NOCOPY_FLAG = 0x1;
const PRINTER_CHANGE_WRITE_JOB = 0x00000800;
const CERT_STORE_REVOCATION_FLAG = 0x4;
const JOY_BUTTON30 = 0x20000000;
const URLPOLICY_AUTHENTICATE_CLEARTEXT_OK = 0x00000000;
const JOY_BUTTON32 = 0x80000000;
const EM_GETIMESTATUS = 0x00D9;
const WM_DROPFILES = 0x0233;
const EMR_GDICOMMENT = 70;
const CRYPT_OID_INFO_OID_KEY = 1;
const FOF_NO_CONNECTED_ELEMENTS = 0x2000;
const SKF_RWINLATCHED = 0x80000000;
const __GNUC_GNU_INLINE__ = 1;
const PORT_STATUS_POWER_SAVE = 12;
const DMPAPER_B6_JIS_ROTATED = 89;
const szOID_DRM = "1.3.6.1.4.1.311.10.5.1";
const SB_HORZ = 0;
const EMARCH_ENC_I17_IMM7B_SIZE_X = 7;
const IMAGE_REL_AM_REL32_1 = 0x0005;
const SIMULATED_FONTTYPE = 0x8000;
const EC_RIGHTMARGIN = 0x0002;
const SB_LINEDOWN = 1;
const IMFT_SUBMENU = 0x00004;
const CLIP_CHARACTER_PRECIS = 1;
const PROCESS_HEAP_ENTRY_DDESHARE = 0x20;
const MCI_TO = 0x00000008;
const SPI_SETICONMETRICS = 0x002E;
const MCI_OVLY_PUT_FRAME = 0x00080000;
const lst4 = 0x0463;
const IMAGE_REL_ALPHA_SECTION = 0x000E;
const SO_RCVTIMEO = 0x1006;
const CERT_STORE_PROV_GET_CERT_PROPERTY_FUNC = 16;
const RPC_C_AUTHN_DEFAULT = 0xFFFFFFFF;
const DISP_E_TYPEMISMATCH = 0x80020005;
const PRINTACTION_SERVERPROPERTIES = 7;
const ERROR_DECRYPTION_FAILED = 6001;
const CERT_TRUST_INVALID_NAME_CONSTRAINTS = 0x800;
const MCI_WAVE_STATUS_SAMPLESPERSEC = 0x00004003;
const CMSG_USE_SIGNER_INDEX_FLAG = 0x4;
const OBJ_COLORSPACE = 14;
const CTRY_JAMAICA = 1;
const STRICT = 1;
const RPC_P_ADDR_FORMAT_TCP_IPV4 = 1;
const RPC_P_ADDR_FORMAT_TCP_IPV6 = 2;
const PBT_APMQUERYSUSPENDFAILED = 0x0002;
const TAPE_DRIVE_ERASE_BOP_ONLY = 0x00000040;
const ES_MULTILINE = 0x0004;
const PBT_APMQUERYSTANDBY = 0x0001;
const IS_TEXT_UNICODE_NOT_ASCII_MASK = 0xF000;
const SMART_NO_ERROR = 0;
const TYPE_E_IOERROR = 0x80028CA2;
const S_PERIOD512 = 0;
const CERT_STORE_CTRL_RESYNC = 1;
const DCX_INTERSECTRGN = 0x00000080;
const CMSG_MAX_LENGTH_FLAG = 0x20;
const szOID_RSA_digestedData = "1.2.840.113549.1.7.5";
const WNNC_NET_DAV = 0x002E0000;
const CMSG_SIGNER_UNAUTH_ATTR_PARAM = 10;
const OBJ_REGION = 8;
const FILE_DEVICE_8042_PORT = 0x00000027;
const BSF_LUID = 0x00000400;
const CS_E_LAST = 0x8004016F;
const VP_FLAGS_CONTRAST = 0x0080;
const ERROR_VOLUME_NOT_SIS_ENABLED = 4500;
const __MINGW32_MAJOR_VERSION = 3;
const SPAPI_E_NON_WINDOWS_NT_DRIVER = 0x800F022D;
const ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = 1274;
const X3_D_WH_INST_WORD_X = 3;
const MAXGETHOSTSTRUCT = 1024;
const MCI_LAST = 0x0FFF;
const XACT_E_NOENLIST = 0x8004D00A;
const szOID_PKIX_CA_ISSUERS = "1.3.6.1.5.5.7.48.2";
const ERROR_DS_RESERVED_LINK_ID = 8576;
const SSWF_CUSTOM = 4;
const ERROR_SPOOL_FILE_NOT_FOUND = 3002;
const EVENT_SYSTEM_MOVESIZESTART = 0x000A;
const __ATOMIC_ACQUIRE = 2;
const UNRECOVERED_READS_VALID = 0x00000008;
const FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020;
const ERROR_DS_DNS_LOOKUP_FAILURE = 8524;
const WAVE_FORMAT_DIRECT = 0x0008;
const SUBLANG_SPANISH_EL_SALVADOR = 0x11;
const DMPAPER_A5_EXTRA = 64;
const CTRY_QATAR = 974;
const ILLUMINANT_F2 = 8;
const CERT_AUTH_ROOT_CTL_FILENAME = "authroot.stl";
const ERROR_SERIAL_NO_DEVICE = 1118;
const MCI_WAVE_SET_CHANNELS = 0x00020000;
const WM_TIMECHANGE = 0x001E;
const DT_LEFT = 0x00000000;
const ETO_NUMERICSLATIN = 0x0800;
const DMPAPER_JAPANESE_POSTCARD_ROTATED = 81;
const ERROR_DS_CANT_RETRIEVE_DN = 8405;
const ERROR_PORT_UNREACHABLE = 1234;
const ERROR_CTX_GRAPHICS_INVALID = 7035;
const FR_PRIVATE = 0x10;
const ERROR_QUORUM_RESOURCE = 5020;
const CREATE_IGNORE_SYSTEM_DEFAULT = 0x80000000;
const WM_NOTIFY = 0x004E;
const CS_E_OBJECT_ALREADY_EXISTS = 0x8004016A;
const RPC_S_FP_UNDERFLOW = 1770;
const DT_HIDEPREFIX = 0x00100000;
const CERT_ALT_NAME_URL = 7;
const CERT_CHAIN_CONFIG_REGPATH = "Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CertDllCreateCertificateChainEngine\\Config";
const JOB_OBJECT_SECURITY_NO_ADMIN = 0x00000001;
const RPC_E_CHANGED_MODE = 0x80010106;
const DRVCNF_CANCEL = 0x0000;
const MKF_REPLACENUMBERS = 0x00000080;
const CERT_NAME_ISSUER_FLAG = 0x1;
const EVENT_CONSOLE_START_APPLICATION = 0x4006;
const DMDITHER_COARSE = 2;
const SPI_GETBEEP = 0x0001;
const STATE_SYSTEM_BUSY = 0x00000800;
const SPI_GETLOWPOWERTIMEOUT = 0x004F;
const CERT_VERIFY_INHIBIT_CTL_UPDATE_FLAG = 0x1;
const szOID_CROSS_CERT_DIST_POINTS = "1.3.6.1.4.1.311.10.9.1";
const CRYPT_E_ASN1_LARGE = 0x80093104;
const HSHELL_WINDOWCREATED = 1;
const CTRY_PARAGUAY = 595;
const FRS_ERR_INSUFFICIENT_PRIV = 8007;
const VER_SUITE_EMBEDDEDNT = 0x00000040;
const MM_ISOTROPIC = 7;
const APPCOMMAND_BASS_UP = 21;
const PF_FLOATING_POINT_EMULATED = 1;
const TYPE_E_FIELDNOTFOUND = 0x80028017;
const LGRPID_TRADITIONAL_CHINESE = 0x0009;
const PDCAP_WAKE_FROM_D1_SUPPORTED = 0x00000020;
const USER_MARSHAL_FC_CHAR = 2;
const SUBLANG_INDONESIAN_INDONESIA = 0x01;
const DROPEFFECT_LINK = 4;
const szOID_PKIX_POLICY_QUALIFIER_USERNOTICE = "1.3.6.1.5.5.7.2.2";
const USER_MARSHAL_FC_DOUBLE = 12;
const FR_HIDEUPDOWN = 0x4000;
const XACT_E_NOTRANSACTION = 0x8004D00E;
const VK_RWIN = 0x5C;
const CRYPT_E_UNEXPECTED_MSG_TYPE = 0x8009200A;
const EMR_TRANSPARENTBLT = 116;
const CMSG_TYPE_PARAM = 1;
const GCP_MAXEXTENT = 0x00100000;
const ERROR_DS_NONEXISTENT_MAY_HAVE = 8387;
const DISP_E_NOTACOLLECTION = 0x80020011;
const USN_SOURCE_AUXILIARY_DATA = 0x00000002;
const ERROR_DS_SENSITIVE_GROUP_VIOLATION = 8505;
const ERROR_SERVICE_DOES_NOT_EXIST = 1060;
const WS_CLIPCHILDREN = 0x02000000;
const PERF_COUNTER_ELAPSED = 0x00040000;
const PFD_STEREO_DONTCARE = 0x80000000;
const EMR_SETARCDIRECTION = 57;
const JOB_CONTROL_RESTART = 4;
const MOD_SHIFT = 0x0004;
const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 = 1;
const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 = 1;
const DEVICE_DEFAULT_FONT = 14;
const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 = 1;
const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 = 1;
const USER_MARSHAL_FC_FLOAT = 10;
const PRINTER_ERROR_INFORMATION = 0x80000000;
const XST_NULL = 0;
const RPC_S_PROTSEQ_NOT_SUPPORTED = 1703;
const NTE_DOUBLE_ENCRYPT = 0x80090012;
const ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = 13009;
const szOID_OIWSEC_dsa = "1.3.14.3.2.12";
const ERROR_UNKNOWN_PROPERTY = 1608;
const CRYPT_E_INVALID_IA5_STRING = 0x80092022;
const ERROR_TOO_MANY_SEMAPHORES = 100;
const SET_FEATURE_ON_THREAD_LOCALMACHINE = 0x00000008;
const CF_WYSIWYG = 0x8000;
const COLOROKSTRINGA = "commdlg_ColorOK";
const NI_CLOSECANDIDATE = 0x0011;
const COLOROKSTRINGW = "commdlg_ColorOK";
const STG_E_EXTANTMARSHALLINGS = 0x80030108;
const NETINFO_PRINTERRED = 0x00000008;
const IPPORT_MTP = 57;
const EMR_SETMAPMODE = 17;
const APPCOMMAND_BROWSER_REFRESH = 3;
const GETSCALINGFACTOR = 14;
const DSS_HIDEPREFIX = 0x0200;
const IMAGE_DEBUG_TYPE_EXCEPTION = 5;
const WM_DRAWITEM = 0x002B;
const LOCALE_S2359 = 0x00000029;
const VFT2_DRV_MOUSE = 0x00000005;
const ERROR_INVALID_GW_COMMAND = 1443;
const szOID_CMC_LRA_POP_WITNESS = "1.3.6.1.5.5.7.7.11";
const BF_TOP = 0x0002;
const RASTER_FONTTYPE = 0x0001;
const WM_SETREDRAW = 0x000B;
const _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES = 0;
const ERROR_DS_CANT_RETRIEVE_SD = 8526;
const MM_MIM_OPEN = 0x3C1;
const szOID_RSA_MD2 = "1.2.840.113549.2.2";
const szOID_RSA_MD4 = "1.2.840.113549.2.4";
const szOID_RSA_MD5 = "1.2.840.113549.2.5";
const DMPAPER_10X11 = 45;
const APPLICATION_VERIFIER_FIRST_CHANCE_ACCESS_VIOLATION = 0x0013;
const CRYPT_EXT_OR_ATTR_OID_GROUP_ID = 6;
const SPI_GETCLEARTYPE = 0x1048;
const LZERROR_BADOUTHANDLE = -2;
const TAPE_QUERY_DRIVE_PARAMETERS = 0;
const EV_RX80FULL = 0x400;
const LR_LOADTRANSPARENT = 0x0020;
const RIDI_PREPARSEDDATA = 0x20000005;
const CTRY_LEBANON = 961;
const ALG_SID_DH_SANDF = 1;
const CO_S_LAST = 0x000401FF;
const MMIO_FINDCHUNK = 0x0010;
const CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS = 0x20000000;
const MMSYSERR_NOERROR = 0;
const PP_CLIENT_HWND = 1;
const RPC_C_OPT_MAX_OPTIONS = 14;
const IME_THOTKEY_IME_NONIME_TOGGLE = 0x70;
const MM_JOY1BUTTONUP = 0x3B7;
const DISPID_EVALUATE = -5;
const IMAGE_ARCHIVE_LONGNAMES_MEMBER = "// ";
const MIXER_SETCONTROLDETAILSF_VALUE = 0x00000000;
const DFCS_CAPTIONRESTORE = 0x0003;
const SW_SHOWMAXIMIZED = 3;
const ERROR_DS_INVALID_DMD = 8360;
const USER_MARSHAL_FC_SHORT = 6;
const FRS_ERR_SYSVOL_IS_BUSY = 8015;
const CMSG_OID_EXPORT_KEY_TRANS_FUNC = "CryptMsgDllExportKeyTrans";
const IMAGE_REL_AM_ABSOLUTE = 0x0000;
const ST_BLOCKED = 0x0008;
const CO_E_OBJNOTREG = 0x800401FB;
const PS_DOT = 2;
const UI_CAP_ROTANY = 0x00000004;
const THREAD_SET_INFORMATION = 0x0020;
const ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = 14045;
const ERROR_INSTALL_SERVICE_FAILURE = 1601;
const CRYPT_Y_ONLY = 0x1;
const CE_RXOVER = 0x1;
const FS_ARABIC = 0x00000040;
const TC_CR_ANY = 0x00000010;
const IOCTL_SMARTCARD_POWER = 1;
const PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING = 0x20;
const DMPAPER_LETTER_PLUS = 59;
const EN_ALIGN_LTR_EC = 0x0700;
const ERROR_DS_NCNAME_MUST_BE_NC = 8357;
const ERROR_TIME_SKEW = 1398;
const MSGF_SCROLLBAR = 5;
const CERT_VERIFY_UPDATED_CTL_FLAG = 0x1;
const DMTT_SUBDEV = 3;
const WARNING_IPSEC_QM_POLICY_PRUNED = 13025;
const ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = 8529;
const CERT_EFSBLOB_VALUE_NAME = "EFSBlob";
const MB_ICONASTERISK = 0x00000040;
const RPC_S_ENTRY_NOT_FOUND = 1761;
const ST_TERMINATED = 0x0020;
const WAVE_FORMAT_4S16 = 0x00000800;
const MSG_PEEK = 0x2;
const CMC_STATUS_CONFIRM_REQUIRED = 5;
const szOID_COUNTRY_NAME = "2.5.4.6";
const ERROR_DS_ROOT_MUST_BE_NC = 8301;
const URLACTION_SHELL_EXECUTE_MODRISK = 0x00001807;
const NUM_DISCHARGE_POLICIES = 4;
const CS_E_NOT_DELETABLE = 0x80040165;
const DNS_ERROR_SECONDARY_DATA = 9712;
const SPI_GETSOUNDSENTRY = 0x0040;
const IPPORT_TTYLINK = 87;
const IPPROTO_IDP = 22;
const LOGON_ZERO_PASSWORD_BUFFER = 0x80000000;
const GW_ENABLEDPOPUP = 6;
const EVENT_S_SOME_SUBSCRIBERS_FAILED = 0x00040200;
const MB_RIGHT = 0x00080000;
const IMAGE_REL_PPC_IMGLUE = 0x000E;
const ERROR_IPSEC_MM_AUTH_EXISTS = 13010;
const CAT_E_FIRST = 0x80040160;
const SERVICE_START_PENDING = 0x00000002;
const KEY_WOW64_32KEY = 0x0200;
const JOB_STATUS_DELETED = 0x00000100;
const WM_IME_STARTCOMPOSITION = 0x010D;
const PRINTER_STATUS_USER_INTERVENTION = 0x00100000;
const X3_EMPTY_SIZE_X = 2;
const STGM_DELETEONRELEASE = 0x04000000;
const MSSIPOTF_E_FILETOOSMALL = 0x8009700B;
const LOCALE_INEGSIGNPOSN = 0x00000053;
const RTL_VRF_FLG_DANGEROUS_APIS = 0x00000200;
const PERF_TYPE_TEXT = 0x00000800;
const REG_SECURE_CONNECTION = 1;
const SUBLANG_IRISH_IRELAND = 0x02;
const SPI_SETDOUBLECLKWIDTH = 0x001D;
const IMAGE_SYM_TYPE_UINT = 0x000E;
const IOCTL_SMARTCARD_GET_PERF_CNTR = 16;
const PM_REMOVE = 0x0001;
const DRV_DISABLE = 0x0005;
const CMC_FAIL_BAD_REQUEST = 2;
const ELEMENT_STATUS_PRODUCT_DATA = 0x00000040;
const ERROR_INVALID_MSGBOX_STYLE = 1438;
const ERROR_DS_SERVER_DOWN = 8250;
const szOID_OIWSEC_md2RSASign = "1.3.14.3.2.24";
const USN_REASON_CLOSE = 0x80000000;
const DISPATCH_PROPERTYPUT = 0x4;
const NRC_CANCEL = 0x26;
const ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = 8487;
const szOID_CRL_SELF_CDP = "1.3.6.1.4.1.311.21.14";
const IMAGE_REL_MIPS_REFWORD = 0x0002;
const PLAINTEXTKEYBLOB = 0x8;
const SB_PREMULT_ALPHA = 0x00000004;
const ARW_UP = 0x0004;
const CONTAINER_INHERIT_ACE = 0x2;
const FILE_WRITE_ACCESS = 0x0002;
const ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 13014;
const ERROR_SXS_XML_E_INVALID_DECIMAL = 14047;
const XCLASS_NOTIFICATION = 0x8000;
const INPLACE_S_TRUNCATED = 0x000401A0;
const CMSG_SIGNER_INFO_V1 = 1;
const LANG_LITHUANIAN = 0x27;
const HCF_AVAILABLE = 0x00000002;
const CMSG_SIGNER_INFO_V3 = 3;
const GCS_COMPREADSTR = 0x0001;
const FROM_LEFT_4TH_BUTTON_PRESSED = 0x10;
const PSH_WIZARD = 0x00000020;
const TA_NOUPDATECP = 0;
const EC_ENABLEALL = 0;
const FILE_READ_ONLY = 8;
const CERT_PHYSICAL_STORE_PREDEFINED_ENUM_FLAG = 0x1;
const VER_SERVICEPACKMAJOR = 0x0000020;
const SC_RESTORE = 0xF120;
const DNS_ERROR_SOA_DELETE_INVALID = 9618;
const FILE_TYPE_DISK = 0x1;
const IMAGE_SCN_MEM_FARDATA = 0x00008000;
const JOB_NOTIFY_FIELD_TIME = 0x13;
const szOID_LOCALITY_NAME = "2.5.4.7";
const ERROR_IO_PENDING = 997;
const XCLASS_MASK = 0xFC00;
const EVENT_OBJECT_ACCELERATORCHANGE = 0x8012;
const SEC_E_DECRYPT_FAILURE = 0x80090330;
const WM_TIMER = 0x0113;
const CTRY_GUATEMALA = 502;
const LOCALE_SABBREVMONTHNAME11 = 0x0000004E;
const MS_ENHANCED_PROV_A = "Microsoft Enhanced Cryptographic Provider v1.0";
const DISPLAY_DEVICE_MODESPRUNED = 0x08000000;
const MCI_SET_OFF = 0x00004000;
const EDS_RAWMODE = 0x00000002;
const MS_ENHANCED_PROV_W = "Microsoft Enhanced Cryptographic Provider v1.0";
const szOID_PHYSICAL_DELIVERY_OFFICE_NAME = "2.5.4.19";
const RPC_PROXY_CONNECTION_TYPE_OUT_PROXY = 1;
const CRYPT_E_FILE_ERROR = 0x80092003;
const FNERR_BUFFERTOOSMALL = 0x3003;
const CO_E_RUNAS_LOGON_FAILURE = 0x8000401A;
const LANG_LAO = 0x54;
const SUBLANG_FRENCH_LUXEMBOURG = 0x05;
const FIXED_PITCH = 1;
const PP_KEY_TYPE_SUBTYPE = 10;
const PAN_SERIF_TRIANGLE = 10;
const __GCC_ATOMIC_POINTER_LOCK_FREE = 2;
const MARK_HANDLE_REALTIME = 0x00000020;
const CALLBACK_CHUNK_FINISHED = 0x0;
const IOC_OUT = 0x40000000;
const MCI_WAVE_OUTPUT = 0x00800000;
const IMAGE_FILE_LOCAL_SYMS_STRIPPED = 0x0008;
const PAN_CONTRAST_MEDIUM = 6;
const SPI_SETLANGTOGGLE = 0x005B;
const REGDB_E_FIRST = 0x80040150;
const APPLICATION_VERIFIER_LOCK_INVALID_RECURSION_COUNT = 0x0207;
const CRL_DIST_POINT_ERR_CRL_ISSUER_BIT = 0x80000000;
const MK_E_INVALIDEXTENSION = 0x800401E6;
const ICM_SETDEFAULTPROFILE = 4;
const META_SETTEXTJUSTIFICATION = 0x020A;
const MA_NOACTIVATE = 3;
const PAN_XHEIGHT_DUCKING_LARGE = 7;
const ERROR_DHCP_ADDRESS_CONFLICT = 4100;
const CERT_ID_SHA1_HASH = 3;
const JOB_NOTIFY_FIELD_USER_NAME = 0x03;
const SCARD_E_BAD_SEEK = 0x80100029;
const ERROR_AUTODATASEG_EXCEEDS_64k = 199;
const ERROR_IPSEC_MM_POLICY_PENDING_DELETION = 13021;
const CDERR_DIALOGFAILURE = 0xFFFF;
const ERROR_VOLUME_NOT_SUPPORT_EFS = 6014;
const IDH_NO_HELP = 28440;
const CERT_NAME_STR_NO_PLUS_FLAG = 0x20000000;
const MINCHAR = 0x80;
const COLOR_ACTIVEBORDER = 10;
const ASYNCH = 0x80;
const NTE_BAD_LEN = 0x80090004;
const WM_NEXTDLGCTL = 0x0028;
const COMADMIN_E_PARTITION_ACCESSDENIED = 0x80110818;
const SWP_SHOWWINDOW = 0x0040;
const PRINTER_NOTIFY_FIELD_STATUS = 0x12;
const PFD_TYPE_RGBA = 0;
const DMPAPER_LETTER_EXTRA_TRANSVERSE = 56;
const CMSG_CMS_SIGNER_INFO_PARAM = 39;
const PROCESS_VM_READ = 0x0010;
const SUBLANG_SERBIAN_CYRILLIC = 0x03;
const USN_REASON_EA_CHANGE = 0x00000400;
const RPC_C_AUTHN_MSN = 18;
const CP_WINANSI = 1004;
const ERROR_DS_CANT_MOVE_DELETED_OBJECT = 8489;
const ERROR_WMI_ALREADY_DISABLED = 4212;
const ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = 8617;
const ACCESS_MAX_MS_V4_ACE_TYPE = 0x8;
const FR_NOWHOLEWORD = 0x1000;
const ERROR_BAD_FORMAT = 11;
const szOID_PKIX_KP = "1.3.6.1.5.5.7.3";
const OSS_DATA_ERROR = 0x80093005;
const CRYPT_TEMPLATE_OID_GROUP_ID = 9;
const VK_LAUNCH_APP2 = 0xB7;
const ERROR_TRAY_MALFUNCTION = 0x00000010;
const VP_CP_CMD_ACTIVATE = 0x0001;
const PIDDSI_NOTECOUNT = 0x00000008;
const TC_OP_STROKE = 0x00000002;
const LOCALE_INEGCURR = 0x0000001C;
const __STDC_HOSTED__ = 1;
const IMAGE_REL_CEE_SECTION = 0x0004;
const COMADMIN_E_AMBIGUOUS_PARTITION_NAME = 0x8011045D;
const SHGFI_TYPENAME = 0x000000400;
const ABM_SETPOS = 0x00000003;
const VK_MEDIA_PLAY_PAUSE = 0xB3;
const OFN_OVERWRITEPROMPT = 0x2;
const CBR_110 = 110;
const ERROR_IPSEC_IKE_PROCESS_ERR_CERT = 13835;
const SCARD_E_SERVER_TOO_BUSY = 0x80100031;
const WRITE_COMPRESSION_INFO_VALID = 0x00000010;
const MIXERCONTROL_CT_CLASS_TIME = 0x60000000;
const ERROR_HANDLE_DISK_FULL = 39;
const SCARD_STATE_EXCLUSIVE = 0x00000080;
const CO_E_LAUNCH_PERMSSION_DENIED = 0x8000401B;
const SPAPI_E_INCORRECTLY_COPIED_INF = 0x800F0237;
const VER_GREATER_EQUAL = 3;
const cmb10 = 0x0479;
const SBS_SIZEBOX = 0x0008;
const WNNC_NET_YAHOO = 0x002C0000;
const META_POLYGON = 0x0324;
const APPCOMMAND_VOLUME_DOWN = 9;
const MOUSEEVENTF_WHEEL = 0x0800;
const __WIN64 = 1;
const ERROR_DS_LOOP_DETECT = 8246;
const szOID_PKIX_PE = "1.3.6.1.5.5.7.1";
const SW_SHOWNOACTIVATE = 4;
const WAVECAPS_VOLUME = 0x0004;
const IMN_PRIVATE = 0x000E;
const ERROR_CANNOT_IMPERSONATE = 1368;
const CO_E_RELOAD_DLL = 0x80004022;
const DMPAPER_P32KBIG = 95;
const SCARD_E_CARD_UNSUPPORTED = 0x8010001C;
const GETDEVICEUNITS = 42;
const MDM_V110_SPEED_19DOT2K = 0x7;
const ALG_SID_SSL3_MASTER = 1;
const WM_EXITSIZEMOVE = 0x0232;
const AF_IMPLINK = 3;
const RPC_C_MQ_JOURNAL_ALWAYS = 2;
const ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 1908;
const CE_BREAK = 0x10;
const MIIM_FTYPE = 0x00000100;
const ERROR_ARITHMETIC_OVERFLOW = 534;
const URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY = 0x00001201;
const PT_BEZIERTO = 0x04;
const szOID_CERTSRV_CA_VERSION = "1.3.6.1.4.1.311.21.1";
const CERT_COMPARE_NAME_STR_A = 7;
const ERROR_SXS_XML_E_BADPEREFINSUBSET = 14059;
const CERT_COMPARE_NAME_STR_W = 8;
const IMAGE_REL_ALPHA_INLINE_REFLONG = 0x0009;
const szOID_PKCS_7_DIGESTED = "1.2.840.113549.1.7.5";
const HTMAXBUTTON = 9;
const CRYPT_E_EXISTS = 0x80092005;
const MCI_CDA_STATUS_TYPE_TRACK = 0x00004001;
const CRYPT_E_INVALID_MSG_TYPE = 0x80091004;
const MSSIPOTF_E_PCONST_CHECK = 0x80097017;
const MCI_DEVTYPE_CD_AUDIO = 516;
const URLPOLICY_CREDENTIALS_MUST_PROMPT_USER = 0x00010000;
const MF_MENUBARBREAK = 0x00000020;
const WNNC_NET_3IN1 = 0x00270000;
const WDT_REMOTE_CALL = 0x52746457;
const APPCOMMAND_COPY = 36;
const FSHIFT = 0x04;
const DISP_E_PARAMNOTOPTIONAL = 0x8002000F;
const MCI_PUT = 0x0842;
const DFCS_BUTTON3STATE = 0x0008;
const MNS_MODELESS = 0x40000000;
const TAPE_CHECK_FOR_DRIVE_PROBLEM = 2;
const ERROR_DATABASE_FULL = 4314;
const PROCESSOR_ARCHITECTURE_AMD64 = 9;
const RPC_QUERY_SERVER_PRINCIPAL_NAME = 2;
const WNNC_NET_LANSTEP = 0x00080000;
const ERROR_CONNECTION_UNAVAIL = 1201;
const FILE_DEVICE_DISK_FILE_SYSTEM = 0x00000008;
const SPI_SETWAITTOKILLTIMEOUT = 0x007B;
const IP_DROP_MEMBERSHIP = 6;
const PFD_MAIN_PLANE = 0;
const SPI_SETFOREGROUNDLOCKTIMEOUT = 0x2001;
const JOY_BUTTON2CHG = 0x0200;
const PORT_STATUS_PAPER_JAM = 2;
const REG_STANDARD_FORMAT = 1;
const ERROR_BAD_PROVIDER = 1204;
const TYPE_E_UNKNOWNLCID = 0x8002802E;
const ERROR_PRINTQ_FULL = 61;
const SPI_GETDISABLEOVERLAPPEDCONTENT = 0x1040;
const CERT_INFO_ISSUER_UNIQUE_ID_FLAG = 9;
const VK_OEM_ENLW = 0xF4;
const CRYPT_STRING_ANY = 0x7;
const SET_FEATURE_ON_THREAD = 0x00000001;
const WVR_ALIGNTOP = 0x0010;
const MMIOM_SEEK = 2;
const SCHED_S_TASK_READY = 0x00041300;
const SPI_SETFONTSMOOTHINGTYPE = 0x200B;
const TPM_RIGHTALIGN = 0x0008;
const szOID_RSA_MD4RSA = "1.2.840.113549.1.1.3";
const WH_MOUSE = 7;
const PAN_STROKEVARIATION_INDEX = 5;
const MM_WIM_DATA = 0x3C0;
const MB_RETRYCANCEL = 0x00000005;
const LANG_CORSICAN = 0x83;
const CRYPT_MACHINE_DEFAULT = 0x1;
const UNIQUE_NAME = 0x00;
const WM_CLEAR = 0x0303;
const ERROR_DS_SEMANTIC_ATT_TEST = 8383;
const PSINJECT_ENDPAGECOMMENTS = 107;
const SPI_GETCLIENTAREAANIMATION = 0x1042;
const ERROR_EVENTLOG_FILE_CHANGED = 1503;
const CRYPT_GET_INSTALLED_OID_FUNC_FLAG = 0x1;
const MSGF_DIALOGBOX = 0;
const SYSPAL_STATIC = 1;
const MDMVOLFLAG_HIGH = 0x00000004;
const CRYPT_CHECK_FRESHNESS_TIME_VALIDITY = 0x400;
const ERROR_DS_DRA_BAD_DN = 8439;
const WNNC_NET_IBMAL = 0x00340000;
const SPAPI_E_BAD_INTERFACE_INSTALLSECT = 0x800F021D;
const SUBLANG_KYRGYZ_KYRGYZSTAN = 0x01;
const RPC_S_OUT_OF_RESOURCES = 1721;
const VSS_E_UNEXPECTED = 0x80042302;
const VK_PLAY = 0xFA;
const STG_E_FILEALREADYEXISTS = 0x80030050;
const TMPF_TRUETYPE = 0x04;
const LB_SETCARETINDEX = 0x019E;
const CRYPT_NDR_ENCODING = 0x2;
const _HEAPBADPTR = -6;
const MCI_DEVTYPE_DIGITAL_VIDEO = 520;
const EVENT_SYSTEM_DIALOGEND = 0x0011;
const VK_F3 = 0x72;
const __SIZEOF_LONG_DOUBLE__ = 16;
const PRSPEC_PROPID = 1;
const SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL = 0x00000016;
const SPI_SETMENUDROPALIGNMENT = 0x001C;
const PAN_LETT_OBLIQUE_WEIGHTED = 10;
const VIF_CANNOTCREATE = 0x00000800;
const SM_SERVERR2 = 89;
const CERT_COMPARE_KEY_SPEC = 9;
const SWP_DEFERERASE = 0x2000;
const VK_F6 = 0x75;
const MIDI_CACHE_BESTFIT = 2;
const DMDISPLAYFLAGS_TEXTMODE = 0x00000004;
const SKF_RCTLLATCHED = 0x08000000;
const MF_BYPOSITION = 0x00000400;
const OUT_DEVICE_PRECIS = 5;
const FRS_ERR_AUTHENTICATION = 8008;
const ERROR_INSTALL_PACKAGE_OPEN_FAILED = 1619;
const CERT_KEY_IDENTIFIER_PROP_ID = 20;
const IMAGE_REL_AMD64_REL32_1 = 0x0005;
const IMAGE_REL_AMD64_REL32_2 = 0x0006;
const IMAGE_REL_AMD64_REL32_3 = 0x0007;
const IMAGE_REL_AMD64_REL32_4 = 0x0008;
const TOKEN_ADJUST_GROUPS = 0x0040;
const VK_LEFT = 0x25;
const VER_LESS = 4;
const NTM_NONNEGATIVE_AC = 0x00010000;
const MOUSEEVENTF_MIDDLEDOWN = 0x0020;
const EXCEPTION_NONCONTINUABLE = 0x1;
const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE = 7;
const ERROR_WMI_SERVER_UNAVAILABLE = 4208;
const DRV_CONFIGURE = 0x0007;
const LANG_ZULU = 0x35;
const ERROR_INVALID_COMMAND_LINE = 1639;
const ENABLE_EXTENDED_FLAGS = 0x80;
const CERT_TRUST_INVALID_BASIC_CONSTRAINTS = 0x400;
const GGO_GRAY4_BITMAP = 5;
const IMAGE_REL_IA64_IMMGPREL64 = 0x001A;
const LOGPIXELSX = 88;
const LOGPIXELSY = 90;
const SEE_MASK_CLASSKEY = 0x00000003;
const HELPMSGSTRINGA = "commdlg_help";
const HP_TLS1PRF_SEED = 0x7;
const __WINNT = 1;
const ERROR_IPSEC_IKE_NO_PUBLIC_KEY = 13828;
const _SPACE = 0x8;
const ALG_SID_DES = 1;
const PRINTER_ATTRIBUTE_ENABLE_BIDI = 0x00000800;
const WAVE_FORMAT_96S08 = 0x00020000;
const MIXERCONTROL_CT_UNITS_CUSTOM = 0x00000000;
const _I16_MAX = 32767;
const SUBLANG_ASSAMESE_INDIA = 0x01;
const WAVE_FORMAT_96S16 = 0x00080000;
const __MINGW_HAVE_WIDE_C99_SCANF = 1;
const CMC_FAIL_INTERNAL_CA_ERROR = 11;
const CTRY_FAEROE_ISLANDS = 298;
const DV_E_FORMATETC = 0x80040064;
const PROV_MS_EXCHANGE = 5;
const MF_MENUBREAK = 0x00000040;
const GL_LEVEL_INFORMATION = 0x00000004;
const NRC_MAXAPPS = 0x36;
const ERROR_DS_PROTOCOL_ERROR = 8225;
const ERROR_EFS_ALG_BLOB_TOO_BIG = 6013;
const VK_NUMPAD0 = 0x60;
const DMPAPER_ISO_B4 = 42;
const ALG_SID_CAST = 6;
const ERROR_SXS_WRONG_SECTION_TYPE = 14009;
const RPC_E_CALL_REJECTED = 0x80010001;
const PAN_CONTRAST_VERY_HIGH = 9;
const DATA_E_FIRST = 0x80040130;
const PFD_SUPPORT_OPENGL = 0x00000020;
const SEE_MASK_ICON = 0x00000010;
const MCI_VD_PLAY_FAST = 0x00020000;
const COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE = 0x8011080D;
const VK_NUMPAD8 = 0x68;
const ERROR_ACCESS_DISABLED_BY_POLICY = 1260;
const ERROR_BAD_NETPATH = 53;
const IMAGE_SCN_ALIGN_128BYTES = 0x00800000;
const PAN_STROKE_GRADUAL_DIAG = 2;
const DRV_USER = 0x4000;
const DSS_PREFIXONLY = 0x0400;
const FRS_ERR_SERVICE_COMM = 8006;
const URLPOLICY_AUTHENTICATE_CHALLENGE_RESPONSE = 0x00010000;
const IMAGE_REL_ARM_GPREL12 = 0x0006;
const FE_FONTSMOOTHINGORIENTATIONBGR = 0x0000;
const GL_ID_READINGCONFLICT = 0x00000023;
const MIXER_GETLINECONTROLSF_ALL = 0x00000000;
const WNNC_NET_MSNET = 0x00010000;
const FILE_NAMED_STREAMS = 0x00040000;
const EM_GETFIRSTVISIBLELINE = 0x00CE;
const CERT_STORE_CTRL_CANCEL_NOTIFY = 5;
const STG_E_PROPSETMISMATCHED = 0x800300F0;
const SND_ALIAS_ID = 0x00110000;
const MCI_VD_STEP_REVERSE = 0x00020000;
const SCHED_E_SERVICE_NOT_LOCALSYSTEM = 6200;
const MARSHAL_E_LAST = 0x8004012F;
const CRYPT_OID_DECODE_OBJECT_EX_FUNC = "CryptDllDecodeObjectEx";
const BS_ICON = 0x00000040;
const CONNECT_UPDATE_RECENT = 0x00000002;
const CERT_REQUEST_ORIGINATOR_PROP_ID = 71;
const IMFT_RADIOCHECK = 0x00001;
const ISC_SHOWUICOMPOSITIONWINDOW = 0x80000000;
const SCARD_F_INTERNAL_ERROR = 0x80100001;
const IMAGE_REL_PPC_PAIR = 0x0012;
const PAN_PROP_OLD_STYLE = 2;
const CERT_FORTEZZA_DATA_PROP_ID = 18;
const DT_NOCLIP = 0x00000100;
const BACKUP_PROPERTY_DATA = 0x6;
const CC_ENABLETEMPLATEHANDLE = 0x40;
const GMEM_INVALID_HANDLE = 0x8000;
const MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20;
const MONITOR_DEFAULTTONULL = 0x00000000;
const ERROR_IPSEC_IKE_SRVQUERYCRED = 13856;
const ABM_NEW = 0x00000000;
const SUBLANG_SAMI_NORTHERN_FINLAND = 0x03;
const MF_CONV = 0x40000000;
const UPDFCACHE_NODATACACHE = 0x1;
const WS_EX_RIGHT = 0x00001000;
const CC_ENABLETEMPLATE = 0x20;
const CMSG_CTRL_DECRYPT = 2;
const HP_ALGID = 0x1;
const _MAX_WAIT_MALLOC_CRT = 60000;
const EVENT_E_LAST = 0x8004021F;
const THREAD_QUERY_INFORMATION = 0x0040;
const EMARCH_ENC_I17_IMM5C_INST_WORD_X = 3;
const ERROR_LOGON_NOT_GRANTED = 1380;
const X3_IMM20_SIGN_VAL_POS_X = 0;
const PDERR_RETDEFFAILURE = 0x1003;
const CERTSRV_E_SUBJECT_EMAIL_REQUIRED = 0x80094812;
const IMAGE_REL_EBC_REL32 = 0x0002;
const ERROR_INVALID_TABLE = 1628;
const IME_CMODE_KATAKANA = 0x0002;
const X3_P_SIGN_VAL_POS_X = 0;
const ENABLE_ECHO_INPUT = 0x4;
const NRC_SYSTEM = 0x40;
const CERT_CA_SUBJECT_FLAG = 0x80;
const EMR_ARC = 45;
const TPM_VERNEGANIMATION = 0x2000;
const ERROR_DS_CLASS_MUST_BE_CONCRETE = 8359;
const CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC = "CryptDllImportPrivateKeyInfoEx";
const DMCOLLATE_TRUE = 1;
const CAL_HEBREW = 8;
const SBS_BOTTOMALIGN = 0x0004;
const MCI_ANIM_WINDOW_DEFAULT = 0x00000000;
const WM_RBUTTONDBLCLK = 0x0206;
const EMARCH_ENC_I17_IC_INST_WORD_POS_X = 12;
const CERT_RDN_IA5_STRING = 7;
const COMADMIN_E_COMPFILE_CLASSNOTAVAIL = 0x80110427;
const CRYPT_FORMAT_RDN_REVERSE = 0x800;
const ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 1809;
const KLF_SETFORPROCESS = 0x00000100;
const ERROR_DS_DRA_MISSING_PARENT = 8460;
const NTDDI_WIN2KSP3 = 0x05000300;
const SUBLANG_GERMAN_LUXEMBOURG = 0x04;
const S_SERDDR = -14;
const ERROR_NOT_SUPPORTED = 50;
const POWER_ACTION_CRITICAL = 0x80000000;
const PS_ENDCAP_ROUND = 0x00000000;
const ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 5088;
const szOID_RSA_signedData = "1.2.840.113549.1.7.2";
const GCL_STYLE = -26;
const CO_E_APPNOTFOUND = 0x800401F5;
const ERROR_DESTINATION_ELEMENT_FULL = 1161;
const CS_OWNDC = 0x0020;
const CHANGER_SERIAL_NUMBER_VALID = 0x04000000;
const DM_ICMMETHOD = 0x00800000;
const CTRY_LIBYA = 218;
const CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG = 0x2;
const RANDOM_PADDING = 2;
const EVENTLOG_PAIRED_EVENT_INACTIVE = 0x0010;
const DNS_STATUS_DOTTED_NAME = 9558;
const CERT_CLOSE_STORE_FORCE_FLAG = 0x1;
const SCARD_READER_TYPE_SCSI = 0x08;
const S_SERDFQ = -13;
const REG_NONE = 0;
const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11;
const CBN_SETFOCUS = 3;
const RPC_C_HTTP_AUTHN_SCHEME_CERT = 0x00010000;
const IPPROTO_IGMP = 2;
const CFERR_NOFONTS = 0x2001;
const VK_BROWSER_FAVORITES = 0xAB;
const OPEN_ALWAYS = 4;
const DRV_ENABLE = 0x0002;
const ES_LEFT = 0x0000;
const ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 8515;
const ALG_SID_SSL2_MASTER = 5;
const DMORIENT_LANDSCAPE = 2;
const CDERR_MEMLOCKFAILURE = 0x000A;
const EM_GETSEL = 0x00B0;
const VFT2_UNKNOWN = 0x00000000;
const ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 8537;
const URLACTION_AUTOMATIC_DOWNLOAD_UI_MIN = 0x00002200;
const IPPROTO_IP = 0;
const MOD_ALT = 0x0001;
const PAN_STROKE_RAPID_VERT = 6;
const TARGET_IS_NT40_OR_LATER = 1;
const ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 8548;
const DNS_ERROR_INVALID_DATAFILE_NAME = 9652;
const SPI_GETACTIVEWINDOWTRACKING = 0x1000;
const EVENT_OBJECT_SELECTION = 0x8006;
const GL_ID_INPUTRADICAL = 0x00000025;
const WM_DEVMODECHANGE = 0x001B;
const RDW_INVALIDATE = 0x0001;
const SW_SMOOTHSCROLL = 0x0010;
const ERROR_IPSEC_IKE_NEG_STATUS_END = 13884;
const ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 8512;
const szOID_DS_EMAIL_REPLICATION = "1.3.6.1.4.1.311.21.19";
const CERT_STORE_PROV_SYSTEM_STORE_FLAG = 0x8;
const MB_CANCELTRYCONTINUE = 0x00000006;
const S_SERDLN = -6;
const HTNOWHERE = 0;
const SO_DISCDATA = 0x7002;
const IMAGE_SEPARATE_DEBUG_SIGNATURE = 0x4944;
const IMAGE_REL_MIPS_REFHI = 0x0004;
const WS_POPUP = 0x80000000;
const ACTIVEOBJECT_STRONG = 0x0;
const VP_TV_STANDARD_SECAM_K1 = 0x2000;
const WH_CALLWNDPROCRET = 12;
const CRYPT_OID_REG_FUNC_NAME_VALUE_NAME = "FuncName";
const LR_MONOCHROME = 0x0001;
const S_SERDMD = -10;
const IMAGE_DEBUG_TYPE_MISC = 4;
const RPC_C_AUTHN_DCE_PRIVATE = 1;
const szOID_BUSINESS_CATEGORY = "2.5.4.15";
const PORT_STATUS_OFFLINE = 1;
const IMAGE_REL_SH3_DIRECT8_LONG = 0x0005;
const VER_SUITE_TERMINAL = 0x00000010;
const RPC_NCA_FLAGS_BROADCAST = 0x00000002;
const LOCALE_SMONDECIMALSEP = 0x00000016;
const FILE_SEQUENTIAL_WRITE_ONCE = 0x00100000;
const DMBIN_AUTO = 7;
const RPC_C_MQ_USE_EXISTING_SECURITY = 0x0004;
const COLOR_MENU = 4;
const LANG_TAMIL = 0x49;
const IMAGE_REL_ALPHA_REFQUAD = 0x0002;
const SPI_SETUIEFFECTS = 0x103F;
const IPPROTO_ND = 77;
const sz_CERT_STORE_PROV_PHYSICAL_W = "Physical";
const XTYPF_NODATA = 0x0004;
const IMAGE_REL_PPC_NEG = 0x0100;
const ERROR_DS_CANT_MOVE_RESOURCE_GROUP = 8499;
const MDM_HDLCPPP_SPEED_DEFAULT = 0x0;
const CMC_FAIL_BAD_CERT_ID = 4;
const S_SERDPT = -12;
const ESB_DISABLE_UP = 0x0001;
const RTL_VRF_FLG_HANDLE_CHECKS = 0x00000004;
const IMAGE_REL_IA64_DIR32NB = 0x0010;
const IMAGE_REL_MIPS_REFLO = 0x0005;
const CRYPT_MODE_CBCI = 6;
const PAN_MIDLINE_LOW_POINTED = 12;
const LOCALE_SNATIVELANGNAME = 0x00000004;
const SB_ENDSCROLL = 8;
const ERROR_INDEX_ABSENT = 1611;
const SUBLANG_KAZAK_KAZAKHSTAN = 0x01;
const CERT_INFO_SERIAL_NUMBER_FLAG = 2;
const ACCESS_ALLOWED_CALLBACK_ACE_TYPE = 0x9;
const CMSG_VERIFY_SIGNER_CERT = 2;
const LPD_SHARE_STENCIL = 0x00000080;
const CERT_UNICODE_VALUE_ERR_INDEX_SHIFT = 0;
const IMAGE_SYM_CLASS_LABEL = 0x0006;
const SUBLANG_PUNJABI_INDIA = 0x01;
const COMQC_E_UNTRUSTED_ENQUEUER = 0x80110606;
const ERROR_DS_DRA_EXTN_CONNECTION_FAILED = 8466;
const CRYPT_VERIFY_CONTEXT_SIGNATURE = 0x20;
const ERROR_SET_POWER_STATE_FAILED = 1141;
const S_SERDSH = -11;
const TAPE_DRIVE_GET_LOGICAL_BLK = 0x00200000;
const szOID_CMC_ID_POP_LINK_RANDOM = "1.3.6.1.5.5.7.7.22";
const S_SERDSR = -15;
const VTDATEGRE_MAX = 2958465;
const ERROR_DS_OBJ_STRING_NAME_EXISTS = 8305;
const SUBLANG_QUECHUA_BOLIVIA = 0x01;
const szOID_ANSI_X942_DH = "1.2.840.10046.2.1";
const LOCALE_SABBREVMONTHNAME2 = 0x00000045;
const LOCALE_SABBREVMONTHNAME5 = 0x00000048;
const LOCALE_SABBREVMONTHNAME6 = 0x00000049;
const SM_XVIRTUALSCREEN = 76;
const LOCALE_SABBREVMONTHNAME8 = 0x0000004B;
const LOCALE_SABBREVMONTHNAME9 = 0x0000004C;
const S_SERDTP = -8;
const MSSIPOTF_E_TABLE_TAGORDER = 0x80097006;
const NEWFILEOPENORD = 1547;
const REPLACEFILE_WRITE_THROUGH = 0x1;
const MIIM_ID = 0x00000002;
const OSS_TYPE_NOT_SUPPORTED = 0x8009301E;
const IMAGE_SYM_TYPE_INT = 0x0004;
const ALG_SID_DSS_DMS = 2;
const MM_WOM_OPEN = 0x3BB;
const LOCALE_SISO3166CTRYNAME = 0x0000005A;
const MB_MISCMASK = 0x0000C000;
const CRYPT_RETRIEVE_MULTIPLE_OBJECTS = 0x1;
const MM_STREAM_OPEN = 0x3D4;
const DMPAPER_A3_TRANSVERSE = 67;
const APPCLASS_STANDARD = 0x00000000;
const ACCESS_STICKYKEYS = 0x0001;
const ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 8465;
const CRYPTPROTECT_PROMPT_ON_UNPROTECT = 0x1;
const PRINTER_CONTROL_RESUME = 2;
const ERROR_CLUSTER_NODE_NOT_READY = 5072;
const SHGFI_SHELLICONSIZE = 0x000000004;
const BS_AUTOCHECKBOX = 0x00000003;
const EWX_REBOOT = 0x00000002;
const MAX_NUM_REASONS = 256;
const ERROR_DUP_DOMAINNAME = 1221;
const IMAGE_REL_IA64_ABSOLUTE = 0x0000;
const IACE_CHILDREN = 0x0001;
const IMN_OPENSTATUSWINDOW = 0x0002;
const CERT_PROT_ROOT_INHIBIT_ADD_AT_INIT_FLAG = 0x2;
const CS_E_ADMIN_LIMIT_EXCEEDED = 0x8004016D;
const WA_CLICKACTIVE = 2;
const URLPOLICY_CREDENTIALS_CONDITIONAL_PROMPT = 0x00020000;
const MIXER_GETCONTROLDETAILSF_LISTTEXT = 0x00000001;
const CB_GETLBTEXTLEN = 0x0149;
const IOCTL_SMARTCARD_SET_PROTOCOL = 12;
const szOID_X957 = "1.2.840.10040";
const EMARCH_ENC_I17_IMM5C_VAL_POS_X = 16;
const EMARCH_ENC_I17_IMM41c_INST_WORD_X = 2;
const szOID_DS = "2.5";
const TT_ENABLED = 0x0002;
const sz_CERT_STORE_PROV_MEMORY = "Memory";
const ERROR_INVALID_USER_BUFFER = 1784;
const PSH_USEHPLWATERMARK = 0x00020000;
const DS_NOFAILCREATE = 0x0010;
const IMAGE_SUBSYSTEM_POSIX_CUI = 7;
const DLGC_WANTCHARS = 0x0080;
const SPAPI_E_SET_SYSTEM_RESTORE_POINT = 0x800F0236;
const VTDATEGRE_MIN = -657434;
const OFN_NOLONGNAMES = 0x40000;
const HP_HASHVAL = 0x2;
const ERROR_SXS_XML_E_UNCLOSEDCOMMENT = 14063;
const PSP_USEICONID = 0x00000004;
const DSPRINT_PUBLISH = 0x00000001;
const DLL_THREAD_DETACH = 3;
const MCI_SEQ_MAPPER = 65535;
const EMARCH_ENC_I17_IMM41a_INST_WORD_X = 1;
const SW_OTHERUNZOOM = 4;
const RPC_C_BINDING_MAX_TIMEOUT = 9;
const R2_COPYPEN = 13;
const PAN_SERIF_OBTUSE_COVE = 3;
const META_BITBLT = 0x0922;
const CERT_CREATE_SELFSIGN_NO_KEY_INFO = 2;
const MAXERRORLENGTH = 256;
const EN_ALIGN_RTL_EC = 0x0701;
const WNNC_NET_OBJECT_DIRE = 0x00300000;
const PD_EXCLUSIONFLAGS = 0x1000000;
const FILE_SYSTEM_DIR = 4;
const STATE_SYSTEM_SELFVOICING = 0x00080000;
const MB_OKCANCEL = 0x00000001;
const META_RESTOREDC = 0x0127;
const PIDDSI_LINECOUNT = 0x00000005;
const DMPAPER_10X14 = 16;
const URLACTION_COOKIES_ENABLED = 0x00001A10;
const ERROR_UNKNOWN_PRINT_MONITOR = 3000;
const PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST = 0x00000200;
const WM_NCMOUSEMOVE = 0x00A0;
const ERROR_DS_SHUTTING_DOWN = 8364;
const URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY = 0x00001204;
const IMAGE_REL_BASED_DIR64 = 10;
const CONTEXT_E_ROLENOTFOUND = 0x8004E00C;
const CRYPT_LDAP_INSERT_ENTRY_ATTRIBUTE = 0x8000;
const OF_CANCEL = 0x800;
const MCI_SAVE = 0x0813;
const SCHED_E_INVALID_TASK = 0x8004130E;
const TA_CENTER = 6;
const SERVICES_FAILED_DATABASEA = "ServicesFailed";
const XST_DATARCVD = 6;
const RPC_BUFFER_COMPLETE = 0x00001000;
const APPLICATION_VERIFIER_LOCK_IN_FREED_HEAP = 0x0202;
const WM_CONTEXTMENU = 0x007B;
const DMPAPER_P32KBIG_ROTATED = 108;
const STG_E_BADBASEADDRESS = 0x80030110;
const SCARD_READER_TYPE_IDE = 0x10;
const SE_DACL_DEFAULTED = 0x0008;
const FW_MEDIUM = 500;
const MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID = 16;
const LPD_SWAP_COPY = 0x00000400;
const VP_FLAGS_BRIGHTNESS = 0x0040;
const DMDO_180 = 2;
const CERT_VERIFY_ALLOW_MORE_USAGE_FLAG = 0x8;
const RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT = 0x00000001;
const PAN_STROKE_GRADUAL_TRAN = 3;
const LAYOUT_VBH = 0x00000004;
const VIEW_S_ALREADY_FROZEN = 0x00040140;
const XACT_E_ABORTING = 0x8004D029;
const LOCALE_IDEFAULTCOUNTRY = 0x0000000A;
const IDRETRY = 4;
const STG_S_CANNOTCONSOLIDATE = 0x00030206;
const MM_MIM_ERROR = 0x3C5;
const PSH_WIZARDCONTEXTHELP = 0x00001000;
const PSP_USEREFPARENT = 0x00000040;
const OBJ_EXTPEN = 11;
const BATTERY_FLAG_LOW = 0x2;
const IMAGE_DEBUG_TYPE_FPO = 3;
const WM_NCCREATE = 0x0081;
const NTE_BAD_HASH_STATE = 0x8009000C;
const ERROR_DS_DRA_SINK_DISABLED = 8457;
const HC_NOREMOVE = 3;
const WM_SYSCOMMAND = 0x0112;
const CRYPT_IMPL_HARDWARE = 1;
const WS_EX_TOOLWINDOW = 0x00000080;
const ERROR_NO_MORE_ITEMS = 259;
const szOID_OIWDIR_CRPT = "1.3.14.7.2.1";
const MSSIPOTF_E_BAD_MAGICNUMBER = 0x80097004;
const DEVICE_FONTTYPE = 0x002;
const VALID_NTFT = 0xC0;
const VK_CAPITAL = 0x14;
const XACT_S_SINGLEPHASE = 0x0004D009;
const ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = 14027;
const ERROR_ACCOUNT_DISABLED = 1331;
const GCL_REVERSECONVERSION = 0x0002;
const CDS_GLOBAL = 0x00000008;
const CERT_ENROLLMENT_PROP_ID = 26;
const ERROR_DEVICE_NOT_PARTITIONED = 1107;
const FLS_MAXIMUM_AVAILABLE = 128;
const SM_CXMAXTRACK = 59;
const CBS_OEMCONVERT = 0x0080;
const WT_EXECUTEINWAITTHREAD = 0x00000004;
const RT_DLGINCLUDE = 17;
const IMR_CANDIDATEWINDOW = 0x0002;
const MCI_SET_AUDIO_LEFT = 0x00000001;
const CERT_TRUST_PUB_ALLOW_MACHINE_ADMIN_TRUST = 0x1;
const __MINGW_PROCNAMEEXT_AW = "A";
const ULW_EX_NORESIZE = 0x00000008;
const ERROR_MORE_WRITES = 1120;
const DESKTOP_JOURNALRECORD = 0x0010;
const WAVE_FORMAT_4M16 = 0x00000400;
const ERROR_CTX_BAD_VIDEO_MODE = 7025;
const SSF_INDICATOR = 0x00000004;
const CRYPTPROTECTMEMORY_SAME_LOGON = 0x2;
const PROFILE_KERNEL = 0x20000000;
const FILE_SYNCHRONOUS_IO_ALERT = 0x00000010;
const BACKUP_LINK = 0x5;
const CDERR_GENERALCODES = 0x0000;
const SUBLANG_CROATIAN_CROATIA = 0x01;
const IPPORT_NETSTAT = 15;
const IDIGNORE = 5;
const DT_SINGLELINE = 0x00000020;
const ERROR_AUDITING_DISABLED = 0xC0090001;
const MK_ALT = 0x20;
const ASPECTY = 42;
const PWR_OK = 1;
const szOID_SUBJECT_KEY_IDENTIFIER = "2.5.29.14";
const SKF_CONFIRMHOTKEY = 0x00000008;
const FILE_FLAG_BACKUP_SEMANTICS = 0x2000000;
const FR_DOWN = 0x1;
const BF_BOTTOM = 0x0008;
const DMPAPER_JENV_CHOU4 = 74;
const SPAPI_E_NO_AUTHENTICODE_CATALOG = 0x800F023F;
const VK_PROCESSKEY = 0xE5;
const FILE_TRAVERSE = 0x0020;
const SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE = 0xF;
const ERROR_CLUSTER_RESNAME_NOT_FOUND = 5080;
const PAN_CULTURE_LATIN = 0;
const SB_VERT = 1;
const PRODUCT_STORAGE_STANDARD_SERVER = 0x15;
const GA_ROOT = 2;
const CAL_SSHORTDATE = 0x00000005;
const ERROR_SECTOR_NOT_FOUND = 27;
const SORT_GEORGIAN_MODERN = 0x1;
const ERROR_CLUSTER_NODE_SHUTTING_DOWN = 5073;
const PP_IMPTYPE = 3;
const CRYPT_USERDATA = 1;
const CRL_DIST_POINT_NO_NAME = 0;
const RPC_S_CALLPENDING = 0x80010115;
const NTE_BAD_HASH = 0x80090002;
const ERROR_SUCCESS_REBOOT_REQUIRED = 3010;
const IGP_PROPERTY = 0x00000004;
const CERT_CHAIN_POLICY_IGNORE_CTL_NOT_TIME_VALID_FLAG = 0x2;
const SS_BITMAP = 0x0000000E;
const SUBLANG_ENGLISH_UK = 0x02;
const SUBLANG_ENGLISH_US = 0x01;
const NTE_NO_MEMORY = 0x8009000E;
const STRETCHBLT = 2048;
const CO_E_FIRST = 0x800401F0;
const LANG_GALICIAN = 0x56;
const CMSG_CTRL_DEL_SIGNER = 7;
const VFT2_DRV_SYSTEM = 0x00000007;
const DTR_CONTROL_ENABLE = 0x1;
const SUBLANG_ARABIC_YEMEN = 0x09;
const CRYPTPROTECTMEMORY_CROSS_PROCESS = 0x1;
const PSD_ENABLEPAGESETUPTEMPLATE = 0x8000;
const ERROR_SCREEN_ALREADY_LOCKED = 1440;
const FACILITY_CONFIGURATION = 33;
const ARW_TOPLEFT = 0x0002;
const ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = 13810;
const ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = 5047;
const ERROR_LAST_ADMIN = 1322;
const ISMEX_CALLBACK = 0x00000004;
const CRYPTPROTECT_AUDIT = 0x10;
const ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = 14048;
const _MAX_DRIVE = 3;
const CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 0x1000;
const EM_LINESCROLL = 0x00B6;
const CRYPT_FIRST = 1;
const WM_FONTCHANGE = 0x001D;
const KLF_REPLACELANG = 0x00000010;
const ERROR_INVALID_MONITOR_HANDLE = 1461;
const OFN_SHOWHELP = 0x10;
const UNWIND_HISTORY_TABLE_SIZE = 12;
const URLACTION_BEHAVIOR_MIN = 0x00002000;
const XACT_S_ABORTING = 0x0004D008;
const SEE_MASK_FLAG_DDEWAIT = 0x00000100;
const _DIGIT = 0x4;
const DC_PERSONALITY = 25;
const WINSTA_WRITEATTRIBUTES = 0x0010;
const HIST_NO_OF_BUCKETS = 24;
const APPCOMMAND_MEDIA_FAST_FORWARD = 49;
const SUBLANG_NEPALI_NEPAL = 0x01;
const STGM_CONVERT = 0x00020000;
const SEARCH_PRI_NO_SEQ = 0x5;
const ERROR_PARTIAL_COPY = 299;
const PAN_XHEIGHT_DUCKING_SMALL = 5;
const SCARD_READER_EJECTS = 0x00000002;
const RPC_C_PROFILE_MATCH_BY_BOTH = 4;
const OSS_CANT_OPEN_TRACE_FILE = 0x8009301B;
const CERT_COMPARE_ANY = 0;
const JOB_NOTIFY_FIELD_PRIORITY = 0x0E;
const CO_E_CLSREG_INCONSISTENT = 0x8000401F;
const IMAGE_SIZEOF_NT_OPTIONAL64_HEADER = 240;
const MOUSEEVENTF_MOVE = 0x0001;
const RPC_E_OUT_OF_RESOURCES = 0x80010101;
const KEY_SET_VALUE = 0x0002;
const CMC_STATUS_SUCCESS = 0;
const IMAGE_REL_ARM_TOKEN = 0x0005;
const MDM_PIAFS_OUTGOING = 1;
const CONTEXT_EXCEPTION_REQUEST = 0x40000000;
const MM_JOY2ZMOVE = 0x3A3;
const CERT_AUTO_ENROLL_PROP_ID = 21;
const PROCESS_QUERY_INFORMATION = 0x0400;
const IMAGE_FILE_MACHINE_R10000 = 0x0168;
const IMAGE_FILE_NET_RUN_FROM_SWAP = 0x0800;
const DNS_ERROR_INVALID_TYPE = 9551;
const IMAGE_REL_ALPHA_REFLO = 0x000B;
const PROCESS_SET_INFORMATION = 0x0200;
const ERROR_IPSEC_MM_POLICY_IN_USE = 13005;
const MMIO_DENYNONE = 0x00000040;
const PERF_NO_UNIQUE_ID = -1;
const OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME = "OutOfProcessFunctionTableCallback";
const XACT_E_ALREADYOTHERSINGLEPHASE = 0x8004D000;
const ERROR_INDIGENOUS_TYPE = 4338;
const CO_E_RELEASED = 0x800401FF;
const SWP_ASYNCWINDOWPOS = 0x4000;
const CLIENTSITE_E_FIRST = 0x80040190;
const COMADMIN_E_AMBIGUOUS_APPLICATION_NAME = 0x8011045C;
const NI_OPENCANDIDATE = 0x0010;
const SE_ERR_NOASSOC = 31;
const ERROR_TOO_MANY_SECRETS = 1381;
const MDM_HDLCPPP_AUTH_MSCHAP = 0x4;
const VREFRESH = 116;
const __MINGW64_VERSION_MINOR = 0;
const CM_CMYK_COLOR = 0x00000004;
const __SIG_ATOMIC_MAX__ = 2147483647;
const DCBA_FACEDOWNRIGHT = 0x0103;
const MOUSEEVENTF_RIGHTDOWN = 0x0008;
const VER_PLATFORMID = 0x0000008;
const ERROR_WMI_ITEMID_NOT_FOUND = 4202;
const ERROR_INVALID_WINDOW_HANDLE = 1400;
const APPLICATION_VERIFIER_THREAD_NOT_LOCK_OWNER = 0x0214;
const MAXIMUM_SMARTCARD_READERS = 10;
const TAPE_QUERY_DEVICE_ERROR_DATA = 4;
const EMR_GRADIENTFILL = 118;
const XACT_E_INDOUBT = 0x8004D016;
const ERROR_SPECIAL_ACCOUNT = 1371;
const IMAGE_REL_SHM_REFHALF = 0x0015;
const ACCESS_DS_OBJECT_TYPE_NAME_A = "Directory Service Object";
const PS_COSMETIC = 0x00000000;
const PIDMSI_RATING = 0x00000009;
const RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH = 0x1;
const IMAGE_REL_ALPHA_REFLONGNB = 0x0010;
const ACCESS_DS_OBJECT_TYPE_NAME_W = "Directory Service Object";
const SUBLANG_SPANISH_COSTA_RICA = 0x05;
const IMAGE_REL_ALPHA_REFQ1 = 0x0015;
const IMAGE_REL_ALPHA_REFQ3 = 0x0013;
const SCARD_E_ICC_INSTALLATION = 0x80100020;
const ERROR_INVALID_SEGMENT_NUMBER = 180;
const __SIZEOF_PTRDIFF_T__ = 8;
const SEEK_SET = 0;
const CRYPT_ACQUIRE_COMPARE_KEY_FLAG = 0x4;
const LPTx = 0x80;
const IMEVER_0310 = 0x0003000A;
const COMADMIN_E_REGISTERTLB = 0x80110430;
const DMPAPER_PENV_6 = 101;
const ERROR_INVALID_STACKSEG = 189;
const RPC_C_HTTP_FLAG_IGNORE_CERT_CN_INVALID = 8;
const ODT_MENU = 1;
const OUT_STRING_PRECIS = 1;
const CRYPT_MODE_CBC = 1;
const DNS_ERROR_DP_ALREADY_EXISTS = 9902;
const lst10 = 0x0469;
const HC_SYSMODALOFF = 5;
const MSSIPOTF_E_FILE = 0x80097013;
const OF_SHARE_DENY_NONE = 0x40;
const CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY = 1;
const DMPAPER_JENV_YOU4_ROTATED = 92;
const DATE_RTLREADING = 0x00000020;
const SPAPI_E_INVALID_REG_PROPERTY = 0x800F0209;
const GL_ID_PRIVATE_FIRST = 0x00008000;
const WM_MOUSELAST = 0x020D;
const ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302;
const EMR_SETVIEWPORTORGEX = 12;
const EN_ERRSPACE = 0x0500;
const LCMAP_KATAKANA = 0x00200000;
const PRODUCT_UNDEFINED = 0x0;
const __MSVCRT__ = 1;
const TAPE_RESET_STATISTICS = 2;
const FOF_CONFIRMMOUSE = 0x0002;
const BS_BITMAP = 0x00000080;
const CRYPT_MODE_CFB = 4;
const TMPF_VECTOR = 0x02;
const SEC_PROTECTED_IMAGE = 0x2000000;
const LB_SELECTSTRING = 0x018C;
const PROV_DSS = 3;
const SPI_GETHUNGAPPTIMEOUT = 0x0078;
const DM_PAPERSIZE = 0x00000002;
const SERVICE_ACCEPT_PARAMCHANGE = 0x00000008;
const SHGFI_USEFILEATTRIBUTES = 0x000000010;
const IMAGE_SEPARATE_DEBUG_MISMATCH = 0x8000;
const EMR_STROKEPATH = 64;
const SUBLANG_VIETNAMESE_VIETNAM = 0x01;
const GGO_NATIVE = 2;
const DM_LOGPIXELS = 0x00020000;
const CRYPT_SERVER = 0x400;
const GETSETPAPERMETRICS = 35;
const ERROR_DS_DRS_EXTENSIONS_CHANGED = 8594;
const ERROR_CTX_CONSOLE_DISCONNECT = 7041;
const DFCS_PUSHED = 0x0200;
const ERROR_PRINTER_DRIVER_BLOCKED = 3014;
const CERTSRV_E_BAD_REQUESTSTATUS = 0x80094003;
const SUBLANG_FILIPINO_PHILIPPINES = 0x01;
const FOF_SIMPLEPROGRESS = 0x0100;
const szOID_RSA_SSA_PSS = "1.2.840.113549.1.1.10";
const IMAGE_COMDAT_SELECT_EXACT_MATCH = 4;
const SS_PATHELLIPSIS = 0x00008000;
const SUBLANG_SPANISH_NICARAGUA = 0x13;
const ERROR_DS_DRA_REF_NOT_FOUND = 8449;
const ERROR_HOTKEY_NOT_REGISTERED = 1419;
const MOD_SQSYNTH = 3;
const ERROR_MEDIA_INCOMPATIBLE = 4315;
const ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = 1936;
const FACILITY_DISPATCH = 2;
const RESOURCEDISPLAYTYPE_SHARE = 0x00000003;
const RPC_C_STATS_CALLS_IN = 0;
const EMARCH_ENC_I17_IMM41c_VAL_POS_X = 40;
const VSS_E_OBJECT_NOT_FOUND = 0x80042308;
const DCX_EXCLUDEUPDATE = 0x00000100;
const PP_CONTEXT_INFO = 11;
const FILE_CURRENT = 1;
const TRUNCATE_EXISTING = 5;
const RDW_ERASENOW = 0x0200;
const ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION = 7;
const WINSTA_EXITWINDOWS = 0x0040;
const CTRY_OMAN = 968;
const SO_DEBUG = 0x0001;
const CERT_STORE_OPEN_EXISTING_FLAG = 0x4000;
const CRYPT_DECODE_SHARE_OID_STRING_FLAG = 0x4;
const __MINGW_HAVE_WIDE_C99_PRINTF = 1;
const JOY_CAL_READ3 = 0x00040000;
const JOY_CAL_READ4 = 0x00080000;
const JOY_CAL_READ5 = 0x00400000;
const IMPLINK_IP = 155;
const VARCMP_NULL = 3;
const LOCALE_SMONGROUPING = 0x00000018;
const OUTPUT_DEBUG_STRING_EVENT = 8;
const DRAGDROP_E_FIRST = 0x80040100;
const CF_SELECTSCRIPT = 0x400000;
const _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_MEMORY = 0;
const MCI_DEVTYPE_ANIMATION = 519;
const JOB_OBJECT_ASSIGN_PROCESS = 0x0001;
const IMC_SETCOMPOSITIONFONT = 0x000A;
const GGO_GRAY2_BITMAP = 4;
const CRL_REASON_KEY_COMPROMISE_FLAG = 0x40;
const CHINESEBIG5_CHARSET = 136;
const SHTDN_REASON_FLAG_DIRTY_UI = 0x08000000;
const DCTT_DOWNLOAD_OUTLINE = 0x0000008;
const WNNC_NET_SHIVA = 0x00330000;
const SHGNLI_NOUNIQUE = 0x000000004;
const CHANGER_TRUE_EXCHANGE_CAPABLE = 0x80000008;
const IMAGE_FILE_MACHINE_ALPHA = 0x0184;
const CERT_UNICODE_RDN_ERR_INDEX_MASK = 0x3FF;
const SCARD_PROVIDER_PRIMARY = 1;
const DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 9606;
const VIF_CANNOTLOADLZ32 = 0x00080000;
const CAL_GREGORIAN_ARABIC = 10;
const WININETINFO_OPTION_LOCK_HANDLE = 65534;
const SCARD_STATE_IGNORE = 0x00000001;
const szOID_KP_DOCUMENT_SIGNING = "1.3.6.1.4.1.311.10.3.12";
const CERT_SYSTEM_STORE_LOCAL_MACHINE_ID = 2;
const CRYPT_STRING_BASE64_ANY = 0x6;
const WS_MAXIMIZEBOX = 0x00010000;
const RPC_S_ENTRY_ALREADY_EXISTS = 1760;
const MIIM_TYPE = 0x00000010;
const ERROR_DS_NAME_TYPE_UNKNOWN = 8351;
const CRYPT_KEYID_DELETE_FLAG = 0x10;
const CERT_STORE_PROV_FIND_CRL_FUNC = 17;
const JOB_NOTIFY_FIELD_BYTES_PRINTED = 0x17;
const szOID_CERTIFICATE_REVOCATION_LIST = "2.5.4.39";
const PDERR_PRINTERCODES = 0x1000;
const CRYPT_ACCUMULATIVE_TIMEOUT = 0x800;
const ANYSIZE_ARRAY = 1;
const CERT_PHYSICAL_STORE_GROUP_POLICY_NAME = ".GroupPolicy";
const ERROR_INVALID_SERVER_STATE = 1352;
const CERT_AUTH_ROOT_CAB_FILENAME = "authrootstl.cab";
const APD_STRICT_DOWNGRADE = 0x00000002;
const szOID_DSALG = "2.5.8";
const ERROR_SHUTDOWN_CLUSTER = 5008;
const THREAD_DIRECT_IMPERSONATION = 0x0200;
const ERROR_PROCESS_ABORTED = 1067;
const URLACTION_CROSS_DOMAIN_DATA = 0x00001406;
const SPI_ICONVERTICALSPACING = 0x0018;
const CERT_STORE_PROV_WRITE_CERT_FUNC = 2;
const IMAGE_SCN_ALIGN_4096BYTES = 0x00D00000;
const MDM_AUTO_ML_DEFAULT = 0x0;
const szOID_OIWSEC_shaDSA = "1.3.14.3.2.13";
const SCARD_CLASS_VENDOR_INFO = 1;
const FILE_DEVICE_FIPS = 0x0000003A;
const SUBLANG_IGBO_NIGERIA = 0x01;
const STATE_SYSTEM_LINKED = 0x00400000;
const ERROR_PRINT_CANCELLED = 63;
const KEY_QUERY_VALUE = 0x0001;
const szOID_ARCHIVED_KEY_ATTR = "1.3.6.1.4.1.311.21.13";
const HELP_INDEX = 0x0003;
const CRYPTPROTECT_UI_FORBIDDEN = 0x1;
const VER_PLATFORM_WIN32s = 0;
const CERT_STORE_NO_CRYPT_RELEASE_FLAG = 0x1;
const CRYPT_WRITE = 0x10;
const MDMSPKR_CALLSETUP = 0x00000003;
const SM_CYICON = 12;
const NI_IMEMENUSELECTED = 0x0018;
const PRINTER_STATUS_ERROR = 0x00000002;
const CERT_DESCRIPTION_PROP_ID = 13;
const ERROR_NO_SUCH_PACKAGE = 1364;
const FILE_DEVICE_ACPI = 0x00000032;
const METRICS_USEDEFAULT = -1;
const szOID_SERIALIZED = "1.3.6.1.4.1.311.10.3.3.1";
const SPI_GETFASTTASKSWITCH = 0x0023;
const ERROR_DS_OBJ_TOO_LARGE = 8312;
const CO_E_LOOKUPACCSIDFAILED = 0x80010130;
const SCARD_E_FILE_NOT_FOUND = 0x80100024;
const IMAGE_SCN_MEM_NOT_PAGED = 0x08000000;
const GCPCLASS_LATIN = 1;
const SPI_SETMOUSESIDEMOVETHRESHOLD = 0x0089;
const ERROR_DS_AUX_CLS_TEST_FAIL = 8389;
const RPC_S_CALL_CANCELLED = 1818;
const CONTEXT_E_NOCONTEXT = 0x8004E004;
const SCARD_E_UNKNOWN_READER = 0x80100009;
const PF_XMMI64_INSTRUCTIONS_AVAILABLE = 10;
const CREATE_THREAD_DEBUG_EVENT = 2;
const TAPE_SPACE_SEQUENTIAL_SMKS = 9;
const ERROR_BIDI_STATUS_OK = 0;
const LCID_SUPPORTED = 0x00000002;
const LOGON32_LOGON_UNLOCK = 7;
const WINEVENT_INCONTEXT = 0x0004;
const EMR_EXTTEXTOUTA = 83;
const EMR_EXTTEXTOUTW = 84;
const X3_IMM39_1_SIGN_VAL_POS_X = 36;
const RID_INPUT = 0x10000003;
const APPCOMMAND_MICROPHONE_VOLUME_MUTE = 24;
const RPC_S_INVALID_STRING_UUID = 1705;
const AF_LAT = 14;
const SCARD_E_NO_ACCESS = 0x80100027;
const RPC_S_INCOMPLETE_NAME = 1755;
const DNS_ERROR_NO_DNS_SERVERS = 9852;
const CO_E_LAST = 0x800401FF;
const ERROR_SETMARK_DETECTED = 1103;
const JOB_OBJECT_UILIMIT_WRITECLIPBOARD = 0x00000004;
const OFN_EX_NOPLACESBAR = 0x1;
const IMAGE_REL_SH_NOMODE = 0x8000;
const READ_THRESHOLDS = 0xD1;
const DDL_DRIVES = 0x4000;
const CONTEXT_E_FIRST = 0x8004E000;
const NRC_NOCALL = 0x14;
const IME_CHOTKEY_SHAPE_TOGGLE = 0x11;
const VK_ZOOM = 0xFB;
const LB_INSERTSTRING = 0x0181;
const CTRY_MACAU = 853;
const FILE_FLAG_NO_BUFFERING = 0x20000000;
const CRYPT_E_UNEXPECTED_ENCODING = 0x80091005;
const ERROR_USER_EXISTS = 1316;
const ERROR_DS_SECURITY_CHECKING_ERROR = 8413;
const DMMEDIA_GLOSSY = 3;
const TAPE_RETURN_ENV_INFO = 1;
const NCBDGRECV = 0x21;
const MSSIPOTF_E_FAILED_POLICY = 0x80097010;
const EMR_GLSBOUNDEDRECORD = 103;
const DNS_ERROR_AXFR = 9752;
const PP_ENUMALGS = 1;
const CERT_DATA_ENCIPHERMENT_KEY_USAGE = 0x10;
const DFC_SCROLL = 3;
const PIDDSI_HEADINGPAIR = 0x0000000C;
const CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT = 0x2000;
const NCBNAMSZ = 16;
const FD_CONNECT = 0x10;
const szOID_PKCS_10 = "1.2.840.113549.1.10";
const PRINTER_STATUS_WARMING_UP = 0x00010000;
const ILLUMINANT_D50 = 4;
const ILLUMINANT_D55 = 5;
const NRC_SABORT = 0x18;
const SCS_DOS_BINARY = 1;
const ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 8538;
const ERROR_CLUSTER_INVALID_NETWORK = 5054;
const FONTDLGORD = 1542;
const ILLUMINANT_D65 = 6;
const PRINTRATEUNIT_CPS = 2;
const MCI_PAUSE = 0x0809;
const TIMEOUT_ASYNC = 0xFFFFFFFF;
const IME_CMODE_SOFTKBD = 0x0080;
const PIDMSI_SUPPLIER = 0x00000003;
const APPLICATION_VERIFIER_WAIT_IN_DLLMAIN = 0x0304;
const META_CREATEFONTINDIRECT = 0x02FB;
const DMPAPER_EXECUTIVE = 7;
const IDC_ARROW = 32512;
const szOID_PKCS_12_FRIENDLY_NAME_ATTR = "1.2.840.113549.1.9.20";
const URLACTION_SHELL_INSTALL_DTITEMS = 0x00001800;
const PP_ENUMEX_SIGNING_PROT = 40;
const ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 8535;
const BI_PNG = 5;
const MIXERCONTROL_CT_UNITS_PERCENT = 0x00050000;
const ILLUMINANT_D75 = 7;
const DISPLAY_DEVICE_PRIMARY_DEVICE = 0x00000004;
const DMPAPER_B5_EXTRA = 65;
const DEBUG_ONLY_THIS_PROCESS = 0x2;
const FORMAT_MESSAGE_FROM_SYSTEM = 0x1000;
const PT_CLOSEFIGURE = 0x01;
const DNS_ERROR_RCODE_NOTAUTH = 9009;
const SETLINECAP = 21;
const SBS_TOPALIGN = 0x0002;
const POWER_LEVEL_USER_NOTIFY_SOUND = 0x00000002;
const MWMO_ALERTABLE = 0x0002;
const NCBHANGUP = 0x12;
const SCS_64BIT_BINARY = 6;
const META_TEXTOUT = 0x0521;
const CRYPT_ARCHIVE = 0x100;
const CF_DIB = 8;
const CF_DIF = 5;
const JOB_CONTROL_PAUSE = 1;
const PRINTER_ACCESS_ADMINISTER = 0x00000004;
const FR_NOUPDOWN = 0x400;
const MCI_SAVE_FILE = 0x00000100;
const IDH_HELP = 28445;
const TC_OP_CHARACTER = 0x00000001;
const NIS_SHAREDICON = 0x00000002;
const DISP_CHANGE_SUCCESSFUL = 0;
const CO_E_INIT_SCM_MAP_VIEW_OF_FILE = 0x80004010;
const CMC_STATUS_PENDING = 3;
const MK_E_INTERMEDIATEINTERFACENOTSUPPORTED = 0x800401E7;
const IMAGE_REL_SH3_GPREL4_LONG = 0x0011;
const IMAGE_REL_PPC_TOCREL16 = 0x0008;
const RESOURCE_REMEMBERED = 0x00000003;
const _WIN32_IE_IE302 = 0x0302;
const X3_TMPLT_SIGN_VAL_POS_X = 0;
const NETSCAPE_SIGN_CERT_TYPE = 0x10;
const ERROR_LISTBOX_ID_NOT_FOUND = 1416;
const IMAGE_REL_AMD64_REL32_5 = 0x0009;
const ABS_ALWAYSONTOP = 0x0000002;
const LC_POLYMARKER = 8;
const szOID_OIWDIR_md2RSA = "1.3.14.7.2.3.1";
const DIGSIG_E_DECODE = 0x800B0006;
const MEM_LARGE_PAGES = 0x20000000;
const DMBIN_ENVELOPE = 5;
const CRL_REASON_UNUSED_FLAG = 0x80;
const CC_WIDESTYLED = 64;
const RPC_E_WRONG_THREAD = 0x8001010E;
const CERT_MD5_HASH_PROP_ID = 4;
const ACCESS_DENIED_OBJECT_ACE_TYPE = 0x6;
const FILE_SUPPORTS_HARD_LINKS = 0x00400000;
const RPC_C_QOS_CAPABILITIES_ANY_AUTHORITY = 0x4;
const STDOLE2_MINORVERNUM = 0x0;
const CRYPT_ENCODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG = 0x8;
const EVENT_SYSTEM_ALERT = 0x0002;
const SERVICE_STOP = 0x0020;
const URLPOLICY_DONTCHECKDLGBOX = 0x100;
const WGL_SWAP_UNDERLAY2 = 0x00020000;
const JOB_CONTROL_LAST_PAGE_EJECTED = 7;
const WM_PENWINLAST = 0x038F;
const WGL_SWAP_UNDERLAY5 = 0x00100000;
const MCI_VD_PLAY_SLOW = 0x00100000;
const DNS_ERROR_DATAFILE_OPEN_FAILURE = 9653;
const CERT_PHYSICAL_STORE_ENTERPRISE_NAME = ".Enterprise";
const ERROR_CANT_RESOLVE_FILENAME = 1921;
const BF_RIGHT = 0x0004;
const ERROR_CTX_SHADOW_NOT_RUNNING = 7057;
const CTRY_MALDIVES = 960;
const AF_HYLINK = 15;
const CB_SETDROPPEDWIDTH = 0x0160;
const WGL_SWAP_UNDERLAY8 = 0x00800000;
const szOID_KP_SMARTCARD_LOGON = "1.3.6.1.4.1.311.20.2.2";
const EPT_S_CANT_PERFORM_OP = 1752;
const DMDO_270 = 3;
const ctl1 = 0x04A0;
const GCLP_HMODULE = -16;
const CO_E_SERVER_STOPPING = 0x80080008;
const PRF_ERASEBKGND = 0x00000008;
const MAX_PROFILE_LEN = 80;
const IMPLINK_LOWEXPER = 156;
const CD_LBSELNOITEMS = -1;
const DMPAPER_A4_PLUS = 60;
const VIF_BUFFTOOSMALL = 0x00040000;
const SMART_CYL_LOW = 0x4F;
const GMEM_ZEROINIT = 0x40;
const DISK_BINNING = 3;
const SO_RCVBUF = 0x1002;
const MK_S_FIRST = 0x000401E0;
const ERROR_BAD_REM_ADAP = 60;
const PRINTER_STATUS_PAPER_OUT = 0x00000010;
const ALG_SID_SAFERSK128 = 8;
const WAVECAPS_PITCH = 0x0001;
const CERT_EXTENDED_ERROR_INFO_PROP_ID = 30;
const CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME = "MaxAIAUrlRetrievalByteCount";
const XACT_E_CLERKEXISTS = 0x8004D081;
const __SIZEOF_INT128__ = 16;
const SHTDN_REASON_MINOR_WMI = 0x00000015;
const SM_CXHTHUMB = 10;
const DM_YRESOLUTION = 0x00002000;
const ENCAPSULATED_POSTSCRIPT = 4116;
const PRODUCT_ENTERPRISE_SERVER_CORE_V = 0x29;
const SCHED_S_TASK_NOT_SCHEDULED = 0x00041305;
const ERROR_SXS_DUPLICATE_DLL_NAME = 14021;
const ERROR_IPSEC_IKE_FAILQUERYSSP = 13854;
const ERROR_NON_ACCOUNT_SID = 1257;
const FNERR_FILENAMECODES = 0x3000;
const EVENTLOG_SUCCESS = 0x0000;
const RPC_C_OPT_CALL_TIMEOUT = 12;
const APPCOMMAND_REDO = 35;
const CERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG = 0x80000;
const SCARD_W_SECURITY_VIOLATION = 0x8010006A;
const ERROR_OBJECT_ALREADY_EXISTS = 5010;
const FO_RENAME = 0x0004;
const R2_MASKPEN = 9;
const ERROR_UNSUPPORTED_TYPE = 1630;
const WS_DLGFRAME = 0x00400000;
const ATF_ONOFFFEEDBACK = 0x00000002;
const SUBLANG_SAMI_LULE_NORWAY = 0x04;
const TAPE_DRIVE_ERASE_LONG = 0x00000020;
const HEAP_CREATE_ENABLE_EXECUTE = 0x00040000;
const scr8 = 0x0497;
const LMEM_DISCARDED = 0x4000;
const LCMAP_LOWERCASE = 0x00000100;
const MUTZ_NOSAVEDFILECHECK = 0x00000001;
const FORMATDLGORD31 = 1543;
const IDI_ASTERISK = 32516;
const DISPLAY_DEVICE_MIRRORING_DRIVER = 0x00000008;
const ACTCTX_FLAG_HMODULE_VALID = 0x80;
const FKF_INDICATOR = 0x00000020;
const ERROR_CLUSTER_JOIN_IN_PROGRESS = 5041;
const CDERR_REGISTERMSGFAIL = 0x000C;
const IMAGE_REL_SH3_PCREL12_WORD = 0x000B;
const CERT_E_ISSUERCHAINING = 0x800B0107;
const EM_GETTHUMB = 0x00BE;
const NTM_ITALIC = 0x00000001;
const IMAGE_DIRECTORY_ENTRY_DEBUG = 6;
const FILE_DEVICE_VIDEO = 0x00000023;
const MIXER_OBJECTF_MIDIIN = 0x40000000;
const SHTDN_REASON_MINOR_SECURITYFIX = 0x00000012;
const SE_ERR_DLLNOTFOUND = 32;
const RI_MOUSE_MIDDLE_BUTTON_UP = 0x0020;
const DI_ROPS_READ_DESTINATION = 0x00000002;
const PRINTER_ERROR_OUTOFPAPER = 0x00000001;
const GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY = 0x1000000000000000;
const KEYEVENTF_UNICODE = 0x0004;
const RPC_E_INVALID_OBJREF = 0x8001011D;
const DISPLAY_DEVICE_DISCONNECT = 0x02000000;
const CRL_FIND_ISSUED_BY_DELTA_FLAG = 0x4;
const ERROR_SXS_XML_E_COMMENTSYNTAX = 14031;
const SHIL_LARGE = 0x0;
const RESOURCEUSAGE_SIBLING = 0x00000008;
const EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X = 4;
const VER_MINORVERSION = 0x0000001;
const MK_E_NOOBJECT = 0x800401E5;
const CS_NOMOVECARET = 0x4000;
const MIDICAPS_LRVOLUME = 0x0002;
const NF_REQUERY = 4;
const WM_INITDIALOG = 0x0110;
const FILE_WRITE_EA = 0x0010;
const MCI_STRING_OFFSET = 512;
const X3_IMM20_SIZE_X = 20;
const SUBLANG_ENGLISH_NZ = 0x05;
const PRINTER_NOTIFY_FIELD_LOCATION = 0x06;
const XACT_E_NORESOURCE = 0x8004D00C;
const IMAGE_DEBUG_TYPE_BORLAND = 9;
const CRL_REASON_REMOVE_FROM_CRL = 8;
const SSTF_BORDER = 2;
const MDM_MASK_V120_ML = 0x3<<6;
const VP_TV_STANDARD_PAL_D = 0x0008;
const NORM_IGNORECASE = 0x00000001;
const ERROR_DS_CANT_DEREF_ALIAS = 8337;
const PRINTER_STATUS_INITIALIZING = 0x00008000;
const CONTEXT_E_SYNCH_TIMEOUT = 0x8004E006;
const dwFORCE_KEY_PROTECTION_DISABLED = 0x0;
const MDM_V110_SPEED_4DOT8K = 0x3;
const STGFMT_STORAGE = 0;
const ERROR_INSTALL_REMOTE_DISALLOWED = 1640;
const VP_TV_STANDARD_PAL_I = 0x0020;
const MMIO_REMOVEPROC = 0x00020000;
const IGIMII_TOOLS = 0x0008;
const SS_SUNKEN = 0x00001000;
const DM_DUPLEX = 0x00001000;
const MCI_VD_ESCAPE_STRING = 0x00000100;
const SND_SYNC = 0x0000;
const HANGUL_CHARSET = 129;
const CMSG_HASHED_DATA_V0 = 0;
const ERROR_INVALID_OWNER = 1307;
const LBSELCHSTRINGA = "commdlg_LBSelChangedNotify";
const ERROR_SXS_XML_E_EXPECTINGTAGEND = 14038;
const APPLICATION_VERIFIER_COM_ERROR = 0x0400;
const DMPAPER_A4_TRANSVERSE = 55;
const TAPE_DRIVE_SETMARKS = 0x80100000;
const MSGF_USER = 4096;
const ERROR_TOO_MANY_POSTS = 298;
const LB_CTLCODE = 0;
const OBJ_ENHMETADC = 12;
const TAPE_DRIVE_SET_ECC = 0x80000100;
const XST_EXECSENT = 9;
const WM_MBUTTONDBLCLK = 0x0209;
const COPY_FILE_NO_BUFFERING = 0x1000;
const PAN_PROP_EVEN_WIDTH = 4;
const MCI_VD_OFFSET = 1024;
const CONSOLE_MOUSE_DOWN = 0x8;
const SW_ERASE = 0x0004;
const IMAGE_REL_PPC_ADDR32NB = 0x000A;
const CERT_QUERY_CONTENT_CERT_PAIR = 13;
const SC_MOVE = 0xF010;
const CTRY_TUNISIA = 216;
const CHANGER_DRIVE_CLEANING_REQUIRED = 0x00010000;
const EVENT_SYSTEM_MINIMIZEEND = 0x0017;
const SPI_SETWORKAREA = 0x002F;
const META_RECTANGLE = 0x041B;
const SUBLANG_BRETON_FRANCE = 0x01;
const CTRY_SAUDI_ARABIA = 966;
const CO_E_THREADINGMODEL_CHANGED = 0x8004E028;
const SHGFI_LARGEICON = 0x000000000;
const ASYNC_MODE_DEFAULT = 0x00000000;
const ERROR_DS_EXISTS_IN_RDNATTID = 8598;
const SPAPI_E_DI_DONT_INSTALL = 0x800F022B;
const ERROR_DS_NO_MSDS_INTID = 8596;
const DNS_INFO_NO_RECORDS = 9501;
const MINGW_HAS_DDRAW_H = 1;
const LB_OKAY = 0;
const JOB_OBJECT_LIMIT_AFFINITY = 0x00000010;
const CERT_PUBKEY_ALG_PARA_PROP_ID = 22;
const SHERB_NOPROGRESSUI = 0x00000002;
const szOID_PKIX_KP_TIMESTAMP_SIGNING = "1.3.6.1.5.5.7.3.8";
const TAPE_DRIVE_FIXED = 0x00000001;
const DM_TTOPTION = 0x00004000;
const CREATE_BREAKAWAY_FROM_JOB = 0x1000000;
const PS_DASH = 1;
const THREAD_TERMINATE = 0x0001;
const PRINTER_ENUM_FAVORITE = 0x00000004;
const CONNECT_CMD_SAVECRED = 0x00001000;
const WA_ACTIVE = 1;
const APPLICATION_VERIFIER_COM_NULL_DACL = 0x0406;
const APPCOMMAND_MEDIA_NEXTTRACK = 11;
const SCARD_READER_TYPE_PARALELL = 0x02;
const PSH_PROPSHEETPAGE = 0x00000008;
const DMDFO_DEFAULT = 0;
const szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID = "1.3.6.1.4.1.311.10.11.28";
const NIIF_ERROR = 0x00000003;
const SCARD_PROTOCOL_DEFAULT = 0x80000000;
const szOID_NETSCAPE = "2.16.840.1.113730";
const EVENT_E_QUERYSYNTAX = 0x80040203;
const ERROR_DS_NCNAME_MISSING_CR_REF = 8412;
const DMLERR_LOW_MEMORY = 0x4007;
const CTRY_PERU = 51;
const ERROR_DS_DOMAIN_VERSION_TOO_HIGH = 8564;
const EWX_LOGOFF = 0;
const DI_MEMORYMAP_WRITE = 0x00000001;
const DIGSIG_E_ENCODE = 0x800B0005;
const sz_CERT_STORE_PROV_COLLECTION = "Collection";
const INPUTLANGCHANGE_BACKWARD = 0x0004;
const CRYPT_USER_DEFAULT = 0x2;
const PAN_LETT_OBLIQUE_OFF_CENTER = 14;
const IDC_NO = 32648;
const X3_IMM39_1_INST_WORD_X = 2;
const SPI_SETLOWPOWERTIMEOUT = 0x0051;
const CDERR_LOADSTRFAILURE = 0x0005;
const SUBLANG_TAMIL_INDIA = 0x01;
const ERROR_SESSION_CREDENTIAL_CONFLICT = 1219;
const IMAGE_REL_BASED_HIGH = 1;
const ERROR_DS_ALIAS_POINTS_TO_ALIAS = 8336;
const FILE_CLEAR_ENCRYPTION = 0x00000002;
const CERT_OCM_SUBCOMPONENTS_ROOT_AUTO_UPDATE_VALUE_NAME = "RootAutoUpdate";
const JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO = 4;
const ALG_SID_RIPEMD160 = 7;
const PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR = 0x0C;
const SLE_ERROR = 0x00000001;
const ERROR_SAM_INIT_FAILURE = 8541;
const SPAPI_E_NO_CLASS_DRIVER_LIST = 0x800F0218;
const RPC_C_HTTP_AUTHN_SCHEME_NEGOTIATE = 0x00000010;
const ERROR_DS_EXISTS_IN_AUX_CLS = 8393;
const PRINTACTION_NETINSTALLLINK = 3;
const szOID_TELEPHONE_NUMBER = "2.5.4.20";
const PSCB_INITIALIZED = 1;
const APPCOMMAND_PRINT = 33;
const DDD_REMOVE_DEFINITION = 0x2;
const PROPSETFLAG_ANSI = 2;
const SW_SCROLLCHILDREN = 0x0001;
const WS_CHILD = 0x40000000;
const SO_DISCDATALEN = 0x7006;
const ERROR_DS_DUP_MAPI_ID = 8380;
const LANG_UKRAINIAN = 0x22;
const EMR_SETSTRETCHBLTMODE = 21;
const ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = 1278;
const MEM_PHYSICAL = 0x400000;
const RPC_C_MQ_RECOVERABLE = 1;
const SPAPI_E_DEVINFO_NOT_REGISTERED = 0x800F0208;
const SUBLANG_BULGARIAN_BULGARIA = 0x01;
const ERROR_NON_MDICHILD_WINDOW = 1445;
const SUBLANG_KINYARWANDA_RWANDA = 0x01;
const MCI_RESUME = 0x0855;
const ERROR_QUORUM_OWNER_ALIVE = 5034;
const PIPE_TYPE_MESSAGE = 0x4;
const DFCS_BUTTONRADIOIMAGE = 0x0001;
const XST_ADVDATASENT = 15;
const MCI_INFO_PRODUCT = 0x00000100;
const szOID_RSA_certExtensions = "1.2.840.113549.1.9.14";
const VK_VOLUME_DOWN = 0xAE;
const REG_RESOURCE_LIST = 8;
const RPC_S_NOT_ALL_OBJS_EXPORTED = 1923;
const IMAGE_REL_SH3_SECTION = 0x000E;
const ALG_SID_MAC = 5;
const PIDMSI_PROJECT = 0x00000006;
const DMPAPER_PENV_9_ROTATED = 117;
const CERT_PHYSICAL_STORE_AUTH_ROOT_NAME = ".AuthRoot";
const IMAGE_REL_IA64_IMM14 = 0x0001;
const _FREEENTRY = 0;
const ERROR_POTENTIAL_FILE_FOUND = 1180;
const ERROR_INVALID_OPLOCK_PROTOCOL = 301;
const VSS_E_CANNOT_REVERT_DISKID = 0x800423FE;
const FKF_CONFIRMHOTKEY = 0x00000008;
const GL_ID_INPUTREADING = 0x00000024;
const NRC_TOOMANY = 0x22;
const IMAGE_REL_IA64_IMM22 = 0x0002;
const SB_BOTTOM = 7;
const ERROR_POLICY_OBJECT_NOT_FOUND = 8219;
const SM_CYVSCROLL = 20;
const IMAGE_FILE_DLL = 0x2000;
const TIMERR_BASE = 96;
const HCBT_MOVESIZE = 0;
const SORT_JAPANESE_UNICODE = 0x1;
const MIXER_GETCONTROLDETAILSF_VALUE = 0x00000000;
const EVENTLOG_START_PAIRED_EVENT = 0x0001;
const INPUT_HARDWARE = 2;
const szOID_ARCHIVED_KEY_CERT_HASH = "1.3.6.1.4.1.311.21.16";
const OFN_ENABLESIZING = 0x800000;
const ERROR_FUNCTION_FAILED = 1627;
const BLACK_PEN = 7;
const ERROR_CONTINUE = 1246;
const ERROR_NO_ASSOCIATION = 1155;
const NTE_PERM = 0x80090010;
const VOS_UNKNOWN = 0x00000000;
const ERROR_WMI_READ_ONLY = 4213;
const ERROR_DYNLINK_FROM_INVALID_RING = 196;
const TOKEN_SOURCE_LENGTH = 8;
const PRINTER_CHANGE_SET_JOB = 0x00000200;
const MCI_ANIM_PUT_SOURCE = 0x00020000;
const MCI_ANIM_STEP_FRAMES = 0x00020000;
const SCARD_PROTOCOL_OPTIMAL = 0x00000000;
const MCI_TRACK = 0x00000010;
const COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME = 0x80110457;
const ERROR_CTX_SERVICE_NAME_COLLISION = 7006;
const ERROR_LOG_FILE_FULL = 1502;
const COLOR_INACTIVECAPTIONTEXT = 19;
const CBN_SELCHANGE = 1;
const DMRES_DRAFT = -1;
const IMAGE_REL_IA64_IMM64 = 0x0003;
const EMR_SETBKMODE = 18;
const TAPE_DRIVE_WRITE_SETMARKS = 0x81000000;
const REG_LATEST_FORMAT = 2;
const szOID_PKCS_9_CONTENT_TYPE = "1.2.840.113549.1.9.3";
const SEC_E_BUFFER_TOO_SMALL = 0x80090321;
const EMR_POLYTEXTOUTA = 96;
const CO_E_NOCOOKIES = 0x8004E02A;
const EMR_POLYTEXTOUTW = 97;
const INET_E_CANNOT_LOCK_REQUEST = 0x800C0016;
const GMEM_SHARE = 0x2000;
const ALG_SID_DSS_PKCS = 1;
const RT_VERSION = 16;
const CRYPT_ENCRYPT_ALG_OID_GROUP_ID = 2;
const CB_SETITEMDATA = 0x0151;
const LB_DELETESTRING = 0x0182;
const ERROR_NONE_MAPPED = 1332;
const _M_AMD64 = 100;
const PRINTER_ATTRIBUTE_SHARED = 0x00000008;
const szOID_SEE_ALSO = "2.5.4.34";
const ENABLEDUPLEX = 28;
const PAN_BENT_ARMS_HORZ = 7;
const KP_PUB_EX_LEN = 28;
const PS_INSIDEFRAME = 6;
const CERT_TRUST_INVALID_POLICY_CONSTRAINTS = 0x200;
const __LDBL_DIG__ = 18;
const EVENTLOG_FULL_INFO = 0;
const SM_CYDRAG = 69;
const CERT_STORE_PROV_READ_CERT_FUNC = 1;
const ACCESS_MAX_MS_V3_ACE_TYPE = 0x4;
const __UINT_FAST16_MAX__ = 65535;
const UNLOCK_ELEMENT = 1;
const SKF_RALTLOCKED = 0x00200000;
const CMSG_CTRL_KEY_TRANS_DECRYPT = 16;
const STARTF_USECOUNTCHARS = 0x8;
const FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 0x00002000;
const DNS_ERROR_NON_RFC_NAME = 9556;
const szOID_SUPPORTED_APPLICATION_CONTEXT = "2.5.4.30";
const NRC_GOODRET = 0x00;
const ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 8604;
const IMAGE_REL_PPC_TOCREL14 = 0x0009;
const PIDDSI_DOCPARTS = 0x0000000D;
const EVENT_OBJECT_LOCATIONCHANGE = 0x800B;
const WS_EX_DLGMODALFRAME = 0x00000001;
const COMMON_LVB_SBCSDBCS = 0x300;
const SPI_GETWINARRANGING = 0x0082;
const INET_E_INVALID_REQUEST = 0x800C000C;
const GDICOMMENT_UNICODE_STRING = 0x00000040;
const MCI_ANIM_REALIZE_NORM = 0x00010000;
const SCARD_SHARE_EXCLUSIVE = 1;
const EXCEPTION_TARGET_UNWIND = 0x20;
const TC_SCROLLBLT = 0x00010000;
const USER_TIMER_MINIMUM = 0x0000000A;
const ERROR_DUPLICATE_SERVICE_NAME = 1078;
|
D
|
instance BDT_1078_Addon_Bandit(Npc_Default)
{
name[0] = NAME_Bandit;
guild = GIL_BDT;
id = 1078;
voice = 13;
flags = 0;
npcType = NPCTYPE_TAL_AMBIENT;
B_SetAttributesToChapter(self,4);
fight_tactic = FAI_HUMAN_NORMAL;
EquipItem(self,ItMw_1H_Mace_L_03);
EquipItem(self,ItRw_Bow_M_02);
CreateInvItems(self,ItRw_Arrow,10);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Psionic",Face_N_Richter,BodyTex_N,ItAr_BDT_M);
Mdl_SetModelFatness(self,-0.75);
Mdl_ApplyOverlayMds(self,"Humans_Arrogance.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,60);
daily_routine = Rtn_Start_1078;
};
func void Rtn_Start_1078()
{
TA_Sit_Campfire(20,0,12,5,"ADW_BANDIT_VP1_08_B");
TA_Stand_Guarding(12,5,20,0,"ADW_BANDIT_VP1_07_B");
};
|
D
|
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
243.699997 85.5 10.1000004 21.2000008 42 47 38.4000015 -79.4000015 1634 11.8000002 15.3999996 0.598584369 intrusives
309 80 2 0 35 56 72 -112 1699 3.79999995 3.9000001 0.543194298 intrusives, diabase
217 85 16 60 35 56 72 -112 1697 31 31 0.330696122 extrusives, basalt
|
D
|
/* 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.
*/
module flow.engine.impl.cmd.GetTaskCommentsCmd;
import hunt.collection.List;
import flow.common.interceptor.Command;
import flow.common.interceptor.CommandContext;
import flow.engine.impl.util.CommandContextUtil;
import flow.engine.task.Comment;
/**
* @author Tom Baeyens
*/
class GetTaskCommentsCmd : Command!(List!Comment) {
protected string taskId;
this(string taskId) {
this.taskId = taskId;
}
public List!Comment execute(CommandContext commandContext) {
return CommandContextUtil.getCommentEntityManager(commandContext).findCommentsByTaskId(taskId);
}
}
|
D
|
import std.stdio;
import mpi.mpi;
import std.stdio;
import std.string;
import std.conv;
void main (string [] args) {
MPI_Init(args);
int my_rank = MPI_Comm_rank(MPI_COMM_WORLD);
int size = MPI_Comm_size(MPI_COMM_WORLD);
string greeting = format("Hello world: processor %d of %d\n", my_rank, size);
writeln ("started");
if (my_rank == 0) {
writeln(greeting);
for (int partner = 1; partner < size; partner++){
MPI_Status stat;
MPI_Recv(cast(void*)greeting.ptr, to!int (greeting.length), MPI_BYTE, partner, 1, MPI_COMM_WORLD, &stat);
writeln(greeting);
}
} else {
MPI_Send(cast(void*)greeting.ptr, to!int (greeting.length), MPI_BYTE, 0,1, MPI_COMM_WORLD);
}
MPI_Barrier (MPI_COMM_WORLD);
if (my_rank == 0) writeln("That is all for now!\n");
MPI_Finalize();
}
|
D
|
class C {
int f() {
return 10;
}
}
int main() {
C c;
c.a();
}
|
D
|
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Console.build/Console/Console+Run.swift.o : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Bar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Argument.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Group.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Option.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Runnable.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Value.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Ask.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Center.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Confirm.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Options.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Run.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/ConsoleError.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/FileHandle+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Pipe+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleColor+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleStyle+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/String+ANSI.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal+Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/Bool+Polymorphic.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/String+Trim.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/Console+LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/Console+ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Clear/ConsoleClear.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Color/ConsoleColor.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/Console+ConsoleStyle.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/ConsoleStyle.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/libc.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Polymorphic.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Core.swiftmodule
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Console.build/Console+Run~partial.swiftmodule : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Bar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Argument.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Group.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Option.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Runnable.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Value.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Ask.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Center.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Confirm.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Options.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Run.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/ConsoleError.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/FileHandle+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Pipe+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleColor+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleStyle+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/String+ANSI.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal+Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/Bool+Polymorphic.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/String+Trim.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/Console+LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/Console+ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Clear/ConsoleClear.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Color/ConsoleColor.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/Console+ConsoleStyle.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/ConsoleStyle.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/libc.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Polymorphic.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Core.swiftmodule
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Console.build/Console+Run~partial.swiftdoc : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Bar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Argument.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Group.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Option.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Runnable.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Command/Value.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Ask.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Center.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Confirm.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Options.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Print.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console+Run.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Console.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/ConsoleError.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/FileHandle+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Pipe+Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Stream/Stream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleColor+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/ConsoleStyle+Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/String+ANSI.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal+Command.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Terminal/Terminal.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/Bool+Polymorphic.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Utilities/String+Trim.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/Console+LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Loading/LoadingBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/Console+ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Bar/Progress/ProgressBar.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Clear/ConsoleClear.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Color/ConsoleColor.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/Console+ConsoleStyle.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Console-1.0.0/Sources/Console/Console/Style/ConsoleStyle.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/libc.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Polymorphic.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Core.swiftmodule
|
D
|
/Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/DerivedData/Build/Intermediates.noindex/TP1_SwiftUI_three_screens.build/Debug-iphonesimulator/TP1_SwiftUI_three_screens.build/Objects-normal/x86_64/AddContactView.o : /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContactRowStyle.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/Personne.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/SceneDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/AppDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ShowPersonneDetail.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/ContactList.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/AddContactView.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContentView.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreData.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Headers/SwiftUI.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/stab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ranlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/reloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace_base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/compact_unwind_encoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/log.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/arch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/swap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/loader.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld_images.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/OSOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ldsyms.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/fat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/getsect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/nlist.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/activity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/DerivedData/Build/Intermediates.noindex/TP1_SwiftUI_three_screens.build/Debug-iphonesimulator/TP1_SwiftUI_three_screens.build/Objects-normal/x86_64/AddContactView~partial.swiftmodule : /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContactRowStyle.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/Personne.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/SceneDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/AppDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ShowPersonneDetail.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/ContactList.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/AddContactView.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContentView.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreData.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Headers/SwiftUI.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/stab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ranlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/reloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace_base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/compact_unwind_encoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/log.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/arch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/swap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/loader.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld_images.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/OSOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ldsyms.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/fat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/getsect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/nlist.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/activity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/DerivedData/Build/Intermediates.noindex/TP1_SwiftUI_three_screens.build/Debug-iphonesimulator/TP1_SwiftUI_three_screens.build/Objects-normal/x86_64/AddContactView~partial.swiftdoc : /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContactRowStyle.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/Personne.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/SceneDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/AppDelegate.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ShowPersonneDetail.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/Model/ContactList.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/AddContactView.swift /Users/vberry/Prog/SwiftProg/Xcode\ Projects/SwiftUI/TP1_SwiftUI_three_screens/TP1_SwiftUI_three_screens/View/ContentView.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreData.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Headers/SwiftUI.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/stab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ranlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/reloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/trace_base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/compact_unwind_encoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/log.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/arch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/swap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/loader.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/dyld_images.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/OSOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/ldsyms.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/fat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/getsect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/nlist.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/activity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="VAR_18_BeT-8345687123.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="VAR_18_BeT-8345687123.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
|
D
|
/Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Indicator.o : /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Image.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Kingfisher.h /Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Indicator~partial.swiftmodule : /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Image.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Kingfisher.h /Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Indicator~partial.swiftdoc : /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Image.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/Box.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Accelerate.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/os.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Kingfisher.h /Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
// https://issues.dlang.org/show_bug.cgi?id=8150: nothrow check doesn't work for constructor
/*
TEST_OUTPUT:
---
fail_compilation/bug8150b.d(15): Error: `object.Exception` is thrown but not caught
fail_compilation/bug8150b.d(13): Error: `nothrow` constructor `bug8150b.Foo.__ctor!().this` may throw
fail_compilation/bug8150b.d(20): Error: template instance `bug8150b.Foo.__ctor!()` error instantiating
---
*/
struct Foo
{
this()(int) nothrow
{
throw new Exception("something");
}
}
void main() {
Foo(1);
}
|
D
|
/*
* Entity - Entity is an object-relational mapping tool for the D programming language. Referring to the design idea of JPA.
*
* Copyright (C) 2015-2018 Shanghai Putao Technology Co., Ltd
*
* Developer: HuntLabs.cn
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.entity.criteria.Root;
import hunt.entity;
import hunt.logging;
import std.traits;
interface IRoot {
}
class Root(T : Object, F: Object = T) : IRoot {
private EntityInfo!(T, F) _entityInfo;
private CriteriaBuilder _builder;
JoinSqlBuild[] _joins;
private bool _enableJoin = false;
this(CriteriaBuilder builder, T t = null, F owner = null) {
_builder = builder;
_entityInfo = new EntityInfo!(T, F)(_builder.getManager(), t, owner);
}
string getEntityClassName() {
return _entityInfo.getEntityClassName();
}
string getTableName() {
return _entityInfo.getTableName();
}
EntityInfo!(T, F) opDispatch(string name)() {
if (getEntityClassName() != name)
throw new EntityException("Cannot find entityinfo by name : " ~ name);
return _entityInfo;
}
EntityFieldInfo get(string field) {
return _entityInfo.getSingleField(field);
}
T deSerialize(Row[] rows, ref long count, int startIndex, F owner) {
return _entityInfo.deSerialize(rows, count, startIndex, owner);
}
EntityFieldInfo getPrimaryField() {
return _entityInfo.getPrimaryField();
}
EntityInfo!(T, F) getEntityInfo() {
return _entityInfo;
}
JoinSqlBuild[] getJoins() {
return _joins;
}
Join!(T, P) join(P)(EntityFieldInfo info, JoinType joinType = JoinType.INNER) {
Join!(T, P) ret = new Join!(T, P)(_builder, info, this, joinType);
JoinSqlBuild data = new JoinSqlBuild();
data.tableName = ret.getTableName();
data.joinWhere = ret.getJoinOnString();
data.joinType = joinType;
// data.columnNames = [ret.getPrimaryField().getSelectColumn()];
data.columnNames = ret.getAllSelectColumn();
_joins ~= data;
return ret;
}
string[] getAllSelectColumn() {
import std.algorithm;
string[] ret;
foreach (EntityFieldInfo value; _entityInfo.getFields()) {
string name = value.getSelectColumn();
version (HUNT_ENTITY_DEBUG_MORE) {
infof("FileldName: %s, JoinPrimaryKey: %s, joinColumn: %s, selectColumn: %s",
value.getFieldName(), value.getJoinPrimaryKey(),
value.getJoinColumn(), name);
}
if (ret.canFind(name)) {
version (HUNT_ENTITY_DEBUG)
warningf("duplicated column: %s", name);
continue;
}
if (name != "") {
ret ~= name;
}
}
return ret;
}
Root!(T, F) autoJoin() {
// logDebug("#### join Fields : ",_entityInfo.getFields());
foreach (EntityFieldInfo value; _entityInfo.getFields()) {
JoinSqlBuild build = value.getJoinSqlData();
if(build is null) {
version(HUNT_ENTITY_DEBUG) {
infof("No join for the field [%s] in %s.", value.getFieldName(), T.stringof);
}
continue;
}
if (_enableJoin || value.isEnableJoin()) {
version(HUNT_ENTITY_DEBUG) {
trace("join sql : ", build.toString());
}
_joins ~= build;
}
}
return this;
}
void setEnableJoin(bool flg) {
_enableJoin = flg;
}
}
|
D
|
// Written in the D programming language.
/**
Networking client functionality as provided by $(HTTP curl.haxx.se/libcurl,
libcurl). The libcurl library must be installed on the system in order to use
this module.
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BOOKTABLE ,
$(TR $(TH Category) $(TH Functions)
)
$(TR $(TDNW High level) $(TD $(MYREF download) $(MYREF upload) $(MYREF get)
$(MYREF post) $(MYREF put) $(MYREF del) $(MYREF options) $(MYREF trace)
$(MYREF connect) $(MYREF byLine) $(MYREF byChunk)
$(MYREF byLineAsync) $(MYREF byChunkAsync) )
)
$(TR $(TDNW Low level) $(TD $(MYREF HTTP) $(MYREF FTP) $(MYREF
SMTP) )
)
)
)
Note:
You may need to link to the $(B curl) library, e.g. by adding $(D "libs": ["curl"])
to your $(B dub.json) file if you are using $(LINK2 http://code.dlang.org, DUB).
Windows x86 note:
A DMD compatible libcurl static library can be downloaded from the dlang.org
$(LINK2 http://downloads.dlang.org/other/index.html, download archive page).
This module is not available for iOS, tvOS or watchOS.
Compared to using libcurl directly this module allows simpler client code for
common uses, requires no unsafe operations, and integrates better with the rest
of the language. Futhermore it provides $(MREF_ALTTEXT range, std,range)
access to protocols supported by libcurl both synchronously and asynchronously.
A high level and a low level API are available. The high level API is built
entirely on top of the low level one.
The high level API is for commonly used functionality such as HTTP/FTP get. The
$(LREF byLineAsync) and $(LREF byChunkAsync) provides asynchronous
$(MREF_ALTTEXT range, std,range) that performs the request in another
thread while handling a line/chunk in the current thread.
The low level API allows for streaming and other advanced features.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description)
)
$(LEADINGROW High level)
$(TR $(TDNW $(LREF download)) $(TD $(D
download("ftp.digitalmars.com/sieve.ds", "/tmp/downloaded-ftp-file"))
downloads file from URL to file system.)
)
$(TR $(TDNW $(LREF upload)) $(TD $(D
upload("/tmp/downloaded-ftp-file", "ftp.digitalmars.com/sieve.ds");)
uploads file from file system to URL.)
)
$(TR $(TDNW $(LREF get)) $(TD $(D
get("dlang.org")) returns a char[] containing the dlang.org web page.)
)
$(TR $(TDNW $(LREF put)) $(TD $(D
put("dlang.org", "Hi")) returns a char[] containing
the dlang.org web page. after a HTTP PUT of "hi")
)
$(TR $(TDNW $(LREF post)) $(TD $(D
post("dlang.org", "Hi")) returns a char[] containing
the dlang.org web page. after a HTTP POST of "hi")
)
$(TR $(TDNW $(LREF byLine)) $(TD $(D
byLine("dlang.org")) returns a range of char[] containing the
dlang.org web page.)
)
$(TR $(TDNW $(LREF byChunk)) $(TD $(D
byChunk("dlang.org", 10)) returns a range of ubyte[10] containing the
dlang.org web page.)
)
$(TR $(TDNW $(LREF byLineAsync)) $(TD $(D
byLineAsync("dlang.org")) returns a range of char[] containing the dlang.org web
page asynchronously.)
)
$(TR $(TDNW $(LREF byChunkAsync)) $(TD $(D
byChunkAsync("dlang.org", 10)) returns a range of ubyte[10] containing the
dlang.org web page asynchronously.)
)
$(LEADINGROW Low level
)
$(TR $(TDNW $(LREF HTTP)) $(TD `HTTP` struct for advanced usage))
$(TR $(TDNW $(LREF FTP)) $(TD `FTP` struct for advanced usage))
$(TR $(TDNW $(LREF SMTP)) $(TD `SMTP` struct for advanced usage))
)
Example:
---
import std.net.curl, std.stdio;
// Return a char[] containing the content specified by a URL
auto content = get("dlang.org");
// Post data and return a char[] containing the content specified by a URL
auto content = post("mydomain.com/here.cgi", ["name1" : "value1", "name2" : "value2"]);
// Get content of file from ftp server
auto content = get("ftp.digitalmars.com/sieve.ds");
// Post and print out content line by line. The request is done in another thread.
foreach (line; byLineAsync("dlang.org", "Post data"))
writeln(line);
// Get using a line range and proxy settings
auto client = HTTP();
client.proxy = "1.2.3.4";
foreach (line; byLine("dlang.org", client))
writeln(line);
---
For more control than the high level functions provide, use the low level API:
Example:
---
import std.net.curl, std.stdio;
// GET with custom data receivers
auto http = HTTP("dlang.org");
http.onReceiveHeader =
(in char[] key, in char[] value) { writeln(key, ": ", value); };
http.onReceive = (ubyte[] data) { /+ drop +/ return data.length; };
http.perform();
---
First, an instance of the reference-counted HTTP struct is created. Then the
custom delegates are set. These will be called whenever the HTTP instance
receives a header and a data buffer, respectively. In this simple example, the
headers are written to stdout and the data is ignored. If the request should be
stopped before it has finished then return something less than data.length from
the onReceive callback. See $(LREF onReceiveHeader)/$(LREF onReceive) for more
information. Finally the HTTP request is effected by calling perform(), which is
synchronous.
Source: $(PHOBOSSRC std/net/curl.d)
Copyright: Copyright Jonas Drewsen 2011-2012
License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Jonas Drewsen. Some of the SMTP code contributed by Jimmy Cao.
Credits: The functionally is based on $(HTTP curl.haxx.se/libcurl, libcurl).
LibCurl is licensed under an MIT/X derivative license.
*/
/*
Copyright Jonas Drewsen 2011 - 2012.
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)
*/
module std.net.curl;
public import etc.c.curl : CurlOption;
import core.time : dur;
import etc.c.curl : CURLcode;
import std.range.primitives;
import std.encoding : EncodingScheme;
import std.traits : isSomeChar;
import std.typecons : Flag, Yes, No, Tuple;
version (iOS)
version = iOSDerived;
else version (TVOS)
version = iOSDerived;
else version (WatchOS)
version = iOSDerived;
version (iOSDerived) {}
else:
version (StdUnittest)
{
import std.socket : Socket, SocketShutdown;
private struct TestServer
{
import std.concurrency : Tid;
import std.socket : Socket, TcpSocket;
string addr() { return _addr; }
void handle(void function(Socket s) dg)
{
import std.concurrency : send;
tid.send(dg);
}
private:
string _addr;
Tid tid;
TcpSocket sock;
static void loop(shared TcpSocket listener)
{
import std.concurrency : OwnerTerminated, receiveOnly;
import std.stdio : stderr;
try while (true)
{
void function(Socket) handler = void;
try
handler = receiveOnly!(typeof(handler));
catch (OwnerTerminated)
return;
handler((cast() listener).accept);
}
catch (Throwable e)
{
// https://issues.dlang.org/show_bug.cgi?id=7018
stderr.writeln(e);
}
}
}
private TestServer startServer()
{
import std.concurrency : spawn;
import std.socket : INADDR_LOOPBACK, InternetAddress, TcpSocket;
tlsInit = true;
auto sock = new TcpSocket;
sock.bind(new InternetAddress(INADDR_LOOPBACK, InternetAddress.PORT_ANY));
sock.listen(1);
auto addr = sock.localAddress.toString();
auto tid = spawn(&TestServer.loop, cast(shared) sock);
return TestServer(addr, tid, sock);
}
/** Test server */
__gshared TestServer server;
/** Thread-local storage init */
bool tlsInit;
private ref TestServer testServer()
{
import std.concurrency : initOnce;
return initOnce!server(startServer());
}
static ~this()
{
// terminate server from a thread local dtor of the thread that started it,
// because thread_joinall is called before shared module dtors
if (tlsInit && server.sock)
{
server.sock.shutdown(SocketShutdown.RECEIVE);
server.sock.close();
}
}
private struct Request(T)
{
string hdrs;
immutable(T)[] bdy;
}
private Request!T recvReq(T=char)(Socket s)
{
import std.algorithm.comparison : min;
import std.algorithm.searching : find, canFind;
import std.conv : to;
import std.regex : ctRegex, matchFirst;
ubyte[1024] tmp=void;
ubyte[] buf;
while (true)
{
auto nbytes = s.receive(tmp[]);
assert(nbytes >= 0);
immutable beg = buf.length > 3 ? buf.length - 3 : 0;
buf ~= tmp[0 .. nbytes];
auto bdy = buf[beg .. $].find(cast(ubyte[])"\r\n\r\n");
if (bdy.empty)
continue;
auto hdrs = cast(string) buf[0 .. $ - bdy.length];
bdy.popFrontN(4);
// no support for chunked transfer-encoding
if (auto m = hdrs.matchFirst(ctRegex!(`Content-Length: ([0-9]+)`, "i")))
{
import std.uni : asUpperCase;
if (hdrs.asUpperCase.canFind("EXPECT: 100-CONTINUE"))
s.send(httpContinue);
size_t remain = m.captures[1].to!size_t - bdy.length;
while (remain)
{
nbytes = s.receive(tmp[0 .. min(remain, $)]);
assert(nbytes >= 0);
buf ~= tmp[0 .. nbytes];
remain -= nbytes;
}
}
else
{
assert(bdy.empty);
}
bdy = buf[hdrs.length + 4 .. $];
return typeof(return)(hdrs, cast(immutable(T)[])bdy);
}
}
private string httpOK(string msg)
{
import std.conv : to;
return "HTTP/1.1 200 OK\r\n"~
"Content-Type: text/plain\r\n"~
"Content-Length: "~msg.length.to!string~"\r\n"~
"\r\n"~
msg;
}
private string httpOK()
{
return "HTTP/1.1 200 OK\r\n"~
"Content-Length: 0\r\n"~
"\r\n";
}
private string httpNotFound()
{
return "HTTP/1.1 404 Not Found\r\n"~
"Content-Length: 0\r\n"~
"\r\n";
}
private enum httpContinue = "HTTP/1.1 100 Continue\r\n\r\n";
}
version (StdDdoc) import std.stdio;
// Default data timeout for Protocols
private enum _defaultDataTimeout = dur!"minutes"(2);
/**
Macros:
CALLBACK_PARAMS = $(TABLE ,
$(DDOC_PARAM_ROW
$(DDOC_PARAM_ID $(DDOC_PARAM dlTotal))
$(DDOC_PARAM_DESC total bytes to download)
)
$(DDOC_PARAM_ROW
$(DDOC_PARAM_ID $(DDOC_PARAM dlNow))
$(DDOC_PARAM_DESC currently downloaded bytes)
)
$(DDOC_PARAM_ROW
$(DDOC_PARAM_ID $(DDOC_PARAM ulTotal))
$(DDOC_PARAM_DESC total bytes to upload)
)
$(DDOC_PARAM_ROW
$(DDOC_PARAM_ID $(DDOC_PARAM ulNow))
$(DDOC_PARAM_DESC currently uploaded bytes)
)
)
*/
/** Connection type used when the URL should be used to auto detect the protocol.
*
* This struct is used as placeholder for the connection parameter when calling
* the high level API and the connection type (HTTP/FTP) should be guessed by
* inspecting the URL parameter.
*
* The rules for guessing the protocol are:
* 1, if URL starts with ftp://, ftps:// or ftp. then FTP connection is assumed.
* 2, HTTP connection otherwise.
*
* Example:
* ---
* import std.net.curl;
* // Two requests below will do the same.
* char[] content;
*
* // Explicit connection provided
* content = get!HTTP("dlang.org");
*
* // Guess connection type by looking at the URL
* content = get!AutoProtocol("ftp://foo.com/file");
* // and since AutoProtocol is default this is the same as
* content = get("ftp://foo.com/file");
* // and will end up detecting FTP from the url and be the same as
* content = get!FTP("ftp://foo.com/file");
* ---
*/
struct AutoProtocol { }
// Returns true if the url points to an FTP resource
private bool isFTPUrl(const(char)[] url)
{
import std.algorithm.searching : startsWith;
import std.uni : toLower;
return startsWith(url.toLower(), "ftp://", "ftps://", "ftp.") != 0;
}
// Is true if the Conn type is a valid Curl Connection type.
private template isCurlConn(Conn)
{
enum auto isCurlConn = is(Conn : HTTP) ||
is(Conn : FTP) || is(Conn : AutoProtocol);
}
/** HTTP/FTP download to local file system.
*
* Params:
* url = resource to download
* saveToPath = path to store the downloaded content on local disk
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* Example:
* ----
* import std.net.curl;
* download("https://httpbin.org/get", "/tmp/downloaded-http-file");
* ----
*/
void download(Conn = AutoProtocol)(const(char)[] url, string saveToPath, Conn conn = Conn())
if (isCurlConn!Conn)
{
static if (is(Conn : HTTP) || is(Conn : FTP))
{
import std.stdio : File;
conn.url = url;
auto f = File(saveToPath, "wb");
conn.onReceive = (ubyte[] data) { f.rawWrite(data); return data.length; };
conn.perform();
}
else
{
if (isFTPUrl(url))
return download!FTP(url, saveToPath, FTP());
else
return download!HTTP(url, saveToPath, HTTP());
}
}
@system unittest
{
import std.algorithm.searching : canFind;
static import std.file;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
assert(s.recvReq.hdrs.canFind("GET /"));
s.send(httpOK("Hello world"));
});
auto fn = std.file.deleteme;
scope (exit)
{
if (std.file.exists(fn))
std.file.remove(fn);
}
download(host, fn);
assert(std.file.readText(fn) == "Hello world");
}
}
/** Upload file from local files system using the HTTP or FTP protocol.
*
* Params:
* loadFromPath = path load data from local disk.
* url = resource to upload to
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* Example:
* ----
* import std.net.curl;
* upload("/tmp/downloaded-ftp-file", "ftp.digitalmars.com/sieve.ds");
* upload("/tmp/downloaded-http-file", "https://httpbin.org/post");
* ----
*/
void upload(Conn = AutoProtocol)(string loadFromPath, const(char)[] url, Conn conn = Conn())
if (isCurlConn!Conn)
{
static if (is(Conn : HTTP))
{
conn.url = url;
conn.method = HTTP.Method.put;
}
else static if (is(Conn : FTP))
{
conn.url = url;
conn.handle.set(CurlOption.upload, 1L);
}
else
{
if (isFTPUrl(url))
return upload!FTP(loadFromPath, url, FTP());
else
return upload!HTTP(loadFromPath, url, HTTP());
}
static if (is(Conn : HTTP) || is(Conn : FTP))
{
import std.stdio : File;
auto f = File(loadFromPath, "rb");
conn.onSend = buf => f.rawRead(buf).length;
immutable sz = f.size;
if (sz != ulong.max)
conn.contentLength = sz;
conn.perform();
}
}
@system unittest
{
import std.algorithm.searching : canFind;
static import std.file;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
auto fn = std.file.deleteme;
scope (exit)
{
if (std.file.exists(fn))
std.file.remove(fn);
}
std.file.write(fn, "upload data\n");
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("PUT /path"));
assert(req.bdy.canFind("upload data"));
s.send(httpOK());
});
upload(fn, host ~ "/path");
}
}
/** HTTP/FTP get content.
*
* Params:
* url = resource to get
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`. If asking
* for `char`, content will be converted from the connection character set
* (specified in HTTP response headers or FTP connection properties, both ISO-8859-1
* by default) to UTF-8.
*
* Example:
* ----
* import std.net.curl;
* auto content = get("https://httpbin.org/get");
* ----
*
* Returns:
* A T[] range containing the content of the resource pointed to by the URL.
*
* Throws:
*
* `CurlException` on error.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] get(Conn = AutoProtocol, T = char)(const(char)[] url, Conn conn = Conn())
if ( isCurlConn!Conn && (is(T == char) || is(T == ubyte)) )
{
static if (is(Conn : HTTP))
{
conn.method = HTTP.Method.get;
return _basicHTTP!(T)(url, "", conn);
}
else static if (is(Conn : FTP))
{
return _basicFTP!(T)(url, "", conn);
}
else
{
if (isFTPUrl(url))
return get!(FTP,T)(url, FTP());
else
return get!(HTTP,T)(url, HTTP());
}
}
@system unittest
{
import std.algorithm.searching : canFind;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
assert(s.recvReq.hdrs.canFind("GET /path"));
s.send(httpOK("GETRESPONSE"));
});
auto res = get(host ~ "/path");
assert(res == "GETRESPONSE");
}
}
/** HTTP post content.
*
* Params:
* url = resource to post to
* postDict = data to send as the body of the request. An associative array
* of `string` is accepted and will be encoded using
* www-form-urlencoding
* postData = data to send as the body of the request. An array
* of an arbitrary type is accepted and will be cast to ubyte[]
* before sending it.
* conn = HTTP connection to use
* T = The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`. If asking
* for `char`, content will be converted from the connection character set
* (specified in HTTP response headers or FTP connection properties, both ISO-8859-1
* by default) to UTF-8.
*
* Examples:
* ----
* import std.net.curl;
*
* auto content1 = post("https://httpbin.org/post", ["name1" : "value1", "name2" : "value2"]);
* auto content2 = post("https://httpbin.org/post", [1,2,3,4]);
* ----
*
* Returns:
* A T[] range containing the content of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] post(T = char, PostUnit)(const(char)[] url, const(PostUnit)[] postData, HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
conn.method = HTTP.Method.post;
return _basicHTTP!(T)(url, postData, conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("POST /path"));
assert(req.bdy.canFind("POSTBODY"));
s.send(httpOK("POSTRESPONSE"));
});
auto res = post(host ~ "/path", "POSTBODY");
assert(res == "POSTRESPONSE");
}
}
@system unittest
{
import std.algorithm.searching : canFind;
auto data = new ubyte[](256);
foreach (i, ref ub; data)
ub = cast(ubyte) i;
testServer.handle((s) {
auto req = s.recvReq!ubyte;
assert(req.bdy.canFind(cast(ubyte[])[0, 1, 2, 3, 4]));
assert(req.bdy.canFind(cast(ubyte[])[253, 254, 255]));
s.send(httpOK(cast(ubyte[])[17, 27, 35, 41]));
});
auto res = post!ubyte(testServer.addr, data);
assert(res == cast(ubyte[])[17, 27, 35, 41]);
}
/// ditto
T[] post(T = char)(const(char)[] url, string[string] postDict, HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
import std.uri : urlEncode;
return post!T(url, urlEncode(postDict), conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
import std.meta : AliasSeq;
static immutable expected = ["name1=value1&name2=value2", "name2=value2&name1=value1"];
foreach (host; [testServer.addr, "http://" ~ testServer.addr])
{
foreach (T; AliasSeq!(char, ubyte))
{
testServer.handle((s) {
auto req = s.recvReq!char;
s.send(httpOK(req.bdy));
});
auto res = post!T(host ~ "/path", ["name1" : "value1", "name2" : "value2"]);
assert(canFind(expected, res));
}
}
}
/** HTTP/FTP put content.
*
* Params:
* url = resource to put
* putData = data to send as the body of the request. An array
* of an arbitrary type is accepted and will be cast to ubyte[]
* before sending it.
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`. If asking
* for `char`, content will be converted from the connection character set
* (specified in HTTP response headers or FTP connection properties, both ISO-8859-1
* by default) to UTF-8.
*
* Example:
* ----
* import std.net.curl;
* auto content = put("https://httpbin.org/put",
* "Putting this data");
* ----
*
* Returns:
* A T[] range containing the content of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] put(Conn = AutoProtocol, T = char, PutUnit)(const(char)[] url, const(PutUnit)[] putData,
Conn conn = Conn())
if ( isCurlConn!Conn && (is(T == char) || is(T == ubyte)) )
{
static if (is(Conn : HTTP))
{
conn.method = HTTP.Method.put;
return _basicHTTP!(T)(url, putData, conn);
}
else static if (is(Conn : FTP))
{
return _basicFTP!(T)(url, putData, conn);
}
else
{
if (isFTPUrl(url))
return put!(FTP,T)(url, putData, FTP());
else
return put!(HTTP,T)(url, putData, HTTP());
}
}
@system unittest
{
import std.algorithm.searching : canFind;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("PUT /path"));
assert(req.bdy.canFind("PUTBODY"));
s.send(httpOK("PUTRESPONSE"));
});
auto res = put(host ~ "/path", "PUTBODY");
assert(res == "PUTRESPONSE");
}
}
/** HTTP/FTP delete content.
*
* Params:
* url = resource to delete
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* Example:
* ----
* import std.net.curl;
* del("https://httpbin.org/delete");
* ----
*
* See_Also: $(LREF HTTP.Method)
*/
void del(Conn = AutoProtocol)(const(char)[] url, Conn conn = Conn())
if (isCurlConn!Conn)
{
static if (is(Conn : HTTP))
{
conn.method = HTTP.Method.del;
_basicHTTP!char(url, cast(void[]) null, conn);
}
else static if (is(Conn : FTP))
{
import std.algorithm.searching : findSplitAfter;
import std.conv : text;
import std.exception : enforce;
auto trimmed = url.findSplitAfter("ftp://")[1];
auto t = trimmed.findSplitAfter("/");
enum minDomainNameLength = 3;
enforce!CurlException(t[0].length > minDomainNameLength,
text("Invalid FTP URL for delete ", url));
conn.url = t[0];
enforce!CurlException(!t[1].empty,
text("No filename specified to delete for URL ", url));
conn.addCommand("DELE " ~ t[1]);
conn.perform();
}
else
{
if (isFTPUrl(url))
return del!FTP(url, FTP());
else
return del!HTTP(url, HTTP());
}
}
@system unittest
{
import std.algorithm.searching : canFind;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("DELETE /path"));
s.send(httpOK());
});
del(host ~ "/path");
}
}
/** HTTP options request.
*
* Params:
* url = resource make a option call to
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`.
*
* Example:
* ----
* import std.net.curl;
* auto http = HTTP();
* options("https://httpbin.org/headers", http);
* writeln("Allow set to " ~ http.responseHeaders["Allow"]);
* ----
*
* Returns:
* A T[] range containing the options of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] options(T = char)(const(char)[] url, HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
conn.method = HTTP.Method.options;
return _basicHTTP!(T)(url, null, conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("OPTIONS /path"));
s.send(httpOK("OPTIONSRESPONSE"));
});
auto res = options(testServer.addr ~ "/path");
assert(res == "OPTIONSRESPONSE");
}
/** HTTP trace request.
*
* Params:
* url = resource make a trace call to
* conn = connection to use e.g. FTP or HTTP. The default AutoProtocol will
* guess connection type and create a new instance for this call only.
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`.
*
* Example:
* ----
* import std.net.curl;
* trace("https://httpbin.org/headers");
* ----
*
* Returns:
* A T[] range containing the trace info of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] trace(T = char)(const(char)[] url, HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
conn.method = HTTP.Method.trace;
return _basicHTTP!(T)(url, cast(void[]) null, conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("TRACE /path"));
s.send(httpOK("TRACERESPONSE"));
});
auto res = trace(testServer.addr ~ "/path");
assert(res == "TRACERESPONSE");
}
/** HTTP connect request.
*
* Params:
* url = resource make a connect to
* conn = HTTP connection to use
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`.
*
* Example:
* ----
* import std.net.curl;
* connect("https://httpbin.org/headers");
* ----
*
* Returns:
* A T[] range containing the connect info of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] connect(T = char)(const(char)[] url, HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
conn.method = HTTP.Method.connect;
return _basicHTTP!(T)(url, cast(void[]) null, conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("CONNECT /path"));
s.send(httpOK("CONNECTRESPONSE"));
});
auto res = connect(testServer.addr ~ "/path");
assert(res == "CONNECTRESPONSE");
}
/** HTTP patch content.
*
* Params:
* url = resource to patch
* patchData = data to send as the body of the request. An array
* of an arbitrary type is accepted and will be cast to ubyte[]
* before sending it.
* conn = HTTP connection to use
*
* The template parameter `T` specifies the type to return. Possible values
* are `char` and `ubyte` to return `char[]` or `ubyte[]`.
*
* Example:
* ----
* auto http = HTTP();
* http.addRequestHeader("Content-Type", "application/json");
* auto content = patch("https://httpbin.org/patch", `{"title": "Patched Title"}`, http);
* ----
*
* Returns:
* A T[] range containing the content of the resource pointed to by the URL.
*
* See_Also: $(LREF HTTP.Method)
*/
T[] patch(T = char, PatchUnit)(const(char)[] url, const(PatchUnit)[] patchData,
HTTP conn = HTTP())
if (is(T == char) || is(T == ubyte))
{
conn.method = HTTP.Method.patch;
return _basicHTTP!(T)(url, patchData, conn);
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("PATCH /path"));
assert(req.bdy.canFind("PATCHBODY"));
s.send(httpOK("PATCHRESPONSE"));
});
auto res = patch(testServer.addr ~ "/path", "PATCHBODY");
assert(res == "PATCHRESPONSE");
}
/*
* Helper function for the high level interface.
*
* It performs an HTTP request using the client which must have
* been setup correctly before calling this function.
*/
private auto _basicHTTP(T)(const(char)[] url, const(void)[] sendData, HTTP client)
{
import std.algorithm.comparison : min;
import std.format : format;
import std.exception : enforce;
import etc.c.curl : CurlSeek, CurlSeekPos;
immutable doSend = sendData !is null &&
(client.method == HTTP.Method.post ||
client.method == HTTP.Method.put ||
client.method == HTTP.Method.patch);
scope (exit)
{
client.onReceiveHeader = null;
client.onReceiveStatusLine = null;
client.onReceive = null;
if (doSend)
{
client.onSend = null;
client.handle.onSeek = null;
client.contentLength = 0;
}
}
client.url = url;
HTTP.StatusLine statusLine;
import std.array : appender;
auto content = appender!(ubyte[])();
client.onReceive = (ubyte[] data)
{
content ~= data;
return data.length;
};
if (doSend)
{
client.contentLength = sendData.length;
auto remainingData = sendData;
client.onSend = delegate size_t(void[] buf)
{
size_t minLen = min(buf.length, remainingData.length);
if (minLen == 0) return 0;
buf[0 .. minLen] = remainingData[0 .. minLen];
remainingData = remainingData[minLen..$];
return minLen;
};
client.handle.onSeek = delegate(long offset, CurlSeekPos mode)
{
switch (mode)
{
case CurlSeekPos.set:
remainingData = sendData[cast(size_t) offset..$];
return CurlSeek.ok;
default:
// As of curl 7.18.0, libcurl will not pass
// anything other than CurlSeekPos.set.
return CurlSeek.cantseek;
}
};
}
client.onReceiveHeader = (in char[] key,
in char[] value)
{
if (key == "content-length")
{
import std.conv : to;
content.reserve(value.to!size_t);
}
};
client.onReceiveStatusLine = (HTTP.StatusLine l) { statusLine = l; };
client.perform();
enforce(statusLine.code / 100 == 2, new HTTPStatusException(statusLine.code,
format("HTTP request returned status code %d (%s)", statusLine.code, statusLine.reason)));
return _decodeContent!T(content.data, client.p.charset);
}
@system unittest
{
import std.algorithm.searching : canFind;
import std.exception : collectException;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("GET /path"));
s.send(httpNotFound());
});
auto e = collectException!HTTPStatusException(get(testServer.addr ~ "/path"));
assert(e.msg == "HTTP request returned status code 404 (Not Found)");
assert(e.status == 404);
}
// Content length must be reset after post
// https://issues.dlang.org/show_bug.cgi?id=14760
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("POST /"));
assert(req.bdy.canFind("POSTBODY"));
s.send(httpOK("POSTRESPONSE"));
req = s.recvReq;
assert(req.hdrs.canFind("TRACE /"));
assert(req.bdy.empty);
s.blocking = false;
ubyte[6] buf = void;
assert(s.receive(buf[]) < 0);
s.send(httpOK("TRACERESPONSE"));
});
auto http = HTTP();
auto res = post(testServer.addr, "POSTBODY", http);
assert(res == "POSTRESPONSE");
res = trace(testServer.addr, http);
assert(res == "TRACERESPONSE");
}
@system unittest // charset detection and transcoding to T
{
testServer.handle((s) {
s.send("HTTP/1.1 200 OK\r\n"~
"Content-Length: 4\r\n"~
"Content-Type: text/plain; charset=utf-8\r\n" ~
"\r\n" ~
"äbc");
});
auto client = HTTP();
auto result = _basicHTTP!char(testServer.addr, "", client);
assert(result == "äbc");
testServer.handle((s) {
s.send("HTTP/1.1 200 OK\r\n"~
"Content-Length: 3\r\n"~
"Content-Type: text/plain; charset=iso-8859-1\r\n" ~
"\r\n" ~
0xE4 ~ "bc");
});
client = HTTP();
result = _basicHTTP!char(testServer.addr, "", client);
assert(result == "äbc");
}
/*
* Helper function for the high level interface.
*
* It performs an FTP request using the client which must have
* been setup correctly before calling this function.
*/
private auto _basicFTP(T)(const(char)[] url, const(void)[] sendData, FTP client)
{
import std.algorithm.comparison : min;
scope (exit)
{
client.onReceive = null;
if (!sendData.empty)
client.onSend = null;
}
ubyte[] content;
if (client.encoding.empty)
client.encoding = "ISO-8859-1";
client.url = url;
client.onReceive = (ubyte[] data)
{
content ~= data;
return data.length;
};
if (!sendData.empty)
{
client.handle.set(CurlOption.upload, 1L);
client.onSend = delegate size_t(void[] buf)
{
size_t minLen = min(buf.length, sendData.length);
if (minLen == 0) return 0;
buf[0 .. minLen] = sendData[0 .. minLen];
sendData = sendData[minLen..$];
return minLen;
};
}
client.perform();
return _decodeContent!T(content, client.encoding);
}
/* Used by _basicHTTP() and _basicFTP() to decode ubyte[] to
* correct string format
*/
private auto _decodeContent(T)(ubyte[] content, string encoding)
{
static if (is(T == ubyte))
{
return content;
}
else
{
import std.exception : enforce;
import std.format : format;
// Optimally just return the utf8 encoded content
if (encoding == "UTF-8")
return cast(char[])(content);
// The content has to be re-encoded to utf8
auto scheme = EncodingScheme.create(encoding);
enforce!CurlException(scheme !is null,
format("Unknown encoding '%s'", encoding));
auto strInfo = decodeString(content, scheme);
enforce!CurlException(strInfo[0] != size_t.max,
format("Invalid encoding sequence for encoding '%s'",
encoding));
return strInfo[1];
}
}
alias KeepTerminator = Flag!"keepTerminator";
/+
struct ByLineBuffer(Char)
{
bool linePresent;
bool EOF;
Char[] buffer;
ubyte[] decodeRemainder;
bool append(const(ubyte)[] data)
{
byLineBuffer ~= data;
}
@property bool linePresent()
{
return byLinePresent;
}
Char[] get()
{
if (!linePresent)
{
// Decode ubyte[] into Char[] until a Terminator is found.
// If not Terminator is found and EOF is false then raise an
// exception.
}
return byLineBuffer;
}
}
++/
/** HTTP/FTP fetch content as a range of lines.
*
* A range of lines is returned when the request is complete. If the method or
* other request properties is to be customized then set the `conn` parameter
* with a HTTP/FTP instance that has these properties set.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* foreach (line; byLine("dlang.org"))
* writeln(line);
* ----
*
* Params:
* url = The url to receive content from
* keepTerminator = `Yes.keepTerminator` signals that the line terminator should be
* returned as part of the lines in the range.
* terminator = The character that terminates a line
* conn = The connection to use e.g. HTTP or FTP.
*
* Returns:
* A range of Char[] with the content of the resource pointer to by the URL
*/
auto byLine(Conn = AutoProtocol, Terminator = char, Char = char)
(const(char)[] url, KeepTerminator keepTerminator = No.keepTerminator,
Terminator terminator = '\n', Conn conn = Conn())
if (isCurlConn!Conn && isSomeChar!Char && isSomeChar!Terminator)
{
static struct SyncLineInputRange
{
private Char[] lines;
private Char[] current;
private bool currentValid;
private bool keepTerminator;
private Terminator terminator;
this(Char[] lines, bool kt, Terminator terminator)
{
this.lines = lines;
this.keepTerminator = kt;
this.terminator = terminator;
currentValid = true;
popFront();
}
@property @safe bool empty()
{
return !currentValid;
}
@property @safe Char[] front()
{
import std.exception : enforce;
enforce!CurlException(currentValid, "Cannot call front() on empty range");
return current;
}
void popFront()
{
import std.algorithm.searching : findSplitAfter, findSplit;
import std.exception : enforce;
enforce!CurlException(currentValid, "Cannot call popFront() on empty range");
if (lines.empty)
{
currentValid = false;
return;
}
if (keepTerminator)
{
auto r = findSplitAfter(lines, [ terminator ]);
if (r[0].empty)
{
current = r[1];
lines = r[0];
}
else
{
current = r[0];
lines = r[1];
}
}
else
{
auto r = findSplit(lines, [ terminator ]);
current = r[0];
lines = r[2];
}
}
}
auto result = _getForRange!Char(url, conn);
return SyncLineInputRange(result, keepTerminator == Yes.keepTerminator, terminator);
}
@system unittest
{
import std.algorithm.comparison : equal;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
s.send(httpOK("Line1\nLine2\nLine3"));
});
assert(byLine(host).equal(["Line1", "Line2", "Line3"]));
}
}
/** HTTP/FTP fetch content as a range of chunks.
*
* A range of chunks is returned when the request is complete. If the method or
* other request properties is to be customized then set the `conn` parameter
* with a HTTP/FTP instance that has these properties set.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* foreach (chunk; byChunk("dlang.org", 100))
* writeln(chunk); // chunk is ubyte[100]
* ----
*
* Params:
* url = The url to receive content from
* chunkSize = The size of each chunk
* conn = The connection to use e.g. HTTP or FTP.
*
* Returns:
* A range of ubyte[chunkSize] with the content of the resource pointer to by the URL
*/
auto byChunk(Conn = AutoProtocol)
(const(char)[] url, size_t chunkSize = 1024, Conn conn = Conn())
if (isCurlConn!(Conn))
{
static struct SyncChunkInputRange
{
private size_t chunkSize;
private ubyte[] _bytes;
private size_t offset;
this(ubyte[] bytes, size_t chunkSize)
{
this._bytes = bytes;
this.chunkSize = chunkSize;
}
@property @safe auto empty()
{
return offset == _bytes.length;
}
@property ubyte[] front()
{
size_t nextOffset = offset + chunkSize;
if (nextOffset > _bytes.length) nextOffset = _bytes.length;
return _bytes[offset .. nextOffset];
}
@safe void popFront()
{
offset += chunkSize;
if (offset > _bytes.length) offset = _bytes.length;
}
}
auto result = _getForRange!ubyte(url, conn);
return SyncChunkInputRange(result, chunkSize);
}
@system unittest
{
import std.algorithm.comparison : equal;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
s.send(httpOK(cast(ubyte[])[0, 1, 2, 3, 4, 5]));
});
assert(byChunk(host, 2).equal([[0, 1], [2, 3], [4, 5]]));
}
}
private T[] _getForRange(T,Conn)(const(char)[] url, Conn conn)
{
static if (is(Conn : HTTP))
{
conn.method = conn.method == HTTP.Method.undefined ? HTTP.Method.get : conn.method;
return _basicHTTP!(T)(url, null, conn);
}
else static if (is(Conn : FTP))
{
return _basicFTP!(T)(url, null, conn);
}
else
{
if (isFTPUrl(url))
return get!(FTP,T)(url, FTP());
else
return get!(HTTP,T)(url, HTTP());
}
}
/*
Main thread part of the message passing protocol used for all async
curl protocols.
*/
private mixin template WorkerThreadProtocol(Unit, alias units)
{
import core.time : Duration;
@property bool empty()
{
tryEnsureUnits();
return state == State.done;
}
@property Unit[] front()
{
import std.format : format;
tryEnsureUnits();
assert(state == State.gotUnits,
format("Expected %s but got $s",
State.gotUnits, state));
return units;
}
void popFront()
{
import std.concurrency : send;
import std.format : format;
tryEnsureUnits();
assert(state == State.gotUnits,
format("Expected %s but got $s",
State.gotUnits, state));
state = State.needUnits;
// Send to worker thread for buffer reuse
workerTid.send(cast(immutable(Unit)[]) units);
units = null;
}
/** Wait for duration or until data is available and return true if data is
available
*/
bool wait(Duration d)
{
import core.time : dur;
import std.datetime.stopwatch : StopWatch;
import std.concurrency : receiveTimeout;
if (state == State.gotUnits)
return true;
enum noDur = dur!"hnsecs"(0);
StopWatch sw;
sw.start();
while (state != State.gotUnits && d > noDur)
{
final switch (state)
{
case State.needUnits:
receiveTimeout(d,
(Tid origin, CurlMessage!(immutable(Unit)[]) _data)
{
if (origin != workerTid)
return false;
units = cast(Unit[]) _data.data;
state = State.gotUnits;
return true;
},
(Tid origin, CurlMessage!bool f)
{
if (origin != workerTid)
return false;
state = state.done;
return true;
}
);
break;
case State.gotUnits: return true;
case State.done:
return false;
}
d -= sw.peek();
sw.reset();
}
return state == State.gotUnits;
}
enum State
{
needUnits,
gotUnits,
done
}
State state;
void tryEnsureUnits()
{
import std.concurrency : receive;
while (true)
{
final switch (state)
{
case State.needUnits:
receive(
(Tid origin, CurlMessage!(immutable(Unit)[]) _data)
{
if (origin != workerTid)
return false;
units = cast(Unit[]) _data.data;
state = State.gotUnits;
return true;
},
(Tid origin, CurlMessage!bool f)
{
if (origin != workerTid)
return false;
state = state.done;
return true;
}
);
break;
case State.gotUnits: return;
case State.done:
return;
}
}
}
}
/** HTTP/FTP fetch content as a range of lines asynchronously.
*
* A range of lines is returned immediately and the request that fetches the
* lines is performed in another thread. If the method or other request
* properties is to be customized then set the `conn` parameter with a
* HTTP/FTP instance that has these properties set.
*
* If `postData` is non-_null the method will be set to `post` for HTTP
* requests.
*
* The background thread will buffer up to transmitBuffers number of lines
* before it stops receiving data from network. When the main thread reads the
* lines from the range it frees up buffers and allows for the background thread
* to receive more data from the network.
*
* If no data is available and the main thread accesses the range it will block
* until data becomes available. An exception to this is the `wait(Duration)` method on
* the $(LREF LineInputRange). This method will wait at maximum for the
* specified duration and return true if data is available.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* // Get some pages in the background
* auto range1 = byLineAsync("www.google.com");
* auto range2 = byLineAsync("www.wikipedia.org");
* foreach (line; byLineAsync("dlang.org"))
* writeln(line);
*
* // Lines already fetched in the background and ready
* foreach (line; range1) writeln(line);
* foreach (line; range2) writeln(line);
* ----
*
* ----
* import std.net.curl, std.stdio;
* // Get a line in a background thread and wait in
* // main thread for 2 seconds for it to arrive.
* auto range3 = byLineAsync("dlang.com");
* if (range3.wait(dur!"seconds"(2)))
* writeln(range3.front);
* else
* writeln("No line received after 2 seconds!");
* ----
*
* Params:
* url = The url to receive content from
* postData = Data to HTTP Post
* keepTerminator = `Yes.keepTerminator` signals that the line terminator should be
* returned as part of the lines in the range.
* terminator = The character that terminates a line
* transmitBuffers = The number of lines buffered asynchronously
* conn = The connection to use e.g. HTTP or FTP.
*
* Returns:
* A range of Char[] with the content of the resource pointer to by the
* URL.
*/
auto byLineAsync(Conn = AutoProtocol, Terminator = char, Char = char, PostUnit)
(const(char)[] url, const(PostUnit)[] postData,
KeepTerminator keepTerminator = No.keepTerminator,
Terminator terminator = '\n',
size_t transmitBuffers = 10, Conn conn = Conn())
if (isCurlConn!Conn && isSomeChar!Char && isSomeChar!Terminator)
{
static if (is(Conn : AutoProtocol))
{
if (isFTPUrl(url))
return byLineAsync(url, postData, keepTerminator,
terminator, transmitBuffers, FTP());
else
return byLineAsync(url, postData, keepTerminator,
terminator, transmitBuffers, HTTP());
}
else
{
import std.concurrency : OnCrowding, send, setMaxMailboxSize, spawn, thisTid, Tid;
// 50 is just an arbitrary number for now
setMaxMailboxSize(thisTid, 50, OnCrowding.block);
auto tid = spawn(&_async!().spawn!(Conn, Char, Terminator));
tid.send(thisTid);
tid.send(terminator);
tid.send(keepTerminator == Yes.keepTerminator);
_async!().duplicateConnection(url, conn, postData, tid);
return _async!().LineInputRange!Char(tid, transmitBuffers,
Conn.defaultAsyncStringBufferSize);
}
}
/// ditto
auto byLineAsync(Conn = AutoProtocol, Terminator = char, Char = char)
(const(char)[] url, KeepTerminator keepTerminator = No.keepTerminator,
Terminator terminator = '\n',
size_t transmitBuffers = 10, Conn conn = Conn())
{
static if (is(Conn : AutoProtocol))
{
if (isFTPUrl(url))
return byLineAsync(url, cast(void[]) null, keepTerminator,
terminator, transmitBuffers, FTP());
else
return byLineAsync(url, cast(void[]) null, keepTerminator,
terminator, transmitBuffers, HTTP());
}
else
{
return byLineAsync(url, cast(void[]) null, keepTerminator,
terminator, transmitBuffers, conn);
}
}
@system unittest
{
import std.algorithm.comparison : equal;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
s.send(httpOK("Line1\nLine2\nLine3"));
});
assert(byLineAsync(host).equal(["Line1", "Line2", "Line3"]));
}
}
/** HTTP/FTP fetch content as a range of chunks asynchronously.
*
* A range of chunks is returned immediately and the request that fetches the
* chunks is performed in another thread. If the method or other request
* properties is to be customized then set the `conn` parameter with a
* HTTP/FTP instance that has these properties set.
*
* If `postData` is non-_null the method will be set to `post` for HTTP
* requests.
*
* The background thread will buffer up to transmitBuffers number of chunks
* before is stops receiving data from network. When the main thread reads the
* chunks from the range it frees up buffers and allows for the background
* thread to receive more data from the network.
*
* If no data is available and the main thread access the range it will block
* until data becomes available. An exception to this is the `wait(Duration)`
* method on the $(LREF ChunkInputRange). This method will wait at maximum for the specified
* duration and return true if data is available.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* // Get some pages in the background
* auto range1 = byChunkAsync("www.google.com", 100);
* auto range2 = byChunkAsync("www.wikipedia.org");
* foreach (chunk; byChunkAsync("dlang.org"))
* writeln(chunk); // chunk is ubyte[100]
*
* // Chunks already fetched in the background and ready
* foreach (chunk; range1) writeln(chunk);
* foreach (chunk; range2) writeln(chunk);
* ----
*
* ----
* import std.net.curl, std.stdio;
* // Get a line in a background thread and wait in
* // main thread for 2 seconds for it to arrive.
* auto range3 = byChunkAsync("dlang.com", 10);
* if (range3.wait(dur!"seconds"(2)))
* writeln(range3.front);
* else
* writeln("No chunk received after 2 seconds!");
* ----
*
* Params:
* url = The url to receive content from
* postData = Data to HTTP Post
* chunkSize = The size of the chunks
* transmitBuffers = The number of chunks buffered asynchronously
* conn = The connection to use e.g. HTTP or FTP.
*
* Returns:
* A range of ubyte[chunkSize] with the content of the resource pointer to by
* the URL.
*/
auto byChunkAsync(Conn = AutoProtocol, PostUnit)
(const(char)[] url, const(PostUnit)[] postData,
size_t chunkSize = 1024, size_t transmitBuffers = 10,
Conn conn = Conn())
if (isCurlConn!(Conn))
{
static if (is(Conn : AutoProtocol))
{
if (isFTPUrl(url))
return byChunkAsync(url, postData, chunkSize,
transmitBuffers, FTP());
else
return byChunkAsync(url, postData, chunkSize,
transmitBuffers, HTTP());
}
else
{
import std.concurrency : OnCrowding, send, setMaxMailboxSize, spawn, thisTid, Tid;
// 50 is just an arbitrary number for now
setMaxMailboxSize(thisTid, 50, OnCrowding.block);
auto tid = spawn(&_async!().spawn!(Conn, ubyte));
tid.send(thisTid);
_async!().duplicateConnection(url, conn, postData, tid);
return _async!().ChunkInputRange(tid, transmitBuffers, chunkSize);
}
}
/// ditto
auto byChunkAsync(Conn = AutoProtocol)
(const(char)[] url,
size_t chunkSize = 1024, size_t transmitBuffers = 10,
Conn conn = Conn())
if (isCurlConn!(Conn))
{
static if (is(Conn : AutoProtocol))
{
if (isFTPUrl(url))
return byChunkAsync(url, cast(void[]) null, chunkSize,
transmitBuffers, FTP());
else
return byChunkAsync(url, cast(void[]) null, chunkSize,
transmitBuffers, HTTP());
}
else
{
return byChunkAsync(url, cast(void[]) null, chunkSize,
transmitBuffers, conn);
}
}
@system unittest
{
import std.algorithm.comparison : equal;
foreach (host; [testServer.addr, "http://"~testServer.addr])
{
testServer.handle((s) {
auto req = s.recvReq;
s.send(httpOK(cast(ubyte[])[0, 1, 2, 3, 4, 5]));
});
assert(byChunkAsync(host, 2).equal([[0, 1], [2, 3], [4, 5]]));
}
}
/*
Mixin template for all supported curl protocols. This is the commom
functionallity such as timeouts and network interface settings. This should
really be in the HTTP/FTP/SMTP structs but the documentation tool does not
support a mixin to put its doc strings where a mixin is done. Therefore docs
in this template is copied into each of HTTP/FTP/SMTP below.
*/
private mixin template Protocol()
{
import etc.c.curl : CurlReadFunc, RawCurlProxy = CurlProxy;
import core.time : Duration;
import std.socket : InternetAddress;
/// Value to return from `onSend`/`onReceive` delegates in order to
/// pause a request
alias requestPause = CurlReadFunc.pause;
/// Value to return from onSend delegate in order to abort a request
alias requestAbort = CurlReadFunc.abort;
static uint defaultAsyncStringBufferSize = 100;
/**
The curl handle used by this connection.
*/
@property ref Curl handle() return
{
return p.curl;
}
/**
True if the instance is stopped. A stopped instance is not usable.
*/
@property bool isStopped()
{
return p.curl.stopped;
}
/// Stop and invalidate this instance.
void shutdown()
{
p.curl.shutdown();
}
/** Set verbose.
This will print request information to stderr.
*/
@property void verbose(bool on)
{
p.curl.set(CurlOption.verbose, on ? 1L : 0L);
}
// Connection settings
/// Set timeout for activity on connection.
@property void dataTimeout(Duration d)
{
p.curl.set(CurlOption.low_speed_limit, 1);
p.curl.set(CurlOption.low_speed_time, d.total!"seconds");
}
/** Set maximum time an operation is allowed to take.
This includes dns resolution, connecting, data transfer, etc.
*/
@property void operationTimeout(Duration d)
{
p.curl.set(CurlOption.timeout_ms, d.total!"msecs");
}
/// Set timeout for connecting.
@property void connectTimeout(Duration d)
{
p.curl.set(CurlOption.connecttimeout_ms, d.total!"msecs");
}
// Network settings
/** Proxy
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy)
*/
@property void proxy(const(char)[] host)
{
p.curl.set(CurlOption.proxy, host);
}
/** Proxy port
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXYPORT, _proxy_port)
*/
@property void proxyPort(ushort port)
{
p.curl.set(CurlOption.proxyport, cast(long) port);
}
/// Type of proxy
alias CurlProxy = RawCurlProxy;
/** Proxy type
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy_type)
*/
@property void proxyType(CurlProxy type)
{
p.curl.set(CurlOption.proxytype, cast(long) type);
}
/// DNS lookup timeout.
@property void dnsTimeout(Duration d)
{
p.curl.set(CurlOption.dns_cache_timeout, d.total!"msecs");
}
/**
* The network interface to use in form of the the IP of the interface.
*
* Example:
* ----
* theprotocol.netInterface = "192.168.1.32";
* theprotocol.netInterface = [ 192, 168, 1, 32 ];
* ----
*
* See: $(REF InternetAddress, std,socket)
*/
@property void netInterface(const(char)[] i)
{
p.curl.set(CurlOption.intrface, i);
}
/// ditto
@property void netInterface(const(ubyte)[4] i)
{
import std.format : format;
const str = format("%d.%d.%d.%d", i[0], i[1], i[2], i[3]);
netInterface = str;
}
/// ditto
@property void netInterface(InternetAddress i)
{
netInterface = i.toAddrString();
}
/**
Set the local outgoing port to use.
Params:
port = the first outgoing port number to try and use
*/
@property void localPort(ushort port)
{
p.curl.set(CurlOption.localport, cast(long) port);
}
/**
Set the no proxy flag for the specified host names.
Params:
test = a list of comma host names that do not require
proxy to get reached
*/
void setNoProxy(string hosts)
{
p.curl.set(CurlOption.noproxy, hosts);
}
/**
Set the local outgoing port range to use.
This can be used together with the localPort property.
Params:
range = if the first port is occupied then try this many
port number forwards
*/
@property void localPortRange(ushort range)
{
p.curl.set(CurlOption.localportrange, cast(long) range);
}
/** Set the tcp no-delay socket option on or off.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTTCPNODELAY, nodelay)
*/
@property void tcpNoDelay(bool on)
{
p.curl.set(CurlOption.tcp_nodelay, cast(long) (on ? 1 : 0) );
}
/** Sets whether SSL peer certificates should be verified.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTSSLVERIFYPEER, verifypeer)
*/
@property void verifyPeer(bool on)
{
p.curl.set(CurlOption.ssl_verifypeer, on ? 1 : 0);
}
/** Sets whether the host within an SSL certificate should be verified.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTSSLVERIFYHOST, verifypeer)
*/
@property void verifyHost(bool on)
{
p.curl.set(CurlOption.ssl_verifyhost, on ? 2 : 0);
}
// Authentication settings
/**
Set the user name, password and optionally domain for authentication
purposes.
Some protocols may need authentication in some cases. Use this
function to provide credentials.
Params:
username = the username
password = the password
domain = used for NTLM authentication only and is set to the NTLM domain
name
*/
void setAuthentication(const(char)[] username, const(char)[] password,
const(char)[] domain = "")
{
import std.format : format;
if (!domain.empty)
username = format("%s/%s", domain, username);
p.curl.set(CurlOption.userpwd, format("%s:%s", username, password));
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq;
assert(req.hdrs.canFind("GET /"));
assert(req.hdrs.canFind("Basic dXNlcjpwYXNz"));
s.send(httpOK());
});
auto http = HTTP(testServer.addr);
http.onReceive = (ubyte[] data) { return data.length; };
http.setAuthentication("user", "pass");
http.perform();
// https://issues.dlang.org/show_bug.cgi?id=17540
http.setNoProxy("www.example.com");
}
/**
Set the user name and password for proxy authentication.
Params:
username = the username
password = the password
*/
void setProxyAuthentication(const(char)[] username, const(char)[] password)
{
import std.array : replace;
import std.format : format;
p.curl.set(CurlOption.proxyuserpwd,
format("%s:%s",
username.replace(":", "%3A"),
password.replace(":", "%3A"))
);
}
/**
* The event handler that gets called when data is needed for sending. The
* length of the `void[]` specifies the maximum number of bytes that can
* be sent.
*
* Returns:
* The callback returns the number of elements in the buffer that have been
* filled and are ready to send.
* The special value `.abortRequest` can be returned in order to abort the
* current request.
* The special value `.pauseRequest` can be returned in order to pause the
* current request.
*
* Example:
* ----
* import std.net.curl;
* string msg = "Hello world";
* auto client = HTTP("dlang.org");
* client.onSend = delegate size_t(void[] data)
* {
* auto m = cast(void[]) msg;
* size_t length = m.length > data.length ? data.length : m.length;
* if (length == 0) return 0;
* data[0 .. length] = m[0 .. length];
* msg = msg[length..$];
* return length;
* };
* client.perform();
* ----
*/
@property void onSend(size_t delegate(void[]) callback)
{
p.curl.clear(CurlOption.postfields); // cannot specify data when using callback
p.curl.onSend = callback;
}
/**
* The event handler that receives incoming data. Be sure to copy the
* incoming ubyte[] since it is not guaranteed to be valid after the
* callback returns.
*
* Returns:
* The callback returns the number of incoming bytes read. If the entire array is
* not read the request will abort.
* The special value .pauseRequest can be returned in order to pause the
* current request.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto client = HTTP("dlang.org");
* client.onReceive = (ubyte[] data)
* {
* writeln("Got data", to!(const(char)[])(data));
* return data.length;
* };
* client.perform();
* ----
*/
@property void onReceive(size_t delegate(ubyte[]) callback)
{
p.curl.onReceive = callback;
}
/**
* The event handler that gets called to inform of upload/download progress.
*
* Params:
* dlTotal = total bytes to download
* dlNow = currently downloaded bytes
* ulTotal = total bytes to upload
* ulNow = currently uploaded bytes
*
* Returns:
* Return 0 from the callback to signal success, return non-zero to abort
* transfer
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto client = HTTP("dlang.org");
* client.onProgress = delegate int(size_t dl, size_t dln, size_t ul, size_t uln)
* {
* writeln("Progress: downloaded ", dln, " of ", dl);
* writeln("Progress: uploaded ", uln, " of ", ul);
* return 0;
* };
* client.perform();
* ----
*/
@property void onProgress(int delegate(size_t dlTotal, size_t dlNow,
size_t ulTotal, size_t ulNow) callback)
{
p.curl.onProgress = callback;
}
}
/*
Decode `ubyte[]` array using the provided EncodingScheme up to maxChars
Returns: Tuple of ubytes read and the `Char[]` characters decoded.
Not all ubytes are guaranteed to be read in case of decoding error.
*/
private Tuple!(size_t,Char[])
decodeString(Char = char)(const(ubyte)[] data,
EncodingScheme scheme,
size_t maxChars = size_t.max)
{
import std.encoding : INVALID_SEQUENCE;
Char[] res;
immutable startLen = data.length;
size_t charsDecoded = 0;
while (data.length && charsDecoded < maxChars)
{
immutable dchar dc = scheme.safeDecode(data);
if (dc == INVALID_SEQUENCE)
{
return typeof(return)(size_t.max, cast(Char[]) null);
}
charsDecoded++;
res ~= dc;
}
return typeof(return)(startLen-data.length, res);
}
/*
Decode `ubyte[]` array using the provided `EncodingScheme` until a the
line terminator specified is found. The basesrc parameter is effectively
prepended to src as the first thing.
This function is used for decoding as much of the src buffer as
possible until either the terminator is found or decoding fails. If
it fails as the last data in the src it may mean that the src buffer
were missing some bytes in order to represent a correct code
point. Upon the next call to this function more bytes have been
received from net and the failing bytes should be given as the
basesrc parameter. It is done this way to minimize data copying.
Returns: true if a terminator was found
Not all ubytes are guaranteed to be read in case of decoding error.
any decoded chars will be inserted into dst.
*/
private bool decodeLineInto(Terminator, Char = char)(ref const(ubyte)[] basesrc,
ref const(ubyte)[] src,
ref Char[] dst,
EncodingScheme scheme,
Terminator terminator)
{
import std.algorithm.searching : endsWith;
import std.encoding : INVALID_SEQUENCE;
import std.exception : enforce;
// if there is anything in the basesrc then try to decode that
// first.
if (basesrc.length != 0)
{
// Try to ensure 4 entries in the basesrc by copying from src.
immutable blen = basesrc.length;
immutable len = (basesrc.length + src.length) >= 4 ?
4 : basesrc.length + src.length;
basesrc.length = len;
immutable dchar dc = scheme.safeDecode(basesrc);
if (dc == INVALID_SEQUENCE)
{
enforce!CurlException(len != 4, "Invalid code sequence");
return false;
}
dst ~= dc;
src = src[len-basesrc.length-blen .. $]; // remove used ubytes from src
basesrc.length = 0;
}
while (src.length)
{
const lsrc = src;
dchar dc = scheme.safeDecode(src);
if (dc == INVALID_SEQUENCE)
{
if (src.empty)
{
// The invalid sequence was in the end of the src. Maybe there
// just need to be more bytes available so these last bytes are
// put back to src for later use.
src = lsrc;
return false;
}
dc = '?';
}
dst ~= dc;
if (dst.endsWith(terminator))
return true;
}
return false; // no terminator found
}
/**
* HTTP client functionality.
*
* Example:
*
* Get with custom data receivers:
*
* ---
* import std.net.curl, std.stdio;
*
* auto http = HTTP("https://dlang.org");
* http.onReceiveHeader =
* (in char[] key, in char[] value) { writeln(key ~ ": " ~ value); };
* http.onReceive = (ubyte[] data) { /+ drop +/ return data.length; };
* http.perform();
* ---
*
*/
/**
* Put with data senders:
*
* ---
* import std.net.curl, std.stdio;
*
* auto http = HTTP("https://dlang.org");
* auto msg = "Hello world";
* http.contentLength = msg.length;
* http.onSend = (void[] data)
* {
* auto m = cast(void[]) msg;
* size_t len = m.length > data.length ? data.length : m.length;
* if (len == 0) return len;
* data[0 .. len] = m[0 .. len];
* msg = msg[len..$];
* return len;
* };
* http.perform();
* ---
*
*/
/**
* Tracking progress:
*
* ---
* import std.net.curl, std.stdio;
*
* auto http = HTTP();
* http.method = HTTP.Method.get;
* http.url = "http://upload.wikimedia.org/wikipedia/commons/" ~
* "5/53/Wikipedia-logo-en-big.png";
* http.onReceive = (ubyte[] data) { return data.length; };
* http.onProgress = (size_t dltotal, size_t dlnow,
* size_t ultotal, size_t ulnow)
* {
* writeln("Progress ", dltotal, ", ", dlnow, ", ", ultotal, ", ", ulnow);
* return 0;
* };
* http.perform();
* ---
*
* See_Also: $(LINK2 http://www.ietf.org/rfc/rfc2616.txt, RFC2616)
*
*/
struct HTTP
{
mixin Protocol;
import std.datetime.systime : SysTime;
import std.typecons : RefCounted;
import etc.c.curl : CurlAuth, CurlInfo, curl_slist, CURLVERSION_NOW, curl_off_t;
/// Authentication method equal to $(REF CurlAuth, etc,c,curl)
alias AuthMethod = CurlAuth;
static private uint defaultMaxRedirects = 10;
private struct Impl
{
~this()
{
if (headersOut !is null)
Curl.curl.slist_free_all(headersOut);
if (curl.handle !is null) // work around RefCounted/emplace bug
curl.shutdown();
}
Curl curl;
curl_slist* headersOut;
string[string] headersIn;
string charset;
/// The status line of the final sub-request in a request.
StatusLine status;
private void delegate(StatusLine) onReceiveStatusLine;
/// The HTTP method to use.
Method method = Method.undefined;
@system @property void onReceiveHeader(void delegate(in char[] key,
in char[] value) callback)
{
import std.algorithm.searching : startsWith;
import std.regex : regex, match;
import std.uni : toLower;
// Wrap incoming callback in order to separate http status line from
// http headers. On redirected requests there may be several such
// status lines. The last one is the one recorded.
auto dg = (in char[] header)
{
import std.utf : UTFException;
try
{
if (header.empty)
{
// header delimiter
return;
}
if (header.startsWith("HTTP/"))
{
headersIn.clear();
if (parseStatusLine(header, status))
{
if (onReceiveStatusLine != null)
onReceiveStatusLine(status);
}
return;
}
// Normal http header
auto m = match(cast(char[]) header, regex("(.*?): (.*)$"));
auto fieldName = m.captures[1].toLower().idup;
if (fieldName == "content-type")
{
auto mct = match(cast(char[]) m.captures[2],
regex("charset=([^;]*)", "i"));
if (!mct.empty && mct.captures.length > 1)
charset = mct.captures[1].idup;
}
if (!m.empty && callback !is null)
callback(fieldName, m.captures[2]);
headersIn[fieldName] = m.captures[2].idup;
}
catch (UTFException e)
{
//munch it - a header should be all ASCII, any "wrong UTF" is broken header
}
};
curl.onReceiveHeader = dg;
}
}
private RefCounted!Impl p;
import etc.c.curl : CurlTimeCond;
/// Parse status line, as received from / generated by cURL.
private static bool parseStatusLine(const char[] header, out StatusLine status) @safe
{
import std.conv : to;
import std.regex : regex, match;
const m = match(header, regex(r"^HTTP/(\d+)(?:\.(\d+))? (\d+)(?: (.*))?$"));
if (m.empty)
return false; // Invalid status line
else
{
status.majorVersion = to!ushort(m.captures[1]);
status.minorVersion = m.captures[2].length ? to!ushort(m.captures[2]) : 0;
status.code = to!ushort(m.captures[3]);
status.reason = m.captures[4].idup;
return true;
}
}
@safe unittest
{
StatusLine status;
assert(parseStatusLine("HTTP/1.1 200 OK", status)
&& status == StatusLine(1, 1, 200, "OK"));
assert(parseStatusLine("HTTP/1.0 304 Not Modified", status)
&& status == StatusLine(1, 0, 304, "Not Modified"));
// The HTTP2 protocol is binary; cURL generates this fake text header.
assert(parseStatusLine("HTTP/2 200", status)
&& status == StatusLine(2, 0, 200, null));
}
/** Time condition enumeration as an alias of $(REF CurlTimeCond, etc,c,curl)
$(HTTP www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.25, _RFC2616 Section 14.25)
*/
alias TimeCond = CurlTimeCond;
/**
Constructor taking the url as parameter.
*/
static HTTP opCall(const(char)[] url)
{
HTTP http;
http.initialize();
http.url = url;
return http;
}
///
static HTTP opCall()
{
HTTP http;
http.initialize();
return http;
}
///
HTTP dup()
{
HTTP copy;
copy.initialize();
copy.p.method = p.method;
curl_slist* cur = p.headersOut;
curl_slist* newlist = null;
while (cur)
{
newlist = Curl.curl.slist_append(newlist, cur.data);
cur = cur.next;
}
copy.p.headersOut = newlist;
copy.p.curl.set(CurlOption.httpheader, copy.p.headersOut);
copy.p.curl = p.curl.dup();
copy.dataTimeout = _defaultDataTimeout;
copy.onReceiveHeader = null;
return copy;
}
private void initialize()
{
p.curl.initialize();
maxRedirects = HTTP.defaultMaxRedirects;
p.charset = "ISO-8859-1"; // Default charset defined in HTTP RFC
p.method = Method.undefined;
setUserAgent(HTTP.defaultUserAgent);
dataTimeout = _defaultDataTimeout;
onReceiveHeader = null;
verifyPeer = true;
verifyHost = true;
}
/**
Perform a http request.
After the HTTP client has been setup and possibly assigned callbacks the
`perform()` method will start performing the request towards the
specified server.
Params:
throwOnError = whether to throw an exception or return a CurlCode on error
*/
CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError)
{
p.status.reset();
CurlOption opt;
final switch (p.method)
{
case Method.head:
p.curl.set(CurlOption.nobody, 1L);
opt = CurlOption.nobody;
break;
case Method.undefined:
case Method.get:
p.curl.set(CurlOption.httpget, 1L);
opt = CurlOption.httpget;
break;
case Method.post:
p.curl.set(CurlOption.post, 1L);
opt = CurlOption.post;
break;
case Method.put:
p.curl.set(CurlOption.upload, 1L);
opt = CurlOption.upload;
break;
case Method.del:
p.curl.set(CurlOption.customrequest, "DELETE");
opt = CurlOption.customrequest;
break;
case Method.options:
p.curl.set(CurlOption.customrequest, "OPTIONS");
opt = CurlOption.customrequest;
break;
case Method.trace:
p.curl.set(CurlOption.customrequest, "TRACE");
opt = CurlOption.customrequest;
break;
case Method.connect:
p.curl.set(CurlOption.customrequest, "CONNECT");
opt = CurlOption.customrequest;
break;
case Method.patch:
p.curl.set(CurlOption.customrequest, "PATCH");
opt = CurlOption.customrequest;
break;
}
scope (exit) p.curl.clear(opt);
return p.curl.perform(throwOnError);
}
/// The URL to specify the location of the resource.
@property void url(const(char)[] url)
{
import std.algorithm.searching : startsWith;
import std.uni : toLower;
if (!startsWith(url.toLower(), "http://", "https://"))
url = "http://" ~ url;
p.curl.set(CurlOption.url, url);
}
/// Set the CA certificate bundle file to use for SSL peer verification
@property void caInfo(const(char)[] caFile)
{
p.curl.set(CurlOption.cainfo, caFile);
}
// This is a workaround for mixed in content not having its
// docs mixed in.
version (StdDdoc)
{
static import etc.c.curl;
/// Value to return from `onSend`/`onReceive` delegates in order to
/// pause a request
alias requestPause = CurlReadFunc.pause;
/// Value to return from onSend delegate in order to abort a request
alias requestAbort = CurlReadFunc.abort;
/**
True if the instance is stopped. A stopped instance is not usable.
*/
@property bool isStopped();
/// Stop and invalidate this instance.
void shutdown();
/** Set verbose.
This will print request information to stderr.
*/
@property void verbose(bool on);
// Connection settings
/// Set timeout for activity on connection.
@property void dataTimeout(Duration d);
/** Set maximum time an operation is allowed to take.
This includes dns resolution, connecting, data transfer, etc.
*/
@property void operationTimeout(Duration d);
/// Set timeout for connecting.
@property void connectTimeout(Duration d);
// Network settings
/** Proxy
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy)
*/
@property void proxy(const(char)[] host);
/** Proxy port
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXYPORT, _proxy_port)
*/
@property void proxyPort(ushort port);
/// Type of proxy
alias CurlProxy = etc.c.curl.CurlProxy;
/** Proxy type
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy_type)
*/
@property void proxyType(CurlProxy type);
/// DNS lookup timeout.
@property void dnsTimeout(Duration d);
/**
* The network interface to use in form of the the IP of the interface.
*
* Example:
* ----
* theprotocol.netInterface = "192.168.1.32";
* theprotocol.netInterface = [ 192, 168, 1, 32 ];
* ----
*
* See: $(REF InternetAddress, std,socket)
*/
@property void netInterface(const(char)[] i);
/// ditto
@property void netInterface(const(ubyte)[4] i);
/// ditto
@property void netInterface(InternetAddress i);
/**
Set the local outgoing port to use.
Params:
port = the first outgoing port number to try and use
*/
@property void localPort(ushort port);
/**
Set the local outgoing port range to use.
This can be used together with the localPort property.
Params:
range = if the first port is occupied then try this many
port number forwards
*/
@property void localPortRange(ushort range);
/** Set the tcp no-delay socket option on or off.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTTCPNODELAY, nodelay)
*/
@property void tcpNoDelay(bool on);
// Authentication settings
/**
Set the user name, password and optionally domain for authentication
purposes.
Some protocols may need authentication in some cases. Use this
function to provide credentials.
Params:
username = the username
password = the password
domain = used for NTLM authentication only and is set to the NTLM domain
name
*/
void setAuthentication(const(char)[] username, const(char)[] password,
const(char)[] domain = "");
/**
Set the user name and password for proxy authentication.
Params:
username = the username
password = the password
*/
void setProxyAuthentication(const(char)[] username, const(char)[] password);
/**
* The event handler that gets called when data is needed for sending. The
* length of the `void[]` specifies the maximum number of bytes that can
* be sent.
*
* Returns:
* The callback returns the number of elements in the buffer that have been
* filled and are ready to send.
* The special value `.abortRequest` can be returned in order to abort the
* current request.
* The special value `.pauseRequest` can be returned in order to pause the
* current request.
*
* Example:
* ----
* import std.net.curl;
* string msg = "Hello world";
* auto client = HTTP("dlang.org");
* client.onSend = delegate size_t(void[] data)
* {
* auto m = cast(void[]) msg;
* size_t length = m.length > data.length ? data.length : m.length;
* if (length == 0) return 0;
* data[0 .. length] = m[0 .. length];
* msg = msg[length..$];
* return length;
* };
* client.perform();
* ----
*/
@property void onSend(size_t delegate(void[]) callback);
/**
* The event handler that receives incoming data. Be sure to copy the
* incoming ubyte[] since it is not guaranteed to be valid after the
* callback returns.
*
* Returns:
* The callback returns the incoming bytes read. If not the entire array is
* the request will abort.
* The special value .pauseRequest can be returned in order to pause the
* current request.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto client = HTTP("dlang.org");
* client.onReceive = (ubyte[] data)
* {
* writeln("Got data", to!(const(char)[])(data));
* return data.length;
* };
* client.perform();
* ----
*/
@property void onReceive(size_t delegate(ubyte[]) callback);
/**
* Register an event handler that gets called to inform of
* upload/download progress.
*
* Callback_parameters:
* $(CALLBACK_PARAMS)
*
* Callback_returns: Return 0 to signal success, return non-zero to
* abort transfer.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto client = HTTP("dlang.org");
* client.onProgress = delegate int(size_t dl, size_t dln, size_t ul, size_t uln)
* {
* writeln("Progress: downloaded ", dln, " of ", dl);
* writeln("Progress: uploaded ", uln, " of ", ul);
* return 0;
* };
* client.perform();
* ----
*/
@property void onProgress(int delegate(size_t dlTotal, size_t dlNow,
size_t ulTotal, size_t ulNow) callback);
}
/** Clear all outgoing headers.
*/
void clearRequestHeaders()
{
if (p.headersOut !is null)
Curl.curl.slist_free_all(p.headersOut);
p.headersOut = null;
p.curl.clear(CurlOption.httpheader);
}
/** Add a header e.g. "X-CustomField: Something is fishy".
*
* There is no remove header functionality. Do a $(LREF clearRequestHeaders)
* and set the needed headers instead.
*
* Example:
* ---
* import std.net.curl;
* auto client = HTTP();
* client.addRequestHeader("X-Custom-ABC", "This is the custom value");
* auto content = get("dlang.org", client);
* ---
*/
void addRequestHeader(const(char)[] name, const(char)[] value)
{
import std.format : format;
import std.internal.cstring : tempCString;
import std.uni : icmp;
if (icmp(name, "User-Agent") == 0)
return setUserAgent(value);
string nv = format("%s: %s", name, value);
p.headersOut = Curl.curl.slist_append(p.headersOut,
nv.tempCString().buffPtr);
p.curl.set(CurlOption.httpheader, p.headersOut);
}
/**
* The default "User-Agent" value send with a request.
* It has the form "Phobos-std.net.curl/$(I PHOBOS_VERSION) (libcurl/$(I CURL_VERSION))"
*/
static string defaultUserAgent() @property
{
import std.compiler : version_major, version_minor;
import std.format : format, sformat;
// http://curl.haxx.se/docs/versions.html
enum fmt = "Phobos-std.net.curl/%d.%03d (libcurl/%d.%d.%d)";
enum maxLen = fmt.length - "%d%03d%d%d%d".length + 10 + 10 + 3 + 3 + 3;
static char[maxLen] buf = void;
static string userAgent;
if (!userAgent.length)
{
auto curlVer = Curl.curl.version_info(CURLVERSION_NOW).version_num;
userAgent = cast(immutable) sformat(
buf, fmt, version_major, version_minor,
curlVer >> 16 & 0xFF, curlVer >> 8 & 0xFF, curlVer & 0xFF);
}
return userAgent;
}
/** Set the value of the user agent request header field.
*
* By default a request has it's "User-Agent" field set to $(LREF
* defaultUserAgent) even if `setUserAgent` was never called. Pass
* an empty string to suppress the "User-Agent" field altogether.
*/
void setUserAgent(const(char)[] userAgent)
{
p.curl.set(CurlOption.useragent, userAgent);
}
/**
* Get various timings defined in $(REF CurlInfo, etc, c, curl).
* The value is usable only if the return value is equal to `etc.c.curl.CurlError.ok`.
*
* Params:
* timing = one of the timings defined in $(REF CurlInfo, etc, c, curl).
* The values are:
* `etc.c.curl.CurlInfo.namelookup_time`,
* `etc.c.curl.CurlInfo.connect_time`,
* `etc.c.curl.CurlInfo.pretransfer_time`,
* `etc.c.curl.CurlInfo.starttransfer_time`,
* `etc.c.curl.CurlInfo.redirect_time`,
* `etc.c.curl.CurlInfo.appconnect_time`,
* `etc.c.curl.CurlInfo.total_time`.
* val = the actual value of the inquired timing.
*
* Returns:
* The return code of the operation. The value stored in val
* should be used only if the return value is `etc.c.curl.CurlInfo.ok`.
*
* Example:
* ---
* import std.net.curl;
* import etc.c.curl : CurlError, CurlInfo;
*
* auto client = HTTP("dlang.org");
* client.perform();
*
* double val;
* CurlCode code;
*
* code = client.getTiming(CurlInfo.namelookup_time, val);
* assert(code == CurlError.ok);
* ---
*/
CurlCode getTiming(CurlInfo timing, ref double val)
{
return p.curl.getTiming(timing, val);
}
/** The headers read from a successful response.
*
*/
@property string[string] responseHeaders()
{
return p.headersIn;
}
/// HTTP method used.
@property void method(Method m)
{
p.method = m;
}
/// ditto
@property Method method()
{
return p.method;
}
/**
HTTP status line of last response. One call to perform may
result in several requests because of redirection.
*/
@property StatusLine statusLine()
{
return p.status;
}
/// Set the active cookie string e.g. "name1=value1;name2=value2"
void setCookie(const(char)[] cookie)
{
p.curl.set(CurlOption.cookie, cookie);
}
/// Set a file path to where a cookie jar should be read/stored.
void setCookieJar(const(char)[] path)
{
p.curl.set(CurlOption.cookiefile, path);
if (path.length)
p.curl.set(CurlOption.cookiejar, path);
}
/// Flush cookie jar to disk.
void flushCookieJar()
{
p.curl.set(CurlOption.cookielist, "FLUSH");
}
/// Clear session cookies.
void clearSessionCookies()
{
p.curl.set(CurlOption.cookielist, "SESS");
}
/// Clear all cookies.
void clearAllCookies()
{
p.curl.set(CurlOption.cookielist, "ALL");
}
/**
Set time condition on the request.
Params:
cond = `CurlTimeCond.{none,ifmodsince,ifunmodsince,lastmod}`
timestamp = Timestamp for the condition
$(HTTP www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.25, _RFC2616 Section 14.25)
*/
void setTimeCondition(HTTP.TimeCond cond, SysTime timestamp)
{
p.curl.set(CurlOption.timecondition, cond);
p.curl.set(CurlOption.timevalue, timestamp.toUnixTime());
}
/** Specifying data to post when not using the onSend callback.
*
* The data is NOT copied by the library. Content-Type will default to
* application/octet-stream. Data is not converted or encoded by this
* method.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto http = HTTP("http://www.mydomain.com");
* http.onReceive = (ubyte[] data) { writeln(to!(const(char)[])(data)); return data.length; };
* http.postData = [1,2,3,4,5];
* http.perform();
* ----
*/
@property void postData(const(void)[] data)
{
setPostData(data, "application/octet-stream");
}
/** Specifying data to post when not using the onSend callback.
*
* The data is NOT copied by the library. Content-Type will default to
* text/plain. Data is not converted or encoded by this method.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto http = HTTP("http://www.mydomain.com");
* http.onReceive = (ubyte[] data) { writeln(to!(const(char)[])(data)); return data.length; };
* http.postData = "The quick....";
* http.perform();
* ----
*/
@property void postData(const(char)[] data)
{
setPostData(data, "text/plain");
}
/**
* Specify data to post when not using the onSend callback, with
* user-specified Content-Type.
* Params:
* data = Data to post.
* contentType = MIME type of the data, for example, "text/plain" or
* "application/octet-stream". See also:
* $(LINK2 http://en.wikipedia.org/wiki/Internet_media_type,
* Internet media type) on Wikipedia.
* -----
* import std.net.curl;
* auto http = HTTP("http://onlineform.example.com");
* auto data = "app=login&username=bob&password=s00perS3kret";
* http.setPostData(data, "application/x-www-form-urlencoded");
* http.onReceive = (ubyte[] data) { return data.length; };
* http.perform();
* -----
*/
void setPostData(const(void)[] data, string contentType)
{
// cannot use callback when specifying data directly so it is disabled here.
p.curl.clear(CurlOption.readfunction);
addRequestHeader("Content-Type", contentType);
p.curl.set(CurlOption.postfields, cast(void*) data.ptr);
p.curl.set(CurlOption.postfieldsize, data.length);
if (method == Method.undefined)
method = Method.post;
}
@system unittest
{
import std.algorithm.searching : canFind;
testServer.handle((s) {
auto req = s.recvReq!ubyte;
assert(req.hdrs.canFind("POST /path"));
assert(req.bdy.canFind(cast(ubyte[])[0, 1, 2, 3, 4]));
assert(req.bdy.canFind(cast(ubyte[])[253, 254, 255]));
s.send(httpOK(cast(ubyte[])[17, 27, 35, 41]));
});
auto data = new ubyte[](256);
foreach (i, ref ub; data)
ub = cast(ubyte) i;
auto http = HTTP(testServer.addr~"/path");
http.postData = data;
ubyte[] res;
http.onReceive = (data) { res ~= data; return data.length; };
http.perform();
assert(res == cast(ubyte[])[17, 27, 35, 41]);
}
/**
* Set the event handler that receives incoming headers.
*
* The callback will receive a header field key, value as parameter. The
* `const(char)[]` arrays are not valid after the delegate has returned.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* auto http = HTTP("dlang.org");
* http.onReceive = (ubyte[] data) { writeln(to!(const(char)[])(data)); return data.length; };
* http.onReceiveHeader = (in char[] key, in char[] value) { writeln(key, " = ", value); };
* http.perform();
* ----
*/
@property void onReceiveHeader(void delegate(in char[] key,
in char[] value) callback)
{
p.onReceiveHeader = callback;
}
/**
Callback for each received StatusLine.
Notice that several callbacks can be done for each call to
`perform()` due to redirections.
See_Also: $(LREF StatusLine)
*/
@property void onReceiveStatusLine(void delegate(StatusLine) callback)
{
p.onReceiveStatusLine = callback;
}
/**
The content length in bytes when using request that has content
e.g. POST/PUT and not using chunked transfer. Is set as the
"Content-Length" header. Set to ulong.max to reset to chunked transfer.
*/
@property void contentLength(ulong len)
{
import std.conv : to;
CurlOption lenOpt;
// Force post if necessary
if (p.method != Method.put && p.method != Method.post &&
p.method != Method.patch)
p.method = Method.post;
if (p.method == Method.post || p.method == Method.patch)
lenOpt = CurlOption.postfieldsize_large;
else
lenOpt = CurlOption.infilesize_large;
if (size_t.max != ulong.max && len == size_t.max)
len = ulong.max; // check size_t.max for backwards compat, turn into error
if (len == ulong.max)
{
// HTTP 1.1 supports requests with no length header set.
addRequestHeader("Transfer-Encoding", "chunked");
addRequestHeader("Expect", "100-continue");
}
else
{
p.curl.set(lenOpt, to!curl_off_t(len));
}
}
/**
Authentication method as specified in $(LREF AuthMethod).
*/
@property void authenticationMethod(AuthMethod authMethod)
{
p.curl.set(CurlOption.httpauth, cast(long) authMethod);
}
/**
Set max allowed redirections using the location header.
uint.max for infinite.
*/
@property void maxRedirects(uint maxRedirs)
{
if (maxRedirs == uint.max)
{
// Disable
p.curl.set(CurlOption.followlocation, 0);
}
else
{
p.curl.set(CurlOption.followlocation, 1);
p.curl.set(CurlOption.maxredirs, maxRedirs);
}
}
/** <a name="HTTP.Method"/>The standard HTTP methods :
* $(HTTP www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.1, _RFC2616 Section 5.1.1)
*/
enum Method
{
undefined,
head, ///
get, ///
post, ///
put, ///
del, ///
options, ///
trace, ///
connect, ///
patch, ///
}
/**
HTTP status line ie. the first line returned in an HTTP response.
If authentication or redirections are done then the status will be for
the last response received.
*/
struct StatusLine
{
ushort majorVersion; /// Major HTTP version ie. 1 in HTTP/1.0.
ushort minorVersion; /// Minor HTTP version ie. 0 in HTTP/1.0.
ushort code; /// HTTP status line code e.g. 200.
string reason; /// HTTP status line reason string.
/// Reset this status line
@safe void reset()
{
majorVersion = 0;
minorVersion = 0;
code = 0;
reason = "";
}
///
string toString() const
{
import std.format : format;
return format("%s %s (%s.%s)",
code, reason, majorVersion, minorVersion);
}
}
} // HTTP
@system unittest // charset/Charset/CHARSET/...
{
import etc.c.curl;
static foreach (c; ["charset", "Charset", "CHARSET", "CharSet", "charSet",
"ChArSeT", "cHaRsEt"])
{{
testServer.handle((s) {
s.send("HTTP/1.1 200 OK\r\n"~
"Content-Length: 0\r\n"~
"Content-Type: text/plain; " ~ c ~ "=foo\r\n" ~
"\r\n");
});
auto http = HTTP(testServer.addr);
http.perform();
assert(http.p.charset == "foo");
// https://issues.dlang.org/show_bug.cgi?id=16736
double val;
CurlCode code;
code = http.getTiming(CurlInfo.total_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.namelookup_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.connect_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.pretransfer_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.starttransfer_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.redirect_time, val);
assert(code == CurlError.ok);
code = http.getTiming(CurlInfo.appconnect_time, val);
assert(code == CurlError.ok);
}}
}
/**
FTP client functionality.
See_Also: $(HTTP tools.ietf.org/html/rfc959, RFC959)
*/
struct FTP
{
mixin Protocol;
import std.typecons : RefCounted;
import etc.c.curl : CurlError, CurlInfo, curl_off_t, curl_slist;
private struct Impl
{
~this()
{
if (commands !is null)
Curl.curl.slist_free_all(commands);
if (curl.handle !is null) // work around RefCounted/emplace bug
curl.shutdown();
}
curl_slist* commands;
Curl curl;
string encoding;
}
private RefCounted!Impl p;
/**
FTP access to the specified url.
*/
static FTP opCall(const(char)[] url)
{
FTP ftp;
ftp.initialize();
ftp.url = url;
return ftp;
}
///
static FTP opCall()
{
FTP ftp;
ftp.initialize();
return ftp;
}
///
FTP dup()
{
FTP copy = FTP();
copy.initialize();
copy.p.encoding = p.encoding;
copy.p.curl = p.curl.dup();
curl_slist* cur = p.commands;
curl_slist* newlist = null;
while (cur)
{
newlist = Curl.curl.slist_append(newlist, cur.data);
cur = cur.next;
}
copy.p.commands = newlist;
copy.p.curl.set(CurlOption.postquote, copy.p.commands);
copy.dataTimeout = _defaultDataTimeout;
return copy;
}
private void initialize()
{
p.curl.initialize();
p.encoding = "ISO-8859-1";
dataTimeout = _defaultDataTimeout;
}
/**
Performs the ftp request as it has been configured.
After a FTP client has been setup and possibly assigned callbacks the $(D
perform()) method will start performing the actual communication with the
server.
Params:
throwOnError = whether to throw an exception or return a CurlCode on error
*/
CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError)
{
return p.curl.perform(throwOnError);
}
/// The URL to specify the location of the resource.
@property void url(const(char)[] url)
{
import std.algorithm.searching : startsWith;
import std.uni : toLower;
if (!startsWith(url.toLower(), "ftp://", "ftps://"))
url = "ftp://" ~ url;
p.curl.set(CurlOption.url, url);
}
// This is a workaround for mixed in content not having its
// docs mixed in.
version (StdDdoc)
{
static import etc.c.curl;
/// Value to return from `onSend`/`onReceive` delegates in order to
/// pause a request
alias requestPause = CurlReadFunc.pause;
/// Value to return from onSend delegate in order to abort a request
alias requestAbort = CurlReadFunc.abort;
/**
True if the instance is stopped. A stopped instance is not usable.
*/
@property bool isStopped();
/// Stop and invalidate this instance.
void shutdown();
/** Set verbose.
This will print request information to stderr.
*/
@property void verbose(bool on);
// Connection settings
/// Set timeout for activity on connection.
@property void dataTimeout(Duration d);
/** Set maximum time an operation is allowed to take.
This includes dns resolution, connecting, data transfer, etc.
*/
@property void operationTimeout(Duration d);
/// Set timeout for connecting.
@property void connectTimeout(Duration d);
// Network settings
/** Proxy
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy)
*/
@property void proxy(const(char)[] host);
/** Proxy port
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXYPORT, _proxy_port)
*/
@property void proxyPort(ushort port);
/// Type of proxy
alias CurlProxy = etc.c.curl.CurlProxy;
/** Proxy type
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy_type)
*/
@property void proxyType(CurlProxy type);
/// DNS lookup timeout.
@property void dnsTimeout(Duration d);
/**
* The network interface to use in form of the the IP of the interface.
*
* Example:
* ----
* theprotocol.netInterface = "192.168.1.32";
* theprotocol.netInterface = [ 192, 168, 1, 32 ];
* ----
*
* See: $(REF InternetAddress, std,socket)
*/
@property void netInterface(const(char)[] i);
/// ditto
@property void netInterface(const(ubyte)[4] i);
/// ditto
@property void netInterface(InternetAddress i);
/**
Set the local outgoing port to use.
Params:
port = the first outgoing port number to try and use
*/
@property void localPort(ushort port);
/**
Set the local outgoing port range to use.
This can be used together with the localPort property.
Params:
range = if the first port is occupied then try this many
port number forwards
*/
@property void localPortRange(ushort range);
/** Set the tcp no-delay socket option on or off.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTTCPNODELAY, nodelay)
*/
@property void tcpNoDelay(bool on);
// Authentication settings
/**
Set the user name, password and optionally domain for authentication
purposes.
Some protocols may need authentication in some cases. Use this
function to provide credentials.
Params:
username = the username
password = the password
domain = used for NTLM authentication only and is set to the NTLM domain
name
*/
void setAuthentication(const(char)[] username, const(char)[] password,
const(char)[] domain = "");
/**
Set the user name and password for proxy authentication.
Params:
username = the username
password = the password
*/
void setProxyAuthentication(const(char)[] username, const(char)[] password);
/**
* The event handler that gets called when data is needed for sending. The
* length of the `void[]` specifies the maximum number of bytes that can
* be sent.
*
* Returns:
* The callback returns the number of elements in the buffer that have been
* filled and are ready to send.
* The special value `.abortRequest` can be returned in order to abort the
* current request.
* The special value `.pauseRequest` can be returned in order to pause the
* current request.
*
*/
@property void onSend(size_t delegate(void[]) callback);
/**
* The event handler that receives incoming data. Be sure to copy the
* incoming ubyte[] since it is not guaranteed to be valid after the
* callback returns.
*
* Returns:
* The callback returns the incoming bytes read. If not the entire array is
* the request will abort.
* The special value .pauseRequest can be returned in order to pause the
* current request.
*
*/
@property void onReceive(size_t delegate(ubyte[]) callback);
/**
* The event handler that gets called to inform of upload/download progress.
*
* Callback_parameters:
* $(CALLBACK_PARAMS)
*
* Callback_returns:
* Return 0 from the callback to signal success, return non-zero to
* abort transfer.
*/
@property void onProgress(int delegate(size_t dlTotal, size_t dlNow,
size_t ulTotal, size_t ulNow) callback);
}
/** Clear all commands send to ftp server.
*/
void clearCommands()
{
if (p.commands !is null)
Curl.curl.slist_free_all(p.commands);
p.commands = null;
p.curl.clear(CurlOption.postquote);
}
/** Add a command to send to ftp server.
*
* There is no remove command functionality. Do a $(LREF clearCommands) and
* set the needed commands instead.
*
* Example:
* ---
* import std.net.curl;
* auto client = FTP();
* client.addCommand("RNFR my_file.txt");
* client.addCommand("RNTO my_renamed_file.txt");
* upload("my_file.txt", "ftp.digitalmars.com", client);
* ---
*/
void addCommand(const(char)[] command)
{
import std.internal.cstring : tempCString;
p.commands = Curl.curl.slist_append(p.commands,
command.tempCString().buffPtr);
p.curl.set(CurlOption.postquote, p.commands);
}
/// Connection encoding. Defaults to ISO-8859-1.
@property void encoding(string name)
{
p.encoding = name;
}
/// ditto
@property string encoding()
{
return p.encoding;
}
/**
The content length in bytes of the ftp data.
*/
@property void contentLength(ulong len)
{
import std.conv : to;
p.curl.set(CurlOption.infilesize_large, to!curl_off_t(len));
}
/**
* Get various timings defined in $(REF CurlInfo, etc, c, curl).
* The value is usable only if the return value is equal to `etc.c.curl.CurlError.ok`.
*
* Params:
* timing = one of the timings defined in $(REF CurlInfo, etc, c, curl).
* The values are:
* `etc.c.curl.CurlInfo.namelookup_time`,
* `etc.c.curl.CurlInfo.connect_time`,
* `etc.c.curl.CurlInfo.pretransfer_time`,
* `etc.c.curl.CurlInfo.starttransfer_time`,
* `etc.c.curl.CurlInfo.redirect_time`,
* `etc.c.curl.CurlInfo.appconnect_time`,
* `etc.c.curl.CurlInfo.total_time`.
* val = the actual value of the inquired timing.
*
* Returns:
* The return code of the operation. The value stored in val
* should be used only if the return value is `etc.c.curl.CurlInfo.ok`.
*
* Example:
* ---
* import std.net.curl;
* import etc.c.curl : CurlError, CurlInfo;
*
* auto client = FTP();
* client.addCommand("RNFR my_file.txt");
* client.addCommand("RNTO my_renamed_file.txt");
* upload("my_file.txt", "ftp.digitalmars.com", client);
*
* double val;
* CurlCode code;
*
* code = client.getTiming(CurlInfo.namelookup_time, val);
* assert(code == CurlError.ok);
* ---
*/
CurlCode getTiming(CurlInfo timing, ref double val)
{
return p.curl.getTiming(timing, val);
}
@system unittest
{
auto client = FTP();
double val;
CurlCode code;
code = client.getTiming(CurlInfo.total_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.namelookup_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.connect_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.pretransfer_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.starttransfer_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.redirect_time, val);
assert(code == CurlError.ok);
code = client.getTiming(CurlInfo.appconnect_time, val);
assert(code == CurlError.ok);
}
}
/**
* Basic SMTP protocol support.
*
* Example:
* ---
* import std.net.curl;
*
* // Send an email with SMTPS
* auto smtp = SMTP("smtps://smtp.gmail.com");
* smtp.setAuthentication("from.addr@gmail.com", "password");
* smtp.mailTo = ["<to.addr@gmail.com>"];
* smtp.mailFrom = "<from.addr@gmail.com>";
* smtp.message = "Example Message";
* smtp.perform();
* ---
*
* See_Also: $(HTTP www.ietf.org/rfc/rfc2821.txt, RFC2821)
*/
struct SMTP
{
mixin Protocol;
import std.typecons : RefCounted;
import etc.c.curl : CurlUseSSL, curl_slist;
private struct Impl
{
~this()
{
if (curl.handle !is null) // work around RefCounted/emplace bug
curl.shutdown();
}
Curl curl;
@property void message(string msg)
{
import std.algorithm.comparison : min;
auto _message = msg;
/**
This delegate reads the message text and copies it.
*/
curl.onSend = delegate size_t(void[] data)
{
if (!msg.length) return 0;
size_t to_copy = min(data.length, _message.length);
data[0 .. to_copy] = (cast(void[])_message)[0 .. to_copy];
_message = _message[to_copy..$];
return to_copy;
};
}
}
private RefCounted!Impl p;
/**
Sets to the URL of the SMTP server.
*/
static SMTP opCall(const(char)[] url)
{
SMTP smtp;
smtp.initialize();
smtp.url = url;
return smtp;
}
///
static SMTP opCall()
{
SMTP smtp;
smtp.initialize();
return smtp;
}
/+ TODO: The other structs have this function.
SMTP dup()
{
SMTP copy = SMTP();
copy.initialize();
copy.p.encoding = p.encoding;
copy.p.curl = p.curl.dup();
curl_slist* cur = p.commands;
curl_slist* newlist = null;
while (cur)
{
newlist = Curl.curl.slist_append(newlist, cur.data);
cur = cur.next;
}
copy.p.commands = newlist;
copy.p.curl.set(CurlOption.postquote, copy.p.commands);
copy.dataTimeout = _defaultDataTimeout;
return copy;
}
+/
/**
Performs the request as configured.
Params:
throwOnError = whether to throw an exception or return a CurlCode on error
*/
CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError)
{
return p.curl.perform(throwOnError);
}
/// The URL to specify the location of the resource.
@property void url(const(char)[] url)
{
import std.algorithm.searching : startsWith;
import std.exception : enforce;
import std.uni : toLower;
auto lowered = url.toLower();
if (lowered.startsWith("smtps://"))
{
p.curl.set(CurlOption.use_ssl, CurlUseSSL.all);
}
else
{
enforce!CurlException(lowered.startsWith("smtp://"),
"The url must be for the smtp protocol.");
}
p.curl.set(CurlOption.url, url);
}
private void initialize()
{
p.curl.initialize();
p.curl.set(CurlOption.upload, 1L);
dataTimeout = _defaultDataTimeout;
verifyPeer = true;
verifyHost = true;
}
// This is a workaround for mixed in content not having its
// docs mixed in.
version (StdDdoc)
{
static import etc.c.curl;
/// Value to return from `onSend`/`onReceive` delegates in order to
/// pause a request
alias requestPause = CurlReadFunc.pause;
/// Value to return from onSend delegate in order to abort a request
alias requestAbort = CurlReadFunc.abort;
/**
True if the instance is stopped. A stopped instance is not usable.
*/
@property bool isStopped();
/// Stop and invalidate this instance.
void shutdown();
/** Set verbose.
This will print request information to stderr.
*/
@property void verbose(bool on);
// Connection settings
/// Set timeout for activity on connection.
@property void dataTimeout(Duration d);
/** Set maximum time an operation is allowed to take.
This includes dns resolution, connecting, data transfer, etc.
*/
@property void operationTimeout(Duration d);
/// Set timeout for connecting.
@property void connectTimeout(Duration d);
// Network settings
/** Proxy
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy)
*/
@property void proxy(const(char)[] host);
/** Proxy port
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXYPORT, _proxy_port)
*/
@property void proxyPort(ushort port);
/// Type of proxy
alias CurlProxy = etc.c.curl.CurlProxy;
/** Proxy type
* See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXY, _proxy_type)
*/
@property void proxyType(CurlProxy type);
/// DNS lookup timeout.
@property void dnsTimeout(Duration d);
/**
* The network interface to use in form of the the IP of the interface.
*
* Example:
* ----
* theprotocol.netInterface = "192.168.1.32";
* theprotocol.netInterface = [ 192, 168, 1, 32 ];
* ----
*
* See: $(REF InternetAddress, std,socket)
*/
@property void netInterface(const(char)[] i);
/// ditto
@property void netInterface(const(ubyte)[4] i);
/// ditto
@property void netInterface(InternetAddress i);
/**
Set the local outgoing port to use.
Params:
port = the first outgoing port number to try and use
*/
@property void localPort(ushort port);
/**
Set the local outgoing port range to use.
This can be used together with the localPort property.
Params:
range = if the first port is occupied then try this many
port number forwards
*/
@property void localPortRange(ushort range);
/** Set the tcp no-delay socket option on or off.
See: $(HTTP curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTTCPNODELAY, nodelay)
*/
@property void tcpNoDelay(bool on);
// Authentication settings
/**
Set the user name, password and optionally domain for authentication
purposes.
Some protocols may need authentication in some cases. Use this
function to provide credentials.
Params:
username = the username
password = the password
domain = used for NTLM authentication only and is set to the NTLM domain
name
*/
void setAuthentication(const(char)[] username, const(char)[] password,
const(char)[] domain = "");
/**
Set the user name and password for proxy authentication.
Params:
username = the username
password = the password
*/
void setProxyAuthentication(const(char)[] username, const(char)[] password);
/**
* The event handler that gets called when data is needed for sending. The
* length of the `void[]` specifies the maximum number of bytes that can
* be sent.
*
* Returns:
* The callback returns the number of elements in the buffer that have been
* filled and are ready to send.
* The special value `.abortRequest` can be returned in order to abort the
* current request.
* The special value `.pauseRequest` can be returned in order to pause the
* current request.
*/
@property void onSend(size_t delegate(void[]) callback);
/**
* The event handler that receives incoming data. Be sure to copy the
* incoming ubyte[] since it is not guaranteed to be valid after the
* callback returns.
*
* Returns:
* The callback returns the incoming bytes read. If not the entire array is
* the request will abort.
* The special value .pauseRequest can be returned in order to pause the
* current request.
*/
@property void onReceive(size_t delegate(ubyte[]) callback);
/**
* The event handler that gets called to inform of upload/download progress.
*
* Callback_parameters:
* $(CALLBACK_PARAMS)
*
* Callback_returns:
* Return 0 from the callback to signal success, return non-zero to
* abort transfer.
*/
@property void onProgress(int delegate(size_t dlTotal, size_t dlNow,
size_t ulTotal, size_t ulNow) callback);
}
/**
Setter for the sender's email address.
*/
@property void mailFrom()(const(char)[] sender)
{
assert(!sender.empty, "Sender must not be empty");
p.curl.set(CurlOption.mail_from, sender);
}
/**
Setter for the recipient email addresses.
*/
void mailTo()(const(char)[][] recipients...)
{
import std.internal.cstring : tempCString;
assert(!recipients.empty, "Recipient must not be empty");
curl_slist* recipients_list = null;
foreach (recipient; recipients)
{
recipients_list =
Curl.curl.slist_append(recipients_list,
recipient.tempCString().buffPtr);
}
p.curl.set(CurlOption.mail_rcpt, recipients_list);
}
/**
Sets the message body text.
*/
@property void message(string msg)
{
p.message = msg;
}
}
@system unittest
{
import std.net.curl;
// Send an email with SMTPS
auto smtp = SMTP("smtps://smtp.gmail.com");
smtp.setAuthentication("from.addr@gmail.com", "password");
smtp.mailTo = ["<to.addr@gmail.com>"];
smtp.mailFrom = "<from.addr@gmail.com>";
smtp.message = "Example Message";
//smtp.perform();
}
/++
Exception thrown on errors in std.net.curl functions.
+/
class CurlException : Exception
{
/++
Params:
msg = The message for the exception.
file = The file where the exception occurred.
line = The line number where the exception occurred.
next = The previous exception in the chain of exceptions, if any.
+/
@safe pure nothrow
this(string msg,
string file = __FILE__,
size_t line = __LINE__,
Throwable next = null)
{
super(msg, file, line, next);
}
}
/++
Exception thrown on timeout errors in std.net.curl functions.
+/
class CurlTimeoutException : CurlException
{
/++
Params:
msg = The message for the exception.
file = The file where the exception occurred.
line = The line number where the exception occurred.
next = The previous exception in the chain of exceptions, if any.
+/
@safe pure nothrow
this(string msg,
string file = __FILE__,
size_t line = __LINE__,
Throwable next = null)
{
super(msg, file, line, next);
}
}
/++
Exception thrown on HTTP request failures, e.g. 404 Not Found.
+/
class HTTPStatusException : CurlException
{
/++
Params:
status = The HTTP status code.
msg = The message for the exception.
file = The file where the exception occurred.
line = The line number where the exception occurred.
next = The previous exception in the chain of exceptions, if any.
+/
@safe pure nothrow
this(int status,
string msg,
string file = __FILE__,
size_t line = __LINE__,
Throwable next = null)
{
super(msg, file, line, next);
this.status = status;
}
immutable int status; /// The HTTP status code
}
/// Equal to $(REF CURLcode, etc,c,curl)
alias CurlCode = CURLcode;
/// Flag to specify whether or not an exception is thrown on error.
alias ThrowOnError = Flag!"throwOnError";
private struct CurlAPI
{
import etc.c.curl : CurlGlobal;
static struct API
{
import etc.c.curl : curl_version_info, curl_version_info_data,
CURL, CURLcode, CURLINFO, CURLoption, CURLversion, curl_slist;
extern(C):
import core.stdc.config : c_long;
CURLcode function(c_long flags) global_init;
void function() global_cleanup;
curl_version_info_data * function(CURLversion) version_info;
CURL* function() easy_init;
CURLcode function(CURL *curl, CURLoption option,...) easy_setopt;
CURLcode function(CURL *curl) easy_perform;
CURLcode function(CURL *curl, CURLINFO info,...) easy_getinfo;
CURL* function(CURL *curl) easy_duphandle;
char* function(CURLcode) easy_strerror;
CURLcode function(CURL *handle, int bitmask) easy_pause;
void function(CURL *curl) easy_cleanup;
curl_slist* function(curl_slist *, char *) slist_append;
void function(curl_slist *) slist_free_all;
}
__gshared API _api;
__gshared void* _handle;
static ref API instance() @property
{
import std.concurrency : initOnce;
initOnce!_handle(loadAPI());
return _api;
}
static void* loadAPI()
{
import std.exception : enforce;
version (Posix)
{
import core.sys.posix.dlfcn : dlsym, dlopen, dlclose, RTLD_LAZY;
alias loadSym = dlsym;
}
else version (Windows)
{
import core.sys.windows.winbase : GetProcAddress, GetModuleHandleA,
LoadLibraryA;
alias loadSym = GetProcAddress;
}
else
static assert(0, "unimplemented");
void* handle;
version (Posix)
handle = dlopen(null, RTLD_LAZY);
else version (Windows)
handle = GetModuleHandleA(null);
assert(handle !is null);
// try to load curl from the executable to allow static linking
if (loadSym(handle, "curl_global_init") is null)
{
import std.format : format;
version (Posix)
dlclose(handle);
version (LibcurlPath)
{
import std.string : strip;
static immutable names = [strip(import("LibcurlPathFile"))];
}
else version (OSX)
static immutable names = ["libcurl.4.dylib"];
else version (Posix)
{
static immutable names = ["libcurl.so", "libcurl.so.4",
"libcurl-gnutls.so.4", "libcurl-nss.so.4", "libcurl.so.3"];
}
else version (Windows)
static immutable names = ["libcurl.dll", "curl.dll"];
foreach (name; names)
{
version (Posix)
handle = dlopen(name.ptr, RTLD_LAZY);
else version (Windows)
handle = LoadLibraryA(name.ptr);
if (handle !is null) break;
}
enforce!CurlException(handle !is null, "Failed to load curl, tried %(%s, %).".format(names));
}
foreach (i, FP; typeof(API.tupleof))
{
enum name = __traits(identifier, _api.tupleof[i]);
auto p = enforce!CurlException(loadSym(handle, "curl_"~name),
"Couldn't load curl_"~name~" from libcurl.");
_api.tupleof[i] = cast(FP) p;
}
enforce!CurlException(!_api.global_init(CurlGlobal.all),
"Failed to initialize libcurl");
static extern(C) void cleanup()
{
if (_handle is null) return;
_api.global_cleanup();
version (Posix)
{
import core.sys.posix.dlfcn : dlclose;
dlclose(_handle);
}
else version (Windows)
{
import core.sys.windows.winbase : FreeLibrary;
FreeLibrary(_handle);
}
else
static assert(0, "unimplemented");
_api = API.init;
_handle = null;
}
import core.stdc.stdlib : atexit;
atexit(&cleanup);
return handle;
}
}
/**
Wrapper to provide a better interface to libcurl than using the plain C API.
It is recommended to use the `HTTP`/`FTP` etc. structs instead unless
raw access to libcurl is needed.
Warning: This struct uses interior pointers for callbacks. Only allocate it
on the stack if you never move or copy it. This also means passing by reference
when passing Curl to other functions. Otherwise always allocate on
the heap.
*/
struct Curl
{
import etc.c.curl : CURL, CurlError, CurlPause, CurlSeek, CurlSeekPos,
curl_socket_t, CurlSockType,
CurlReadFunc, CurlInfo, curlsocktype, curl_off_t,
LIBCURL_VERSION_MAJOR, LIBCURL_VERSION_MINOR, LIBCURL_VERSION_PATCH;
alias OutData = void[];
alias InData = ubyte[];
private bool _stopped;
private static auto ref curl() @property { return CurlAPI.instance; }
// A handle should not be used by two threads simultaneously
private CURL* handle;
// May also return `CURL_READFUNC_ABORT` or `CURL_READFUNC_PAUSE`
private size_t delegate(OutData) _onSend;
private size_t delegate(InData) _onReceive;
private void delegate(in char[]) _onReceiveHeader;
private CurlSeek delegate(long,CurlSeekPos) _onSeek;
private int delegate(curl_socket_t,CurlSockType) _onSocketOption;
private int delegate(size_t dltotal, size_t dlnow,
size_t ultotal, size_t ulnow) _onProgress;
alias requestPause = CurlReadFunc.pause;
alias requestAbort = CurlReadFunc.abort;
/**
Initialize the instance by creating a working curl handle.
*/
void initialize()
{
import std.exception : enforce;
enforce!CurlException(!handle, "Curl instance already initialized");
handle = curl.easy_init();
enforce!CurlException(handle, "Curl instance couldn't be initialized");
_stopped = false;
set(CurlOption.nosignal, 1);
}
///
@property bool stopped() const
{
return _stopped;
}
/**
Duplicate this handle.
The new handle will have all options set as the one it was duplicated
from. An exception to this is that all options that cannot be shared
across threads are reset thereby making it safe to use the duplicate
in a new thread.
*/
Curl dup()
{
import std.meta : AliasSeq;
Curl copy;
copy.handle = curl.easy_duphandle(handle);
copy._stopped = false;
with (CurlOption) {
auto tt = AliasSeq!(file, writefunction, writeheader,
headerfunction, infile, readfunction, ioctldata, ioctlfunction,
seekdata, seekfunction, sockoptdata, sockoptfunction,
opensocketdata, opensocketfunction, progressdata,
progressfunction, debugdata, debugfunction, interleavedata,
interleavefunction, chunk_data, chunk_bgn_function,
chunk_end_function, fnmatch_data, fnmatch_function, cookiejar, postfields);
foreach (option; tt)
copy.clear(option);
}
// The options are only supported by libcurl when it has been built
// against certain versions of OpenSSL - if your libcurl uses an old
// OpenSSL, or uses an entirely different SSL engine, attempting to
// clear these normally will raise an exception
copy.clearIfSupported(CurlOption.ssl_ctx_function);
copy.clearIfSupported(CurlOption.ssh_keydata);
// Enable for curl version > 7.21.7
static if (LIBCURL_VERSION_MAJOR >= 7 &&
LIBCURL_VERSION_MINOR >= 21 &&
LIBCURL_VERSION_PATCH >= 7)
{
copy.clear(CurlOption.closesocketdata);
copy.clear(CurlOption.closesocketfunction);
}
copy.set(CurlOption.nosignal, 1);
// copy.clear(CurlOption.ssl_ctx_data); Let ssl function be shared
// copy.clear(CurlOption.ssh_keyfunction); Let key function be shared
/*
Allow sharing of conv functions
copy.clear(CurlOption.conv_to_network_function);
copy.clear(CurlOption.conv_from_network_function);
copy.clear(CurlOption.conv_from_utf8_function);
*/
return copy;
}
private void _check(CurlCode code)
{
import std.exception : enforce;
enforce!CurlTimeoutException(code != CurlError.operation_timedout,
errorString(code));
enforce!CurlException(code == CurlError.ok,
errorString(code));
}
private string errorString(CurlCode code)
{
import core.stdc.string : strlen;
import std.format : format;
auto msgZ = curl.easy_strerror(code);
// doing the following (instead of just using std.conv.to!string) avoids 1 allocation
return format("%s on handle %s", msgZ[0 .. strlen(msgZ)], handle);
}
private void throwOnStopped(string message = null)
{
import std.exception : enforce;
auto def = "Curl instance called after being cleaned up";
enforce!CurlException(!stopped,
message == null ? def : message);
}
/**
Stop and invalidate this curl instance.
Warning: Do not call this from inside a callback handler e.g. `onReceive`.
*/
void shutdown()
{
throwOnStopped();
_stopped = true;
curl.easy_cleanup(this.handle);
this.handle = null;
}
/**
Pausing and continuing transfers.
*/
void pause(bool sendingPaused, bool receivingPaused)
{
throwOnStopped();
_check(curl.easy_pause(this.handle,
(sendingPaused ? CurlPause.send_cont : CurlPause.send) |
(receivingPaused ? CurlPause.recv_cont : CurlPause.recv)));
}
/**
Set a string curl option.
Params:
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The string
*/
void set(CurlOption option, const(char)[] value)
{
import std.internal.cstring : tempCString;
throwOnStopped();
_check(curl.easy_setopt(this.handle, option, value.tempCString().buffPtr));
}
/**
Set a long curl option.
Params:
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The long
*/
void set(CurlOption option, long value)
{
throwOnStopped();
_check(curl.easy_setopt(this.handle, option, value));
}
/**
Set a void* curl option.
Params:
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The pointer
*/
void set(CurlOption option, void* value)
{
throwOnStopped();
_check(curl.easy_setopt(this.handle, option, value));
}
/**
Clear a pointer option.
Params:
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
*/
void clear(CurlOption option)
{
throwOnStopped();
_check(curl.easy_setopt(this.handle, option, null));
}
/**
Clear a pointer option. Does not raise an exception if the underlying
libcurl does not support the option. Use sparingly.
Params:
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
*/
void clearIfSupported(CurlOption option)
{
throwOnStopped();
auto rval = curl.easy_setopt(this.handle, option, null);
if (rval != CurlError.unknown_option && rval != CurlError.not_built_in)
_check(rval);
}
/**
perform the curl request by doing the HTTP,FTP etc. as it has
been setup beforehand.
Params:
throwOnError = whether to throw an exception or return a CurlCode on error
*/
CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError)
{
throwOnStopped();
CurlCode code = curl.easy_perform(this.handle);
if (throwOnError)
_check(code);
return code;
}
/**
Get the various timings like name lookup time, total time, connect time etc.
The timed category is passed through the timing parameter while the timing
value is stored at val. The value is usable only if res is equal to
`etc.c.curl.CurlError.ok`.
*/
CurlCode getTiming(CurlInfo timing, ref double val)
{
CurlCode code;
code = curl.easy_getinfo(handle, timing, &val);
return code;
}
/**
* The event handler that receives incoming data.
*
* Params:
* callback = the callback that receives the `ubyte[]` data.
* Be sure to copy the incoming data and not store
* a slice.
*
* Returns:
* The callback returns the incoming bytes read. If not the entire array is
* the request will abort.
* The special value HTTP.pauseRequest can be returned in order to pause the
* current request.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
* curl.onReceive = (ubyte[] data) { writeln("Got data", to!(const(char)[])(data)); return data.length;};
* curl.perform();
* ----
*/
@property void onReceive(size_t delegate(InData) callback)
{
_onReceive = (InData id)
{
throwOnStopped("Receive callback called on cleaned up Curl instance");
return callback(id);
};
set(CurlOption.file, cast(void*) &this);
set(CurlOption.writefunction, cast(void*) &Curl._receiveCallback);
}
/**
* The event handler that receives incoming headers for protocols
* that uses headers.
*
* Params:
* callback = the callback that receives the header string.
* Make sure the callback copies the incoming params if
* it needs to store it because they are references into
* the backend and may very likely change.
*
* Example:
* ----
* import std.net.curl, std.stdio;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
* curl.onReceiveHeader = (in char[] header) { writeln(header); };
* curl.perform();
* ----
*/
@property void onReceiveHeader(void delegate(in char[]) callback)
{
_onReceiveHeader = (in char[] od)
{
throwOnStopped("Receive header callback called on "~
"cleaned up Curl instance");
callback(od);
};
set(CurlOption.writeheader, cast(void*) &this);
set(CurlOption.headerfunction,
cast(void*) &Curl._receiveHeaderCallback);
}
/**
* The event handler that gets called when data is needed for sending.
*
* Params:
* callback = the callback that has a `void[]` buffer to be filled
*
* Returns:
* The callback returns the number of elements in the buffer that have been
* filled and are ready to send.
* The special value `Curl.abortRequest` can be returned in
* order to abort the current request.
* The special value `Curl.pauseRequest` can be returned in order to
* pause the current request.
*
* Example:
* ----
* import std.net.curl;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
*
* string msg = "Hello world";
* curl.onSend = (void[] data)
* {
* auto m = cast(void[]) msg;
* size_t length = m.length > data.length ? data.length : m.length;
* if (length == 0) return 0;
* data[0 .. length] = m[0 .. length];
* msg = msg[length..$];
* return length;
* };
* curl.perform();
* ----
*/
@property void onSend(size_t delegate(OutData) callback)
{
_onSend = (OutData od)
{
throwOnStopped("Send callback called on cleaned up Curl instance");
return callback(od);
};
set(CurlOption.infile, cast(void*) &this);
set(CurlOption.readfunction, cast(void*) &Curl._sendCallback);
}
/**
* The event handler that gets called when the curl backend needs to seek
* the data to be sent.
*
* Params:
* callback = the callback that receives a seek offset and a seek position
* $(REF CurlSeekPos, etc,c,curl)
*
* Returns:
* The callback returns the success state of the seeking
* $(REF CurlSeek, etc,c,curl)
*
* Example:
* ----
* import std.net.curl;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
* curl.onSeek = (long p, CurlSeekPos sp)
* {
* return CurlSeek.cantseek;
* };
* curl.perform();
* ----
*/
@property void onSeek(CurlSeek delegate(long, CurlSeekPos) callback)
{
_onSeek = (long ofs, CurlSeekPos sp)
{
throwOnStopped("Seek callback called on cleaned up Curl instance");
return callback(ofs, sp);
};
set(CurlOption.seekdata, cast(void*) &this);
set(CurlOption.seekfunction, cast(void*) &Curl._seekCallback);
}
/**
* The event handler that gets called when the net socket has been created
* but a `connect()` call has not yet been done. This makes it possible to set
* misc. socket options.
*
* Params:
* callback = the callback that receives the socket and socket type
* $(REF CurlSockType, etc,c,curl)
*
* Returns:
* Return 0 from the callback to signal success, return 1 to signal error
* and make curl close the socket
*
* Example:
* ----
* import std.net.curl;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
* curl.onSocketOption = delegate int(curl_socket_t s, CurlSockType t) { /+ do stuff +/ };
* curl.perform();
* ----
*/
@property void onSocketOption(int delegate(curl_socket_t,
CurlSockType) callback)
{
_onSocketOption = (curl_socket_t sock, CurlSockType st)
{
throwOnStopped("Socket option callback called on "~
"cleaned up Curl instance");
return callback(sock, st);
};
set(CurlOption.sockoptdata, cast(void*) &this);
set(CurlOption.sockoptfunction,
cast(void*) &Curl._socketOptionCallback);
}
/**
* The event handler that gets called to inform of upload/download progress.
*
* Params:
* callback = the callback that receives the (total bytes to download,
* currently downloaded bytes, total bytes to upload, currently uploaded
* bytes).
*
* Returns:
* Return 0 from the callback to signal success, return non-zero to abort
* transfer
*
* Example:
* ----
* import std.net.curl, std.stdio;
* Curl curl;
* curl.initialize();
* curl.set(CurlOption.url, "http://dlang.org");
* curl.onProgress = delegate int(size_t dltotal, size_t dlnow, size_t ultotal, size_t ulnow)
* {
* writeln("Progress: downloaded bytes ", dlnow, " of ", dltotal);
* writeln("Progress: uploaded bytes ", ulnow, " of ", ultotal);
* return 0;
* };
* curl.perform();
* ----
*/
@property void onProgress(int delegate(size_t dlTotal,
size_t dlNow,
size_t ulTotal,
size_t ulNow) callback)
{
_onProgress = (size_t dlt, size_t dln, size_t ult, size_t uln)
{
throwOnStopped("Progress callback called on cleaned "~
"up Curl instance");
return callback(dlt, dln, ult, uln);
};
set(CurlOption.noprogress, 0);
set(CurlOption.progressdata, cast(void*) &this);
set(CurlOption.progressfunction, cast(void*) &Curl._progressCallback);
}
// Internal C callbacks to register with libcurl
extern (C) private static
size_t _receiveCallback(const char* str,
size_t size, size_t nmemb, void* ptr)
{
auto b = cast(Curl*) ptr;
if (b._onReceive != null)
return b._onReceive(cast(InData)(str[0 .. size*nmemb]));
return size*nmemb;
}
extern (C) private static
size_t _receiveHeaderCallback(const char* str,
size_t size, size_t nmemb, void* ptr)
{
import std.string : chomp;
auto b = cast(Curl*) ptr;
auto s = str[0 .. size*nmemb].chomp();
if (b._onReceiveHeader != null)
b._onReceiveHeader(s);
return size*nmemb;
}
extern (C) private static
size_t _sendCallback(char *str, size_t size, size_t nmemb, void *ptr)
{
Curl* b = cast(Curl*) ptr;
auto a = cast(void[]) str[0 .. size*nmemb];
if (b._onSend == null)
return 0;
return b._onSend(a);
}
extern (C) private static
int _seekCallback(void *ptr, curl_off_t offset, int origin)
{
auto b = cast(Curl*) ptr;
if (b._onSeek == null)
return CurlSeek.cantseek;
// origin: CurlSeekPos.set/current/end
// return: CurlSeek.ok/fail/cantseek
return b._onSeek(cast(long) offset, cast(CurlSeekPos) origin);
}
extern (C) private static
int _socketOptionCallback(void *ptr,
curl_socket_t curlfd, curlsocktype purpose)
{
auto b = cast(Curl*) ptr;
if (b._onSocketOption == null)
return 0;
// return: 0 ok, 1 fail
return b._onSocketOption(curlfd, cast(CurlSockType) purpose);
}
extern (C) private static
int _progressCallback(void *ptr,
double dltotal, double dlnow,
double ultotal, double ulnow)
{
auto b = cast(Curl*) ptr;
if (b._onProgress == null)
return 0;
// return: 0 ok, 1 fail
return b._onProgress(cast(size_t) dltotal, cast(size_t) dlnow,
cast(size_t) ultotal, cast(size_t) ulnow);
}
}
// Internal messages send between threads.
// The data is wrapped in this struct in order to ensure that
// other std.concurrency.receive calls does not pick up our messages
// by accident.
private struct CurlMessage(T)
{
public T data;
}
private static CurlMessage!T curlMessage(T)(T data)
{
return CurlMessage!T(data);
}
// Pool of to be used for reusing buffers
private struct Pool(Data)
{
private struct Entry
{
Data data;
Entry* next;
}
private Entry* root;
private Entry* freeList;
@safe @property bool empty()
{
return root == null;
}
@safe nothrow void push(Data d)
{
if (freeList == null)
{
// Allocate new Entry since there is no one
// available in the freeList
freeList = new Entry;
}
freeList.data = d;
Entry* oldroot = root;
root = freeList;
freeList = freeList.next;
root.next = oldroot;
}
@safe Data pop()
{
import std.exception : enforce;
enforce!Exception(root != null, "pop() called on empty pool");
auto d = root.data;
auto n = root.next;
root.next = freeList;
freeList = root;
root = n;
return d;
}
}
// Lazily-instantiated namespace to avoid importing std.concurrency until needed.
private struct _async()
{
static:
// https://issues.dlang.org/show_bug.cgi?id=15831
// this should be inside byLineAsync
// Range that reads one chunk at a time asynchronously.
private struct ChunkInputRange
{
import std.concurrency : Tid, send;
private ubyte[] chunk;
mixin WorkerThreadProtocol!(ubyte, chunk);
private Tid workerTid;
private State running;
private this(Tid tid, size_t transmitBuffers, size_t chunkSize)
{
workerTid = tid;
state = State.needUnits;
// Send buffers to other thread for it to use. Since no mechanism is in
// place for moving ownership a cast to shared is done here and a cast
// back to non-shared in the receiving end.
foreach (i ; 0 .. transmitBuffers)
{
ubyte[] arr = new ubyte[](chunkSize);
workerTid.send(cast(immutable(ubyte[]))arr);
}
}
}
// https://issues.dlang.org/show_bug.cgi?id=15831
// this should be inside byLineAsync
// Range that reads one line at a time asynchronously.
private static struct LineInputRange(Char)
{
private Char[] line;
mixin WorkerThreadProtocol!(Char, line);
private Tid workerTid;
private State running;
private this(Tid tid, size_t transmitBuffers, size_t bufferSize)
{
import std.concurrency : send;
workerTid = tid;
state = State.needUnits;
// Send buffers to other thread for it to use. Since no mechanism is in
// place for moving ownership a cast to shared is done here and casted
// back to non-shared in the receiving end.
foreach (i ; 0 .. transmitBuffers)
{
auto arr = new Char[](bufferSize);
workerTid.send(cast(immutable(Char[]))arr);
}
}
}
import std.concurrency : Tid;
// Shared function for reading incoming chunks of data and
// sending the to a parent thread
private size_t receiveChunks(ubyte[] data, ref ubyte[] outdata,
Pool!(ubyte[]) freeBuffers,
ref ubyte[] buffer, Tid fromTid,
ref bool aborted)
{
import std.concurrency : receive, send, thisTid;
immutable datalen = data.length;
// Copy data to fill active buffer
while (!data.empty)
{
// Make sure a buffer is present
while ( outdata.empty && freeBuffers.empty)
{
// Active buffer is invalid and there are no
// available buffers in the pool. Wait for buffers
// to return from main thread in order to reuse
// them.
receive((immutable(ubyte)[] buf)
{
buffer = cast(ubyte[]) buf;
outdata = buffer[];
},
(bool flag) { aborted = true; }
);
if (aborted) return cast(size_t) 0;
}
if (outdata.empty)
{
buffer = freeBuffers.pop();
outdata = buffer[];
}
// Copy data
auto copyBytes = outdata.length < data.length ?
outdata.length : data.length;
outdata[0 .. copyBytes] = data[0 .. copyBytes];
outdata = outdata[copyBytes..$];
data = data[copyBytes..$];
if (outdata.empty)
fromTid.send(thisTid, curlMessage(cast(immutable(ubyte)[])buffer));
}
return datalen;
}
// ditto
private void finalizeChunks(ubyte[] outdata, ref ubyte[] buffer,
Tid fromTid)
{
import std.concurrency : send, thisTid;
if (!outdata.empty)
{
// Resize the last buffer
buffer.length = buffer.length - outdata.length;
fromTid.send(thisTid, curlMessage(cast(immutable(ubyte)[])buffer));
}
}
// Shared function for reading incoming lines of data and sending the to a
// parent thread
private static size_t receiveLines(Terminator, Unit)
(const(ubyte)[] data, ref EncodingScheme encodingScheme,
bool keepTerminator, Terminator terminator,
ref const(ubyte)[] leftOverBytes, ref bool bufferValid,
ref Pool!(Unit[]) freeBuffers, ref Unit[] buffer,
Tid fromTid, ref bool aborted)
{
import std.concurrency : prioritySend, receive, send, thisTid;
import std.exception : enforce;
import std.format : format;
import std.traits : isArray;
immutable datalen = data.length;
// Terminator is specified and buffers should be resized as determined by
// the terminator
// Copy data to active buffer until terminator is found.
// Decode as many lines as possible
while (true)
{
// Make sure a buffer is present
while (!bufferValid && freeBuffers.empty)
{
// Active buffer is invalid and there are no available buffers in
// the pool. Wait for buffers to return from main thread in order to
// reuse them.
receive((immutable(Unit)[] buf)
{
buffer = cast(Unit[]) buf;
buffer.length = 0;
buffer.assumeSafeAppend();
bufferValid = true;
},
(bool flag) { aborted = true; }
);
if (aborted) return cast(size_t) 0;
}
if (!bufferValid)
{
buffer = freeBuffers.pop();
bufferValid = true;
}
// Try to read a line from left over bytes from last onReceive plus the
// newly received bytes.
try
{
if (decodeLineInto(leftOverBytes, data, buffer,
encodingScheme, terminator))
{
if (keepTerminator)
{
fromTid.send(thisTid,
curlMessage(cast(immutable(Unit)[])buffer));
}
else
{
static if (isArray!Terminator)
fromTid.send(thisTid,
curlMessage(cast(immutable(Unit)[])
buffer[0..$-terminator.length]));
else
fromTid.send(thisTid,
curlMessage(cast(immutable(Unit)[])
buffer[0..$-1]));
}
bufferValid = false;
}
else
{
// Could not decode an entire line. Save
// bytes left in data for next call to
// onReceive. Can be up to a max of 4 bytes.
enforce!CurlException(data.length <= 4,
format(
"Too many bytes left not decoded %s"~
" > 4. Maybe the charset specified in"~
" headers does not match "~
"the actual content downloaded?",
data.length));
leftOverBytes ~= data;
break;
}
}
catch (CurlException ex)
{
prioritySend(fromTid, cast(immutable(CurlException))ex);
return cast(size_t) 0;
}
}
return datalen;
}
// ditto
private static
void finalizeLines(Unit)(bool bufferValid, Unit[] buffer, Tid fromTid)
{
import std.concurrency : send, thisTid;
if (bufferValid && buffer.length != 0)
fromTid.send(thisTid, curlMessage(cast(immutable(Unit)[])buffer[0..$]));
}
/* Used by byLineAsync/byChunkAsync to duplicate an existing connection
* that can be used exclusively in a spawned thread.
*/
private void duplicateConnection(Conn, PostData)
(const(char)[] url, Conn conn, PostData postData, Tid tid)
{
import std.concurrency : send;
import std.exception : enforce;
// no move semantic available in std.concurrency ie. must use casting.
auto connDup = conn.dup();
connDup.url = url;
static if ( is(Conn : HTTP) )
{
connDup.p.headersOut = null;
connDup.method = conn.method == HTTP.Method.undefined ?
HTTP.Method.get : conn.method;
if (postData !is null)
{
if (connDup.method == HTTP.Method.put)
{
connDup.handle.set(CurlOption.infilesize_large,
postData.length);
}
else
{
// post
connDup.method = HTTP.Method.post;
connDup.handle.set(CurlOption.postfieldsize_large,
postData.length);
}
connDup.handle.set(CurlOption.copypostfields,
cast(void*) postData.ptr);
}
tid.send(cast(ulong) connDup.handle.handle);
tid.send(connDup.method);
}
else
{
enforce!CurlException(postData is null,
"Cannot put ftp data using byLineAsync()");
tid.send(cast(ulong) connDup.handle.handle);
tid.send(HTTP.Method.undefined);
}
connDup.p.curl.handle = null; // make sure handle is not freed
}
// Spawn a thread for handling the reading of incoming data in the
// background while the delegate is executing. This will optimize
// throughput by allowing simultaneous input (this struct) and
// output (e.g. AsyncHTTPLineOutputRange).
private static void spawn(Conn, Unit, Terminator = void)()
{
import std.concurrency : Tid, prioritySend, receiveOnly, send, thisTid;
import etc.c.curl : CURL, CurlError;
Tid fromTid = receiveOnly!Tid();
// Get buffer to read into
Pool!(Unit[]) freeBuffers; // Free list of buffer objects
// Number of bytes filled into active buffer
Unit[] buffer;
bool aborted = false;
EncodingScheme encodingScheme;
static if ( !is(Terminator == void))
{
// Only lines reading will receive a terminator
const terminator = receiveOnly!Terminator();
const keepTerminator = receiveOnly!bool();
// max number of bytes to carry over from an onReceive
// callback. This is 4 because it is the max code units to
// decode a code point in the supported encodings.
auto leftOverBytes = new const(ubyte)[4];
leftOverBytes.length = 0;
auto bufferValid = false;
}
else
{
Unit[] outdata;
}
// no move semantic available in std.concurrency ie. must use casting.
auto connDup = cast(CURL*) receiveOnly!ulong();
auto client = Conn();
client.p.curl.handle = connDup;
// receive a method for both ftp and http but just use it for http
auto method = receiveOnly!(HTTP.Method)();
client.onReceive = (ubyte[] data)
{
// If no terminator is specified the chunk size is fixed.
static if ( is(Terminator == void) )
return receiveChunks(data, outdata, freeBuffers, buffer,
fromTid, aborted);
else
return receiveLines(data, encodingScheme,
keepTerminator, terminator, leftOverBytes,
bufferValid, freeBuffers, buffer,
fromTid, aborted);
};
static if ( is(Conn == HTTP) )
{
client.method = method;
// register dummy header handler
client.onReceiveHeader = (in char[] key, in char[] value)
{
if (key == "content-type")
encodingScheme = EncodingScheme.create(client.p.charset);
};
}
else
{
encodingScheme = EncodingScheme.create(client.encoding);
}
// Start the request
CurlCode code;
try
{
code = client.perform(No.throwOnError);
}
catch (Exception ex)
{
prioritySend(fromTid, cast(immutable(Exception)) ex);
fromTid.send(thisTid, curlMessage(true)); // signal done
return;
}
if (code != CurlError.ok)
{
if (aborted && (code == CurlError.aborted_by_callback ||
code == CurlError.write_error))
{
fromTid.send(thisTid, curlMessage(true)); // signal done
return;
}
prioritySend(fromTid, cast(immutable(CurlException))
new CurlException(client.p.curl.errorString(code)));
fromTid.send(thisTid, curlMessage(true)); // signal done
return;
}
// Send remaining data that is not a full chunk size
static if ( is(Terminator == void) )
finalizeChunks(outdata, buffer, fromTid);
else
finalizeLines(bufferValid, buffer, fromTid);
fromTid.send(thisTid, curlMessage(true)); // signal done
}
}
|
D
|
module android.java.org.json.JSONObject_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import5 = android.java.java.lang.Number_d_interface;
import import3 = android.java.org.json.JSONArray_d_interface;
import import6 = android.java.java.lang.Class_d_interface;
import import1 = android.java.org.json.JSONTokener_d_interface;
import import2 = android.java.org.json.JSONObject_d_interface;
import import0 = android.java.java.util.Map_d_interface;
import import4 = android.java.java.util.Iterator_d_interface;
final class JSONObject : IJavaObject {
static immutable string[] _d_canCastTo = [
];
@Import this(arsd.jni.Default);
@Import this(import0.Map);
@Import this(import1.JSONTokener);
@Import this(string);
@Import this(import2.JSONObject, string[]);
@Import int length();
@Import import2.JSONObject put(string, bool);
@Import import2.JSONObject put(string, double);
@Import import2.JSONObject put(string, int);
@Import import2.JSONObject put(string, long);
@Import import2.JSONObject put(string, IJavaObject);
@Import import2.JSONObject putOpt(string, IJavaObject);
@Import import2.JSONObject accumulate(string, IJavaObject);
@Import IJavaObject remove(string);
@Import bool isNull(string);
@Import bool has(string);
@Import IJavaObject get(string);
@Import IJavaObject opt(string);
@Import bool getBoolean(string);
@Import bool optBoolean(string);
@Import bool optBoolean(string, bool);
@Import double getDouble(string);
@Import double optDouble(string);
@Import double optDouble(string, double);
@Import int getInt(string);
@Import int optInt(string);
@Import int optInt(string, int);
@Import long getLong(string);
@Import long optLong(string);
@Import long optLong(string, long);
@Import string getString(string);
@Import string optString(string);
@Import string optString(string, string);
@Import import3.JSONArray getJSONArray(string);
@Import import3.JSONArray optJSONArray(string);
@Import import2.JSONObject getJSONObject(string);
@Import import2.JSONObject optJSONObject(string);
@Import import3.JSONArray toJSONArray(import3.JSONArray);
@Import import4.Iterator keys();
@Import import3.JSONArray names();
@Import @JavaName("toString") string toString_();
override string toString() { return arsd.jni.javaObjectToString(this); }
@Import @JavaName("toString") string toString_(int);
@Import static string numberToString(import5.Number);
@Import static string quote(string);
@Import static IJavaObject wrap(IJavaObject);
@Import import6.Class getClass();
@Import int hashCode();
@Import bool equals(IJavaObject);
@Import void notify();
@Import void notifyAll();
@Import void wait(long);
@Import void wait(long, int);
@Import void wait();
mixin IJavaObjectImplementation!(false);
public static immutable string _javaParameterString = "Lorg/json/JSONObject;";
}
|
D
|
module iterative;
import common;
num fiboIterative(in num nth)
{
if (nth == 0)
return 0;
if (nth == 1)
return 1;
num a = 1;
num b = 1;
num c;
num step = 2;
for (; step < nth; ++step)
{
b = a + b;
c = a;
a = b;
b = c;
}
return a;
}
|
D
|
/Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/Build/Intermediates/SpaceShooter.build/Debug-iphonesimulator/SpaceShooter.build/Objects-normal/x86_64/MeteorView.o : /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ShipView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/SettingVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ViewController.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/MeteorView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameOver.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/AppDelegate.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameMenuVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Power.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameManager.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Blalajljdad.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Bullet.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/LoadGameVC.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule
/Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/Build/Intermediates/SpaceShooter.build/Debug-iphonesimulator/SpaceShooter.build/Objects-normal/x86_64/MeteorView~partial.swiftmodule : /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ShipView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/SettingVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ViewController.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/MeteorView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameOver.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/AppDelegate.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameMenuVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Power.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameManager.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Blalajljdad.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Bullet.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/LoadGameVC.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule
/Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/Build/Intermediates/SpaceShooter.build/Debug-iphonesimulator/SpaceShooter.build/Objects-normal/x86_64/MeteorView~partial.swiftdoc : /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ShipView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/SettingVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/ViewController.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/MeteorView.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameOver.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/AppDelegate.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameMenuVC.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Power.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/GameManager.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Blalajljdad.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/Bullet.swift /Users/dangcan/Documents/demoSwift/Space-Shooter-2.0-master/SpaceShooter/LoadGameVC.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule
|
D
|
/Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/BubbleChartRenderer.o : /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/BubbleChartRenderer~partial.swiftmodule : /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/BubbleChartRenderer~partial.swiftdoc : /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/justinlew/Documents/iOS_dev/mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/iOS_dev/mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
// Written in the D programming language.
/**
Functions that manipulate other functions.
This module provides functions for compile time function composition. These
functions are helpful when constructing predicates for the algorithms in
$(LINK2 std_algorithm.html, std.algorithm) or $(LINK2 std_range.html,
std.range).
$(BOOKTABLE ,
$(TR $(TH Function Name) $(TH Description)
)
$(TR $(TD $(D $(LREF adjoin)))
$(TD Joins a couple of functions into one that executes the original
functions independently and returns a tuple with all the results.
))
$(TR $(TD $(D $(LREF compose)), $(D $(LREF pipe)))
$(TD Join a couple of functions into one that executes the original
functions one after the other, using one function's result for the next
function's argument.
))
$(TR $(TD $(D $(LREF forward)))
$(TD Forwards function arguments while saving ref-ness.
))
$(TR $(TD $(D $(LREF lessThan)), $(D $(LREF greaterThan)), $(D $(LREF equalTo)))
$(TD Ready-made predicate functions to compare two values.
))
$(TR $(TD $(D $(LREF memoize)))
$(TD Creates a function that caches its result for fast re-evalation.
))
$(TR $(TD $(D $(LREF not)))
$(TD Creates a function that negates another.
))
$(TR $(TD $(D $(LREF partial)))
$(TD Creates a function that binds the first argument of a given function
to a given value.
))
$(TR $(TD $(D $(LREF reverseArgs)), $(D $(LREF binaryReverseArgs)))
$(TD Predicate that reverses the order of its arguments.
))
$(TR $(TD $(D $(LREF toDelegate)))
$(TD Converts a callable to a delegate.
))
$(TR $(TD $(D $(LREF unaryFun)), $(D $(LREF binaryFun)))
$(TD Create a unary or binary function from a string. Most often
used when defining algorithms on ranges.
))
)
Macros:
WIKI = Phobos/StdFunctional
Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(WEB erdani.org, Andrei Alexandrescu)
Source: $(PHOBOSSRC std/_functional.d)
*/
/*
Copyright Andrei Alexandrescu 2008 - 2009.
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)
*/
module std.functional;
import std.meta, std.traits;
private template needOpCallAlias(alias fun)
{
/* Determine whether or not unaryFun and binaryFun need to alias to fun or
* fun.opCall. Basically, fun is a function object if fun(...) compiles. We
* want is(unaryFun!fun) (resp., is(binaryFun!fun)) to be true if fun is
* any function object. There are 4 possible cases:
*
* 1) fun is the type of a function object with static opCall;
* 2) fun is an instance of a function object with static opCall;
* 3) fun is the type of a function object with non-static opCall;
* 4) fun is an instance of a function object with non-static opCall.
*
* In case (1), is(unaryFun!fun) should compile, but does not if unaryFun
* aliases itself to fun, because typeof(fun) is an error when fun itself
* is a type. So it must be aliased to fun.opCall instead. All other cases
* should be aliased to fun directly.
*/
static if (is(typeof(fun.opCall) == function))
{
import std.traits : Parameters;
enum needOpCallAlias = !is(typeof(fun)) && __traits(compiles, () {
return fun(Parameters!fun.init);
});
}
else
enum needOpCallAlias = false;
}
/**
Transforms a string representing an expression into a unary
function. The string must either use symbol name $(D a) as
the parameter or provide the symbol via the $(D parmName) argument.
If $(D fun) is not a string, $(D unaryFun) aliases itself away to $(D fun).
*/
template unaryFun(alias fun, string parmName = "a")
{
static if (is(typeof(fun) : string))
{
static if (!fun._ctfeMatchUnary(parmName))
{
import std.traits, std.typecons, std.meta;
import std.algorithm, std.conv, std.exception, std.math, std.range, std.string;
}
auto unaryFun(ElementType)(auto ref ElementType __a)
{
mixin("alias " ~ parmName ~ " = __a ;");
return mixin(fun);
}
}
else static if (needOpCallAlias!fun)
{
// Issue 9906
alias unaryFun = fun.opCall;
}
else
{
alias unaryFun = fun;
}
}
///
unittest
{
// Strings are compiled into functions:
alias isEven = unaryFun!("(a & 1) == 0");
assert(isEven(2) && !isEven(1));
}
unittest
{
static int f1(int a) { return a + 1; }
static assert(is(typeof(unaryFun!(f1)(1)) == int));
assert(unaryFun!(f1)(41) == 42);
int f2(int a) { return a + 1; }
static assert(is(typeof(unaryFun!(f2)(1)) == int));
assert(unaryFun!(f2)(41) == 42);
assert(unaryFun!("a + 1")(41) == 42);
//assert(unaryFun!("return a + 1;")(41) == 42);
int num = 41;
assert(unaryFun!"a + 1"(num) == 42);
// Issue 9906
struct Seen
{
static bool opCall(int n) { return true; }
}
static assert(needOpCallAlias!Seen);
static assert(is(typeof(unaryFun!Seen(1))));
assert(unaryFun!Seen(1));
Seen s;
static assert(!needOpCallAlias!s);
static assert(is(typeof(unaryFun!s(1))));
assert(unaryFun!s(1));
struct FuncObj
{
bool opCall(int n) { return true; }
}
FuncObj fo;
static assert(!needOpCallAlias!fo);
static assert(is(typeof(unaryFun!fo)));
assert(unaryFun!fo(1));
// Function object with non-static opCall can only be called with an
// instance, not with merely the type.
static assert(!is(typeof(unaryFun!FuncObj)));
}
/**
Transforms a string representing an expression into a binary function. The
string must either use symbol names $(D a) and $(D b) as the parameters or
provide the symbols via the $(D parm1Name) and $(D parm2Name) arguments.
If $(D fun) is not a string, $(D binaryFun) aliases itself away to
$(D fun).
*/
template binaryFun(alias fun, string parm1Name = "a",
string parm2Name = "b")
{
static if (is(typeof(fun) : string))
{
static if (!fun._ctfeMatchBinary(parm1Name, parm2Name))
{
import std.traits, std.typecons, std.meta;
import std.algorithm, std.conv, std.exception, std.math, std.range, std.string;
}
auto binaryFun(ElementType1, ElementType2)
(auto ref ElementType1 __a, auto ref ElementType2 __b)
{
mixin("alias "~parm1Name~" = __a ;");
mixin("alias "~parm2Name~" = __b ;");
return mixin(fun);
}
}
else static if (needOpCallAlias!fun)
{
// Issue 9906
alias binaryFun = fun.opCall;
}
else
{
alias binaryFun = fun;
}
}
///
unittest
{
alias less = binaryFun!("a < b");
assert(less(1, 2) && !less(2, 1));
alias greater = binaryFun!("a > b");
assert(!greater("1", "2") && greater("2", "1"));
}
unittest
{
static int f1(int a, string b) { return a + 1; }
static assert(is(typeof(binaryFun!(f1)(1, "2")) == int));
assert(binaryFun!(f1)(41, "a") == 42);
string f2(int a, string b) { return b ~ "2"; }
static assert(is(typeof(binaryFun!(f2)(1, "1")) == string));
assert(binaryFun!(f2)(1, "4") == "42");
assert(binaryFun!("a + b")(41, 1) == 42);
//@@BUG
//assert(binaryFun!("return a + b;")(41, 1) == 42);
// Issue 9906
struct Seen
{
static bool opCall(int x, int y) { return true; }
}
static assert(is(typeof(binaryFun!Seen)));
assert(binaryFun!Seen(1,1));
struct FuncObj
{
bool opCall(int x, int y) { return true; }
}
FuncObj fo;
static assert(!needOpCallAlias!fo);
static assert(is(typeof(binaryFun!fo)));
assert(unaryFun!fo(1,1));
// Function object with non-static opCall can only be called with an
// instance, not with merely the type.
static assert(!is(typeof(binaryFun!FuncObj)));
}
// skip all ASCII chars except a..z, A..Z, 0..9, '_' and '.'.
private uint _ctfeSkipOp(ref string op)
{
if (!__ctfe) assert(false);
import std.ascii : isASCII, isAlphaNum;
immutable oldLength = op.length;
while (op.length)
{
immutable front = op[0];
if(front.isASCII() && !(front.isAlphaNum() || front == '_' || front == '.'))
op = op[1..$];
else
break;
}
return oldLength != op.length;
}
// skip all digits
private uint _ctfeSkipInteger(ref string op)
{
if (!__ctfe) assert(false);
import std.ascii : isDigit;
immutable oldLength = op.length;
while (op.length)
{
immutable front = op[0];
if(front.isDigit())
op = op[1..$];
else
break;
}
return oldLength != op.length;
}
// skip name
private uint _ctfeSkipName(ref string op, string name)
{
if (!__ctfe) assert(false);
if (op.length >= name.length && op[0..name.length] == name)
{
op = op[name.length..$];
return 1;
}
return 0;
}
// returns 1 if $(D fun) is trivial unary function
private uint _ctfeMatchUnary(string fun, string name)
{
if (!__ctfe) assert(false);
import std.stdio;
fun._ctfeSkipOp();
for (;;)
{
immutable h = fun._ctfeSkipName(name) + fun._ctfeSkipInteger();
if (h == 0)
{
fun._ctfeSkipOp();
break;
}
else if (h == 1)
{
if(!fun._ctfeSkipOp())
break;
}
else
return 0;
}
return fun.length == 0;
}
unittest
{
static assert(!_ctfeMatchUnary("sqrt(ё)", "ё"));
static assert(!_ctfeMatchUnary("ё.sqrt", "ё"));
static assert(!_ctfeMatchUnary(".ё+ё", "ё"));
static assert(!_ctfeMatchUnary("_ё+ё", "ё"));
static assert(!_ctfeMatchUnary("ёё", "ё"));
static assert(_ctfeMatchUnary("a+a", "a"));
static assert(_ctfeMatchUnary("a + 10", "a"));
static assert(_ctfeMatchUnary("4 == a", "a"));
static assert(_ctfeMatchUnary("2==a", "a"));
static assert(_ctfeMatchUnary("1 != a", "a"));
static assert(_ctfeMatchUnary("a!=4", "a"));
static assert(_ctfeMatchUnary("a< 1", "a"));
static assert(_ctfeMatchUnary("434 < a", "a"));
static assert(_ctfeMatchUnary("132 > a", "a"));
static assert(_ctfeMatchUnary("123 >a", "a"));
static assert(_ctfeMatchUnary("a>82", "a"));
static assert(_ctfeMatchUnary("ё>82", "ё"));
static assert(_ctfeMatchUnary("ё[ё(ё)]", "ё"));
static assert(_ctfeMatchUnary("ё[21]", "ё"));
}
// returns 1 if $(D fun) is trivial binary function
private uint _ctfeMatchBinary(string fun, string name1, string name2)
{
if (!__ctfe) assert(false);
fun._ctfeSkipOp();
for (;;)
{
immutable h = fun._ctfeSkipName(name1) + fun._ctfeSkipName(name2) + fun._ctfeSkipInteger();
if (h == 0)
{
fun._ctfeSkipOp();
break;
}
else if (h == 1)
{
if(!fun._ctfeSkipOp())
break;
}
else
return 0;
}
return fun.length == 0;
}
unittest {
static assert(!_ctfeMatchBinary("sqrt(ё)", "ё", "b"));
static assert(!_ctfeMatchBinary("ё.sqrt", "ё", "b"));
static assert(!_ctfeMatchBinary(".ё+ё", "ё", "b"));
static assert(!_ctfeMatchBinary("_ё+ё", "ё", "b"));
static assert(!_ctfeMatchBinary("ёё", "ё", "b"));
static assert(_ctfeMatchBinary("a+a", "a", "b"));
static assert(_ctfeMatchBinary("a + 10", "a", "b"));
static assert(_ctfeMatchBinary("4 == a", "a", "b"));
static assert(_ctfeMatchBinary("2==a", "a", "b"));
static assert(_ctfeMatchBinary("1 != a", "a", "b"));
static assert(_ctfeMatchBinary("a!=4", "a", "b"));
static assert(_ctfeMatchBinary("a< 1", "a", "b"));
static assert(_ctfeMatchBinary("434 < a", "a", "b"));
static assert(_ctfeMatchBinary("132 > a", "a", "b"));
static assert(_ctfeMatchBinary("123 >a", "a", "b"));
static assert(_ctfeMatchBinary("a>82", "a", "b"));
static assert(_ctfeMatchBinary("ё>82", "ё", "q"));
static assert(_ctfeMatchBinary("ё[ё(10)]", "ё", "q"));
static assert(_ctfeMatchBinary("ё[21]", "ё", "q"));
static assert(!_ctfeMatchBinary("sqrt(ё)+b", "b", "ё"));
static assert(!_ctfeMatchBinary("ё.sqrt-b", "b", "ё"));
static assert(!_ctfeMatchBinary(".ё+b", "b", "ё"));
static assert(!_ctfeMatchBinary("_b+ё", "b", "ё"));
static assert(!_ctfeMatchBinary("ba", "b", "a"));
static assert(_ctfeMatchBinary("a+b", "b", "a"));
static assert(_ctfeMatchBinary("a + b", "b", "a"));
static assert(_ctfeMatchBinary("b == a", "b", "a"));
static assert(_ctfeMatchBinary("b==a", "b", "a"));
static assert(_ctfeMatchBinary("b != a", "b", "a"));
static assert(_ctfeMatchBinary("a!=b", "b", "a"));
static assert(_ctfeMatchBinary("a< b", "b", "a"));
static assert(_ctfeMatchBinary("b < a", "b", "a"));
static assert(_ctfeMatchBinary("b > a", "b", "a"));
static assert(_ctfeMatchBinary("b >a", "b", "a"));
static assert(_ctfeMatchBinary("a>b", "b", "a"));
static assert(_ctfeMatchBinary("ё>b", "b", "ё"));
static assert(_ctfeMatchBinary("b[ё(-1)]", "b", "ё"));
static assert(_ctfeMatchBinary("ё[-21]", "b", "ё"));
}
//undocumented
template safeOp(string S)
if (S=="<"||S==">"||S=="<="||S==">="||S=="=="||S=="!=")
{
private bool unsafeOp(ElementType1, ElementType2)(ElementType1 a, ElementType2 b) pure
if (isIntegral!ElementType1 && isIntegral!ElementType2)
{
alias T = CommonType!(ElementType1, ElementType2);
return mixin("cast(T)a "~S~" cast(T)b");
}
bool safeOp(T0, T1)(auto ref T0 a, auto ref T1 b)
{
static if (isIntegral!T0 && isIntegral!T1 &&
(mostNegative!T0 < 0) != (mostNegative!T1 < 0))
{
static if (S == "<=" || S == "<")
{
static if (mostNegative!T0 < 0)
immutable result = a < 0 || unsafeOp(a, b);
else
immutable result = b >= 0 && unsafeOp(a, b);
}
else
{
static if (mostNegative!T0 < 0)
immutable result = a >= 0 && unsafeOp(a, b);
else
immutable result = b < 0 || unsafeOp(a, b);
}
}
else
{
static assert (is(typeof(mixin("a "~S~" b"))),
"Invalid arguments: Cannot compare types " ~ T0.stringof ~ " and " ~ T1.stringof ~ ".");
immutable result = mixin("a "~S~" b");
}
return result;
}
}
unittest //check user defined types
{
import std.algorithm : equal;
struct Foo
{
int a;
auto opEquals(Foo foo)
{
return a == foo.a;
}
}
assert(safeOp!"!="(Foo(1), Foo(2)));
}
/**
Predicate that returns $(D_PARAM a < b).
Correctly compares signed and unsigned integers, ie. -1 < 2U.
*/
alias lessThan = safeOp!"<";
///
pure @safe @nogc nothrow unittest
{
assert(lessThan(2, 3));
assert(lessThan(2U, 3U));
assert(lessThan(2, 3.0));
assert(lessThan(-2, 3U));
assert(lessThan(2, 3U));
assert(!lessThan(3U, -2));
assert(!lessThan(3U, 2));
assert(!lessThan(0, 0));
assert(!lessThan(0U, 0));
assert(!lessThan(0, 0U));
}
/**
Predicate that returns $(D_PARAM a > b).
Correctly compares signed and unsigned integers, ie. 2U > -1.
*/
alias greaterThan = safeOp!">";
///
unittest
{
assert(!greaterThan(2, 3));
assert(!greaterThan(2U, 3U));
assert(!greaterThan(2, 3.0));
assert(!greaterThan(-2, 3U));
assert(!greaterThan(2, 3U));
assert(greaterThan(3U, -2));
assert(greaterThan(3U, 2));
assert(!greaterThan(0, 0));
assert(!greaterThan(0U, 0));
assert(!greaterThan(0, 0U));
}
/**
Predicate that returns $(D_PARAM a == b).
Correctly compares signed and unsigned integers, ie. !(-1 == ~0U).
*/
alias equalTo = safeOp!"==";
///
unittest
{
assert(equalTo(0U, 0));
assert(equalTo(0, 0U));
assert(!equalTo(-1, ~0U));
}
/**
N-ary predicate that reverses the order of arguments, e.g., given
$(D pred(a, b, c)), returns $(D pred(c, b, a)).
*/
template reverseArgs(alias pred)
{
auto reverseArgs(Args...)(auto ref Args args)
if (is(typeof(pred(Reverse!args))))
{
return pred(Reverse!args);
}
}
///
unittest
{
alias gt = reverseArgs!(binaryFun!("a < b"));
assert(gt(2, 1) && !gt(1, 1));
int x = 42;
bool xyz(int a, int b) { return a * x < b / x; }
auto foo = &xyz;
foo(4, 5);
alias zyx = reverseArgs!(foo);
assert(zyx(5, 4) == foo(4, 5));
}
///
unittest
{
int abc(int a, int b, int c) { return a * b + c; }
alias cba = reverseArgs!abc;
assert(abc(91, 17, 32) == cba(32, 17, 91));
}
///
unittest
{
int a(int a) { return a * 2; }
alias _a = reverseArgs!a;
assert(a(2) == _a(2));
}
///
unittest
{
int b() { return 4; }
alias _b = reverseArgs!b;
assert(b() == _b());
}
/**
Binary predicate that reverses the order of arguments, e.g., given
$(D pred(a, b)), returns $(D pred(b, a)).
*/
template binaryReverseArgs(alias pred)
{
auto binaryReverseArgs(ElementType1, ElementType2)
(auto ref ElementType1 a, auto ref ElementType2 b)
{
return pred(b, a);
}
}
///
unittest
{
alias gt = binaryReverseArgs!(binaryFun!("a < b"));
assert(gt(2, 1) && !gt(1, 1));
}
///
unittest
{
int x = 42;
bool xyz(int a, int b) { return a * x < b / x; }
auto foo = &xyz;
foo(4, 5);
alias zyx = binaryReverseArgs!(foo);
assert(zyx(5, 4) == foo(4, 5));
}
/**
Negates predicate $(D pred).
*/
template not(alias pred)
{
auto not(T...)(auto ref T args)
{
static if (is(typeof(!pred(args))))
return !pred(args);
else static if (T.length == 1)
return !unaryFun!pred(args);
else static if (T.length == 2)
return !binaryFun!pred(args);
else
static assert(0);
}
}
///
unittest
{
import std.functional;
import std.algorithm : find;
import std.uni : isWhite;
string a = " Hello, world!";
assert(find!(not!isWhite)(a) == "Hello, world!");
}
unittest
{
assert(not!"a != 5"(5));
assert(not!"a != b"(5, 5));
assert(not!(() => false)());
assert(not!(a => a != 5)(5));
assert(not!((a, b) => a != b)(5, 5));
assert(not!((a, b, c) => a * b * c != 125 )(5, 5, 5));
}
/**
$(LINK2 http://en.wikipedia.org/wiki/Partial_application, Partially
applies) $(D_PARAM fun) by tying its first argument to $(D_PARAM arg).
Example:
----
int fun(int a, int b) { return a + b; }
alias partial!(fun, 5) fun5;
assert(fun5(6) == 11);
----
Note that in most cases you'd use an alias instead of a value
assignment. Using an alias allows you to partially evaluate template
functions without committing to a particular type of the function.
*/
template partial(alias fun, alias arg)
{
static if (is(typeof(fun) == delegate) || is(typeof(fun) == function))
{
ReturnType!fun partial(Parameters!fun[1..$] args2)
{
return fun(arg, args2);
}
}
else
{
auto partial(Ts...)(Ts args2)
{
static if (is(typeof(fun(arg, args2))))
{
return fun(arg, args2);
}
else
{
static string errormsg()
{
string msg = "Cannot call '" ~ fun.stringof ~ "' with arguments " ~
"(" ~ arg.stringof;
foreach(T; Ts)
msg ~= ", " ~ T.stringof;
msg ~= ").";
return msg;
}
static assert(0, errormsg());
}
}
}
}
// Explicitly undocumented. It will be removed in March 2016. @@@DEPRECATED_2016-03@@@
deprecated("Please use std.functional.partial instead")
alias curry = partial;
// tests for partially evaluating callables
unittest
{
static int f1(int a, int b) { return a + b; }
assert(partial!(f1, 5)(6) == 11);
int f2(int a, int b) { return a + b; }
int x = 5;
assert(partial!(f2, x)(6) == 11);
x = 7;
assert(partial!(f2, x)(6) == 13);
static assert(partial!(f2, 5)(6) == 11);
auto dg = &f2;
auto f3 = &partial!(dg, x);
assert(f3(6) == 13);
static int funOneArg(int a) { return a; }
assert(partial!(funOneArg, 1)() == 1);
static int funThreeArgs(int a, int b, int c) { return a + b + c; }
alias funThreeArgs1 = partial!(funThreeArgs, 1);
assert(funThreeArgs1(2, 3) == 6);
static assert(!is(typeof(funThreeArgs1(2))));
enum xe = 5;
alias fe = partial!(f2, xe);
static assert(fe(6) == 11);
}
// tests for partially evaluating templated/overloaded callables
unittest
{
static auto add(A, B)(A x, B y)
{
return x + y;
}
alias add5 = partial!(add, 5);
assert(add5(6) == 11);
static assert(!is(typeof(add5())));
static assert(!is(typeof(add5(6, 7))));
// taking address of templated partial evaluation needs explicit type
auto dg = &add5!(int);
assert(dg(6) == 11);
int x = 5;
alias addX = partial!(add, x);
assert(addX(6) == 11);
static struct Callable
{
static string opCall(string a, string b) { return a ~ b; }
int opCall(int a, int b) { return a * b; }
double opCall(double a, double b) { return a + b; }
}
Callable callable;
assert(partial!(Callable, "5")("6") == "56");
assert(partial!(callable, 5)(6) == 30);
assert(partial!(callable, 7.0)(3.0) == 7.0 + 3.0);
static struct TCallable
{
auto opCall(A, B)(A a, B b)
{
return a + b;
}
}
TCallable tcallable;
assert(partial!(tcallable, 5)(6) == 11);
static assert(!is(typeof(partial!(tcallable, "5")(6))));
static A funOneArg(A)(A a) { return a; }
alias funOneArg1 = partial!(funOneArg, 1);
assert(funOneArg1() == 1);
static auto funThreeArgs(A, B, C)(A a, B b, C c) { return a + b + c; }
alias funThreeArgs1 = partial!(funThreeArgs, 1);
assert(funThreeArgs1(2, 3) == 6);
static assert(!is(typeof(funThreeArgs1(1))));
auto dg2 = &funOneArg1!();
assert(dg2() == 1);
}
/**
Takes multiple functions and adjoins them together. The result is a
$(XREF typecons, Tuple) with one element per passed-in function. Upon
invocation, the returned tuple is the adjoined results of all
functions.
Note: In the special case where only a single function is provided
($(D F.length == 1)), adjoin simply aliases to the single passed function
($(D F[0])).
*/
template adjoin(F...) if (F.length == 1)
{
alias adjoin = F[0];
}
/// ditto
template adjoin(F...) if (F.length > 1)
{
auto adjoin(V...)(auto ref V a)
{
import std.typecons : tuple;
static if (F.length == 2)
{
return tuple(F[0](a), F[1](a));
}
else static if (F.length == 3)
{
return tuple(F[0](a), F[1](a), F[2](a));
}
else
{
import std.format : format;
import std.range : iota;
return mixin (q{tuple(%(F[%s](a)%|, %))}.format(iota(0, F.length)));
}
}
}
///
unittest
{
import std.functional, std.typecons;
static bool f1(int a) { return a != 0; }
static int f2(int a) { return a / 2; }
auto x = adjoin!(f1, f2)(5);
assert(is(typeof(x) == Tuple!(bool, int)));
assert(x[0] == true && x[1] == 2);
}
unittest
{
import std.typecons;
static bool F1(int a) { return a != 0; }
auto x1 = adjoin!(F1)(5);
static int F2(int a) { return a / 2; }
auto x2 = adjoin!(F1, F2)(5);
assert(is(typeof(x2) == Tuple!(bool, int)));
assert(x2[0] && x2[1] == 2);
auto x3 = adjoin!(F1, F2, F2)(5);
assert(is(typeof(x3) == Tuple!(bool, int, int)));
assert(x3[0] && x3[1] == 2 && x3[2] == 2);
bool F4(int a) { return a != x1; }
alias eff4 = adjoin!(F4);
static struct S
{
bool delegate(int) store;
int fun() { return 42 + store(5); }
}
S s;
s.store = (int a) { return eff4(a); };
auto x4 = s.fun();
assert(x4 == 43);
}
unittest
{
import std.meta : staticMap;
import std.typecons : Tuple, tuple;
alias funs = staticMap!(unaryFun, "a", "a * 2", "a * 3", "a * a", "-a");
alias afun = adjoin!funs;
assert(afun(5) == tuple(5, 10, 15, 25, -5));
static class C{}
alias IC = immutable(C);
IC foo(){return typeof(return).init;}
Tuple!(IC, IC, IC, IC) ret1 = adjoin!(foo, foo, foo, foo)();
static struct S{int* p;}
alias IS = immutable(S);
IS bar(){return typeof(return).init;}
enum Tuple!(IS, IS, IS, IS) ret2 = adjoin!(bar, bar, bar, bar)();
}
/**
Composes passed-in functions $(D fun[0], fun[1], ...) returning a
function $(D f(x)) that in turn returns $(D
fun[0](fun[1](...(x)))...). Each function can be a regular
functions, a delegate, or a string.
Example:
----
// First split a string in whitespace-separated tokens and then
// convert each token into an integer
assert(compose!(map!(to!(int)), split)("1 2 3") == [1, 2, 3]);
----
*/
template compose(fun...)
{
static if (fun.length == 1)
{
alias compose = unaryFun!(fun[0]);
}
else static if (fun.length == 2)
{
// starch
alias fun0 = unaryFun!(fun[0]);
alias fun1 = unaryFun!(fun[1]);
// protein: the core composition operation
typeof({ E a; return fun0(fun1(a)); }()) compose(E)(E a)
{
return fun0(fun1(a));
}
}
else
{
// protein: assembling operations
alias compose = compose!(fun[0], compose!(fun[1 .. $]));
}
}
/**
Pipes functions in sequence. Offers the same functionality as $(D
compose), but with functions specified in reverse order. This may
lead to more readable code in some situation because the order of
execution is the same as lexical order.
Example:
----
// Read an entire text file, split the resulting string in
// whitespace-separated tokens, and then convert each token into an
// integer
int[] a = pipe!(readText, split, map!(to!(int)))("file.txt");
----
*/
alias pipe(fun...) = compose!(Reverse!(fun));
unittest
{
import std.conv : to;
string foo(int a) { return to!(string)(a); }
int bar(string a) { return to!(int)(a) + 1; }
double baz(int a) { return a + 0.5; }
assert(compose!(baz, bar, foo)(1) == 2.5);
assert(pipe!(foo, bar, baz)(1) == 2.5);
assert(compose!(baz, `to!(int)(a) + 1`, foo)(1) == 2.5);
assert(compose!(baz, bar)("1"[]) == 2.5);
assert(compose!(baz, bar)("1") == 2.5);
assert(compose!(`a + 0.5`, `to!(int)(a) + 1`, foo)(1) == 2.5);
}
/**
* $(LUCKY Memoizes) a function so as to avoid repeated
* computation. The memoization structure is a hash table keyed by a
* tuple of the function's arguments. There is a speed gain if the
* function is repeatedly called with the same arguments and is more
* expensive than a hash table lookup. For more information on memoization, refer to $(WEB docs.google.com/viewer?url=http%3A%2F%2Fhop.perl.plover.com%2Fbook%2Fpdf%2F03CachingAndMemoization.pdf, this book chapter).
Example:
----
double transmogrify(int a, string b)
{
... expensive computation ...
}
alias fastTransmogrify = memoize!transmogrify;
unittest
{
auto slow = transmogrify(2, "hello");
auto fast = fastTransmogrify(2, "hello");
assert(slow == fast);
}
----
Technically the memoized function should be pure because $(D memoize) assumes it will
always return the same result for a given tuple of arguments. However, $(D memoize) does not
enforce that because sometimes it
is useful to memoize an impure function, too.
*/
template memoize(alias fun)
{
// alias Args = Parameters!fun; // Bugzilla 13580
ReturnType!fun memoize(Parameters!fun args)
{
alias Args = Parameters!fun;
import std.typecons : Tuple;
static ReturnType!fun[Tuple!Args] memo;
auto t = Tuple!Args(args);
if (auto p = t in memo)
return *p;
return memo[t] = fun(args);
}
}
/// ditto
template memoize(alias fun, uint maxSize)
{
// alias Args = Parameters!fun; // Bugzilla 13580
ReturnType!fun memoize(Parameters!fun args)
{
import std.typecons : tuple;
static struct Value { Parameters!fun args; ReturnType!fun res; }
static Value[] memo;
static size_t[] initialized;
if (!memo.length)
{
import core.memory;
enum attr = GC.BlkAttr.NO_INTERIOR | (hasIndirections!Value ? 0 : GC.BlkAttr.NO_SCAN);
memo = (cast(Value*)GC.malloc(Value.sizeof * maxSize, attr))[0 .. maxSize];
enum nwords = (maxSize + 8 * size_t.sizeof - 1) / (8 * size_t.sizeof);
initialized = (cast(size_t*)GC.calloc(nwords * size_t.sizeof, attr | GC.BlkAttr.NO_SCAN))[0 .. nwords];
}
import core.bitop : bt, bts;
import std.conv : emplace;
size_t hash;
foreach (ref arg; args)
hash = hashOf(arg, hash);
// cuckoo hashing
immutable idx1 = hash % maxSize;
if (!bt(initialized.ptr, idx1))
{
emplace(&memo[idx1], args, fun(args));
bts(initialized.ptr, idx1); // only set to initialized after setting args and value (bugzilla 14025)
return memo[idx1].res;
}
else if (memo[idx1].args == args)
return memo[idx1].res;
// FNV prime
immutable idx2 = (hash * 16777619) % maxSize;
if (!bt(initialized.ptr, idx2))
{
emplace(&memo[idx2], memo[idx1]);
bts(initialized.ptr, idx2); // only set to initialized after setting args and value (bugzilla 14025)
}
else if (memo[idx2].args == args)
return memo[idx2].res;
else if (idx1 != idx2)
memo[idx2] = memo[idx1];
memo[idx1] = Value(args, fun(args));
return memo[idx1].res;
}
}
/**
* To _memoize a recursive function, simply insert the memoized call in lieu of the plain recursive call.
* For example, to transform the exponential-time Fibonacci implementation into a linear-time computation:
*/
unittest
{
ulong fib(ulong n)
{
return n < 2 ? 1 : memoize!fib(n - 2) + memoize!fib(n - 1);
}
assert(fib(10) == 89);
}
/**
* To improve the speed of the factorial function,
*/
unittest
{
ulong fact(ulong n)
{
return n < 2 ? 1 : n * memoize!fact(n - 1);
}
assert(fact(10) == 3628800);
}
/**
* This memoizes all values of $(D fact) up to the largest argument. To only cache the final
* result, move $(D memoize) outside the function as shown below.
*/
unittest
{
ulong factImpl(ulong n)
{
return n < 2 ? 1 : n * factImpl(n - 1);
}
alias fact = memoize!factImpl;
assert(fact(10) == 3628800);
}
/**
* When the $(D maxSize) parameter is specified, memoize will used
* a fixed size hash table to limit the number of cached entries.
*/
unittest
{
ulong fact(ulong n)
{
// Memoize no more than 8 values
return n < 2 ? 1 : n * memoize!(fact, 8)(n - 1);
}
assert(fact(8) == 40320);
// using more entries than maxSize will overwrite existing entries
assert(fact(10) == 3628800);
}
unittest
{
import core.math;
alias msqrt = memoize!(function double(double x) { return sqrt(x); });
auto y = msqrt(2.0);
assert(y == msqrt(2.0));
y = msqrt(4.0);
assert(y == sqrt(4.0));
// alias mrgb2cmyk = memoize!rgb2cmyk;
// auto z = mrgb2cmyk([43, 56, 76]);
// assert(z == mrgb2cmyk([43, 56, 76]));
//alias mfib = memoize!fib;
static ulong fib(ulong n)
{
alias mfib = memoize!fib;
return n < 2 ? 1 : mfib(n - 2) + mfib(n - 1);
}
auto z = fib(10);
assert(z == 89);
static ulong fact(ulong n)
{
alias mfact = memoize!fact;
return n < 2 ? 1 : n * mfact(n - 1);
}
assert(fact(10) == 3628800);
// Issue 12568
static uint len2(const string s) { // Error
alias mLen2 = memoize!len2;
if (s.length == 0)
return 0;
else
return 1 + mLen2(s[1 .. $]);
}
int _func(int x) { return 1; }
alias func = memoize!(_func, 10);
assert(func(int.init) == 1);
assert(func(int.init) == 1);
}
private struct DelegateFaker(F)
{
import std.typecons;
// for @safe
static F castToF(THIS)(THIS x) @trusted
{
return cast(F) x;
}
/*
* What all the stuff below does is this:
*--------------------
* struct DelegateFaker(F) {
* extern(linkage)
* [ref] ReturnType!F doIt(Parameters!F args) [@attributes]
* {
* auto fp = cast(F) &this;
* return fp(args);
* }
* }
*--------------------
*/
// We will use MemberFunctionGenerator in std.typecons. This is a policy
// configuration for generating the doIt().
template GeneratingPolicy()
{
// Inform the genereator that we only have type information.
enum WITHOUT_SYMBOL = true;
// Generate the function body of doIt().
template generateFunctionBody(unused...)
{
enum generateFunctionBody =
// [ref] ReturnType doIt(Parameters args) @attributes
q{
// When this function gets called, the this pointer isn't
// really a this pointer (no instance even really exists), but
// a function pointer that points to the function to be called.
// Cast it to the correct type and call it.
auto fp = castToF(&this);
return fp(args);
};
}
}
// Type information used by the generated code.
alias FuncInfo_doIt = FuncInfo!(F);
// Generate the member function doIt().
mixin( std.typecons.MemberFunctionGenerator!(GeneratingPolicy!())
.generateFunction!("FuncInfo_doIt", "doIt", F) );
}
/**
* Convert a callable to a delegate with the same parameter list and
* return type, avoiding heap allocations and use of auxiliary storage.
*
* Example:
* ----
* void doStuff() {
* writeln("Hello, world.");
* }
*
* void runDelegate(void delegate() myDelegate) {
* myDelegate();
* }
*
* auto delegateToPass = toDelegate(&doStuff);
* runDelegate(delegateToPass); // Calls doStuff, prints "Hello, world."
* ----
*
* BUGS:
* $(UL
* $(LI Does not work with $(D @safe) functions.)
* $(LI Ignores C-style / D-style variadic arguments.)
* )
*/
auto toDelegate(F)(auto ref F fp) if (isCallable!(F))
{
static if (is(F == delegate))
{
return fp;
}
else static if (is(typeof(&F.opCall) == delegate)
|| (is(typeof(&F.opCall) V : V*) && is(V == function)))
{
return toDelegate(&fp.opCall);
}
else
{
alias DelType = typeof(&(new DelegateFaker!(F)).doIt);
static struct DelegateFields {
union {
DelType del;
//pragma(msg, typeof(del));
struct {
void* contextPtr;
void* funcPtr;
}
}
}
// fp is stored in the returned delegate's context pointer.
// The returned delegate's function pointer points to
// DelegateFaker.doIt.
DelegateFields df;
df.contextPtr = cast(void*) fp;
DelegateFaker!(F) dummy;
auto dummyDel = &dummy.doIt;
df.funcPtr = dummyDel.funcptr;
return df.del;
}
}
unittest {
static int inc(ref uint num) {
num++;
return 8675309;
}
uint myNum = 0;
auto incMyNumDel = toDelegate(&inc);
static assert(is(typeof(incMyNumDel) == int delegate(ref uint)));
auto returnVal = incMyNumDel(myNum);
assert(myNum == 1);
interface I { int opCall(); }
class C: I { int opCall() { inc(myNum); return myNum;} }
auto c = new C;
auto i = cast(I) c;
auto getvalc = toDelegate(c);
assert(getvalc() == 2);
auto getvali = toDelegate(i);
assert(getvali() == 3);
struct S1 { int opCall() { inc(myNum); return myNum; } }
static assert(!is(typeof(&s1.opCall) == delegate));
S1 s1;
auto getvals1 = toDelegate(s1);
assert(getvals1() == 4);
struct S2 { static int opCall() { return 123456; } }
static assert(!is(typeof(&S2.opCall) == delegate));
S2 s2;
auto getvals2 =&S2.opCall;
assert(getvals2() == 123456);
/* test for attributes */
{
static int refvar = 0xDeadFace;
static ref int func_ref() { return refvar; }
static int func_pure() pure { return 1; }
static int func_nothrow() nothrow { return 2; }
static int func_property() @property { return 3; }
static int func_safe() @safe { return 4; }
static int func_trusted() @trusted { return 5; }
static int func_system() @system { return 6; }
static int func_pure_nothrow() pure nothrow { return 7; }
static int func_pure_nothrow_safe() pure @safe { return 8; }
auto dg_ref = toDelegate(&func_ref);
auto dg_pure = toDelegate(&func_pure);
auto dg_nothrow = toDelegate(&func_nothrow);
auto dg_property = toDelegate(&func_property);
auto dg_safe = toDelegate(&func_safe);
auto dg_trusted = toDelegate(&func_trusted);
auto dg_system = toDelegate(&func_system);
auto dg_pure_nothrow = toDelegate(&func_pure_nothrow);
auto dg_pure_nothrow_safe = toDelegate(&func_pure_nothrow_safe);
//static assert(is(typeof(dg_ref) == ref int delegate())); // [BUG@DMD]
static assert(is(typeof(dg_pure) == int delegate() pure));
static assert(is(typeof(dg_nothrow) == int delegate() nothrow));
static assert(is(typeof(dg_property) == int delegate() @property));
//static assert(is(typeof(dg_safe) == int delegate() @safe));
static assert(is(typeof(dg_trusted) == int delegate() @trusted));
static assert(is(typeof(dg_system) == int delegate() @system));
static assert(is(typeof(dg_pure_nothrow) == int delegate() pure nothrow));
//static assert(is(typeof(dg_pure_nothrow_safe) == int delegate() @safe pure nothrow));
assert(dg_ref() == refvar);
assert(dg_pure() == 1);
assert(dg_nothrow() == 2);
assert(dg_property() == 3);
//assert(dg_safe() == 4);
assert(dg_trusted() == 5);
assert(dg_system() == 6);
assert(dg_pure_nothrow() == 7);
//assert(dg_pure_nothrow_safe() == 8);
}
/* test for linkage */
{
struct S
{
extern(C) static void xtrnC() {}
extern(D) static void xtrnD() {}
}
auto dg_xtrnC = toDelegate(&S.xtrnC);
auto dg_xtrnD = toDelegate(&S.xtrnD);
static assert(! is(typeof(dg_xtrnC) == typeof(dg_xtrnD)));
}
}
/**
Forwards function arguments with saving ref-ness.
*/
template forward(args...)
{
import std.meta;
static if (args.length)
{
import std.algorithm.mutation : move;
alias arg = args[0];
static if (__traits(isRef, arg))
alias fwd = arg;
else
@property fwd()(){ return move(arg); }
alias forward = AliasSeq!(fwd, forward!(args[1..$]));
}
else
alias forward = AliasSeq!();
}
///
@safe unittest
{
class C
{
static int foo(int n) { return 1; }
static int foo(ref int n) { return 2; }
}
int bar()(auto ref int x) { return C.foo(forward!x); }
assert(bar(1) == 1);
int i;
assert(bar(i) == 2);
}
///
@safe unittest
{
void foo(int n, ref string s) { s = null; foreach (i; 0..n) s ~= "Hello"; }
// forwards all arguments which are bound to parameter tuple
void bar(Args...)(auto ref Args args) { return foo(forward!args); }
// forwards all arguments with swapping order
void baz(Args...)(auto ref Args args) { return foo(forward!args[$/2..$], forward!args[0..$/2]); }
string s;
bar(1, s);
assert(s == "Hello");
baz(s, 2);
assert(s == "HelloHello");
}
@safe unittest
{
auto foo(TL...)(auto ref TL args)
{
string result = "";
foreach (i, _; args)
{
//pragma(msg, "[",i,"] ", __traits(isRef, args[i]) ? "L" : "R");
result ~= __traits(isRef, args[i]) ? "L" : "R";
}
return result;
}
string bar(TL...)(auto ref TL args)
{
return foo(forward!args);
}
string baz(TL...)(auto ref TL args)
{
int x;
return foo(forward!args[3], forward!args[2], 1, forward!args[1], forward!args[0], x);
}
struct S {}
S makeS(){ return S(); }
int n;
string s;
assert(bar(S(), makeS(), n, s) == "RRLL");
assert(baz(S(), makeS(), n, s) == "LLRRRL");
}
@safe unittest
{
ref int foo(return ref int a) { return a; }
ref int bar(Args)(auto ref Args args)
{
return foo(forward!args);
}
static assert(!__traits(compiles, { auto x1 = bar(3); })); // case of NG
int value = 3;
auto x2 = bar(value); // case of OK
}
|
D
|
// Written in the D programming language.
/**
This module contains list widgets implementation.
Similar to lists implementation in Android UI API.
Synopsis:
----
import dlangui.widgets.lists;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/
module dlangui.widgets.lists;
import dlangui.widgets.widget;
import dlangui.widgets.controls;
import dlangui.core.signals;
/// list widget adapter provides items for list widgets
interface ListAdapter {
/// returns number of widgets in list
@property int itemCount();
/// return list item widget by item index
Widget itemWidget(int index);
/// return list item's state flags
uint itemState(int index);
/// set one or more list item's state flags, returns updated state
uint setItemState(int index, uint flags);
/// reset one or more list item's state flags, returns updated state
uint resetItemState(int index, uint flags);
/// returns integer item id by index (if supported)
int itemId(int index);
/// returns string item id by index (if supported)
string itemStringId(int index);
}
/// List adapter for simple list of widget instances
class WidgetListAdapter : ListAdapter {
private WidgetList _widgets;
/// list of widgets to display
@property ref WidgetList widgets() { return _widgets; }
/// returns number of widgets in list
@property override int itemCount() {
return _widgets.count;
}
/// return list item widget by item index
override Widget itemWidget(int index) {
return _widgets.get(index);
}
/// return list item's state flags
override uint itemState(int index) {
return _widgets.get(index).state;
}
/// set one or more list item's state flags, returns updated state
override uint setItemState(int index, uint flags) {
return _widgets.get(index).setState(flags).state;
}
/// reset one or more list item's state flags, returns updated state
override uint resetItemState(int index, uint flags) {
return _widgets.get(index).resetState(flags).state;
}
/// returns integer item id by index (if supported)
override int itemId(int index) {
return 0;
}
/// returns string item id by index (if supported)
override string itemStringId(int index) {
return null;
}
~this() {
//Log.d("Destroying WidgetListAdapter");
}
}
/// string values string list adapter
struct StringListValue {
string stringId;
int intId;
UIString label;
this(string id, dstring name) {
this.stringId = id;
this.label = name;
}
this(string id, string nameResourceId) {
this.stringId = id;
this.label = nameResourceId;
}
this(int id, dstring name) {
this.intId = id;
this.label = name;
}
this(int id, string nameResourceId) {
this.intId = id;
this.label = nameResourceId;
}
}
/** List adapter providing strings only. */
class StringListAdapter : ListAdapter {
protected UIStringCollection _items;
protected uint[] _states;
protected int[] _intIds;
protected string[] _stringIds;
protected TextWidget _widget;
protected int _lastItemIndex;
/** create empty string list adapter. */
this() {
_lastItemIndex = -1;
}
/** Init with array of string resource IDs. */
this(string[] items) {
_items.addAll(items);
_intIds.length = items.length;
_stringIds.length = items.length;
_lastItemIndex = -1;
updateStatesLength();
}
/** Init with array of unicode strings. */
this(dstring[] items) {
_items.addAll(items);
_intIds.length = items.length;
_stringIds.length = items.length;
_lastItemIndex = -1;
updateStatesLength();
}
/** Init with array of StringListValue. */
this(StringListValue[] items) {
_intIds.length = items.length;
_stringIds.length = items.length;
for (int i = 0; i < items.length; i++) {
_items.add(items[i].label);
_intIds[i] = items[i].intId;
_stringIds[i] = items[i].stringId;
}
_lastItemIndex = -1;
updateStatesLength();
}
/** Access to items collection. */
@property ref UIStringCollection items() { return _items; }
/// returns number of widgets in list
@property override int itemCount() {
return _items.length;
}
/// returns integer item id by index (if supported)
override int itemId(int index) {
return index >= 0 && index < _intIds.length ? _intIds[index] : 0;
}
/// returns string item id by index (if supported)
override string itemStringId(int index) {
return index >= 0 && index < _stringIds.length ? _stringIds[index] : null;
}
protected void updateStatesLength() {
if (_states.length < _items.length) {
int oldlen = cast(int)_states.length;
_states.length = _items.length;
for (int i = oldlen; i < _items.length; i++)
_states[i] = State.Enabled;
}
if (_intIds.length < items.length)
_intIds.length = items.length;
if (_stringIds.length < items.length)
_stringIds.length = items.length;
}
/// return list item widget by item index
override Widget itemWidget(int index) {
updateStatesLength();
if (_widget is null) {
_widget = new TextWidget("STRING_LIST_ITEM");
_widget.styleId = STYLE_LIST_ITEM;
} else {
if (index == _lastItemIndex)
return _widget;
}
// update widget
_widget.text = _items.get(index);
_widget.state = _states[index];
_lastItemIndex = index;
return _widget;
}
/// return list item's state flags
override uint itemState(int index) {
updateStatesLength();
return _states[index];
}
/// set one or more list item's state flags, returns updated state
override uint setItemState(int index, uint flags) {
updateStatesLength();
_states[index] |= flags;
if (_widget !is null && _lastItemIndex == index)
_widget.state = _states[index];
return _states[index];
}
/// reset one or more list item's state flags, returns updated state
override uint resetItemState(int index, uint flags) {
updateStatesLength();
_states[index] &= ~flags;
if (_widget !is null && _lastItemIndex == index)
_widget.state = _states[index];
return _states[index];
}
~this() {
//Log.d("Destroying StringListAdapter");
if (_widget)
destroy(_widget);
}
}
/** interface - slot for onItemSelectedListener */
interface OnItemSelectedHandler {
bool onItemSelected(Widget source, int itemIndex);
}
/** interface - slot for onItemClickListener */
interface OnItemClickHandler {
bool onItemClick(Widget source, int itemIndex);
}
/** List widget - shows content as hori*/
class ListWidget : WidgetGroup, OnScrollHandler {
/** Handle selection change. */
Signal!OnItemSelectedHandler onItemSelectedListener;
/** Handle item click. */
Signal!OnItemSelectedHandler onItemClickListener;
protected Orientation _orientation = Orientation.Vertical;
/// returns linear layout orientation (Vertical, Horizontal)
@property Orientation orientation() { return _orientation; }
/// sets linear layout orientation
@property ListWidget orientation(Orientation value) {
_orientation = value;
_scrollbar.orientation = value;
requestLayout();
return this;
}
protected Rect[] _itemRects;
protected Point[] _itemSizes;
protected bool _needScrollbar;
protected Point _sbsz; // scrollbar size
protected ScrollBar _scrollbar;
protected int _lastMeasureWidth;
protected int _lastMeasureHeight;
/// first visible item index
protected int _firstVisibleItem;
/// scroll position - offset of scroll area
protected int _scrollPosition;
/// maximum scroll position
protected int _maxScrollPosition;
/// client area rectangle (counting padding, margins, and scrollbar)
protected Rect _clientRc;
/// total height of all items for Vertical orientation, or width for Horizontal
protected int _totalSize;
/// item with Hover state, -1 if no such item
protected int _hoverItemIndex;
/// item with Selected state, -1 if no such item
protected int _selectedItemIndex;
/// when true, mouse hover selects underlying item
protected bool _selectOnHover;
/// when true, mouse hover selects underlying item
@property bool selectOnHover() { return _selectOnHover; }
/// when true, mouse hover selects underlying item
@property ListWidget selectOnHover(bool select) { _selectOnHover = select; return this; }
/// if true, generate itemClicked on mouse down instead mouse up event
protected bool _clickOnButtonDown;
/// returns rectangle for item (not scrolled, first item starts at 0,0)
Rect itemRectNoScroll(int index) {
if (index < 0 || index >= _itemRects.length)
return Rect.init;
Rect res;
res = _itemRects[index];
return res;
}
/// returns rectangle for item (scrolled)
Rect itemRect(int index) {
if (index < 0 || index >= _itemRects.length)
return Rect.init;
Rect res = itemRectNoScroll(index);
if (_orientation == Orientation.Horizontal) {
res.left -= _scrollPosition;
res.right -= _scrollPosition;
} else {
res.top -= _scrollPosition;
res.bottom -= _scrollPosition;
}
return res;
}
/// returns item index by 0-based offset from top/left of list content
int itemByPosition(int pos) {
return 0;
}
protected ListAdapter _adapter;
/// when true, need to destroy adapter on list destroy
protected bool _ownAdapter;
/// get adapter
@property ListAdapter adapter() { return _adapter; }
/// set adapter
@property ListWidget adapter(ListAdapter adapter) {
if (_adapter !is null && _ownAdapter)
destroy(_adapter);
_adapter = adapter;
_ownAdapter = false;
onAdapterChanged();
return this;
}
/// set adapter, which will be owned by list (destroy will be called for adapter on widget destroy)
@property ListWidget ownAdapter(ListAdapter adapter) {
if (_adapter !is null && _ownAdapter)
destroy(_adapter);
_adapter = adapter;
_ownAdapter = true;
onAdapterChanged();
return this;
}
/// returns number of widgets in list
@property int itemCount() {
if (_adapter !is null)
return _adapter.itemCount;
return 0;
}
/// return list item widget by item index
Widget itemWidget(int index) {
if (_adapter !is null)
return _adapter.itemWidget(index);
return null;
}
/// returns true if item with corresponding index is enabled
bool itemEnabled(int index) {
if (_adapter !is null && index >= 0 && index < itemCount)
return (_adapter.itemState(index) & State.Enabled) != 0;
return false;
}
void onAdapterChanged() {
requestLayout();
}
/// empty parameter list constructor - for usage by factory
this() {
this(null);
}
/// create with ID parameter
this(string ID, Orientation orientation = Orientation.Vertical) {
super(ID);
_orientation = orientation;
focusable = true;
_hoverItemIndex = -1;
_selectedItemIndex = -1;
_scrollbar = new ScrollBar("listscroll", orientation);
_scrollbar.visibility = Visibility.Gone;
_scrollbar.onScrollEventListener = &onScrollEvent;
addChild(_scrollbar);
}
protected void setHoverItem(int index) {
if (_hoverItemIndex == index)
return;
if (_hoverItemIndex != -1) {
_adapter.resetItemState(_hoverItemIndex, State.Hovered);
invalidate();
}
_hoverItemIndex = index;
if (_hoverItemIndex != -1) {
_adapter.setItemState(_hoverItemIndex, State.Hovered);
invalidate();
}
}
/// override to handle change of selection
protected void selectionChanged(int index, int previouslySelectedItem = -1) {
if (onItemSelectedListener.assigned)
onItemSelectedListener(this, index);
}
/// override to handle mouse up on item
protected void itemClicked(int index) {
if (onItemClickListener.assigned)
onItemClickListener(this, index);
}
/// allow to override state for updating of items
// currently used to treat main menu items with opened submenu as focused
@property protected uint overrideStateForItem() {
return state;
}
protected void updateSelectedItemFocus() {
if (_selectedItemIndex != -1) {
if ((_adapter.itemState(_selectedItemIndex) & State.Focused) != (overrideStateForItem & State.Focused)) {
if (overrideStateForItem & State.Focused)
_adapter.setItemState(_selectedItemIndex, State.Focused);
else
_adapter.resetItemState(_selectedItemIndex, State.Focused);
invalidate();
}
}
}
/// override to handle focus changes
override protected void handleFocusChange(bool focused) {
updateSelectedItemFocus();
}
/// ensure selected item is visible (scroll if necessary)
void makeSelectionVisible() {
if (_selectedItemIndex < 0)
return; // no selection
if (needLayout) {
_makeSelectionVisibleOnNextLayout = true;
return;
}
makeItemVisible(_selectedItemIndex);
}
protected bool _makeSelectionVisibleOnNextLayout;
/// ensure item is visible
void makeItemVisible(int itemIndex) {
if (itemIndex < 0 || itemIndex >= itemCount)
return; // no selection
Rect viewrc = Rect(0, 0, _clientRc.width, _clientRc.height);
Rect scrolledrc = itemRect(itemIndex);
if (scrolledrc.isInsideOf(viewrc)) // completely visible
return;
int delta = 0;
if (_orientation == Orientation.Vertical) {
if (scrolledrc.top < viewrc.top)
delta = scrolledrc.top - viewrc.top;
else if (scrolledrc.bottom > viewrc.bottom)
delta = scrolledrc.bottom - viewrc.bottom;
} else {
if (scrolledrc.left < viewrc.left)
delta = scrolledrc.left - viewrc.left;
else if (scrolledrc.right > viewrc.right)
delta = scrolledrc.right - viewrc.right;
}
int newPosition = _scrollPosition + delta;
_scrollbar.position = newPosition;
_scrollPosition = newPosition;
invalidate();
}
/// move selection
bool moveSelection(int direction, bool wrapAround = true) {
if (itemCount <= 0)
return false;
int maxAttempts = itemCount - 1;
int index = _selectedItemIndex;
for (int i = 0; i < maxAttempts; i++) {
int newIndex = 0;
if (index < 0) {
// no previous selection
if (direction > 0)
newIndex = wrapAround ? 0 : itemCount - 1;
else
newIndex = wrapAround ? itemCount - 1 : 0;
} else {
// step
newIndex = index + direction;
}
if (newIndex < 0)
newIndex = wrapAround ? itemCount - 1 : 0;
else if (newIndex >= itemCount)
newIndex = wrapAround ? 0 : itemCount - 1;
if (newIndex != index) {
if (selectItem(newIndex)) {
selectionChanged(_selectedItemIndex, index);
return true;
}
index = newIndex;
}
}
return true;
}
bool selectItem(int index, int disabledItemsSkipDirection) {
debug Log.d("selectItem ", index, " skipDirection=", disabledItemsSkipDirection);
if (index == -1 || disabledItemsSkipDirection == 0)
return selectItem(index);
int maxAttempts = itemCount;
for (int i = 0; i < maxAttempts; i++) {
if (selectItem(index))
return true;
index += disabledItemsSkipDirection > 0 ? 1 : -1;
if (index < 0)
index = itemCount - 1;
if (index >= itemCount)
index = 0;
}
return false;
}
/** Selected item index. */
@property int selectedItemIndex() {
return _selectedItemIndex;
}
@property void selectedItemIndex(int index) {
selectItem(index);
}
bool selectItem(int index) {
debug Log.d("selectItem ", index);
if (_selectedItemIndex == index) {
updateSelectedItemFocus();
makeSelectionVisible();
return true;
}
if (index != -1 && !itemEnabled(index))
return false;
if (_selectedItemIndex != -1) {
_adapter.resetItemState(_selectedItemIndex, State.Selected | State.Focused);
invalidate();
}
_selectedItemIndex = index;
if (_selectedItemIndex != -1) {
makeSelectionVisible();
_adapter.setItemState(_selectedItemIndex, State.Selected | (overrideStateForItem & State.Focused));
invalidate();
}
return true;
}
~this() {
//Log.d("Destroying List ", _id);
if (_adapter !is null && _ownAdapter)
destroy(_adapter);
_adapter = null;
}
/// handle scroll event
override bool onScrollEvent(AbstractSlider source, ScrollEvent event) {
int newPosition = _scrollPosition;
if (event.action == ScrollAction.SliderMoved) {
// scroll
newPosition = event.position;
} else {
// use default handler for page/line up/down events
newPosition = event.defaultUpdatePosition();
}
if (_scrollPosition != newPosition) {
_scrollPosition = newPosition;
if (_scrollPosition > _maxScrollPosition)
_scrollPosition = _maxScrollPosition;
if (_scrollPosition < 0)
_scrollPosition = 0;
invalidate();
}
return true;
}
/// Measure widget according to desired width and height constraints. (Step 1 of two phase layout).
override void measure(int parentWidth, int parentHeight) {
if (visibility == Visibility.Gone) {
_measuredWidth = _measuredHeight = 0;
return;
}
if (_itemSizes.length < itemCount)
_itemSizes.length = itemCount;
Rect m = margins;
Rect p = padding;
// calc size constraints for children
int pwidth = parentWidth;
int pheight = parentHeight;
if (parentWidth != SIZE_UNSPECIFIED)
pwidth -= m.left + m.right + p.left + p.right;
if (parentHeight != SIZE_UNSPECIFIED)
pheight -= m.top + m.bottom + p.top + p.bottom;
bool oldNeedLayout = _needLayout;
Visibility oldScrollbarVisibility = _scrollbar.visibility;
_scrollbar.visibility = Visibility.Visible;
_scrollbar.measure(pwidth, pheight);
_lastMeasureWidth = pwidth;
_lastMeasureHeight = pheight;
int sbsize = _orientation == Orientation.Vertical ? _scrollbar.measuredWidth : _scrollbar.measuredHeight;
// measure children
Point sz;
_sbsz.destroy();
for (int i = 0; i < itemCount; i++) {
Widget w = itemWidget(i);
if (w is null || w.visibility == Visibility.Gone) {
_itemSizes[i].x = _itemSizes[i].y = 0;
continue;
}
w.measure(pwidth, pheight);
_itemSizes[i].x = w.measuredWidth;
_itemSizes[i].y = w.measuredHeight;
if (_orientation == Orientation.Vertical) {
// Vertical
if (sz.x < w.measuredWidth)
sz.x = w.measuredWidth;
sz.y += w.measuredHeight;
} else {
// Horizontal
w.measure(pwidth, pheight);
if (sz.y < w.measuredHeight)
sz.y = w.measuredHeight;
sz.x += w.measuredWidth;
}
}
_needScrollbar = false;
if (_orientation == Orientation.Vertical) {
if (pheight != SIZE_UNSPECIFIED && sz.y > pheight) {
// need scrollbar
if (pwidth != SIZE_UNSPECIFIED) {
pwidth -= sbsize;
_sbsz.x = sbsize;
_needScrollbar = true;
}
}
} else {
if (pwidth != SIZE_UNSPECIFIED && sz.x > pwidth) {
// need scrollbar
if (pheight != SIZE_UNSPECIFIED) {
pheight -= sbsize;
_sbsz.y = sbsize;
_needScrollbar = true;
}
}
}
if (_needScrollbar) {
// recalculate with scrollbar
sz.x = sz.y = 0;
for (int i = 0; i < itemCount; i++) {
Widget w = itemWidget(i);
if (w is null || w.visibility == Visibility.Gone)
continue;
w.measure(pwidth, pheight);
_itemSizes[i].x = w.measuredWidth;
_itemSizes[i].y = w.measuredHeight;
if (_orientation == Orientation.Vertical) {
// Vertical
if (sz.x < w.measuredWidth)
sz.x = w.measuredWidth;
sz.y += w.measuredHeight;
} else {
// Horizontal
w.measure(pwidth, pheight);
if (sz.y < w.measuredHeight)
sz.y = w.measuredHeight;
sz.x += w.measuredWidth;
}
}
}
measuredContent(parentWidth, parentHeight, sz.x + _sbsz.x, sz.y + _sbsz.y);
if (_scrollbar.visibility == oldScrollbarVisibility) {
_needLayout = oldNeedLayout;
_scrollbar.cancelLayout();
}
}
protected void updateItemPositions() {
Rect r;
int p = 0;
for (int i = 0; i < itemCount; i++) {
if (_itemSizes[i].x == 0 && _itemSizes[i].y == 0)
continue;
if (_orientation == Orientation.Vertical) {
// Vertical
int w = _clientRc.width;
int h = _itemSizes[i].y;
r.top = p;
r.bottom = p + h;
r.left = 0;
r.right = w;
_itemRects[i] = r;
p += h;
} else {
// Horizontal
int h = _clientRc.height;
int w = _itemSizes[i].x;
r.top = 0;
r.bottom = h;
r.left = p;
r.right = p + w;
_itemRects[i] = r;
p += w;
}
}
_totalSize = p;
if (_needScrollbar) {
if (_orientation == Orientation.Vertical) {
_scrollbar.setRange(0, p);
_scrollbar.pageSize = _clientRc.height;
_scrollbar.position = _scrollPosition;
} else {
_scrollbar.setRange(0, p);
_scrollbar.pageSize = _clientRc.width;
_scrollbar.position = _scrollPosition;
}
}
/// maximum scroll position
if (_orientation == Orientation.Vertical) {
_maxScrollPosition = _totalSize - _clientRc.height;
if (_maxScrollPosition < 0)
_maxScrollPosition = 0;
} else {
_maxScrollPosition = _totalSize - _clientRc.width;
if (_maxScrollPosition < 0)
_maxScrollPosition = 0;
}
if (_scrollPosition > _maxScrollPosition)
_scrollPosition = _maxScrollPosition;
if (_scrollPosition < 0)
_scrollPosition = 0;
if (_needScrollbar) {
if (_orientation == Orientation.Vertical) {
_scrollbar.position = _scrollPosition;
} else {
_scrollbar.position = _scrollPosition;
}
}
}
/// Set widget rectangle to specified value and layout widget contents. (Step 2 of two phase layout).
override void layout(Rect rc) {
_needLayout = false;
if (visibility == Visibility.Gone) {
return;
}
_pos = rc;
Rect parentrc = rc;
applyMargins(rc);
applyPadding(rc);
if (_itemRects.length < itemCount)
_itemRects.length = itemCount;
// measure again if client size has been changed
if (_lastMeasureWidth != rc.width || _lastMeasureHeight != rc.height)
measure(parentrc.width, parentrc.height);
// layout scrollbar
if (_needScrollbar) {
_scrollbar.visibility = Visibility.Visible;
Rect sbrect = rc;
if (_orientation == Orientation.Vertical)
sbrect.left = sbrect.right - _sbsz.x;
else
sbrect.top = sbrect.bottom - _sbsz.y;
_scrollbar.layout(sbrect);
rc.right -= _sbsz.x;
rc.bottom -= _sbsz.y;
} else {
_scrollbar.visibility = Visibility.Gone;
}
_clientRc = rc;
// calc item rectangles
updateItemPositions();
if (_makeSelectionVisibleOnNextLayout) {
makeSelectionVisible();
_makeSelectionVisibleOnNextLayout = false;
}
_needLayout = false;
_scrollbar.cancelLayout();
}
/// Draw widget at its position to buffer
override void onDraw(DrawBuf buf) {
if (visibility != Visibility.Visible)
return;
super.onDraw(buf);
Rect rc = _pos;
applyMargins(rc);
applyPadding(rc);
auto saver = ClipRectSaver(buf, rc, alpha);
// draw scrollbar
if (_needScrollbar)
_scrollbar.onDraw(buf);
Point scrollOffset;
if (_orientation == Orientation.Vertical) {
scrollOffset.y = _scrollPosition;
} else {
scrollOffset.x = _scrollPosition;
}
// draw items
for (int i = 0; i < itemCount; i++) {
Rect itemrc = _itemRects[i];
itemrc.left += rc.left - scrollOffset.x;
itemrc.right += rc.left - scrollOffset.x;
itemrc.top += rc.top - scrollOffset.y;
itemrc.bottom += rc.top - scrollOffset.y;
if (itemrc.intersects(rc)) {
Widget w = itemWidget(i);
if (w is null || w.visibility != Visibility.Visible)
continue;
w.measure(itemrc.width, itemrc.height);
w.layout(itemrc);
w.onDraw(buf);
}
}
}
/// list navigation using keys
override bool onKeyEvent(KeyEvent event) {
if (itemCount == 0)
return false;
int navigationDelta = 0;
if (event.action == KeyAction.KeyDown) {
if (orientation == Orientation.Vertical) {
if (event.keyCode == KeyCode.DOWN)
navigationDelta = 1;
else if (event.keyCode == KeyCode.UP)
navigationDelta = -1;
} else {
if (event.keyCode == KeyCode.RIGHT)
navigationDelta = 1;
else if (event.keyCode == KeyCode.LEFT)
navigationDelta = -1;
}
}
if (navigationDelta != 0) {
moveSelection(navigationDelta);
return true;
}
if (event.action == KeyAction.KeyDown) {
if (event.keyCode == KeyCode.HOME) {
// select first enabled item on HOME key
selectItem(0, 1);
return true;
} else if (event.keyCode == KeyCode.END) {
// select last enabled item on END key
selectItem(itemCount - 1, -1);
return true;
} else if (event.keyCode == KeyCode.PAGEDOWN) {
// TODO
} else if (event.keyCode == KeyCode.PAGEUP) {
// TODO
}
}
return super.onKeyEvent(event);
//if (_selectedItemIndex != -1 && event.action == KeyAction.KeyUp && (event.keyCode == KeyCode.SPACE || event.keyCode == KeyCode.RETURN)) {
// itemClicked(_selectedItemIndex);
// return true;
//}
//if (navigationDelta != 0) {
// int p = _selectedItemIndex;
// if (p < 0) {
// if (navigationDelta < 0)
// p = itemCount - 1;
// else
// p = 0;
// } else {
// p += navigationDelta;
// if (p < 0)
// p = itemCount - 1;
// else if (p >= itemCount)
// p = 0;
// }
// setHoverItem(-1);
// selectItem(p);
// return true;
//}
//return false;
}
/// process mouse event; return true if event is processed by widget.
override bool onMouseEvent(MouseEvent event) {
//Log.d("onMouseEvent ", id, " ", event.action, " (", event.x, ",", event.y, ")");
if (event.action == MouseAction.Leave || event.action == MouseAction.Cancel) {
setHoverItem(-1);
return true;
}
// delegate processing of mouse wheel to scrollbar widget
if (event.action == MouseAction.Wheel && _needScrollbar) {
return _scrollbar.onMouseEvent(event);
}
// support onClick
Rect rc = _pos;
applyMargins(rc);
applyPadding(rc);
Point scrollOffset;
if (_orientation == Orientation.Vertical) {
scrollOffset.y = _scrollPosition;
} else {
scrollOffset.x = _scrollPosition;
}
if (event.action == MouseAction.ButtonDown && (event.flags & (MouseFlag.LButton || MouseFlag.RButton)))
setFocus();
for (int i = 0; i < itemCount; i++) {
Rect itemrc = _itemRects[i];
itemrc.left += rc.left - scrollOffset.x;
itemrc.right += rc.left - scrollOffset.x;
itemrc.top += rc.top - scrollOffset.y;
itemrc.bottom += rc.top - scrollOffset.y;
if (itemrc.isPointInside(Point(event.x, event.y))) {
if ((event.flags & (MouseFlag.LButton || MouseFlag.RButton)) || _selectOnHover) {
if (_selectedItemIndex != i && itemEnabled(i)) {
int prevSelection = _selectedItemIndex;
selectItem(i);
setHoverItem(-1);
selectionChanged(_selectedItemIndex, prevSelection);
}
} else {
if (itemEnabled(i))
setHoverItem(i);
}
if ((event.button == MouseFlag.LButton || event.button == MouseFlag.RButton)) {
if ((_clickOnButtonDown && event.action == MouseAction.ButtonDown) || (!_clickOnButtonDown && event.action == MouseAction.ButtonUp)) {
if (itemEnabled(i)) {
itemClicked(i);
if (_clickOnButtonDown)
event.doNotTrackButtonDown = true;
}
}
}
return true;
}
}
return true;
}
}
|
D
|
module dragonov.sys.Process;
import core.sys.posix.sys.types;
class Process
{
private string _command;
version(Posix) {
private pid_t _pid;
}
this(string command)
{
_command = command;
}
void Execute()
{
}
void Create()
{
}
public int Pid() @property
{
version (Posix) {
return cast(int) _pid;
}
}
}
|
D
|
someone who acts or responds in a mechanical or apathetic way
a mechanism that can move automatically
|
D
|
module android.java.java.util.concurrent.Delayed;
public import android.java.java.util.concurrent.Delayed_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Delayed;
import import1 = android.java.java.lang.Class;
|
D
|
module dquick.system.sdl.openglContextSDL;
// TODO Import GL3 and migrate openGL demo code to a up to date code
// Find a way to be restricted to openGL 2 (with upper opengl function declared)
// Link to delerict git repository direcly to be able to get updates
// TODO add an interface
import std.stdio;
import std.c.string; // for strstr
import std.string;
import derelict.opengl3.gl;
import derelict.opengl3.glx;
import derelict.util.exception;
import dquick.renderer3D.all;
import dquick.maths.matrix4x4;
import dquick.maths.vector2s32;
import dquick.utils.utils;
import derelict.sdl2.sdl;
import core.runtime;
struct OpenGLContextSDL
{
public:
~this()
{
debug destructorAssert(mContext == null, "OpenGLContextSDL.release method wasn't called.", mTrace);
}
void pushSettings()
{
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
}
void initialize(SDL_Window* window)
{
debug mTrace = defaultTraceHandler(null);
mWindow = window;
mContext = SDL_GL_CreateContext(mWindow);
SDL_GL_SetSwapInterval(1);
// Switch to Latest OpenGL version supported by hardware
try
{
DerelictGL.reload(GLVersion.GL21, false);
}
catch(derelict.util.exception.SymbolLoadException e)
{
//if (e.symbolName() != "glDebug")
// throw e;
}
auto glVersion = glGetString(GL_VERSION);
if (glVersion)
printf("[OpenGLContext] OpenGL Version: %s\n", glVersion);
}
void makeCurrent()
{
SDL_GL_MakeCurrent(mWindow, mContext);
}
void swapBuffers()
{
SDL_GL_SwapWindow(mWindow);
}
void resize(int width, int height)
{
if (height==0) // Prevent A Divide By Zero By
{
height=1; // Making Height Equal One
}
Renderer.setViewportSize(Vector2s32(width, height)); // Reset The Current Viewport
Matrix4x4 camera;
camera = Matrix4x4.orthographic(0.0, width, height, 0.0, -100.0, 100.0);
Renderer.currentCamera(camera);
// Renderer.currentMDVMatrix(switchMatrixRowsColumns(camera));
}
void release()
{
if (mWindow)
{
SDL_GL_DeleteContext(mContext);
mContext = null;
mWindow = null;
}
}
private:
SDL_Window* mWindow;
SDL_GLContext mContext;
debug Throwable.TraceInfo mTrace;
}
|
D
|
module std.experimental.containers.map;
import stdx.allocator : IAllocator, ISharedAllocator, theAllocator,
processAllocator, make, dispose, makeArray, shrinkArray, expandArray;
import devisualization.util.core.memory.managed;
import std.traits : isArray, isPointer;
import core.atomic : atomicOp, atomicLoad;
final class Map(K, V) {
private {
IAllocator allocator;
K[] keys_, keys_real;
V[] values_, values_real;
SelfMemManager memmgr;
managed!(K[]) mankslice;
managed!(V[]) manvslice;
size_t offsetAlloc;
}
~this() @trusted {
if (memmgr !is null && memmgr.refCount == 0) {
allocator.dispose(memmgr);
allocator.dispose(keys_);
allocator.dispose(values_);
}
}
V opIndex(K key) @trusted {
foreach (i, k; keys_[0 .. $ - offsetAlloc]) {
if (k == key)
return values_[i];
}
return V.init;
}
private {
size_t length() @trusted {
return keys_.length - offsetAlloc;
}
void length(size_t newlen) @trusted {
import std.traits : isPointer;
if (newlen > keys_real.length && newlen - keys_real.length <= offsetAlloc) {
offsetAlloc -= newlen - keys_real.length;
keys_real = keys_[0 .. newlen];
values_real = values_[0 .. newlen];
return;
} else if (newlen == 0) {
if (values_.length > 1) {
offsetAlloc = 1;
allocator.shrinkArray(keys_, keys_.length - 1);
allocator.shrinkArray(values_, values_.length - 1);
}
static if (is(K == class) || is(K == interface)) {
allocator.dispose(keys_[0]);
} else static if (isArray!K) {
allocator.dispose(cast(void[])keys_[0]);
}
static if (is(V == class) || is(V == interface)) {
allocator.dispose(values_[0]);
} else static if (isArray!V) {
allocator.dispose(cast(void[])values_[0]);
}
keys_real = keys_[0 .. 0];
values_real = values_[0 .. 0];
return;
} else if (newlen > keys_.length) {
allocator.expandArray(keys_, newlen - keys_.length);
allocator.expandArray(values_, newlen - values_.length);
} else if (newlen < keys_.length) {
allocator.shrinkArray(keys_, keys_.length - newlen);
allocator.shrinkArray(values_, values_.length - newlen);
}
keys_real = keys_[0 .. newlen];
values_real = values_[0 .. newlen];
}
}
void opIndexAssign(V value, K key) @trusted {
foreach (i, k; keys_[0 .. $ - offsetAlloc]) {
if (k == key) {
values_[i] = value;
return;
}
}
this.length = keys_real.length + 1;
keys_[length - 1] = key;
values_[length - 1] = value;
}
static if ((is(K == class) || is(K == interface) || isArray!K) &&
(is(V == class) || is(V == interface) || isArray!V)) {
int opApply(int delegate(ref managed!K, ref managed!V) dg) @trusted {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retk = managed!K(k, managers(memmgr, NeverDeallocateManager()), allocator);
auto retv = managed!V(values_[i], managers(memmgr,
NeverDeallocateManager()), allocator);
result = dg(retk, retv);
if (result)
break;
}
return result;
}
} else static if (is(K == class) || is(K == interface) || isArray!K) {
int opApply(int delegate(ref managed!K, ref V) dg) @trusted {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retk = managed!K(k, managers(memmgr, NeverDeallocateManager()), allocator);
result = dg(retk, values_[i]);
if (result)
break;
}
return result;
}
} else static if (is(V == class) || is(V == interface) || isArray!V) {
int opApply(int delegate(ref K, ref managed!V) dg) @trusted {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retv = managed!V(values_[i], managers(memmgr,
NeverDeallocateManager()), allocator);
result = dg(k, retv);
if (result)
break;
}
return result;
}
} else {
int opApply(int delegate(ref K, ref V) dg) @trusted {
int result = 0;
foreach (i, ref k; keys_[0 .. length]) {
result = dg(k, values_[i]);
if (result)
break;
}
return result;
}
}
static managed!(Map!(K, V)) opCall(IAllocator alloc = theAllocator()) @trusted {
SelfMemManager mgr = alloc.make!(SelfMemManager);
Map!(K, V) ret2 = alloc.make!(Map!(K, V));
ret2.allocator = alloc;
ret2.memmgr = mgr;
ret2.offsetAlloc = 1;
ret2.keys_ = alloc.makeArray!K(1);
ret2.values_ = alloc.makeArray!V(1);
ret2.mankslice = managed!(K[])(&ret2.keys_real, managers(mgr), alloc);
ret2.manvslice = managed!(V[])(&ret2.values_real, managers(mgr), alloc);
auto ret = managed!(Map!(K, V))(ret2, managers(mgr), alloc);
return ret;
}
void remove(K value) {
size_t i, toShrink;
for (size_t j = 0; j < length; j++) {
if (keys_[j] == value) {
// deallocate
static if (is(K == class) || is(K == interface)) {
allocator.dispose(keys_[j]);
} else static if (isArray!K) {
allocator.dispose(cast(void[])keys_[j]);
}
static if (is(V == class) || is(V == interface)) {
allocator.dispose(values_[j]);
} else static if (isArray!V) {
allocator.dispose(cast(void[])values_[j]);
}
keys_[j] = K.init;
values_[j] = V.init;
toShrink++;
} else {
keys_[i] = keys_[j];
values_[i++] = values_[j];
}
}
length(keys_real.length - toShrink);
}
managed!(K[]) keys() @safe {
return mankslice;
}
managed!(V[]) values() @safe {
return manvslice;
}
}
unittest {
auto test = Map!(int, string)(theAllocator());
test[123] = "hi";
assert(test[123] == "hi");
test.remove(123);
assert(test[123] is null);
test[1234] = "boo";
assert(test[1234] == "boo");
assert(test.keys.length == 1);
foreach (k, v; test) {
assert(k == 1234);
assert(v == "boo");
}
}
final class SharedMap(K, V) {
private {
shared(ISharedAllocator) allocator;
shared(K[]) keys_, keys_real;
shared(V[]) values_, values_real;
shared(SelfMemManager) memmgr;
managed!(shared(K[])) mankslice;
managed!(shared(V[])) manvslice;
size_t offsetAlloc;
}
~this() @trusted {
if (memmgr !is null && memmgr.refCount == 0) {
allocator.dispose(memmgr);
allocator.dispose(cast(K[])keys_);
allocator.dispose(cast(V[])values_);
}
}
shared(V) opIndex(shared(K) key) @trusted shared {
foreach (i, k; keys_[0 .. $ - offsetAlloc]) {
if (k == key)
return values_[i];
}
return V.init;
}
private {
size_t length() @trusted shared {
return keys_.length - offsetAlloc;
}
void length(size_t newlen) @trusted shared {
import std.traits : isPointer;
if (newlen > keys_real.length && newlen - keys_real.length <= offsetAlloc) {
atomicOp!"-="(offsetAlloc, newlen - keys_real.length);
keys_real = keys_[0 .. newlen];
values_real = values_[0 .. newlen];
return;
} else if (newlen == 0) {
if (values_.length > 1) {
offsetAlloc = values_.length;
}
foreach (i; 0 .. values_.length) {
static if (is(K == class) || is(K == interface)) {
allocator.dispose(keys_[i]);
} else static if (isArray!K) {
allocator.dispose(cast(void[])keys_[i]);
}
static if (is(V == class) || is(V == interface)) {
allocator.dispose(values_[i]);
} else static if (isArray!V) {
allocator.dispose(cast(void[])values_[i]);
}
}
keys_real = keys_[0 .. 0];
values_real = values_[0 .. 0];
return;
} else if (newlen > keys_.length) {
K[] tempK = cast(K[])keys_;
V[] tempV = cast(V[])values_;
allocator.expandArray(tempK, newlen - keys_.length);
allocator.expandArray(tempV, newlen - values_.length);
keys_ = cast(shared)tempK;
values_ = cast(shared)tempV;
} else if (newlen < keys_.length) {
K[] tempK = cast(K[])keys_;
V[] tempV = cast(V[])values_;
allocator.shrinkArray(tempK, keys_.length - newlen);
allocator.shrinkArray(tempV, values_.length - newlen);
keys_ = cast(shared)tempK;
values_ = cast(shared)tempV;
}
keys_real = keys_[0 .. newlen];
values_real = values_[0 .. newlen];
}
}
void opIndexAssign(shared(V) value, shared(K) key) @trusted shared {
foreach (i, k; keys_[0 .. $ - offsetAlloc]) {
if (k == key) {
values_[i] = value;
return;
}
}
this.length = keys_real.length + 1;
keys_[length - 1] = key;
values_[length - 1] = value;
}
static if ((is(K == class) || is(K == interface) || isArray!K) &&
(is(V == class) || is(V == interface) || isArray!V)) {
int opApply(int delegate(ref managed!(shared(K)), ref managed!(shared(V))) dg) @trusted shared {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retk = managed!K(k, managers(memmgr, NeverDeallocateManager()), allocator);
auto retv = managed!V(values_[i], managers(memmgr,
NeverDeallocateManager()), allocator);
result = dg(retk, retv);
if (result)
break;
}
return result;
}
} else static if (is(K == class) || is(K == interface) || isArray!K) {
int opApply(int delegate(ref managed!(shared(K)), ref shared(V)) dg) @trusted shared {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retk = managed!K(k, managers(memmgr, NeverDeallocateManager()), allocator);
result = dg(retk, values_[i]);
if (result)
break;
}
return result;
}
} else static if (is(V == class) || is(V == interface) || isArray!V) {
int opApply(int delegate(ref shared(K), ref managed!(shared(V))) dg) @trusted shared {
int result = 0;
foreach (i, ref k; keys_[0 .. $ - offsetAlloc]) {
auto retv = managed!(shared(V))(values_[i], managers(memmgr,
NeverDeallocateManager()), allocator);
result = dg(k, retv);
if (result)
break;
}
return result;
}
} else {
int opApply(int delegate(ref shared(K), ref shared(V)) dg) @trusted shared {
int result = 0;
foreach (i, ref k; keys_[0 .. length]) {
result = dg(k, values_[i]);
if (result)
break;
}
return result;
}
}
static managed!(shared(SharedMap!(K, V))) opCall(
shared(ISharedAllocator) alloc = processAllocator()) @trusted {
shared(SelfMemManager) mgr = alloc.make!(shared(SelfMemManager));
shared(SharedMap!(K, V)) ret2 = alloc.make!(shared(SharedMap!(K, V)));
ret2.allocator = alloc;
ret2.memmgr = mgr;
ret2.offsetAlloc = 1;
ret2.keys_ = alloc.makeArray!(shared(K))(1);
ret2.values_ = alloc.makeArray!(shared(V))(1);
cast()ret2.mankslice = managed!(shared(K[]))(&ret2.keys_real, managers(mgr), alloc);
cast()ret2.manvslice = managed!(shared(V[]))(&ret2.values_real, managers(mgr), alloc);
auto ret = managed!(shared(SharedMap!(K, V)))(ret2, managers(mgr), alloc);
return ret;
}
void remove(shared(K) value) shared {
size_t i, toShrink;
for (size_t j = 0; j < length; j++) {
if (keys_[j] == value) {
// deallocate
static if (is(K == class) || is(K == interface)) {
allocator.dispose(keys_[j]);
} else static if (isArray!K) {
allocator.dispose(cast(void[])keys_[j]);
}
static if (is(V == class) || is(V == interface)) {
allocator.dispose(values_[j]);
} else static if (isArray!V) {
allocator.dispose(cast(void[])values_[j]);
}
keys_[j] = K.init;
values_[j] = V.init;
toShrink++;
} else {
keys_[i] = keys_[j];
values_[i++] = values_[j];
}
}
length(keys_real.length - toShrink);
}
managed!(shared(K[])) keys() @safe shared {
return mankslice;
}
managed!(shared(V[])) values() @safe shared {
return manvslice;
}
}
unittest {
auto test = SharedMap!(int, string)(processAllocator());
test[123] = "hi";
assert(test[123] == "hi");
test.remove(123);
assert(test[123] is null);
test[1234] = "boo";
assert(test[1234] == "boo");
assert(test.keys.length == 1);
foreach (k, v; test) {
assert(k == 1234);
assert(v == "boo");
}
}
private final class SelfMemManager {
uint refCount;
void onIncrement() @safe nothrow {
refCount++;
}
void onIncrement() @safe nothrow shared {
atomicOp!"+="(refCount, 1);
}
void onDecrement() @safe nothrow {
refCount--;
}
void onDecrement() @safe nothrow shared {
atomicOp!"-="(refCount, 1);
}
bool shouldDeallocate() @safe nothrow {
return refCount == 0;
}
bool shouldDeallocate() @safe nothrow shared {
return atomicLoad(refCount) == 0;
}
}
|
D
|
/Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/Objects-normal/x86_64/MKTableViewCell.o : /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKActivityIndicator.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKButton.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCardView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCollectionViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKColor.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedDrawerControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedMainControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKImageView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLabel.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLayer.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKNavigationBar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKRefreshControl.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSideDrawerViewController.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSnackbar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSwitch.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTextField.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/Pods/Target\ Support\ Files/MaterialKit/MaterialKit-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule
/Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/Objects-normal/x86_64/MKTableViewCell~partial.swiftmodule : /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKActivityIndicator.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKButton.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCardView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCollectionViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKColor.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedDrawerControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedMainControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKImageView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLabel.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLayer.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKNavigationBar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKRefreshControl.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSideDrawerViewController.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSnackbar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSwitch.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTextField.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/Pods/Target\ Support\ Files/MaterialKit/MaterialKit-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule
/Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/Objects-normal/x86_64/MKTableViewCell~partial.swiftdoc : /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKActivityIndicator.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKButton.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCardView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKCollectionViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKColor.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedDrawerControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKEmbedMainControllerSegue.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKImageView.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLabel.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKLayer.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKNavigationBar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKRefreshControl.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSideDrawerViewController.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSnackbar.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKSwitch.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/Pods/MaterialKit/Source/MKTextField.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/Pods/Target\ Support\ Files/MaterialKit/MaterialKit-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Pods.build/Debug-iphonesimulator/MaterialKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule
|
D
|
func void b_assessenterroom()
{
var int self_guild;
var int portalguild;
var int formerportalguild;
printdebugnpc(PD_ZS_FRAME,"B_AssessEnterRoom");
self_guild = self.guild;
printglobals(PD_ZS_CHECK);
portalguild = Wld_GetPlayerPortalGuild();
printguild(PD_ZS_CHECK,portalguild);
formerportalguild = Wld_GetFormerPlayerPortalGuild();
printguild(PD_ZS_CHECK,formerportalguild);
var C_NPC sld1;
var C_NPC sld2;
sld1 = Hlp_GetNpc(sld_723_soeldner);
sld2 = Hlp_GetNpc(sld_732_soeldner);
if((Hlp_GetInstanceID(self) == Hlp_GetInstanceID(sld1)) || (Hlp_GetInstanceID(self) == Hlp_GetInstanceID(sld2)))
{
return;
};
if(other.guild == GIL_MEATBUG)
{
return;
};
if(!c_npcishuman(other))
{
printdebugnpc(PD_ZS_CHECK,"Monster betritt Raum!");
b_fullstop(self);
AI_StartState(self,zs_assessmonster,0,"");
};
if(!Npc_IsPlayer(other))
{
printdebugnpc(PD_ZS_CHECK,"...NSC betritt Raum!");
return;
};
if((self.npctype == NPCTYPE_FRIEND) || (Npc_GetAttitude(self,other) == ATT_FRIENDLY))
{
printdebugnpc(PD_ZS_CHECK,"...NSC ist NPCTYPE_FRIEND oder ATT_FRIENDLY");
return;
};
if(Npc_CanSeeNpc(self,other) || ((!c_bodystatecontains(other,BS_SNEAK)) && (Npc_GetDistToNpc(self,other) < HAI_DIST_HEARROOMINTRUDER)))
{
printdebugnpc(PD_ZS_CHECK,"...Nsc sieht/hört Eindringling!");
if(c_npcisguard(self))
{
printdebugnpc(PD_ZS_CHECK,"...Nsc ist Wache!");
if((portalguild != GIL_NONE) && (Wld_GetGuildAttitude(self_guild,portalguild) == ATT_FRIENDLY))
{
printdebugnpc(PD_ZS_CHECK,"...betretener Portalraum gehört Schützling-Gilde!");
if(!c_bodystatecontains(self,BS_MOBINTERACT_INTERRUPT))
{
b_fullstop(self);
};
AI_StartState(self,zs_clearroom,0,"");
}
else if((formerportalguild != GIL_NONE) && (Wld_GetGuildAttitude(self_guild,formerportalguild) == ATT_FRIENDLY))
{
printdebugnpc(PD_ZS_CHECK,"...verlassener Portalraum gehört Schützling-Gilde!");
if(!c_bodystatecontains(self,BS_MOBINTERACT_INTERRUPT))
{
b_fullstop(self);
};
b_whirlaround(self,other);
AI_PointAtNpc(self,other);
b_say(self,other,"$HEYYOU");
AI_StopPointAt(self);
Npc_PercDisable(self,PERC_MOVENPC);
AI_SetWalkMode(self,NPC_RUN);
AI_GotoNpc(self,other);
b_say(self,other,"$WHATDIDYOUINTHERE");
};
}
else if(c_npcisguardarcher(self))
{
printdebugnpc(PD_ZS_CHECK,"...ich bin Fernkampfwache und ignoriere Räume betreten grundsätzlich!");
Npc_PercEnable(self,PERC_OBSERVEINTRUDER,b_observeintruder);
AI_ContinueRoutine(self);
}
else
{
printdebugnpc(PD_ZS_CHECK,"...Nsc ist KEINE Wache!");
if((Npc_GetDistToNpc(self,other) < HAI_DIST_CLEARROOM) && (portalguild != GIL_NONE) && ((self_guild == portalguild) || (Wld_GetGuildAttitude(self_guild,portalguild) == ATT_FRIENDLY)))
{
printdebugnpc(PD_ZS_CHECK,"...SC nah & betretener Portalraum gehört Gilde des NSCs");
if(!c_bodystatecontains(self,BS_MOBINTERACT_INTERRUPT))
{
b_fullstop(self);
};
AI_StartState(self,zs_clearroom,0,"");
return;
};
if((Npc_GetDistToNpc(self,other) < HAI_DIST_CLEARROOM) && (formerportalguild != GIL_NONE) && ((self_guild == formerportalguild) || (Wld_GetGuildAttitude(self_guild,formerportalguild) == ATT_FRIENDLY)))
{
printdebugnpc(PD_ZS_CHECK,"...SC nah & SC verläßt eigenen Portalraum");
if(!c_bodystatecontains(self,BS_MOBINTERACT_INTERRUPT))
{
b_fullstop(self);
};
b_whirlaround(self,other);
AI_PointAtNpc(self,other);
b_say(self,other,"$HEYYOU");
AI_StopPointAt(self);
Npc_PercDisable(self,PERC_MOVENPC);
AI_SetWalkMode(self,NPC_RUN);
AI_GotoNpc(self,other);
b_say(self,other,"$WHATDIDYOUINTHERE");
};
};
}
else
{
printdebugnpc(PD_ZS_CHECK,"...NSC kann den Eindringling weder sehen noch hören!");
};
};
|
D
|
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/Utilities/FileIO.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/Utilities/FileIO~partial.swiftmodule : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/Utilities/FileIO~partial.swiftdoc : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/Utilities/FileIO~partial.swiftsourceinfo : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
// URL: https://atcoder.jp/contests/language-test-202001/tasks/practice_2
import std.algorithm, std.array, std.container, std.math, std.range, std.typecons, std.string;
import std.functional;
version(unittest) {} else
void main()
{
int N, Q; io.getV(N, Q);
auto d = new dchar[](N);
foreach (i, ref di; d) di = 'A'+cast(int)i;
if (N == 5)
d.sort!((a, b) => memoize!query(a, b));
else
d = d.mergeSort;
io.put("!", d);
}
bool query(dchar a, dchar b)
{
if (a > b) return !memoize!query(b, a);
io.put!"{flush: true}"("?", a, b);
string ans; io.getV(ans);
return ans == "<";
}
dchar[] mergeSort(dchar[] d)
{
if (d.length == 1) return d;
auto d1 = mergeSort(d[0..d.length/2]);
auto d2 = mergeSort(d[d.length/2..$]);
auto r = cast(dchar[])[], i1 = 0, i2 = 0;
while (i1 < d1.length || i2 < d2.length) {
if (i1 == d1.length) {
r ~= d2[i2++];
} else if (i2 == d2.length) {
r ~= d1[i1++];
} else if (memoize!query(d1[i1], d2[i2])) {
r ~= d1[i1++];
} else {
r ~= d2[i2++];
}
}
return r;
}
auto io = IO!()();
import lib.io;
|
D
|
#objdump: -p
#as: -mlong -mshort-double
#name: Elf flags XGATE 32-bit int, 32-bit double
#source: abi.s
.*: +file format elf32\-xgate
private flags = 81:\[abi=32-bit int, 32-bit double, cpu=XGATE\]
|
D
|
import std.file : readText;
import std.stdio, std.algorithm, std.range, std.string;
void main(string[] args)
{
auto pack = readText(args[1]);
auto cfg = readText(args[2]).splitLines;
auto r0 = pack.findSplitAfter("// BEGIN AUTO\n");
auto r1 = r0[1].findSplitAfter("// BEGIN AUTO\n");
auto pre = r0[0];
auto mid = r1[0];
auto post = r1[1];
chain(pre,
cfg.filter!(s => !s.canFind("OMPI_OFFSET_DATATYPE")).joiner("\n"),
mid,
cfg.filter!(s => s.canFind("OMPI_OFFSET_DATATYPE")).joiner("\n"),
post)
.write();
}
|
D
|
/Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/Objects-normal/x86_64/SLTickReceiver.o : /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTicker.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSampleManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSamplePlayer.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickDiffuser.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPattern.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPatternManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMath.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMetronome.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickReceiver.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChangeListener.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChanger.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/Syncopate.h /Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
/Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/Objects-normal/x86_64/SLTickReceiver~partial.swiftmodule : /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTicker.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSampleManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSamplePlayer.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickDiffuser.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPattern.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPatternManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMath.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMetronome.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickReceiver.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChangeListener.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChanger.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/Syncopate.h /Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
/Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/Objects-normal/x86_64/SLTickReceiver~partial.swiftdoc : /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTicker.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSampleManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLSamplePlayer.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickDiffuser.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPattern.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLPatternManager.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMath.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLMetronome.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLTickReceiver.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChangeListener.swift /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/SLStateChanger.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Users/work/iOS/Syncopate/Framework/Syncopate/Syncopate/Syncopate.h /Users/work/iOS/Syncopate/Framework/Syncopate/build/Syncopate.build/Release-iphonesimulator/Syncopate.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule
|
D
|
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/Bytes.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/Bytes~partial.swiftmodule : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/Bytes~partial.swiftdoc : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/Bytes~partial.swiftsourceinfo : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DMDSRC _denum.d)
*/
module ddmd.denum;
import core.stdc.stdio;
import ddmd.gluelayer;
import ddmd.declaration;
import ddmd.dmodule;
import ddmd.dscope;
import ddmd.dsymbol;
import ddmd.errors;
import ddmd.expression;
import ddmd.globals;
import ddmd.id;
import ddmd.identifier;
import ddmd.init;
import ddmd.mtype;
import ddmd.tokens;
import ddmd.visitor;
/***********************************************************
*/
extern (C++) final class EnumDeclaration : ScopeDsymbol
{
/* The separate, and distinct, cases are:
* 1. enum { ... }
* 2. enum : memtype { ... }
* 3. enum id { ... }
* 4. enum id : memtype { ... }
* 5. enum id : memtype;
* 6. enum id;
*/
Type type; // the TypeEnum
Type memtype; // type of the members
Prot protection;
Expression maxval;
Expression minval;
Expression defaultval; // default initializer
bool isdeprecated;
bool added;
int inuse;
extern (D) this(Loc loc, Identifier id, Type memtype)
{
super(id);
//printf("EnumDeclaration() %s\n", toChars());
this.loc = loc;
type = new TypeEnum(this);
this.memtype = memtype;
protection = Prot(PROTundefined);
}
override Dsymbol syntaxCopy(Dsymbol s)
{
assert(!s);
auto ed = new EnumDeclaration(loc, ident, memtype ? memtype.syntaxCopy() : null);
return ScopeDsymbol.syntaxCopy(ed);
}
override void addMember(Scope* sc, ScopeDsymbol sds)
{
version (none)
{
printf("EnumDeclaration::addMember() %s\n", toChars());
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
printf(" member %s\n", em.toChars());
}
}
/* Anonymous enum members get added to enclosing scope.
*/
ScopeDsymbol scopesym = isAnonymous() ? sds : this;
if (!isAnonymous())
{
ScopeDsymbol.addMember(sc, sds);
if (!symtab)
symtab = new DsymbolTable();
}
if (members)
{
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
em.ed = this;
//printf("add %s to scope %s\n", em.toChars(), scopesym.toChars());
em.addMember(sc, isAnonymous() ? scopesym : this);
}
}
added = true;
}
override void setScope(Scope* sc)
{
if (semanticRun > PASSinit)
return;
ScopeDsymbol.setScope(sc);
}
override void semantic(Scope* sc)
{
//printf("EnumDeclaration::semantic(sd = %p, '%s') %s\n", sc.scopesym, sc.scopesym.toChars(), toChars());
//printf("EnumDeclaration::semantic() %p %s\n", this, toChars());
if (semanticRun >= PASSsemanticdone)
return; // semantic() already completed
if (semanticRun == PASSsemantic)
{
assert(memtype);
.error(loc, "circular reference to enum base type %s", memtype.toChars());
errors = true;
semanticRun = PASSsemanticdone;
return;
}
uint dprogress_save = Module.dprogress;
Scope* scx = null;
if (_scope)
{
sc = _scope;
scx = _scope; // save so we don't make redundant copies
_scope = null;
}
parent = sc.parent;
type = type.semantic(loc, sc);
protection = sc.protection;
if (sc.stc & STCdeprecated)
isdeprecated = true;
userAttribDecl = sc.userAttribDecl;
semanticRun = PASSsemantic;
if (!members && !memtype) // enum ident;
{
semanticRun = PASSsemanticdone;
return;
}
if (!symtab)
symtab = new DsymbolTable();
/* The separate, and distinct, cases are:
* 1. enum { ... }
* 2. enum : memtype { ... }
* 3. enum ident { ... }
* 4. enum ident : memtype { ... }
* 5. enum ident : memtype;
* 6. enum ident;
*/
if (memtype)
{
memtype = memtype.semantic(loc, sc);
/* Check to see if memtype is forward referenced
*/
if (memtype.ty == Tenum)
{
EnumDeclaration sym = cast(EnumDeclaration)memtype.toDsymbol(sc);
if (!sym.memtype || !sym.members || !sym.symtab || sym._scope)
{
// memtype is forward referenced, so try again later
_scope = scx ? scx : sc.copy();
_scope.setNoFree();
_scope._module.addDeferredSemantic(this);
Module.dprogress = dprogress_save;
//printf("\tdeferring %s\n", toChars());
semanticRun = PASSinit;
return;
}
}
if (memtype.ty == Tvoid)
{
error("base type must not be void");
memtype = Type.terror;
}
if (memtype.ty == Terror)
{
errors = true;
if (members)
{
for (size_t i = 0; i < members.dim; i++)
{
Dsymbol s = (*members)[i];
s.errors = true; // poison all the members
}
}
semanticRun = PASSsemanticdone;
return;
}
}
semanticRun = PASSsemanticdone;
if (!members) // enum ident : memtype;
return;
if (members.dim == 0)
{
error("enum %s must have at least one member", toChars());
errors = true;
return;
}
Module.dprogress++;
Scope* sce;
if (isAnonymous())
sce = sc;
else
{
sce = sc.push(this);
sce.parent = this;
}
sce = sce.startCTFE();
sce.setNoFree(); // needed for getMaxMinValue()
/* Each enum member gets the sce scope
*/
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
if (em)
em._scope = sce;
}
if (!added)
{
/* addMember() is not called when the EnumDeclaration appears as a function statement,
* so we have to do what addMember() does and install the enum members in the right symbol
* table
*/
ScopeDsymbol scopesym = null;
if (isAnonymous())
{
/* Anonymous enum members get added to enclosing scope.
*/
for (Scope* sct = sce; 1; sct = sct.enclosing)
{
assert(sct);
if (sct.scopesym)
{
scopesym = sct.scopesym;
if (!sct.scopesym.symtab)
sct.scopesym.symtab = new DsymbolTable();
break;
}
}
}
else
{
// Otherwise enum members are in the EnumDeclaration's symbol table
scopesym = this;
}
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
if (em)
{
em.ed = this;
em.addMember(sc, scopesym);
}
}
}
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
if (em)
em.semantic(em._scope);
}
//printf("defaultval = %lld\n", defaultval);
//if (defaultval) printf("defaultval: %s %s\n", defaultval.toChars(), defaultval.type.toChars());
//printf("members = %s\n", members.toChars());
}
override bool oneMember(Dsymbol* ps, Identifier ident)
{
if (isAnonymous())
return Dsymbol.oneMembers(members, ps, ident);
return Dsymbol.oneMember(ps, ident);
}
override Type getType()
{
return type;
}
override const(char)* kind() const
{
return "enum";
}
override Dsymbol search(Loc loc, Identifier ident, int flags = SearchLocalsOnly)
{
//printf("%s.EnumDeclaration::search('%s')\n", toChars(), ident.toChars());
if (_scope)
{
// Try one last time to resolve this enum
semantic(_scope);
}
if (!members || !symtab || _scope)
{
error("is forward referenced when looking for '%s'", ident.toChars());
//*(char*)0=0;
return null;
}
Dsymbol s = ScopeDsymbol.search(loc, ident, flags);
return s;
}
// is Dsymbol deprecated?
override bool isDeprecated()
{
return isdeprecated;
}
override Prot prot()
{
return protection;
}
/******************************
* Get the value of the .max/.min property as an Expression.
* Lazily computes the value and caches it in maxval/minval.
* Reports any errors.
* Params:
* loc = location to use for error messages
* id = Id::max or Id::min
* Returns:
* corresponding value of .max/.min
*/
Expression getMaxMinValue(Loc loc, Identifier id)
{
//printf("EnumDeclaration::getMaxValue()\n");
bool first = true;
Expression* pval = (id == Id.max) ? &maxval : &minval;
Expression errorReturn()
{
*pval = new ErrorExp();
return *pval;
}
if (inuse)
{
error(loc, "recursive definition of .%s property", id.toChars());
return errorReturn();
}
if (*pval)
goto Ldone;
if (_scope)
semantic(_scope);
if (errors)
return errorReturn();
if (semanticRun == PASSinit || !members)
{
error("is forward referenced looking for .%s", id.toChars());
return errorReturn();
}
if (!(memtype && memtype.isintegral()))
{
error(loc, "has no .%s property because base type %s is not an integral type", id.toChars(), memtype ? memtype.toChars() : "");
return errorReturn();
}
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
if (!em)
continue;
if (em.errors)
return errorReturn();
Expression e = em.value;
if (first)
{
*pval = e;
first = false;
}
else
{
/* In order to work successfully with UDTs,
* build expressions to do the comparisons,
* and let the semantic analyzer and constant
* folder give us the result.
*/
/* Compute:
* if (e > maxval)
* maxval = e;
*/
Expression ec = new CmpExp(id == Id.max ? TOKgt : TOKlt, em.loc, e, *pval);
inuse++;
ec = ec.semantic(em._scope);
inuse--;
ec = ec.ctfeInterpret();
if (ec.toInteger())
*pval = e;
}
}
Ldone:
Expression e = *pval;
if (e.op != TOKerror)
{
e = e.copy();
e.loc = loc;
}
return e;
}
Expression getDefaultValue(Loc loc)
{
//printf("EnumDeclaration::getDefaultValue() %p %s\n", this, toChars());
if (defaultval)
return defaultval;
if (_scope)
semantic(_scope);
if (errors)
goto Lerrors;
if (semanticRun == PASSinit || !members)
{
error(loc, "forward reference of %s.init", toChars());
goto Lerrors;
}
for (size_t i = 0; i < members.dim; i++)
{
EnumMember em = (*members)[i].isEnumMember();
if (!em)
continue;
defaultval = em.value;
return defaultval;
}
Lerrors:
defaultval = new ErrorExp();
return defaultval;
}
Type getMemtype(Loc loc)
{
if (loc.linnum == 0)
loc = this.loc;
if (_scope)
{
/* Enum is forward referenced. We don't need to resolve the whole thing,
* just the base type
*/
if (memtype)
memtype = memtype.semantic(loc, _scope);
else
{
if (!isAnonymous() && members)
memtype = Type.tint32;
}
}
if (!memtype)
{
if (!isAnonymous() && members)
memtype = Type.tint32;
else
{
error(loc, "is forward referenced looking for base type");
return Type.terror;
}
}
return memtype;
}
override inout(EnumDeclaration) isEnumDeclaration() inout
{
return this;
}
Symbol* sinit;
override void accept(Visitor v)
{
v.visit(this);
}
}
/***********************************************************
*/
extern (C++) final class EnumMember : VarDeclaration
{
/* Can take the following forms:
* 1. id
* 2. id = value
* 3. type id = value
*/
@property ref value() { return (cast(ExpInitializer)_init).exp; }
// A cast() is injected to 'value' after semantic(),
// but 'origValue' will preserve the original value,
// or previous value + 1 if none was specified.
Expression origValue;
Type origType;
EnumDeclaration ed;
extern (D) this(Loc loc, Identifier id, Expression value, Type origType)
{
super(loc, null, id ? id : Id.empty, new ExpInitializer(loc, value));
this.origValue = value;
this.origType = origType;
}
override Dsymbol syntaxCopy(Dsymbol s)
{
assert(!s);
return new EnumMember(loc, ident, value ? value.syntaxCopy() : null, origType ? origType.syntaxCopy() : null);
}
override const(char)* kind() const
{
return "enum member";
}
override void semantic(Scope* sc)
{
//printf("EnumMember::semantic() %s\n", toChars());
void errorReturn()
{
errors = true;
semanticRun = PASSsemanticdone;
}
if (errors || semanticRun >= PASSsemanticdone)
return;
if (semanticRun == PASSsemantic)
{
error("circular reference to enum member");
return errorReturn();
}
assert(ed);
ed.semantic(sc);
if (ed.errors)
return errorReturn();
if (errors || semanticRun >= PASSsemanticdone)
return;
if (_scope)
sc = _scope;
protection = ed.isAnonymous() ? ed.protection : Prot(PROTpublic);
linkage = LINKd;
storage_class = STCmanifest;
userAttribDecl = ed.isAnonymous() ? ed.userAttribDecl : null;
semanticRun = PASSsemantic;
// The first enum member is special
bool first = (this == (*ed.members)[0]);
if (origType)
{
origType = origType.semantic(loc, sc);
type = origType;
assert(value); // "type id;" is not a valid enum member declaration
}
if (value)
{
Expression e = value;
assert(e.dyncast() == DYNCAST_EXPRESSION);
e = e.semantic(sc);
e = resolveProperties(sc, e);
e = e.ctfeInterpret();
if (e.op == TOKerror)
return errorReturn();
if (first && !ed.memtype && !ed.isAnonymous())
{
ed.memtype = e.type;
if (ed.memtype.ty == Terror)
{
ed.errors = true;
return errorReturn();
}
if (ed.memtype.ty != Terror)
{
/* Bugzilla 11746: All of named enum members should have same type
* with the first member. If the following members were referenced
* during the first member semantic, their types should be unified.
*/
for (size_t i = 0; i < ed.members.dim; i++)
{
EnumMember em = (*ed.members)[i].isEnumMember();
if (!em || em == this || em.semanticRun < PASSsemanticdone || em.origType)
continue;
//printf("[%d] em = %s, em.semanticRun = %d\n", i, toChars(), em.semanticRun);
Expression ev = em.value;
ev = ev.implicitCastTo(sc, ed.memtype);
ev = ev.ctfeInterpret();
ev = ev.castTo(sc, ed.type);
if (ev.op == TOKerror)
ed.errors = true;
em.value = ev;
}
if (ed.errors)
{
ed.memtype = Type.terror;
return errorReturn();
}
}
}
if (ed.memtype && !origType)
{
e = e.implicitCastTo(sc, ed.memtype);
e = e.ctfeInterpret();
// save origValue for better json output
origValue = e;
if (!ed.isAnonymous())
{
e = e.castTo(sc, ed.type);
e = e.ctfeInterpret();
}
}
else if (origType)
{
e = e.implicitCastTo(sc, origType);
e = e.ctfeInterpret();
assert(ed.isAnonymous());
// save origValue for better json output
origValue = e;
}
value = e;
}
else if (first)
{
Type t;
if (ed.memtype)
t = ed.memtype;
else
{
t = Type.tint32;
if (!ed.isAnonymous())
ed.memtype = t;
}
Expression e = new IntegerExp(loc, 0, Type.tint32);
e = e.implicitCastTo(sc, t);
e = e.ctfeInterpret();
// save origValue for better json output
origValue = e;
if (!ed.isAnonymous())
{
e = e.castTo(sc, ed.type);
e = e.ctfeInterpret();
}
value = e;
}
else
{
/* Find the previous enum member,
* and set this to be the previous value + 1
*/
EnumMember emprev = null;
for (size_t i = 0; i < ed.members.dim; i++)
{
EnumMember em = (*ed.members)[i].isEnumMember();
if (em)
{
if (em == this)
break;
emprev = em;
}
}
assert(emprev);
if (emprev.semanticRun < PASSsemanticdone) // if forward reference
emprev.semantic(emprev._scope); // resolve it
if (emprev.errors)
return errorReturn();
Expression eprev = emprev.value;
Type tprev = eprev.type.equals(ed.type) ? ed.memtype : eprev.type;
Expression emax = tprev.getProperty(ed.loc, Id.max, 0);
emax = emax.semantic(sc);
emax = emax.ctfeInterpret();
// Set value to (eprev + 1).
// But first check that (eprev != emax)
assert(eprev);
Expression e = new EqualExp(TOKequal, loc, eprev, emax);
e = e.semantic(sc);
e = e.ctfeInterpret();
if (e.toInteger())
{
error("initialization with (%s.%s + 1) causes overflow for type '%s'",
emprev.ed.toChars(), emprev.toChars(), ed.memtype.toChars());
return errorReturn();
}
// Now set e to (eprev + 1)
e = new AddExp(loc, eprev, new IntegerExp(loc, 1, Type.tint32));
e = e.semantic(sc);
e = e.castTo(sc, eprev.type);
e = e.ctfeInterpret();
// save origValue (without cast) for better json output
if (e.op != TOKerror) // avoid duplicate diagnostics
{
assert(emprev.origValue);
origValue = new AddExp(loc, emprev.origValue, new IntegerExp(loc, 1, Type.tint32));
origValue = origValue.semantic(sc);
origValue = origValue.ctfeInterpret();
}
if (e.op == TOKerror)
return errorReturn();
if (e.type.isfloating())
{
// Check that e != eprev (not always true for floats)
Expression etest = new EqualExp(TOKequal, loc, e, eprev);
etest = etest.semantic(sc);
etest = etest.ctfeInterpret();
if (etest.toInteger())
{
error("has inexact value, due to loss of precision");
return errorReturn();
}
}
value = e;
}
if (!origType)
type = value.type;
assert(origValue);
semanticRun = PASSsemanticdone;
}
Expression getVarExp(Loc loc, Scope* sc)
{
semantic(sc);
if (errors)
return new ErrorExp();
Expression e = new VarExp(loc, this);
return e.semantic(sc);
}
override inout(EnumMember) isEnumMember() inout
{
return this;
}
override void accept(Visitor v)
{
v.visit(this);
}
}
|
D
|
program gege;
const
SIZE = 10;
var
a : array[SIZE] of integer;
{ i : integer;
x : real; }
begin
a[1] := 2;
a[a[1]-1] := a[1];
{ x := 3;
i := trunc(x);
x := 4 + 4/2; }
end.
|
D
|
/Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/Objects-normal/x86_64/HeaderFooterView.o : /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleURL.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRequired.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRange.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/CellType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowControllerType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/InlineRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/PresenterRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Core.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleClosure.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleLength.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEmail.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Cell.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Form.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Validation.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Section.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableSection.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRegExp.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorAlertController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/MultipleSelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DecimalFormatter.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/Protocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowProtocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SwipeActions.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Helpers.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Operators.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRowWithPresent.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/HeaderFooterView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/NavigationAccessoryView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Row.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/TextAreaRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SegmentedRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/FieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateInlineFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/BaseRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SwitchRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PushRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/CheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SelectableRows/ListCheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/LabelRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEqualsToRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SliderRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DatePickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/StepperRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/SelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/MultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/GenericMultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PopoverSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/FieldsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/OptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/AlertOptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ActionSheetRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/AlertRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInputRow.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Target\ Support\ Files/Eureka/Eureka-umbrella.h /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/unextended-module.modulemap
/Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/Objects-normal/x86_64/HeaderFooterView~partial.swiftmodule : /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleURL.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRequired.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRange.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/CellType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowControllerType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/InlineRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/PresenterRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Core.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleClosure.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleLength.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEmail.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Cell.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Form.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Validation.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Section.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableSection.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRegExp.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorAlertController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/MultipleSelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DecimalFormatter.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/Protocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowProtocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SwipeActions.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Helpers.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Operators.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRowWithPresent.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/HeaderFooterView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/NavigationAccessoryView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Row.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/TextAreaRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SegmentedRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/FieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateInlineFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/BaseRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SwitchRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PushRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/CheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SelectableRows/ListCheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/LabelRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEqualsToRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SliderRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DatePickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/StepperRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/SelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/MultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/GenericMultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PopoverSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/FieldsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/OptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/AlertOptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ActionSheetRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/AlertRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInputRow.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Target\ Support\ Files/Eureka/Eureka-umbrella.h /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/unextended-module.modulemap
/Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/Objects-normal/x86_64/HeaderFooterView~partial.swiftdoc : /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleURL.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRequired.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRange.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/CellType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowControllerType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/InlineRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/PresenterRowType.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Core.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleClosure.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleLength.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEmail.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Cell.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Form.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Validation.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Section.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SelectableSection.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleRegExp.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorAlertController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/SelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Controllers/MultipleSelectorViewController.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DecimalFormatter.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/Protocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/RowProtocols.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/SwipeActions.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Helpers.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Operators.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRowWithPresent.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/HeaderFooterView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/NavigationAccessoryView.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/Row.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/TextAreaRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SegmentedRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/FieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateInlineFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/DateFieldRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInlineRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Core/BaseRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DateRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SwitchRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PushRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/CheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SelectableRows/ListCheckRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/LabelRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ButtonRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Validations/RuleEqualsToRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/SliderRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/DatePickerRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/StepperRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/SelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/MultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/GenericMultipleSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PopoverSelectorRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/FieldsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/OptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/Common/AlertOptionsRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/ActionSheetRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/AlertRow.swift /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Eureka/Source/Rows/PickerInputRow.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/Pods/Target\ Support\ Files/Eureka/Eureka-umbrella.h /Users/susana/Documents/Git/TrackerGPS/TrackerGPS/build/Pods.build/Debug-iphonesimulator/Eureka.build/unextended-module.modulemap
|
D
|
module orderedmap;
import std.algorithm;
import std.array;
import std.container;
import std.range;
public class OrderedMap(T)
{
private DList!string _orderedKeys;
private T[string] _hash;
public int opApply(int delegate(ref T) dg)
{
int result = 0;
foreach (key; _orderedKeys)
{
result = dg(_hash[key]);
if (result)
break;
}
return result;
}
public int opApply(int delegate(ref string, ref T) dg)
{
int result = 0;
foreach (key; _orderedKeys)
{
result = dg(key, _hash[key]);
if (result)
break;
}
return result;
}
public T opIndex(string key)
{
return _hash[key];
}
public int opIndexAssign(T val, string key)
{
if (key in _hash)
{
_orderedKeys.linearRemove(find(_orderedKeys[], key).take(1));
}
_hash[key] = val;
_orderedKeys.stableInsertBack(key);
return 0;
}
public bool remove(string key)
{
auto result = false;
result = _hash.remove(key);
_orderedKeys.linearRemove(find(_orderedKeys[], key).take(1));
return result;
}
public T* opBinaryRight(string op:"in")(string rhs)
{
return rhs in _hash;
}
public ulong length()
{
return _hash.length;
}
}
unittest
{
auto map = new OrderedMap!int();
map["foo"] = 1;
map["bar"] = 2;
map["bar"] = 3;
assert(map.length == 2);
assert(map["bar"] == 3);
assert("foo" in map);
map.remove("foo");
assert("foo" !in map);
assert(map.length == 1);
// Test that it actually preserves the insert order
map["zyx"] = 99;
map["abc"] = 1;
map["bar"] = 4; // Should move the existing key to the end
auto testKeys = ["zyx", "abc", "bar"];
auto testVals = [99, 1, 4];
foreach (key, val; map)
{
assert(key == testKeys[0]);
assert(val == testVals[0]);
testKeys.popFront();
testVals.popFront();
}
}
|
D
|
beating with a whip or strap or rope as a form of punishment
rope that is used for fastening something to something else
beat severely with a whip or rod
lash or flick about sharply
strike as if by whipping
bind with a rope, chain, or cord
violently urging on by whipping or flogging
|
D
|
have an ambitious plan or a lofty goal
|
D
|
module deimos.cef3.internal.types_linux;
// Copyright (c) 2010 Marshall A. Greenblatt. 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 Google Inc. nor the name Chromium Embedded
// Framework 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
// 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.
import deimos.cfe3.internal.build;
version(Linux) {
//#include <gtk/gtk.h>
import deimos.cfe3.internal.string;
extern(C) {
// Handle types.
//#define cef_cursor_handle_t GtkCursor*
//#define cef_event_handle_t GdkEvent*
//#define cef_window_handle_t GtkWidget*
alias void* cef_cursor_handle_t;
alias void* cef_event_handle_t;
alias void* cef_window_handle_t;
///
// Structure representing CefExecuteProcess arguments.
///
struct cef_main_args_t {
int argc;
char** argv;
}
///
// Class representing window information.
///
struct cef_window_info_t {
// Pointer for the parent GtkBox widget.
cef_window_handle_t parent_widget;
// Pointer for the new browser widget.
cef_window_handle_t widget;
}
}
}
|
D
|
/home/daniyal/Desktop/Rust/Assignment 2/q9/main/target/debug/deps/main-16a19da218b44e63: src/main.rs
/home/daniyal/Desktop/Rust/Assignment 2/q9/main/target/debug/deps/main-16a19da218b44e63.d: src/main.rs
src/main.rs:
|
D
|
// PERMUTE_ARGS: -O -release -g
import std.file, std.stdio;
int main()
{
auto size = thisExePath.getSize();
writeln(size);
version (D_LP64)
enum limit = 1195096;
else
enum limit = 1042973;
return size > limit * 11 / 10;
}
|
D
|
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/wbuild-runner/node-template-runtime9626994530545983703/target/x86_64-apple-darwin/release/deps/itoa-2c8a6280f68cab55.rmeta: /Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.5/src/lib.rs
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/wbuild-runner/node-template-runtime9626994530545983703/target/x86_64-apple-darwin/release/deps/libitoa-2c8a6280f68cab55.rlib: /Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.5/src/lib.rs
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/wbuild-runner/node-template-runtime9626994530545983703/target/x86_64-apple-darwin/release/deps/itoa-2c8a6280f68cab55.d: /Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.5/src/lib.rs
/Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.5/src/lib.rs:
|
D
|
/*
* Copyright (c) 2017-2019 sel-project
*
* 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.
*
*/
/**
* Copyright: Copyright (c) 2017-2019 sel-project
* License: MIT
* Authors: Kripth
* Source: $(HTTP github.com/sel-project/selery/source/selery/block/blocks.d, selery/block/blocks.d)
*/
module selery.block.blocks;
import selery.about : block_t, item_t;
import selery.block.block : Block;
import selery.block.farming;
import selery.block.fluid;
import selery.block.miscellaneous;
import selery.block.redstone;
import selery.block.solid;
import selery.block.tile;
import selery.item.items : Items;
import selery.item.tool : Tools;
import sul.blocks : _ = Blocks;
/**
* Storage for a world's blocks.
*/
public class BlockStorage {
private static BlockStorage instance;
private Block[] sel;
private Block*[][256] java, bedrock;
public this() {
if(instance is null) {
this.instantiateDefaultBlocks();
foreach(immutable member ; __traits(allMembers, Tiles)) {
mixin("alias T = Tiles." ~ member ~ ";");
this.registerTile!T(new T());
}
instance = this;
} else {
this.sel = instance.sel.dup;
this.java = instance.java.dup;
this.bedrock = instance.bedrock.dup;
}
}
public void register(Block block) {
if(block !is null) {
if(this.sel.length <= block.id) this.sel.length = block.id + 1;
this.sel[block.id] = block;
auto pointer = &this.sel[block.id];
if(block.java) {
if(this.java[block.javaId].length <= block.javaMeta) this.java[block.javaId].length = block.javaMeta + 1;
this.java[block.javaId][block.javaMeta] = pointer;
}
if(block.bedrock) {
if(this.bedrock[block.bedrockId].length <= block.bedrockMeta) this.bedrock[block.bedrockId].length = block.bedrockMeta + 1;
this.bedrock[block.bedrockId][block.bedrockMeta] = pointer;
}
}
}
public void registerTile(T:Tile)(T tile) {
this.register(tile);
//TODO register tile data
}
/**
* Gets a block using its sel-id.
* This method only takes an argument as SEL blocks
* are identified by a single number instead of an id and
* optional metadata as in Minecraft and Minecraft: Pocket Edition.
* Example:
* ---
* auto block = 1 in blocks;
* assert(block.name == "stone");
* assert(blocks[Blocks.grass].name == "grass");
* ---
*/
public @safe Block* opBinaryRight(string op : "in")(block_t id) {
if(id < this.sel.length) {
auto ret = &this.sel[id];
if(*ret !is null) return ret;
}
return null;
}
/// ditto
public @safe Block* opIndex(block_t id) {
return id in this;
}
/**
* Gets a block with the id used in Minecraft.
* Example:
* ---
* auto block = blocks.fromMinecraft(217);
* assert(block.name == "structure void");
* assert(blocks.fromMinecraft(248) is null);
* ---
*/
public @safe Block* fromJava(ubyte id, ubyte meta=0) {
auto data = this.java[id];
if(data.length > meta) return data[meta];
else return null;
}
/**
* Gets a block with the id used in Minecraft.
* Example:
* ---
* auto block = blocks.fromBedrock(33, 2);
* assert(block && block.name == "piston facing north");
* assert(blocks.fromBedrock(255) is null); // structure block
* ---
*/
public @safe Block* fromBedrock(ubyte id, ubyte meta=0) {
auto data = this.bedrock[id];
if(data.length > meta) return data[meta];
else return null;
}
public pure nothrow @property @safe @nogc size_t length() {
return this.sel.length;
}
version(NoBlocks) {
private void instantiateDefaultBlocks() {}
} else {
private void instantiateDefaultBlocks() {
const woodPickaxe = MiningTool(true, Tools.pickaxe, Tools.wood);
const stonePickaxe = MiningTool(true, Tools.pickaxe, Tools.stone);
const ironPickaxe = MiningTool(true, Tools.pickaxe, Tools.iron);
const diamondPickaxe = MiningTool(true, Tools.pickaxe, Tools.diamond);
const woodAxe = MiningTool(false, Tools.axe, Tools.wood);
this.register(new Block(_.air));
this.register(new StoneBlock(_.stone, Items.cobblestone, Items.stone));
this.register(new StoneBlock(_.granite, Items.granite));
this.register(new StoneBlock(_.polishedGranite, Items.polishedGranite));
this.register(new StoneBlock(_.diorite, Items.diorite));
this.register(new StoneBlock(_.polishedDiorite, Items.polishedDiorite));
this.register(new StoneBlock(_.andesite, Items.andesite));
this.register(new StoneBlock(_.polishedAndesite, Items.polishedAndesite));
this.register(new StoneBlock(_.stoneBricks, Items.stoneBricks));
this.register(new StoneBlock(_.mossyStoneBricks, Items.mossyStoneBricks));
this.register(new StoneBlock(_.crackedStoneBricks, Items.crackedStoneBricks));
this.register(new StoneBlock(_.chiseledStoneBricks, Items.chiseledStoneBricks));
this.register(new StoneBlock(_.cobblestone, Items.cobblestone));
this.register(new StoneBlock(_.mossStone, Items.mossStone));
this.register(new StoneBlock(_.cobblestoneWall, Items.cobblestoneWall));
this.register(new StoneBlock(_.mossyCobblestoneWall, Items.mossyCobblestoneWall));
this.register(new StoneBlock(_.bricks, Items.bricks));
this.register(new MineableBlock(_.coalOre, woodPickaxe, Drop(Items.coal, 1, 1, Items.coalOre, &Drop.plusOne), Experience(0, 2)));
this.register(new MineableBlock(_.ironOre, stonePickaxe, Drop(Items.ironOre, 1)));
this.register(new MineableBlock(_.goldOre, ironPickaxe, Drop(Items.goldOre, 1)));
this.register(new MineableBlock(_.diamondOre, ironPickaxe, Drop(Items.diamond, 1, 1, Items.diamondOre))); //TODO +1 with fortune
this.register(new MineableBlock(_.emeraldOre, ironPickaxe, Drop(Items.emerald, 1, 1, Items.emeraldOre))); //TODO +1 with fortune
this.register(new MineableBlock(_.lapisLazuliOre, stonePickaxe, Drop(Items.lapisLazuli, 4, 8, Items.lapisLazuliOre), Experience(2, 5))); //TODO fortune
this.register(new RedstoneOreBlock!false(_.redstoneOre, Blocks.litRedstoneOre));
this.register(new RedstoneOreBlock!true(_.litRedstoneOre, Blocks.redstoneOre));
this.register(new MineableBlock(_.netherQuartzOre, woodPickaxe, Drop(Items.netherQuartz, 2, 5, Items.netherQuartzOre), Experience(2, 5, 1))); //TODO fortune
this.register(new MineableBlock(_.coalBlock, woodPickaxe, Drop(Items.coalBlock, 1)));
this.register(new MineableBlock(_.ironBlock, stonePickaxe, Drop(Items.ironBlock, 1)));
this.register(new MineableBlock(_.goldBlock, ironPickaxe, Drop(Items.goldBlock, 1)));
this.register(new MineableBlock(_.diamondBlock, ironPickaxe, Drop(Items.diamondBlock, 1)));
this.register(new MineableBlock(_.emeraldBlock, ironPickaxe, Drop(Items.emeraldBlock, 1)));
this.register(new MineableBlock(_.redstoneBlock, woodPickaxe, Drop(Items.redstoneBlock, 1)));
this.register(new MineableBlock(_.lapisLazuliOre, stonePickaxe, Drop(Items.lapisLazuliBlock, 1)));
this.register(new MineableBlock(_.netherReactorCore, woodPickaxe, [Drop(Items.diamond, 3), Drop(Items.ironIngot, 6)]));
this.register(new MineableBlock(_.activeNetherReactorCore, woodPickaxe, [Drop(Items.diamond, 3), Drop(Items.ironIngot, 6)]));
this.register(new MineableBlock(_.usedNetherReactorCore, woodPickaxe, [Drop(Items.diamond, 3), Drop(Items.ironIngot, 6)]));
this.register(new SuffocatingSpreadingBlock(_.grass, MiningTool(false, Tools.shovel, Tools.wood), [Drop(Items.dirt, 1, 1, Items.grass)], [Blocks.dirt], 1, 1, 2, 2, Blocks.dirt));
this.register(new MineableBlock(_.dirt, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.dirt, 1)));
this.register(new MineableBlock(_.coarseDirt, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.dirt, 1)));
this.register(new MineableBlock(_.podzol, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.dirt, 1, 1, Items.podzol)));
this.register(new SpreadingBlock(_.mycelium, MiningTool(false, Tools.shovel, Tools.wood), [Drop(Items.dirt, 1, 1, Items.mycelium)], [Blocks.dirt, Blocks.grass, Blocks.podzol], 1, 1, 3, 1));
this.register(new MineableBlock(_.grassPath, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.grassPath, 1)));
this.register(new FertileTerrainBlock!false(_.farmland0, Blocks.farmland7, Blocks.dirt));
this.register(new FertileTerrainBlock!false(_.farmland1, Blocks.farmland7, Blocks.farmland0));
this.register(new FertileTerrainBlock!false(_.farmland2, Blocks.farmland7, Blocks.farmland1));
this.register(new FertileTerrainBlock!false(_.farmland3, Blocks.farmland7, Blocks.farmland2));
this.register(new FertileTerrainBlock!false(_.farmland4, Blocks.farmland7, Blocks.farmland4));
this.register(new FertileTerrainBlock!false(_.farmland5, Blocks.farmland7, Blocks.farmland4));
this.register(new FertileTerrainBlock!false(_.farmland6, Blocks.farmland7, Blocks.farmland5));
this.register(new FertileTerrainBlock!true(_.farmland7, 0, Blocks.farmland6));
this.register(new MineableBlock(_.oakWoodPlanks, woodAxe, Drop(Items.oakWoodPlanks, 1)));
this.register(new MineableBlock(_.spruceWoodPlanks, woodAxe, Drop(Items.spruceWoodPlanks, 1)));
this.register(new MineableBlock(_.birchWoodPlanks, woodAxe, Drop(Items.birchWoodPlanks, 1)));
this.register(new MineableBlock(_.jungleWoodPlanks, woodAxe, Drop(Items.jungleWoodPlanks, 1)));
this.register(new MineableBlock(_.acaciaWoodPlanks, woodAxe, Drop(Items.acaciaWoodPlanks, 1)));
this.register(new MineableBlock(_.darkOakWoodPlanks, woodAxe, Drop(Items.darkOakWoodPlanks, 1)));
this.register(new SaplingBlock(_.oakSapling, Items.oakSapling, Blocks.oakWood, Blocks.oakLeaves));
this.register(new SaplingBlock(_.spruceSapling, Items.spruceSapling, Blocks.spruceWood, Blocks.spruceLeaves));
this.register(new SaplingBlock(_.birchSapling, Items.birchSapling, Blocks.birchWood, Blocks.birchLeaves));
this.register(new SaplingBlock(_.jungleSapling, Items.jungleSapling, Blocks.jungleWood, Blocks.jungleLeaves));
this.register(new SaplingBlock(_.acaciaSapling, Items.acaciaSapling, Blocks.acaciaWood, Blocks.acaciaLeaves));
this.register(new SaplingBlock(_.darkOakSapling, Items.darkOakSapling, Blocks.darkOakWood, Blocks.darkOakLeaves));
this.register(new Block(_.bedrock));
this.register(new GravityBlock(_.sand, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.sand, 1)));
this.register(new GravityBlock(_.redSand, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.redSand, 1)));
this.register(new GravelBlock(_.gravel));
this.register(new WoodBlock(_.oakWoodUpDown, Items.oakWood));
this.register(new WoodBlock(_.oakWoodEastWest, Items.oakWood));
this.register(new WoodBlock(_.oakWoodNorthSouth, Items.oakWood));
this.register(new WoodBlock(_.oakWoodBark, Items.oakWood));
this.register(new WoodBlock(_.spruceWoodUpDown, Items.spruceWood));
this.register(new WoodBlock(_.spruceWoodEastWest, Items.spruceWood));
this.register(new WoodBlock(_.spruceWoodNorthSouth, Items.spruceWood));
this.register(new WoodBlock(_.spruceWoodBark, Items.spruceWood));
this.register(new WoodBlock(_.birchWoodUpDown, Items.birchWood));
this.register(new WoodBlock(_.birchWoodEastWest, Items.birchWood));
this.register(new WoodBlock(_.birchWoodNorthSouth, Items.birchWood));
this.register(new WoodBlock(_.birchWoodBark, Items.birchWood));
this.register(new WoodBlock(_.jungleWoodUpDown, Items.jungleWood));
this.register(new WoodBlock(_.jungleWoodEastWest, Items.jungleWood));
this.register(new WoodBlock(_.jungleWoodNorthSouth, Items.jungleWood));
this.register(new WoodBlock(_.jungleWoodBark, Items.jungleWood));
this.register(new WoodBlock(_.acaciaWoodUpDown, Items.acaciaWood));
this.register(new WoodBlock(_.acaciaWoodEastWest, Items.acaciaWood));
this.register(new WoodBlock(_.acaciaWoodNorthSouth, Items.acaciaWood));
this.register(new WoodBlock(_.acaciaWoodBark, Items.acaciaWood));
this.register(new WoodBlock(_.darkOakWoodUpDown, Items.darkOakWood));
this.register(new WoodBlock(_.darkOakWoodEastWest, Items.darkOakWood));
this.register(new WoodBlock(_.darkOakWoodNorthSouth, Items.darkOakWood));
this.register(new WoodBlock(_.darkOakWoodBark, Items.darkOakWood));
this.register(new LeavesBlock!(true, true)(_.oakLeavesDecay, Items.oakLeaves, Items.oakSapling, false));
this.register(new LeavesBlock!(false, true)(_.oakLeavesNoDecay, Items.oakLeaves, Items.oakSapling, false));
this.register(new LeavesBlock!(true, true)(_.oakLeavesCheckDecay, Items.oakLeaves, Items.oakSapling, false));
this.register(new LeavesBlock!(false, true)(_.oakLeavesNoDecayCheckDecay, Items.oakLeaves, Items.oakSapling, false));
this.register(new LeavesBlock!(true, false)(_.spruceLeavesDecay, Items.spruceLeaves, Items.spruceSapling, false));
this.register(new LeavesBlock!(false, false)(_.spruceLeavesNoDecay, Items.spruceLeaves, Items.spruceSapling, false));
this.register(new LeavesBlock!(true, false)(_.spruceLeavesCheckDecay, Items.spruceLeaves, Items.spruceSapling, false));
this.register(new LeavesBlock!(true, false)(_.spruceLeavesNoDecayCheckDecay, Items.spruceLeaves, Items.spruceSapling, false));
this.register(new LeavesBlock!(true, false)(_.birchLeavesDecay, Items.birchLeaves, Items.birchSapling, false));
this.register(new LeavesBlock!(false, false)(_.birchLeavesNoDecay, Items.birchLeaves, Items.birchSapling, false));
this.register(new LeavesBlock!(true, false)(_.birchLeavesCheckDecay, Items.birchLeaves, Items.birchSapling, false));
this.register(new LeavesBlock!(false, false)(_.birchLeavesNoDecayCheckDecay, Items.birchLeaves, Items.birchSapling, false));
this.register(new LeavesBlock!(true, false)(_.jungleLeavesDecay, Items.jungleLeaves, Items.jungleSapling, true));
this.register(new LeavesBlock!(false, false)(_.jungleLeavesNoDecay, Items.jungleLeaves, Items.jungleSapling, true));
this.register(new LeavesBlock!(true, false)(_.jungleLeavesCheckDecay, Items.jungleLeaves, Items.jungleSapling, true));
this.register(new LeavesBlock!(false, true)(_.jungleLeavesNoDecayCheckDecay, Items.jungleLeaves, Items.jungleSapling, true));
this.register(new LeavesBlock!(true, false)(_.acaciaLeavesDecay, Items.acaciaLeaves, Items.acaciaSapling, false));
this.register(new LeavesBlock!(false, false)(_.acaciaLeavesNoDecay, Items.acaciaLeaves, Items.acaciaSapling, false));
this.register(new LeavesBlock!(true, false)(_.acaciaLeavesCheckDecay, Items.acaciaLeaves, Items.acaciaSapling, false));
this.register(new LeavesBlock!(false, false)(_.acaciaLeavesNoDecayCheckDecay, Items.acaciaLeaves, Items.acaciaSapling, false));
this.register(new LeavesBlock!(true, true)(_.darkOakLeavesDecay, Items.darkOakLeaves, Items.darkOakSapling, false));
this.register(new LeavesBlock!(false, true)(_.darkOakLeavesNoDecay, Items.darkOakLeaves, Items.darkOakSapling, false));
this.register(new LeavesBlock!(true, true)(_.darkOakLeavesCheckDecay, Items.darkOakLeaves, Items.darkOakSapling, false));
this.register(new LeavesBlock!(false, true)(_.darkOakLeavesNoDecayCheckDecay, Items.darkOakLeaves, Items.darkOakSapling, false));
this.register(new AbsorbingBlock(_.sponge, Items.sponge, Blocks.wetSponge, Blocks.water, 7, 65));
this.register(new MineableBlock(_.wetSponge, MiningTool.init, Drop(Items.wetSponge, 1)));
this.register(new MineableBlock(_.glass, MiningTool.init, Drop(0, 0, 0, Items.glass)));
this.register(new MineableBlock(_.whiteStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.whiteStainedGlass)));
this.register(new MineableBlock(_.orangeStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.orangeStainedGlass)));
this.register(new MineableBlock(_.magentaStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.magentaStainedGlass)));
this.register(new MineableBlock(_.lightBlueStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.lightBlueStainedGlass)));
this.register(new MineableBlock(_.yellowStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.yellowStainedGlass)));
this.register(new MineableBlock(_.limeStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.limeStainedGlass)));
this.register(new MineableBlock(_.pinkStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.pinkStainedGlass)));
this.register(new MineableBlock(_.grayStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.grayStainedGlass)));
this.register(new MineableBlock(_.lightGrayStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.lightGrayStainedGlass)));
this.register(new MineableBlock(_.cyanStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.cyanStainedGlass)));
this.register(new MineableBlock(_.purpleStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.purpleStainedGlass)));
this.register(new MineableBlock(_.blueStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.blueStainedGlass)));
this.register(new MineableBlock(_.brownStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.brownStainedGlass)));
this.register(new MineableBlock(_.greenStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.greenStainedGlass)));
this.register(new MineableBlock(_.redStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.redStainedGlass)));
this.register(new MineableBlock(_.blackStainedGlass, MiningTool.init, Drop(0, 0, 0, Items.blackStainedGlass)));
this.register(new MineableBlock(_.glassPane, MiningTool.init, Drop(0, 0, 0, Items.glassPane)));
this.register(new MineableBlock(_.whiteStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.whiteStainedGlassPane)));
this.register(new MineableBlock(_.orangeStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.orangeStainedGlassPane)));
this.register(new MineableBlock(_.magentaStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.magentaStainedGlassPane)));
this.register(new MineableBlock(_.lightBlueStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.lightBlueStainedGlassPane)));
this.register(new MineableBlock(_.yellowStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.yellowStainedGlassPane)));
this.register(new MineableBlock(_.limeStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.limeStainedGlassPane)));
this.register(new MineableBlock(_.pinkStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.pinkStainedGlassPane)));
this.register(new MineableBlock(_.grayStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.grayStainedGlassPane)));
this.register(new MineableBlock(_.lightGrayStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.lightGrayStainedGlassPane)));
this.register(new MineableBlock(_.cyanStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.cyanStainedGlassPane)));
this.register(new MineableBlock(_.purpleStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.purpleStainedGlassPane)));
this.register(new MineableBlock(_.blueStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.blueStainedGlassPane)));
this.register(new MineableBlock(_.brownStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.brownStainedGlassPane)));
this.register(new MineableBlock(_.greenStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.greenStainedGlassPane)));
this.register(new MineableBlock(_.redStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.redStainedGlassPane)));
this.register(new MineableBlock(_.blackStainedGlassPane, MiningTool.init, Drop(0, 0, 0, Items.blackStainedGlassPane)));
this.register(new MineableBlock(_.sandstone, woodPickaxe, Drop(Items.sandstone, 1)));
this.register(new MineableBlock(_.chiseledSandstone, woodPickaxe, Drop(Items.chiseledSandstone, 1)));
this.register(new MineableBlock(_.smoothSandstone, woodPickaxe, Drop(Items.smoothSandstone, 1)));
this.register(new MineableBlock(_.redSandstone, woodPickaxe, Drop(Items.redSandstone, 1)));
this.register(new MineableBlock(_.chiseledRedSandstone, woodPickaxe, Drop(Items.chiseledRedSandstone, 1)));
this.register(new MineableBlock(_.smoothRedSandstone, woodPickaxe, Drop(Items.smoothRedSandstone, 1)));
this.register(new MineableBlock(_.whiteWool, MiningTool(false, Tools.shears), Drop(Items.whiteWool, 1)));
this.register(new MineableBlock(_.orangeWool, MiningTool(false, Tools.shears), Drop(Items.orangeWool, 1)));
this.register(new MineableBlock(_.magentaWool, MiningTool(false, Tools.shears), Drop(Items.magentaWool, 1)));
this.register(new MineableBlock(_.lightBlueWool, MiningTool(false, Tools.shears), Drop(Items.lightBlueWool, 1)));
this.register(new MineableBlock(_.yellowWool, MiningTool(false, Tools.shears), Drop(Items.yellowWool, 1)));
this.register(new MineableBlock(_.limeWool, MiningTool(false, Tools.shears), Drop(Items.limeWool, 1)));
this.register(new MineableBlock(_.pinkWool, MiningTool(false, Tools.shears), Drop(Items.pinkWool, 1)));
this.register(new MineableBlock(_.grayWool, MiningTool(false, Tools.shears), Drop(Items.grayWool, 1)));
this.register(new MineableBlock(_.lightGrayWool, MiningTool(false, Tools.shears), Drop(Items.lightGrayWool, 1)));
this.register(new MineableBlock(_.cyanWool, MiningTool(false, Tools.shears), Drop(Items.cyanWool, 1)));
this.register(new MineableBlock(_.purpleWool, MiningTool(false, Tools.shears), Drop(Items.purpleWool, 1)));
this.register(new MineableBlock(_.blueWool, MiningTool(false, Tools.shears), Drop(Items.blueWool, 1)));
this.register(new MineableBlock(_.brownWool, MiningTool(false, Tools.shears), Drop(Items.brownWool, 1)));
this.register(new MineableBlock(_.greenWool, MiningTool(false, Tools.shears), Drop(Items.greenWool, 1)));
this.register(new MineableBlock(_.redWool, MiningTool(false, Tools.shears), Drop(Items.redWool, 1)));
this.register(new MineableBlock(_.blackWool, MiningTool(false, Tools.shears), Drop(Items.blackWool, 1)));
this.register(new MineableBlock(_.whiteCarpet, MiningTool.init, Drop(Items.whiteCarpet, 1)));
this.register(new MineableBlock(_.orangeCarpet, MiningTool.init, Drop(Items.orangeCarpet, 1)));
this.register(new MineableBlock(_.magentaCarpet, MiningTool.init, Drop(Items.magentaCarpet, 1)));
this.register(new MineableBlock(_.lightBlueCarpet, MiningTool.init, Drop(Items.lightBlueCarpet, 1)));
this.register(new MineableBlock(_.yellowCarpet, MiningTool.init, Drop(Items.yellowCarpet, 1)));
this.register(new MineableBlock(_.limeCarpet, MiningTool.init, Drop(Items.limeCarpet, 1)));
this.register(new MineableBlock(_.pinkCarpet, MiningTool.init, Drop(Items.pinkCarpet, 1)));
this.register(new MineableBlock(_.grayCarpet, MiningTool.init, Drop(Items.grayCarpet, 1)));
this.register(new MineableBlock(_.lightGrayCarpet, MiningTool.init, Drop(Items.lightGrayCarpet, 1)));
this.register(new MineableBlock(_.cyanCarpet, MiningTool.init, Drop(Items.cyanCarpet, 1)));
this.register(new MineableBlock(_.purpleCarpet, MiningTool.init, Drop(Items.purpleCarpet, 1)));
this.register(new MineableBlock(_.blueCarpet, MiningTool.init, Drop(Items.blueCarpet, 1)));
this.register(new MineableBlock(_.brownCarpet, MiningTool.init, Drop(Items.brownCarpet, 1)));
this.register(new MineableBlock(_.greenCarpet, MiningTool.init, Drop(Items.greenCarpet, 1)));
this.register(new MineableBlock(_.redCarpet, MiningTool.init, Drop(Items.redCarpet, 1)));
this.register(new MineableBlock(_.blackCarpet, MiningTool.init, Drop(Items.blackCarpet, 1)));
this.register(new FlowerBlock(_.dandelion, Items.dandelion));
this.register(new FlowerBlock(_.poppy, Items.poppy));
this.register(new FlowerBlock(_.blueOrchid, Items.blueOrchid));
this.register(new FlowerBlock(_.allium, Items.allium));
this.register(new FlowerBlock(_.azureBluet, Items.azureBluet));
this.register(new FlowerBlock(_.redTulip, Items.redTulip));
this.register(new FlowerBlock(_.orangeTulip, Items.orangeTulip));
this.register(new FlowerBlock(_.whiteTulip, Items.whiteTulip));
this.register(new FlowerBlock(_.pinkTulip, Items.pinkTulip));
this.register(new FlowerBlock(_.oxeyeDaisy, Items.oxeyeDaisy));
this.register(new DoublePlantBlock(_.sunflowerBottom, false, Blocks.sunflowerTop, Items.sunflower));
this.register(new DoublePlantBlock(_.sunflowerTop, true, Blocks.sunflowerBottom, Items.sunflower));
this.register(new DoublePlantBlock(_.liliacBottom, false, Blocks.liliacTop, Items.liliac));
this.register(new DoublePlantBlock(_.liliacTop, true, Blocks.liliacBottom, Items.liliac));
this.register(new GrassDoublePlantBlock(_.doubleTallgrassBottom, false, Blocks.doubleTallgrassTop, Items.tallGrass));
this.register(new GrassDoublePlantBlock(_.doubleTallgrassTop, true, Blocks.doubleTallgrassBottom, Items.tallGrass));
this.register(new GrassDoublePlantBlock(_.largeFernBottom, false, Blocks.largeFernTop, Items.fern));
this.register(new GrassDoublePlantBlock(_.largeFernTop, true, Blocks.largeFernBottom, Items.fern));
this.register(new DoublePlantBlock(_.roseBushBottom, false, Blocks.roseBushTop, Items.roseBush));
this.register(new DoublePlantBlock(_.roseBushTop, true, Blocks.roseBushBottom, Items.roseBush));
this.register(new DoublePlantBlock(_.peonyBottom, false, Blocks.peonyTop, Items.peony));
this.register(new DoublePlantBlock(_.peonyTop, true, Blocks.peonyBottom, Items.peony));
this.register(new PlantBlock(_.tallGrass, Items.tallGrass, Drop(Items.seeds, 0, 1)));
this.register(new PlantBlock(_.fern, Items.fern, Drop(Items.seeds, 0, 1)));
this.register(new PlantBlock(_.deadBush, Items.deadBush, Drop(Items.stick, 0, 2)));
this.register(new MineableBlock(_.stoneSlab, woodPickaxe, Drop(Items.stoneSlab, 1)));
this.register(new MineableBlock(_.sandstoneSlab, woodPickaxe, Drop(Items.sandstoneSlab, 1)));
this.register(new MineableBlock(_.stoneWoodenSlab, woodPickaxe, Drop(Items.stoneWoodenSlab, 1)));
this.register(new MineableBlock(_.cobblestoneSlab, woodPickaxe, Drop(Items.cobblestoneSlab, 1)));
this.register(new MineableBlock(_.bricksSlab, woodPickaxe, Drop(Items.bricksSlab, 1)));
this.register(new MineableBlock(_.stoneBrickSlab, woodPickaxe, Drop(Items.stoneBrickSlab, 1)));
this.register(new MineableBlock(_.netherBrickSlab, woodPickaxe, Drop(Items.netherBrickSlab, 1)));
this.register(new MineableBlock(_.quartzSlab, woodPickaxe, Drop(Items.quartzSlab, 1)));
this.register(new MineableBlock(_.redSandstoneSlab, woodPickaxe, Drop(Items.redSandstoneSlab, 1)));
this.register(new MineableBlock(_.purpurSlab, woodPickaxe, Drop(Items.purpurSlab, 1)));
this.register(new MineableBlock(_.oakWoodSlab, woodAxe, Drop(Items.oakWoodSlab, 1)));
this.register(new MineableBlock(_.spruceWoodSlab, woodAxe, Drop(Items.spruceWoodSlab, 1)));
this.register(new MineableBlock(_.birchWoodSlab, woodAxe, Drop(Items.birchWoodSlab, 1)));
this.register(new MineableBlock(_.jungleWoodSlab, woodAxe, Drop(Items.jungleWoodSlab, 1)));
this.register(new MineableBlock(_.acaciaWoodSlab, woodAxe, Drop(Items.acaciaWoodSlab, 1)));
this.register(new MineableBlock(_.darkOakWoodSlab, woodAxe, Drop(Items.darkOakWoodSlab, 1)));
this.register(new MineableBlock(_.upperStoneSlab, woodPickaxe, Drop(Items.stoneSlab, 1)));
this.register(new MineableBlock(_.upperSandstoneSlab, woodPickaxe, Drop(Items.sandstoneSlab, 1)));
this.register(new MineableBlock(_.upperStoneWoodenSlab, woodPickaxe, Drop(Items.stoneWoodenSlab, 1)));
this.register(new MineableBlock(_.upperCobblestoneSlab, woodPickaxe, Drop(Items.cobblestoneSlab, 1)));
this.register(new MineableBlock(_.upperBricksSlab, woodPickaxe, Drop(Items.bricksSlab, 1)));
this.register(new MineableBlock(_.upperStoneBrickSlab, woodPickaxe, Drop(Items.stoneBrickSlab, 1)));
this.register(new MineableBlock(_.upperNetherBrickSlab, woodPickaxe, Drop(Items.netherBrickSlab, 1)));
this.register(new MineableBlock(_.upperQuartzSlab, woodPickaxe, Drop(Items.quartzSlab, 1)));
this.register(new MineableBlock(_.upperRedSandstoneSlab, woodPickaxe, Drop(Items.redSandstoneSlab, 1)));
this.register(new MineableBlock(_.upperPurpurSlab, woodPickaxe, Drop(Items.purpurSlab, 1)));
this.register(new MineableBlock(_.upperOakWoodSlab, woodAxe, Drop(Items.oakWoodSlab, 1)));
this.register(new MineableBlock(_.upperSpruceWoodSlab, woodAxe, Drop(Items.spruceWoodSlab, 1)));
this.register(new MineableBlock(_.birchWoodSlab, woodAxe, Drop(Items.birchWoodSlab, 1)));
this.register(new MineableBlock(_.upperJungleWoodSlab, woodAxe, Drop(Items.jungleWoodSlab, 1)));
this.register(new MineableBlock(_.upperAcaciaWoodSlab, woodAxe, Drop(Items.acaciaWoodSlab, 1)));
this.register(new MineableBlock(_.upperDarkOakWoodSlab, woodAxe, Drop(Items.darkOakWoodSlab, 1)));
this.register(new MineableBlock(_.doubleStoneSlab, woodPickaxe, Drop(Items.stoneSlab, 2)));
this.register(new MineableBlock(_.doubleSandstoneSlab, woodPickaxe, Drop(Items.sandstoneSlab, 2)));
this.register(new MineableBlock(_.doubleStoneWoodenSlab, woodPickaxe, Drop(Items.stoneWoodenSlab, 2)));
this.register(new MineableBlock(_.doubleCobblestoneSlab, woodPickaxe, Drop(Items.cobblestoneSlab, 2)));
this.register(new MineableBlock(_.doubleBricksSlab, woodPickaxe, Drop(Items.bricksSlab, 1)));
this.register(new MineableBlock(_.doubleStoneBrickSlab, woodPickaxe, Drop(Items.stoneBrickSlab, 2)));
this.register(new MineableBlock(_.doubleNetherBrickSlab, woodPickaxe, Drop(Items.netherBrickSlab, 2)));
this.register(new MineableBlock(_.doubleQuartzSlab, woodPickaxe, Drop(Items.quartzSlab, 2)));
this.register(new MineableBlock(_.doubleRedSandstoneSlab, woodPickaxe, Drop(Items.redSandstoneSlab, 2)));
this.register(new MineableBlock(_.doublePurpurSlab, woodPickaxe, Drop(Items.purpurSlab, 2)));
this.register(new MineableBlock(_.doubleOakWoodSlab, woodAxe, Drop(Items.oakWoodSlab, 2)));
this.register(new MineableBlock(_.doubleSpruceWoodSlab, woodAxe, Drop(Items.spruceWoodSlab, 2)));
this.register(new MineableBlock(_.birchWoodSlab, woodAxe, Drop(Items.birchWoodSlab, 2)));
this.register(new MineableBlock(_.doubleJungleWoodSlab, woodAxe, Drop(Items.jungleWoodSlab, 2)));
this.register(new MineableBlock(_.doubleAcaciaWoodSlab, woodAxe, Drop(Items.acaciaWoodSlab, 2)));
this.register(new MineableBlock(_.doubleDarkOakWoodSlab, woodAxe, Drop(Items.darkOakWoodSlab, 2)));
this.register(new StairsBlock(_.cobblestoneStairsFacingEast, Facing.east, false, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.cobblestoneStairsFacingWest, Facing.west, false, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.cobblestoneStairsFacingSouth, Facing.south, false, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.cobblestoneStairsFacingNorth, Facing.north, false, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.upsideDownCobblestoneStairsFacingEast, Facing.east, true, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.upsideDownCobblestoneStairsFacingWest, Facing.west, true, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.upsideDownCobblestoneStairsFacingSouth, Facing.south, true, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.upsideDownCobblestoneStairsFacingNorth, Facing.north, true, woodPickaxe, Items.cobblestoneStairs));
this.register(new StairsBlock(_.brickStairsFacingEast, Facing.east, false, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.brickStairsFacingWest, Facing.west, false, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.brickStairsFacingSouth, Facing.south, false, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.brickStairsFacingNorth, Facing.north, false, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.upsideDownBrickStairsFacingEast, Facing.east, true, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.upsideDownBrickStairsFacingWest, Facing.west, true, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.upsideDownBrickStairsFacingSouth, Facing.south, true, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.upsideDownBrickStairsFacingNorth, Facing.north, true, woodPickaxe, Items.brickStairs));
this.register(new StairsBlock(_.netherBrickStairsFacingEast, Facing.east, false, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.netherBrickStairsFacingWest, Facing.west, false, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.netherBrickStairsFacingSouth, Facing.south, false, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.netherBrickStairsFacingNorth, Facing.north, false, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.upsideDownNetherBrickStairsFacingEast, Facing.east, true, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.upsideDownNetherBrickStairsFacingWest, Facing.west, true, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.upsideDownNetherBrickStairsFacingSouth, Facing.south, true, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.upsideDownNetherBrickStairsFacingNorth, Facing.north, true, woodPickaxe, Items.netherBrickStairs));
this.register(new StairsBlock(_.stoneBrickStairsFacingEast, Facing.east, false, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.stoneBrickStairsFacingWest, Facing.west, false, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.stoneBrickStairsFacingSouth, Facing.south, false, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.stoneBrickStairsFacingNorth, Facing.north, false, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.upsideDownStoneBrickStairsFacingEast, Facing.east, true, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.upsideDownStoneBrickStairsFacingWest, Facing.west, true, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.upsideDownStoneBrickStairsFacingSouth, Facing.south, true, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.upsideDownStoneBrickStairsFacingNorth, Facing.north, true, woodPickaxe, Items.stoneBrickStairs));
this.register(new StairsBlock(_.purpurStairsFacingEast, Facing.east, false, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.purpurStairsFacingWest, Facing.west, false, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.purpurStairsFacingSouth, Facing.south, false, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.purpurStairsFacingNorth, Facing.north, false, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.upsideDownPurpurStairsFacingEast, Facing.east, true, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.upsideDownPurpurStairsFacingWest, Facing.west, true, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.upsideDownPurpurStairsFacingSouth, Facing.south, true, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.upsideDownPurpurStairsFacingNorth, Facing.north, true, woodPickaxe, Items.purpurStairs));
this.register(new StairsBlock(_.quartzStairsFacingEast, Facing.east, false, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.quartzStairsFacingWest, Facing.west, false, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.quartzStairsFacingSouth, Facing.south, false, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.quartzStairsFacingNorth, Facing.north, false, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.upsideDownQuartzStairsFacingEast, Facing.east, true, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.upsideDownQuartzStairsFacingWest, Facing.west, true, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.upsideDownQuartzStairsFacingSouth, Facing.south, true, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.upsideDownQuartzStairsFacingNorth, Facing.north, true, woodPickaxe, Items.quartzStairs));
this.register(new StairsBlock(_.sandstoneStairsFacingEast, Facing.east, false, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.sandstoneStairsFacingWest, Facing.west, false, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.sandstoneStairsFacingSouth, Facing.south, false, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.sandstoneStairsFacingNorth, Facing.north, false, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.upsideDownSandstoneStairsFacingEast, Facing.east, true, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.upsideDownSandstoneStairsFacingWest, Facing.west, true, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.upsideDownSandstoneStairsFacingSouth, Facing.south, true, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.upsideDownSandstoneStairsFacingNorth, Facing.north, true, woodPickaxe, Items.sandstoneStairs));
this.register(new StairsBlock(_.redSandstoneStairsFacingEast, Facing.east, false, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.redSandstoneStairsFacingWest, Facing.west, false, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.redSandstoneStairsFacingSouth, Facing.south, false, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.redSandstoneStairsFacingNorth, Facing.north, false, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.upsideDownRedSandstoneStairsFacingEast, Facing.east, true, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.upsideDownRedSandstoneStairsFacingWest, Facing.west, true, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.upsideDownRedSandstoneStairsFacingSouth, Facing.south, true, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.upsideDownRedSandstoneStairsFacingNorth, Facing.north, true, woodPickaxe, Items.redSandstoneStairs));
this.register(new StairsBlock(_.oakWoodStairsFacingEast, Facing.east, false, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.oakWoodStairsFacingWest, Facing.west, false, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.oakWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.oakWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.upsideDownOakWoodStairsFacingEast, Facing.east, true, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.upsideDownOakWoodStairsFacingWest, Facing.west, true, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.upsideDownOakWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.upsideDownOakWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.oakWoodStairs));
this.register(new StairsBlock(_.spruceWoodStairsFacingEast, Facing.east, false, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.spruceWoodStairsFacingWest, Facing.west, false, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.spruceWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.spruceWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.upsideDownSpruceWoodStairsFacingEast, Facing.east, true, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.upsideDownSpruceWoodStairsFacingWest, Facing.west, true, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.upsideDownSpruceWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.upsideDownSpruceWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.spruceWoodStairs));
this.register(new StairsBlock(_.birchWoodStairsFacingEast, Facing.east, false, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.birchWoodStairsFacingWest, Facing.west, false, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.birchWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.birchWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.upsideDownBirchWoodStairsFacingEast, Facing.east, true, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.upsideDownBirchWoodStairsFacingWest, Facing.west, true, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.upsideDownBirchWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.upsideDownBirchWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.birchWoodStairs));
this.register(new StairsBlock(_.jungleWoodStairsFacingEast, Facing.east, false, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.jungleWoodStairsFacingWest, Facing.west, false, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.jungleWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.jungleWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.upsideDownJungleWoodStairsFacingEast, Facing.east, true, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.upsideDownJungleWoodStairsFacingWest, Facing.west, true, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.upsideDownJungleWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.upsideDownJungleWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.jungleWoodStairs));
this.register(new StairsBlock(_.acaciaWoodStairsFacingEast, Facing.east, false, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.acaciaWoodStairsFacingWest, Facing.west, false, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.acaciaWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.acaciaWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.upsideDownAcaciaWoodStairsFacingEast, Facing.east, true, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.upsideDownAcaciaWoodStairsFacingWest, Facing.west, true, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.upsideDownAcaciaWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.upsideDownAcaciaWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.acaciaWoodStairs));
this.register(new StairsBlock(_.darkOakWoodStairsFacingEast, Facing.east, false, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.darkOakWoodStairsFacingWest, Facing.west, false, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.darkOakWoodStairsFacingSouth, Facing.south, false, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.darkOakWoodStairsFacingNorth, Facing.north, false, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.upsideDownDarkOakWoodStairsFacingEast, Facing.east, true, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.upsideDownDarkOakWoodStairsFacingWest, Facing.west, true, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.upsideDownDarkOakWoodStairsFacingSouth, Facing.south, true, woodAxe, Items.darkOakWoodStairs));
this.register(new StairsBlock(_.upsideDownDarkOakWoodStairsFacingNorth, Facing.north, true, woodAxe, Items.darkOakWoodStairs));
this.register(new MineableBlock(_.bookshelf, woodAxe, Drop(Items.book, 3, 3, Items.bookshelf)));
this.register(new MineableBlock(_.obsidian, diamondPickaxe, Drop(Items.obsidian, 1)));
this.register(new MineableBlock(_.glowingObsidian, diamondPickaxe, Drop(Items.glowingObsidian, 1)));
this.register(new MineableBlock(_.torchFacingEast, MiningTool.init, Drop(Items.torch, 1)));
this.register(new MineableBlock(_.torchFacingWest, MiningTool.init, Drop(Items.torch, 1)));
this.register(new MineableBlock(_.torchFacingSouth, MiningTool.init, Drop(Items.torch, 1)));
this.register(new MineableBlock(_.torchFacingNorth, MiningTool.init, Drop(Items.torch, 1)));
this.register(new MineableBlock(_.torchFacingUp, MiningTool.init, Drop(Items.torch, 1)));
this.register(new MineableBlock(_.craftingTable, MiningTool(Tools.axe, Tools.all), Drop(Items.craftingTable, 1))); //TODO open window on click
this.register(new StageCropBlock(_.seeds0, Blocks.seeds1, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds1, Blocks.seeds2, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds2, Blocks.seeds3, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds3, Blocks.seeds4, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds4, Blocks.seeds5, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds5, Blocks.seeds6, [Drop(Items.seeds, 1)]));
this.register(new StageCropBlock(_.seeds6, Blocks.seeds7, [Drop(Items.seeds, 1)]));
this.register(new FarmingBlock(_.seeds7, [Drop(Items.seeds, 0, 3), Drop(Items.wheat, 1)]));
this.register(new ChanceCropBlock(_.beetroot0, Blocks.beetroot1, [Drop(Items.beetrootSeeds, 1)], 2, 3));
this.register(new ChanceCropBlock(_.beetroot1, Blocks.beetroot2, [Drop(Items.beetrootSeeds, 1)], 2, 3));
this.register(new ChanceCropBlock(_.beetroot2, Blocks.beetroot3, [Drop(Items.beetrootSeeds, 1)], 2, 3));
this.register(new FarmingBlock(_.beetroot3, [Drop(Items.beetroot, 1), Drop(Items.beetrootSeeds, 0, 3)]));
this.register(new StageCropBlock(_.carrot0, Blocks.carrot1, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot1, Blocks.carrot2, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot2, Blocks.carrot3, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot3, Blocks.carrot4, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot4, Blocks.carrot5, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot5, Blocks.carrot6, [Drop(Items.carrot, 1)]));
this.register(new StageCropBlock(_.carrot6, Blocks.carrot7, [Drop(Items.carrot, 1)]));
this.register(new FarmingBlock(_.carrot7, [Drop(Items.carrot, 1, 4)]));
this.register(new StageCropBlock(_.potato0, Blocks.potato1, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato1, Blocks.potato2, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato2, Blocks.potato3, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato3, Blocks.potato4, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato4, Blocks.potato5, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato5, Blocks.potato6, [Drop(Items.potato, 1)]));
this.register(new StageCropBlock(_.potato6, Blocks.potato7, [Drop(Items.potato, 1)]));
this.register(new FarmingBlock(_.potato7, [Drop(Items.potato, 1, 4), Drop(Items.poisonousPotato, -49, 1)]));
this.register(new StemBlock!StageCropBlock(_.melonStem0, Items.melonSeeds, Blocks.melonStem1));
this.register(new StemBlock!StageCropBlock(_.melonStem1, Items.melonSeeds, Blocks.melonStem2));
this.register(new StemBlock!StageCropBlock(_.melonStem2, Items.melonSeeds, Blocks.melonStem3));
this.register(new StemBlock!StageCropBlock(_.melonStem3, Items.melonSeeds, Blocks.melonStem4));
this.register(new StemBlock!StageCropBlock(_.melonStem4, Items.melonSeeds, Blocks.melonStem5));
this.register(new StemBlock!StageCropBlock(_.melonStem5, Items.melonSeeds, Blocks.melonStem6));
this.register(new StemBlock!StageCropBlock(_.melonStem6, Items.melonSeeds, Blocks.melonStem7));
this.register(new StemBlock!(FruitCropBlock!false)(_.melonStem7, Items.melonSeeds, Blocks.melon));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem0, Items.pumpkinSeeds, Blocks.pumpkinStem1));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem1, Items.pumpkinSeeds, Blocks.pumpkinStem2));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem2, Items.pumpkinSeeds, Blocks.pumpkinStem3));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem3, Items.pumpkinSeeds, Blocks.pumpkinStem4));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem4, Items.pumpkinSeeds, Blocks.pumpkinStem5));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem5, Items.pumpkinSeeds, Blocks.pumpkinStem6));
this.register(new StemBlock!StageCropBlock(_.pumpkinStem6, Items.pumpkinSeeds, Blocks.pumpkinStem7));
this.register(new StemBlock!(FruitCropBlock!true)(_.pumpkinStem7, Items.pumpkinSeeds, cast(block_t[4])Blocks.pumpkin[0..4]));
this.register(new SugarCanesBlock(_.sugarCanes0, Blocks.sugarCanes1));
this.register(new SugarCanesBlock(_.sugarCanes1, Blocks.sugarCanes2));
this.register(new SugarCanesBlock(_.sugarCanes2, Blocks.sugarCanes3));
this.register(new SugarCanesBlock(_.sugarCanes3, Blocks.sugarCanes4));
this.register(new SugarCanesBlock(_.sugarCanes4, Blocks.sugarCanes5));
this.register(new SugarCanesBlock(_.sugarCanes5, Blocks.sugarCanes6));
this.register(new SugarCanesBlock(_.sugarCanes6, Blocks.sugarCanes7));
this.register(new SugarCanesBlock(_.sugarCanes7, Blocks.sugarCanes8));
this.register(new SugarCanesBlock(_.sugarCanes8, Blocks.sugarCanes9));
this.register(new SugarCanesBlock(_.sugarCanes9, Blocks.sugarCanes10));
this.register(new SugarCanesBlock(_.sugarCanes10, Blocks.sugarCanes11));
this.register(new SugarCanesBlock(_.sugarCanes11, Blocks.sugarCanes12));
this.register(new SugarCanesBlock(_.sugarCanes12, Blocks.sugarCanes13));
this.register(new SugarCanesBlock(_.sugarCanes13, Blocks.sugarCanes14));
this.register(new SugarCanesBlock(_.sugarCanes14, Blocks.sugarCanes15));
this.register(new SugarCanesBlock(_.sugarCanes15, 0));
this.register(new StageNetherCropBlock(_.netherWart0, Blocks.netherWart1, Drop(Items.netherWart, 1)));
this.register(new StageNetherCropBlock(_.netherWart1, Blocks.netherWart2, Drop(Items.netherWart, 1)));
this.register(new StageNetherCropBlock(_.netherWart2, Blocks.netherWart3, Drop(Items.netherWart, 1)));
this.register(new NetherCropBlock(_.netherWart3, Drop(Items.netherWart, 1, 4, 0))); //TODO +1 with fortune
this.register(new MineableBlock(_.stonecutter, woodPickaxe, Drop(Items.stonecutter, 1)));
this.register(new GravityBlock(_.snowLayer0, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 2)));
this.register(new GravityBlock(_.snowLayer1, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 3)));
this.register(new GravityBlock(_.snowLayer2, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 4)));
this.register(new GravityBlock(_.snowLayer3, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 5)));
this.register(new GravityBlock(_.snowLayer4, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 6)));
this.register(new GravityBlock(_.snowLayer5, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 7)));
this.register(new GravityBlock(_.snowLayer6, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 8)));
this.register(new GravityBlock(_.snowLayer7, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 9)));
this.register(new MineableBlock(_.snow, MiningTool(Tools.shovel, Tools.wood), Drop(Items.snowball, 4, 4, Items.snowBlock)));
this.register(new CactusBlock(_.cactus0, Blocks.cactus1));
this.register(new CactusBlock(_.cactus1, Blocks.cactus2));
this.register(new CactusBlock(_.cactus2, Blocks.cactus3));
this.register(new CactusBlock(_.cactus3, Blocks.cactus4));
this.register(new CactusBlock(_.cactus4, Blocks.cactus5));
this.register(new CactusBlock(_.cactus5, Blocks.cactus6));
this.register(new CactusBlock(_.cactus6, Blocks.cactus7));
this.register(new CactusBlock(_.cactus7, Blocks.cactus8));
this.register(new CactusBlock(_.cactus8, Blocks.cactus9));
this.register(new CactusBlock(_.cactus9, Blocks.cactus10));
this.register(new CactusBlock(_.cactus10, Blocks.cactus11));
this.register(new CactusBlock(_.cactus11, Blocks.cactus12));
this.register(new CactusBlock(_.cactus12, Blocks.cactus13));
this.register(new CactusBlock(_.cactus13, Blocks.cactus14));
this.register(new CactusBlock(_.cactus14, Blocks.cactus15));
this.register(new CactusBlock(_.cactus15, 0));
this.register(new MineableBlock(_.clay, MiningTool(false, Tools.shovel, Tools.wood), Drop(Items.clay, 4, 4, Items.clayBlock)));
this.register(new MineableBlock(_.hardenedClay, woodPickaxe, Drop(Items.hardenedClay, 1)));
this.register(new MineableBlock(_.whiteStainedClay, woodPickaxe, Drop(Items.whiteStainedClay, 1)));
this.register(new MineableBlock(_.orangeStainedClay, woodPickaxe, Drop(Items.orangeStainedClay, 1)));
this.register(new MineableBlock(_.magentaStainedClay, woodPickaxe, Drop(Items.magentaStainedClay, 1)));
this.register(new MineableBlock(_.lightBlueStainedClay, woodPickaxe, Drop(Items.lightBlueStainedClay, 1)));
this.register(new MineableBlock(_.yellowStainedClay, woodPickaxe, Drop(Items.yellowStainedClay, 1)));
this.register(new MineableBlock(_.limeStainedClay, woodPickaxe, Drop(Items.limeStainedClay, 1)));
this.register(new MineableBlock(_.pinkStainedClay, woodPickaxe, Drop(Items.pinkStainedClay, 1)));
this.register(new MineableBlock(_.grayStainedClay, woodPickaxe, Drop(Items.grayStainedClay, 1)));
this.register(new MineableBlock(_.lightGrayStainedClay, woodPickaxe, Drop(Items.lightGrayStainedClay, 1)));
this.register(new MineableBlock(_.cyanStainedClay, woodPickaxe, Drop(Items.cyanStainedClay, 1)));
this.register(new MineableBlock(_.purpleStainedClay, woodPickaxe, Drop(Items.purpleStainedClay, 1)));
this.register(new MineableBlock(_.blueStainedClay, woodPickaxe, Drop(Items.blueStainedClay, 1)));
this.register(new MineableBlock(_.brownStainedClay, woodPickaxe, Drop(Items.brownStainedClay, 1)));
this.register(new MineableBlock(_.greenStainedClay, woodPickaxe, Drop(Items.greenStainedClay, 1)));
this.register(new MineableBlock(_.redStainedClay, woodPickaxe, Drop(Items.redStainedClay, 1)));
this.register(new MineableBlock(_.blackStainedClay, woodPickaxe, Drop(Items.blackStainedClay, 1)));
this.register(new MineableBlock(_.pumpkinFacingSouth, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.pumpkinFacingWest, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.pumpkinFacingNorth, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.pumpkinFacingEast, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.facelessPumpkinFacingSouth, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.facelessPumpkinFacingWest, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.facelessPumpkinFacingNorth, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.facelessPumpkinFacingEast, woodAxe, Drop(Items.pumpkin, 1)));
this.register(new MineableBlock(_.jackOLanternFacingSouth, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.jackOLanternFacingWest, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.jackOLanternFacingNorth, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.jackOLanternFacingEast, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.facelessJackOLanternFacingSouth, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.facelessJackOLanternFacingWest, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.facelessJackOLanternFacingNorth, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.facelessJackOLanternFacingEast, woodAxe, Drop(Items.jackOLantern, 1)));
this.register(new MineableBlock(_.netherrack, woodPickaxe, Drop(Items.netherrack, 1))); //TODO infinite fire
this.register(new MineableBlock(_.soulSand, MiningTool(false, Tools.pickaxe, Tools.wood), Drop(Items.soulSand, 1)));
this.register(new MineableBlock(_.glowstone, MiningTool.init, Drop(Items.glowstoneDust, 2, 4, Items.glowstone))); //TODO fortune +1 but max 4
this.register(new MineableBlock(_.netherBrick, woodPickaxe, Drop(Items.netherBrick, 1)));
this.register(new MineableBlock(_.redNetherBrick, woodPickaxe, Drop(Items.redNetherBrick, 1)));
this.register(new CakeBlock(_.cake0, Blocks.cake1));
this.register(new CakeBlock(_.cake1, Blocks.cake2));
this.register(new CakeBlock(_.cake2, Blocks.cake3));
this.register(new CakeBlock(_.cake3, Blocks.cake4));
this.register(new CakeBlock(_.cake4, Blocks.cake5));
this.register(new CakeBlock(_.cake5, Blocks.cake6));
this.register(new CakeBlock(_.cake6, 0));
this.register(new SwitchingBlock!false(_.woodenTrapdoorSouthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedWoodenTrapdoorSouthSide));
this.register(new SwitchingBlock!false(_.woodenTrapdoorNorthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedWoodenTrapdoorNorthSide));
this.register(new SwitchingBlock!false(_.woodenTrapdoorEastSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedWoodenTrapdoorEastSide));
this.register(new SwitchingBlock!false(_.woodenTrapdoorWestSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedWoodenTrapdoorWestSide));
this.register(new SwitchingBlock!false(_.openedWoodenTrapdoorSouthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.woodenTrapdoorSouthSide));
this.register(new SwitchingBlock!false(_.openedWoodenTrapdoorNorthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.woodenTrapdoorNorthSide));
this.register(new SwitchingBlock!false(_.openedWoodenTrapdoorEastSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.woodenTrapdoorEastSide));
this.register(new SwitchingBlock!false(_.openedWoodenTrapdoorWestSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.woodenTrapdoorWestSide));
this.register(new SwitchingBlock!false(_.topWoodenTrapdoorSouthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedTopWoodenTrapdoorSouthSide));
this.register(new SwitchingBlock!false(_.topWoodenTrapdoorNorthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedTopWoodenTrapdoorNorthSide));
this.register(new SwitchingBlock!false(_.topWoodenTrapdoorEastSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedTopWoodenTrapdoorEastSide));
this.register(new SwitchingBlock!false(_.topWoodenTrapdoorWestSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.openedTopWoodenTrapdoorWestSide));
this.register(new SwitchingBlock!false(_.openedTopWoodenTrapdoorSouthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.topWoodenTrapdoorSouthSide));
this.register(new SwitchingBlock!false(_.openedTopWoodenTrapdoorNorthSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.topWoodenTrapdoorNorthSide));
this.register(new SwitchingBlock!false(_.openedTopWoodenTrapdoorEastSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.topWoodenTrapdoorEastSide));
this.register(new SwitchingBlock!false(_.openedTopWoodenTrapdoorWestSide, MiningTool(Tools.axe, Tools.all), Drop(Items.woodenTrapdoor, 1), Blocks.topWoodenTrapdoorWestSide));
this.register(new SwitchingBlock!true(_.ironTrapdoorSouthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedIronTrapdoorSouthSide));
this.register(new SwitchingBlock!true(_.ironTrapdoorNorthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedIronTrapdoorNorthSide));
this.register(new SwitchingBlock!true(_.ironTrapdoorEastSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedIronTrapdoorEastSide));
this.register(new SwitchingBlock!true(_.ironTrapdoorWestSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedIronTrapdoorWestSide));
this.register(new SwitchingBlock!true(_.openedIronTrapdoorSouthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.ironTrapdoorSouthSide));
this.register(new SwitchingBlock!true(_.openedIronTrapdoorNorthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.ironTrapdoorNorthSide));
this.register(new SwitchingBlock!true(_.openedIronTrapdoorEastSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.ironTrapdoorEastSide));
this.register(new SwitchingBlock!true(_.openedIronTrapdoorWestSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.ironTrapdoorWestSide));
this.register(new SwitchingBlock!true(_.topIronTrapdoorSouthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedTopIronTrapdoorSouthSide));
this.register(new SwitchingBlock!true(_.topIronTrapdoorNorthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedTopIronTrapdoorNorthSide));
this.register(new SwitchingBlock!true(_.topIronTrapdoorEastSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedTopIronTrapdoorEastSide));
this.register(new SwitchingBlock!true(_.topIronTrapdoorWestSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.openedTopIronTrapdoorWestSide));
this.register(new SwitchingBlock!true(_.openedTopIronTrapdoorSouthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.topIronTrapdoorSouthSide));
this.register(new SwitchingBlock!true(_.openedTopIronTrapdoorNorthSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.topIronTrapdoorNorthSide));
this.register(new SwitchingBlock!true(_.openedTopIronTrapdoorEastSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.topIronTrapdoorEastSide));
this.register(new SwitchingBlock!true(_.openedTopIronTrapdoorWestSide, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironTrapdoor, 1), Blocks.topIronTrapdoorWestSide));
this.register(new MonsterEggBlock(_.stoneMonsterEgg, Blocks.stone));
this.register(new MonsterEggBlock(_.cobblestoneMonsterEgg, Blocks.cobblestone));
this.register(new MonsterEggBlock(_.stoneBrickMonsterEgg, Blocks.stoneBricks));
this.register(new MonsterEggBlock(_.mossyStoneBrickMonsterEgg, Blocks.mossyStoneBricks));
this.register(new MonsterEggBlock(_.crackedStoneBrickMonsterEgg, Blocks.crackedStoneBricks));
this.register(new MonsterEggBlock(_.chiseledStoneBrickMonsterEgg, Blocks.chiseledStoneBricks));
this.register(new MineableBlock(_.brownMushroomPoresEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopWestNorth, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopNorth, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopNorthEast, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopWest, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTop, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopEast, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopSouthWest, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopSouth, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapTopEastSouth, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomStemEverySide, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomCapsEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.brownMushroomStemsEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.brownMushroom, 0, 2, Items.brownMushroomBlock)));
this.register(new MineableBlock(_.redMushroomPoresEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopWestNorth, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopNorth, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopNorthEast, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopWest, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTop, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopEast, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopSouthWest, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopSouth, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapTopEastSouth, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomStemEverySide, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomCapsEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.redMushroomStemsEverywhere, MiningTool(Tools.axe, Tools.all), Drop(Items.redMushroom, 0, 2, Items.redMushroomBlock)));
this.register(new MineableBlock(_.ironBars, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.ironBars, 1)));
this.register(new MineableBlock(_.melon, MiningTool(Tools.axe | Tools.sword, Tools.all), Drop(Items.melon, 3, 7, Items.melonBlock)));
this.register(new InactiveEndPortalBlock(_.endPortalFrameSouth, Blocks.activeEndPortalFrameSouth, Facing.south));
this.register(new InactiveEndPortalBlock(_.endPortalFrameWest, Blocks.activeEndPortalFrameWest, Facing.west));
this.register(new InactiveEndPortalBlock(_.endPortalFrameNorth, Blocks.activeEndPortalFrameNorth, Facing.north));
this.register(new InactiveEndPortalBlock(_.endPortalFrameEast, Blocks.activeEndPortalFrameEast, Facing.east));
this.register(new Block(_.activeEndPortalFrameSouth));
this.register(new Block(_.activeEndPortalFrameWest));
this.register(new Block(_.activeEndPortalFrameNorth));
this.register(new Block(_.activeEndPortalFrameEast));
this.register(new MineableBlock(_.endStone, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.endStone, 1)));
this.register(new MineableBlock(_.endStoneBricks, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.endStoneBricks, 1)));
this.register(new Block(_.endPortal)); //TODO teleport to end dimension
this.register(new GrowingBeansBlock(_.cocoaNorth0, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.south, Blocks.cocoaNorth1));
this.register(new GrowingBeansBlock(_.cocoaEast0, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.west, Blocks.cocoaEast1));
this.register(new GrowingBeansBlock(_.cocoaSouth0, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.north, Blocks.cocoaSouth1));
this.register(new GrowingBeansBlock(_.cocoaWest0, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.east, Blocks.cocoaWest1));
this.register(new GrowingBeansBlock(_.cocoaNorth1, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.south, Blocks.cocoaNorth2));
this.register(new GrowingBeansBlock(_.cocoaEast1, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.west, Blocks.cocoaEast2));
this.register(new GrowingBeansBlock(_.cocoaSouth1, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.north, Blocks.cocoaSouth2));
this.register(new GrowingBeansBlock(_.cocoaWest1, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 1), Facing.east, Blocks.cocoaWest2));
this.register(new BeansBlock(_.cocoaNorth2, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 2, 3), Facing.south));
this.register(new BeansBlock(_.cocoaEast2, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 2, 3), Facing.west));
this.register(new BeansBlock(_.cocoaSouth2, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 2, 3), Facing.north));
this.register(new BeansBlock(_.cocoaWest2, MiningTool(Tools.axe, Tools.wood), Drop(Items.cocoaBeans, 2, 3), Facing.east));
this.register(new MineableBlock(_.lilyPad, MiningTool.init, Drop(Items.lilyPad, 1))); //TODO drop when the block underneath is not water nor ice
this.register(new MineableBlock(_.quartzBlock, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.quartzBlock, 1)));
this.register(new MineableBlock(_.chiseledQuartzBlock, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.chiseledQuartzBlock, 1)));
this.register(new MineableBlock(_.pillarQuartzBlockVertical, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.pillarQuartzBlock, 1)));
this.register(new MineableBlock(_.pillarQuartzBlockNorthSouth, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.pillarQuartzBlock, 1)));
this.register(new MineableBlock(_.pillarQuartzBlockEastWest, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.pillarQuartzBlock, 1)));
this.register(new Block(_.barrier));
this.register(new MineableBlock(_.prismarine, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.prismarine, 1)));
this.register(new MineableBlock(_.prismarineBricks, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.prismarineBricks, 1)));
this.register(new MineableBlock(_.darkPrismarine, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.darkPrismarine, 1)));
this.register(new MineableBlock(_.seaLantern, MiningTool.init, Drop(Items.prismarineCrystals, 2, 3, Items.seaLantern))); //TODO fortune
this.register(new MineableBlock(_.hayBaleVertical, MiningTool.init, Drop(Items.hayBale, 1)));
this.register(new MineableBlock(_.hayBaleEastWest, MiningTool.init, Drop(Items.hayBale, 1)));
this.register(new MineableBlock(_.hayBaleNorthSouth, MiningTool.init, Drop(Items.hayBale, 1)));
this.register(new MineableBlock(_.endRodFacingDown, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.endRodFacingUp, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.endRodFacingNorth, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.endRodFacingSouth, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.endRodFacingWest, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.endRodFacingEast, MiningTool.init, Drop(Items.endRod, 1)));
this.register(new MineableBlock(_.purpurBlock, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.purpurBlock, 1)));
this.register(new MineableBlock(_.purpurPillarVertical, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.purpurPillar, 1)));
this.register(new MineableBlock(_.purpurPillarEastWest, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.purpurPillar, 1)));
this.register(new MineableBlock(_.purpurPillarNorthSouth, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.purpurPillar, 1)));
this.register(new MineableBlock(_.netherWartBlock, MiningTool.init, Drop(Items.netherWartBlock, 1)));
this.register(new MineableBlock(_.boneBlockVertical, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.boneBlock, 1)));
this.register(new MineableBlock(_.boneBlockEastWest, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.boneBlock, 1)));
this.register(new MineableBlock(_.boneBlockNorthSouth, MiningTool(Tools.pickaxe, Tools.wood), Drop(Items.boneBlock, 1)));
this.register(new Block(_.structureVoid));
this.register(new Block(_.updateBlock));
this.register(new Block(_.ateupdBlock));
}
}
}
interface Blocks {
mixin((){
string ret;
foreach(member ; __traits(allMembers, _)) {
ret ~= "enum " ~ member ~ "=_." ~ member ~ ".id;";
}
return ret;
}());
// dirt and related
enum block_t[] farmland = [farmland0, farmland1, farmland2, farmland3, farmland4, farmland5, farmland6, farmland7];
enum block_t[] dirts = cast(block_t[])[dirt, grass, podzol, coarseDirt] ~ farmland;
// wooden logs
enum block_t[] oakWood = [oakWoodUpDown, oakWoodEastWest, oakWoodNorthSouth, oakWoodBark];
enum block_t[] spruceWood = [spruceWoodUpDown, spruceWoodEastWest, spruceWoodNorthSouth, spruceWoodBark];
enum block_t[] birchWood = [birchWoodUpDown, birchWoodEastWest, birchWoodNorthSouth, birchWoodBark];
enum block_t[] jungleWood = [jungleWoodUpDown, jungleWoodEastWest, jungleWoodNorthSouth, jungleWoodBark];
enum block_t[] acaciaWood = [acaciaWoodUpDown, acaciaWoodEastWest, acaciaWoodNorthSouth, acaciaWoodBark];
enum block_t[] darkOakWood = [darkOakWoodUpDown, darkOakWoodEastWest, darkOakWoodNorthSouth, darkOakWoodBark];
enum block_t[] wood = oakWood ~ spruceWood ~ birchWood ~ jungleWood ~ acaciaWood ~ darkOakWood;
// wooden logs (in another order)
enum block_t[] woodUpDown = [oakWoodUpDown, spruceWoodUpDown, birchWoodUpDown, jungleWoodUpDown, acaciaWoodUpDown, darkOakWoodUpDown];
enum block_t[] woodEastWest = [oakWoodEastWest, spruceWoodEastWest, birchWoodEastWest, jungleWoodEastWest, acaciaWoodEastWest, darkOakWoodEastWest];
enum block_t[] woodNorthSouth = [oakWoodNorthSouth, spruceWoodNorthSouth, birchWoodNorthSouth, jungleWoodNorthSouth, acaciaWoodNorthSouth, darkOakWoodNorthSouth];
enum block_t[] woodBark = [oakWoodBark, spruceWoodBark, birchWoodBark, jungleWoodBark, acaciaWoodBark, darkOakWoodBark];
// planks
// leaves
enum block_t[] oakLeaves = [oakLeavesDecay, oakLeavesNoDecay, oakLeavesCheckDecay, oakLeavesNoDecayCheckDecay];
enum block_t[] spruceLeaves = [spruceLeavesDecay, spruceLeavesNoDecay, spruceLeavesCheckDecay, spruceLeavesNoDecayCheckDecay];
enum block_t[] birchLeaves = [birchLeavesDecay, birchLeavesNoDecay, birchLeavesCheckDecay, birchLeavesNoDecayCheckDecay];
enum block_t[] jungleLeaves = [jungleLeavesDecay, jungleLeavesNoDecay, jungleLeavesCheckDecay, jungleLeavesNoDecayCheckDecay];
enum block_t[] acaciaLeaves = [acaciaLeavesDecay, acaciaLeavesNoDecay, acaciaLeavesCheckDecay, acaciaLeavesNoDecayCheckDecay];
enum block_t[] darkOakLeaves = [darkOakLeavesDecay, darkOakLeavesNoDecay, darkOakLeavesCheckDecay, darkOakLeavesNoDecayCheckDecay];
enum block_t[] leaves = oakLeaves ~ spruceLeaves ~ birchLeaves ~ jungleLeaves ~ acaciaLeaves ~ darkOakLeaves;
// leaves (in another order)
enum block_t[] leavesDecay = [oakLeavesDecay, spruceLeavesDecay, birchLeavesDecay, jungleLeavesDecay, acaciaLeavesDecay, darkOakLeavesDecay];
enum block_t[] leavesNoDecay = [oakLeavesNoDecay, spruceLeavesNoDecay, birchLeavesNoDecay, jungleLeavesNoDecay, acaciaLeavesNoDecay, darkOakLeavesNoDecay];
enum block_t[] leavesCheckDecay = [oakLeavesCheckDecay, spruceLeavesCheckDecay, birchLeavesCheckDecay, jungleLeavesCheckDecay, acaciaLeavesCheckDecay, darkOakLeavesCheckDecay];
enum block_t[] leavesNoDecayCheckDecay = [oakLeavesNoDecayCheckDecay, spruceLeavesNoDecayCheckDecay, birchLeavesNoDecayCheckDecay, jungleLeavesNoDecayCheckDecay, acaciaLeavesNoDecayCheckDecay, darkOakLeavesNoDecayCheckDecay];
// water
enum block_t[] flowingWater = [flowingWater0, flowingWater1, flowingWater2, flowingWater3, flowingWater4, flowingWater5, flowingWater6, flowingWater7];
enum block_t[] flowingWaterFalling = [flowingWaterFalling0, flowingWaterFalling1, flowingWaterFalling2, flowingWaterFalling3, flowingWaterFalling4, flowingWaterFalling5, flowingWaterFalling6, flowingWaterFalling7];
enum block_t[] stillWater = [stillWater0, stillWater1, stillWater2, stillWater3, stillWater4, stillWater5, stillWater6, stillWater7];
enum block_t[] stillWaterFalling = [stillWaterFalling0, stillWaterFalling1, stillWaterFalling2, stillWaterFalling3, stillWaterFalling4, stillWaterFalling5, stillWaterFalling6, stillWaterFalling7];
enum block_t[] water = flowingWater ~ flowingWaterFalling ~ stillWater ~ stillWaterFalling;
// lava
enum block_t[] flowingLava = [flowingLava0, flowingLava1, flowingLava2, flowingLava3, flowingLava4, flowingLava5, flowingLava6, flowingLava7];
enum block_t[] flowingLavaFalling = [flowingLavaFalling0, flowingLavaFalling1, flowingLavaFalling2, flowingLavaFalling3, flowingLavaFalling4, flowingLavaFalling5, flowingLavaFalling6, flowingLavaFalling7];
enum block_t[] stillLava = [stillLava0, stillLava1, stillLava2, stillLava3, stillLava4, stillLava5, stillLava6, stillLava7];
enum block_t[] stillLavaFalling = [stillLavaFalling0, stillLavaFalling1, stillLavaFalling2, stillLavaFalling3, stillLavaFalling4, stillLavaFalling5, stillLavaFalling6, stillLavaFalling7];
enum block_t[] lava = flowingLava ~ flowingLavaFalling ~ stillLava ~ stillLavaFalling;
// stairs
enum block_t[] cobblestoneStairs = [cobblestoneStairsFacingEast, cobblestoneStairsFacingWest, cobblestoneStairsFacingSouth, cobblestoneStairsFacingNorth, upsideDownCobblestoneStairsFacingEast, upsideDownCobblestoneStairsFacingWest, upsideDownCobblestoneStairsFacingSouth, upsideDownCobblestoneStairsFacingNorth];
enum block_t[] brickStairs = [brickStairsFacingEast, brickStairsFacingWest, brickStairsFacingSouth, brickStairsFacingNorth, upsideDownBrickStairsFacingEast, upsideDownBrickStairsFacingWest, upsideDownBrickStairsFacingSouth, upsideDownBrickStairsFacingNorth];
enum block_t[] netherStairs = [netherBrickStairsFacingEast, netherBrickStairsFacingWest, netherBrickStairsFacingSouth, netherBrickStairsFacingNorth, upsideDownNetherBrickStairsFacingEast, upsideDownNetherBrickStairsFacingWest, upsideDownNetherBrickStairsFacingSouth, upsideDownNetherBrickStairsFacingNorth];
enum block_t[] stoneBrickStairs = [stoneBrickStairsFacingEast, stoneBrickStairsFacingWest, stoneBrickStairsFacingSouth, stoneBrickStairsFacingNorth, upsideDownStoneBrickStairsFacingEast, upsideDownStoneBrickStairsFacingWest, upsideDownStoneBrickStairsFacingSouth, upsideDownStoneBrickStairsFacingNorth];
enum block_t[] purpurStairs = [purpurStairsFacingEast, purpurStairsFacingWest, purpurStairsFacingSouth, purpurStairsFacingNorth, upsideDownPurpurStairsFacingEast, upsideDownPurpurStairsFacingWest, upsideDownPurpurStairsFacingSouth, upsideDownPurpurStairsFacingNorth];
enum block_t[] quartzStairs = [quartzStairsFacingEast, quartzStairsFacingWest, quartzStairsFacingSouth, quartzStairsFacingNorth, upsideDownQuartzStairsFacingEast, upsideDownQuartzStairsFacingWest, upsideDownQuartzStairsFacingSouth, upsideDownQuartzStairsFacingNorth];
enum block_t[] sandstoneStairs = [sandstoneStairsFacingEast, sandstoneStairsFacingWest, sandstoneStairsFacingSouth, sandstoneStairsFacingNorth, upsideDownSandstoneStairsFacingEast, upsideDownSandstoneStairsFacingWest, upsideDownSandstoneStairsFacingSouth, upsideDownSandstoneStairsFacingNorth];
enum block_t[] redSandstoneStairs = [redSandstoneStairsFacingEast, redSandstoneStairsFacingWest, redSandstoneStairsFacingSouth, redSandstoneStairsFacingNorth, upsideDownRedSandstoneStairsFacingEast, upsideDownRedSandstoneStairsFacingWest, upsideDownRedSandstoneStairsFacingSouth, upsideDownRedSandstoneStairsFacingNorth];
enum block_t[] oakWoodStairs = [oakWoodStairsFacingEast, oakWoodStairsFacingWest, oakWoodStairsFacingSouth, oakWoodStairsFacingNorth, upsideDownOakWoodStairsFacingEast, upsideDownOakWoodStairsFacingWest, upsideDownOakWoodStairsFacingSouth, upsideDownOakWoodStairsFacingNorth];
enum block_t[] spruceWoodStairs = [spruceWoodStairsFacingEast, spruceWoodStairsFacingWest, spruceWoodStairsFacingSouth, spruceWoodStairsFacingNorth, upsideDownSpruceWoodStairsFacingEast, upsideDownSpruceWoodStairsFacingWest, upsideDownSpruceWoodStairsFacingSouth, upsideDownSpruceWoodStairsFacingNorth];
enum block_t[] birchWoodStairs = [birchWoodStairsFacingEast, birchWoodStairsFacingWest, birchWoodStairsFacingSouth, birchWoodStairsFacingNorth, upsideDownBirchWoodStairsFacingEast, upsideDownBirchWoodStairsFacingWest, upsideDownBirchWoodStairsFacingSouth, upsideDownBirchWoodStairsFacingNorth];
enum block_t[] jungleWoodStairs = [jungleWoodStairsFacingEast, jungleWoodStairsFacingWest, jungleWoodStairsFacingSouth, jungleWoodStairsFacingNorth, upsideDownJungleWoodStairsFacingEast, upsideDownJungleWoodStairsFacingWest, upsideDownJungleWoodStairsFacingSouth, upsideDownJungleWoodStairsFacingNorth];
enum block_t[] acaciaWoodStairs = [acaciaWoodStairsFacingEast, acaciaWoodStairsFacingWest, acaciaWoodStairsFacingSouth, acaciaWoodStairsFacingNorth, upsideDownAcaciaWoodStairsFacingEast, upsideDownAcaciaWoodStairsFacingWest, upsideDownAcaciaWoodStairsFacingSouth, upsideDownAcaciaWoodStairsFacingNorth];
enum block_t[] darkOakWoodStairs = [darkOakWoodStairsFacingEast, darkOakWoodStairsFacingWest, darkOakWoodStairsFacingSouth, darkOakWoodStairsFacingNorth, upsideDownDarkOakWoodStairsFacingEast, upsideDownDarkOakWoodStairsFacingWest, upsideDownDarkOakWoodStairsFacingSouth, upsideDownDarkOakWoodStairsFacingNorth];
// blocks with colours
enum block_t[] wool = [whiteWool, orangeWool, magentaWool, lightBlueWool, yellowWool, limeWool, pinkWool, grayWool, lightGrayWool, cyanWool, purpleWool, blueWool, brownWool, greenWool, redWool, blackWool];
enum block_t[] stainedClay = [whiteStainedClay, orangeStainedClay, magentaStainedClay, lightBlueStainedClay, yellowStainedClay, limeStainedClay, pinkStainedClay, grayStainedClay, lightGrayStainedClay, cyanStainedClay, purpleStainedClay, blueStainedClay, brownStainedClay, greenStainedClay, redStainedClay, blackStainedClay];
// torches
enum block_t[] torch = [torchFacingUp, torchFacingEast, torchFacingWest, torchFacingSouth, torchFacingNorth];
enum block_t[] redstoneTorch = [redstoneTorchFacingUp, redstoneTorchFacingEast, redstoneTorchFacingWest, redstoneTorchFacingSouth, redstoneTorchFacingNorth];
// farming
enum block_t[] sugarCanes = [sugarCanes0, sugarCanes1, sugarCanes2, sugarCanes3, sugarCanes4, sugarCanes5, sugarCanes6, sugarCanes7, sugarCanes8, sugarCanes9, sugarCanes10, sugarCanes11, sugarCanes12, sugarCanes13, sugarCanes14, sugarCanes15];
enum block_t[] cactus = [cactus0, cactus1, cactus2, cactus3, cactus4, cactus5, cactus6, cactus7, cactus8, cactus9, cactus10, cactus11, cactus12, cactus13, cactus14, cactus15];
// products of the earth
enum block_t[] pumpkin = [pumpkinFacingSouth, pumpkinFacingWest, pumpkinFacingNorth, pumpkinFacingEast, facelessPumpkinFacingSouth, facelessPumpkinFacingWest, facelessPumpkinFacingNorth, facelessPumpkinFacingEast];
// ice
enum block_t[] frostedIce = [frostedIce0, frostedIce1, frostedIce2, frostedIce3];
// cauldron
enum block_t[] cauldron = [cauldronEmpty, cauldronOneSixthFilled, cauldronOneThirdFilled, cauldronThreeSixthFilled, cauldronTwoThirdFilled, cauldronFiveSixthFilled, cauldronFilled];
}
|
D
|
/*
* Collie - An asynchronous event-driven network framework using Dlang development
*
* Copyright (C) 2015-2016 Shanghai Putao Technology Co., Ltd
*
* Developer: putao's Dlang team
*
* Licensed under the Apache-2.0 License.
*
*/
module collie.channel.handlercontext;
import std.conv;
import std.functional;
import collie.channel.pipeline;
import collie.channel.handler;
import collie.channel.exception;
import collie.socket;
interface HandlerContext(In, Out)
{
alias HandlerTheCallBack = void delegate(Out, size_t);
void fireRead(In msg);
void fireTimeOut();
void fireTransportActive();
void fireTransportInactive();
void fireWrite(Out msg, HandlerTheCallBack cback = null);
void fireClose();
@property PipelineBase pipeline();
@property AsyncTransport transport();
}
interface InboundHandlerContext(In)
{
void fireRead(In msg);
void fireTimeOut();
void fireTransportActive();
void fireTransportInactive();
@property PipelineBase pipeline();
@property AsyncTransport transport();
}
interface OutboundHandlerContext(Out)
{
alias OutboundTheCallBack = void delegate(Out, size_t);
void fireWrite(Out msg, OutboundTheCallBack cback = null);
void fireClose();
@property PipelineBase pipeline();
@property AsyncTransport transport();
}
enum HandlerDir
{
IN,
OUT,
BOTH
}
class ContextImplBase(H, Context) : PipelineContext
{
~this()
{
}
pragma(inline,true)
final @property auto handler()
{
return _handler;
}
pragma(inline,true)
final void initialize(PipelineBase pipeline, H handler)
{
_pipeline = pipeline;
_handler = handler;
}
// PipelineContext overrides
final override void attachPipeline()
{
if (!_attached)
{
attachContext(_handler, _impl);
_handler.attachPipeline(_impl);
_attached = true;
}
}
final override void detachPipeline()
{
_handler.detachPipeline(_impl);
_attached = false;
_pipeline = null;
}
final override void setNextIn(PipelineContext ctx)
{
if (!ctx)
{
_nextIn = null;
return;
}
auto nextIn = cast(InboundLink!(H.rout))(ctx);
if (nextIn)
{
_nextIn = nextIn;
}
else
{
throw new InBoundTypeException("inbound type mismatch after ");
}
}
final override void setNextOut(PipelineContext ctx)
{
if (!ctx)
{
_nextOut = null;
return;
}
auto nextOut = cast(OutboundLink!(H.wout))(ctx);
if (nextOut)
{
_nextOut = nextOut;
}
else
{
throw new OutBoundTypeException("outbound type mismatch after ");
}
}
pragma(inline)
final override HandlerDir getDirection()
{
return H.dir;
}
protected:
Context _impl;
PipelineBase _pipeline;
H _handler;
InboundLink!(H.rout) _nextIn = null;
OutboundLink!(H.wout) _nextOut = null;
private:
bool _attached = false;
}
mixin template CommonContextImpl()
{
alias Rin = H.rin;
alias Rout = H.rout;
alias Win = H.win;
alias Wout = H.wout;
this(PipelineBase pipeline, H handler)
{
_impl = this;
initialize(pipeline, handler);
}
// For StaticPipeline
this()
{
_impl = this;
}
pragma(inline)
final override @property AsyncTransport transport()
{
return _pipeline is null ? null : pipeline.transport();
}
pragma(inline)
final override @property PipelineBase pipeline()
{
return _pipeline;
}
}
mixin template ReadContextImpl()
{
override void fireRead(Rout msg)
{
if (this._nextIn)
{
this._nextIn.read(forward!(msg));
}
else
{
info("read reached end of pipeline");
}
}
override void fireTimeOut()
{
if (this._nextIn)
{
this._nextIn.timeOut();
}
}
override void fireTransportActive()
{
if (this._nextIn)
{
this._nextIn.transportActive();
}
}
override void fireTransportInactive()
{
if (this._nextIn)
{
this._nextIn.transportInactive();
}
}
// InboundLink overrides
override void read(Rin msg)
{
_handler.read(this, forward!(msg));
}
override void timeOut()
{
this._handler.timeOut(this);
}
override void transportActive()
{
this._handler.transportActive(this);
}
override void transportInactive()
{
_handler.transportInactive(this);
}
}
mixin template WriteContextImpl()
{
alias NextCallBack = void delegate(Wout, size_t);
pragma(inline)
override void fireWrite(Wout msg, NextCallBack cback = null)
{
if (_nextOut)
{
_nextOut.write(forward!(msg, cback));
}
else
{
info("write reached end of pipeline");
if(cback !is null)
cback(msg,0);
}
}
pragma(inline)
override void fireClose()
{
if (_nextOut)
{
_nextOut.close();
}
else
{
info("close reached end of pipeline");
}
}
// OutboundLink overrides
alias ThisCallBack = void delegate(Win, size_t);
pragma(inline)
override void write(Win msg, ThisCallBack cback = null)
{
_handler.write(this, forward!(msg, cback));
}
pragma(inline)
override void close()
{
_handler.close(this);
}
}
final class ContextImpl(H) : ContextImplBase!(H, HandlerContext!(H.rout,
H.wout)), HandlerContext!(H.rout, H.wout), InboundLink!(H.rin), OutboundLink!(H.win)
{
static enum dir = HandlerDir.BOTH;
mixin CommonContextImpl;
mixin WriteContextImpl;
mixin ReadContextImpl;
}
final class InboundContextImpl(H) : ContextImplBase!(H,
InboundHandlerContext!(H.rout)), InboundHandlerContext!(H.rout), InboundLink!(H.rin)
{
static enum dir = HandlerDir.IN;
mixin CommonContextImpl;
mixin ReadContextImpl;
}
final class OutboundContextImpl(H) : ContextImplBase!(H,
OutboundHandlerContext!(H.wout)), OutboundHandlerContext!(H.wout), OutboundLink!(H.win)
{
static enum dir = HandlerDir.OUT;
mixin CommonContextImpl;
mixin WriteContextImpl;
}
template ContextType(H)
{
static if (H.dir == HandlerDir.BOTH)
alias ContextType = ContextImpl!(H);
else static if (H.dir == HandlerDir.IN)
alias ContextType = InboundContextImpl!(H);
else
alias ContextType = OutboundContextImpl!(H);
}
|
D
|
/home/philip/LearnDemo/rust-lang-book/Chapter08/Vec8_1/target/debug/Vec8_1: /home/philip/LearnDemo/rust-lang-book/Chapter08/Vec8_1/src/main.rs
|
D
|
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Rx.o : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Rx~partial.swiftmodule : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Rx~partial.swiftdoc : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Rx~partial.swiftsourceinfo : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
module android.java.android.view.contentcapture.ContentCaptureManager;
public import android.java.android.view.contentcapture.ContentCaptureManager_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ContentCaptureManager;
import import0 = android.java.android.content.ComponentName;
import import3 = android.java.java.lang.Class;
import import1 = android.java.java.util.Set;
|
D
|
import std.stdio;
import std.array;
import std.conv;
import std.math;
int[] read_split()
{
string[] ss = split(readln());
int[] ints;
foreach (s; ss) {
ints ~= to!int(s);
}
return ints;
}
double shortest(int start, int goal, int[][] cource)
{
immutable int L = cast(int)cource.length;
double max_left_tilt, min_right_tilt;
int max_left=L, min_right=L;
max_left_tilt = min_right_tilt = (goal-start)/cast(double)L;
for (int y=0; y<L; ++y) {
int yy=y+1;
int left = cource[y][0];
int right = cource[y][1];
double tilt = (left-start) / cast(double)yy;
if (tilt > max_left_tilt) {
max_left_tilt = tilt;
max_left = yy;
}
tilt = (right-start) / cast(double)yy;
if (tilt < min_right_tilt) {
min_right_tilt = tilt;
min_right = yy;
}
//if ((yy+1)*min_right_tilt+start < 0) break;
//if ((yy+1)*max_left_tilt +start > R) break;
}
if (max_left < L) {
int middle = cource[max_left-1][0];
return (shortest(start, middle, cource[0..max_left]) +
shortest(middle, goal, cource[max_left..$]));
}
else if (min_right < L) {
int middle = cource[min_right-1][1];
return (shortest(start, middle, cource[0..min_right]) +
shortest(middle, goal, cource[min_right..$]));
}
else {
return hypot(goal-start, L);
}
}
double zigzag_shortest(int start, int goal, int[][] cource)
{
double way=0;
int max_left, min_right;
int prev, pos, leftpos, rightpos;
int turn;
max_left = min_right = -1;
for (pos=0; pos<cource.length; ++pos) {
int l = cource[pos][0];
int r = cource[pos][1];
if (l > start) {
max_left = start;
leftpos = pos;
turn = 0;
break;
}
if (r < start) {
min_right = r;
rightpos = pos;
turn = 1;
break;
}
}
for (++pos; pos<cource.length; ++pos) {
int l = cource[pos][0];
int r = cource[pos][1];
if (turn==0) { //left
if (r < max_left) {
//writeln("turn left: ", prev, ' ', leftpos);
way += shortest(start, cource[leftpos][0], cource[prev..leftpos+1]);
start = max_left;
prev = leftpos+1;
turn = 1;
min_right = r;
rightpos = pos;
}
else if (l > max_left) {
max_left = l;
leftpos = pos;
}
}
else { //right
if (l > min_right) {
//writeln("turn right: ", prev, ' ', rightpos);
way += shortest(start, cource[rightpos][1], cource[prev..rightpos+1]);
start = min_right;
prev = rightpos+1;
turn = 0;
max_left = l;
leftpos = pos;
}
else if (min_right < r) {
min_right = r;
rightpos = pos;
}
}
}
return way + shortest(start, goal, cource[prev..$]);
}
void main()
{
int[] a;
a = read_split();
int length = a[0];
a = read_split();
auto start = a[0];
auto goal = a[1];
read_split();
int[][] cource;
for (int i=0; i<length; ++i) {
cource ~= read_split();
}
//double dist = shortest(start, goal, cource);
double dist = zigzag_shortest(start, goal, cource);
writefln("%.10f", dist);
}
|
D
|
/// [internal]
module vibe.internal.win32;
version(Windows):
public import core.sys.windows.windows;
public import std.c.windows.windows;
public import std.c.windows.winsock;
extern(System) nothrow
{
enum HWND HWND_MESSAGE = cast(HWND)-3;
enum {
GWLP_WNDPROC = -4,
GWLP_HINSTANCE = -6,
GWLP_HWNDPARENT = -8,
GWLP_USERDATA = -21,
GWLP_ID = -12,
}
version(Win32){ // avoiding linking errors with out-of-the-box dmd
alias SetWindowLongPtrA = SetWindowLongA;
alias GetWindowLongPtrA = GetWindowLongA;
} else {
LONG_PTR SetWindowLongPtrA(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
LONG_PTR GetWindowLongPtrA(HWND hWnd, int nIndex);
}
LONG_PTR SetWindowLongPtrW(HWND hWnd, int nIndex, LONG_PTR dwNewLong);
LONG_PTR GetWindowLongPtrW(HWND hWnd, int nIndex);
LONG_PTR SetWindowLongA(HWND hWnd, int nIndex, LONG dwNewLong);
LONG_PTR GetWindowLongA(HWND hWnd, int nIndex);
alias LPOVERLAPPED_COMPLETION_ROUTINE = void function(DWORD, DWORD, OVERLAPPED*);
HANDLE CreateEventW(SECURITY_ATTRIBUTES* lpEventAttributes, BOOL bManualReset, BOOL bInitialState, LPCWSTR lpName);
BOOL PostThreadMessageW(DWORD idThread, UINT Msg, WPARAM wParam, LPARAM lParam);
DWORD MsgWaitForMultipleObjectsEx(DWORD nCount, const(HANDLE) *pHandles, DWORD dwMilliseconds, DWORD dwWakeMask, DWORD dwFlags);
static if (!is(typeof(&CreateFileW))) BOOL CloseHandle(HANDLE hObject);
static if (!is(typeof(&CreateFileW))) HANDLE CreateFileW(LPCWSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes,
DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile);
BOOL WriteFileEx(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, OVERLAPPED* lpOverlapped,
LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
BOOL ReadFileEx(HANDLE hFile, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, OVERLAPPED* lpOverlapped,
LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine);
BOOL GetFileSizeEx(HANDLE hFile, long *lpFileSize);
BOOL SetEndOfFile(HANDLE hFile);
BOOL GetOverlappedResult(HANDLE hFile, OVERLAPPED* lpOverlapped, DWORD* lpNumberOfBytesTransferred, BOOL bWait);
BOOL PostMessageW(HWND hwnd, UINT msg, WPARAM wPara, LPARAM lParam);
static if (__VERSION__ < 2065) {
BOOL PeekMessageW(MSG *lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax, UINT wRemoveMsg);
LONG DispatchMessageW(MSG *lpMsg);
enum {
ERROR_ALREADY_EXISTS = 183,
ERROR_IO_PENDING = 997
}
}
struct FILE_NOTIFY_INFORMATION {
DWORD NextEntryOffset;
DWORD Action;
DWORD FileNameLength;
WCHAR[1] FileName;
}
BOOL ReadDirectoryChangesW(HANDLE hDirectory, void* lpBuffer, DWORD nBufferLength, BOOL bWatchSubtree, DWORD dwNotifyFilter, LPDWORD lpBytesReturned, void* lpOverlapped, void* lpCompletionRoutine);
HANDLE FindFirstChangeNotificationW(LPCWSTR lpPathName, BOOL bWatchSubtree, DWORD dwNotifyFilter);
HANDLE FindNextChangeNotification(HANDLE hChangeHandle);
enum{
WSAPROTOCOL_LEN = 255,
MAX_PROTOCOL_CHAIN = 7,
};
enum WSA_IO_PENDING = 997;
struct WSAPROTOCOL_INFOW {
DWORD dwServiceFlags1;
DWORD dwServiceFlags2;
DWORD dwServiceFlags3;
DWORD dwServiceFlags4;
DWORD dwProviderFlags;
GUID ProviderId;
DWORD dwCatalogEntryId;
WSAPROTOCOLCHAIN ProtocolChain;
int iVersion;
int iAddressFamily;
int iMaxSockAddr;
int iMinSockAddr;
int iSocketType;
int iProtocol;
int iProtocolMaxOffset;
int iNetworkByteOrder;
int iSecurityScheme;
DWORD dwMessageSize;
DWORD dwProviderReserved;
WCHAR[WSAPROTOCOL_LEN+1] szProtocol;
};
struct WSAPROTOCOLCHAIN {
int ChainLen;
DWORD[MAX_PROTOCOL_CHAIN] ChainEntries;
};
struct WSABUF {
size_t len;
ubyte *buf;
}
struct WSAOVERLAPPEDX {
ULONG_PTR Internal;
ULONG_PTR InternalHigh;
union {
struct {
DWORD Offset;
DWORD OffsetHigh;
}
PVOID Pointer;
}
HANDLE hEvent;
}
enum {
WSA_FLAG_OVERLAPPED = 0x01
}
enum {
FD_READ = 0x0001,
FD_WRITE = 0x0002,
FD_OOB = 0x0004,
FD_ACCEPT = 0x0008,
FD_CONNECT = 0x0010,
FD_CLOSE = 0x0020,
FD_QOS = 0x0040,
FD_GROUP_QOS = 0x0080,
FD_ROUTING_INTERFACE_CHANGE = 0x0100,
FD_ADDRESS_LIST_CHANGE = 0x0200
}
struct ADDRINFOEXW {
int ai_flags;
int ai_family;
int ai_socktype;
int ai_protocol;
size_t ai_addrlen;
LPCWSTR ai_canonname;
sockaddr* ai_addr;
void* ai_blob;
size_t ai_bloblen;
GUID* ai_provider;
ADDRINFOEXW* ai_next;
}
struct ADDRINFOA {
int ai_flags;
int ai_family;
int ai_socktype;
int ai_protocol;
size_t ai_addrlen;
LPSTR ai_canonname;
sockaddr* ai_addr;
ADDRINFOA* ai_next;
}
struct ADDRINFOW {
int ai_flags;
int ai_family;
int ai_socktype;
int ai_protocol;
size_t ai_addrlen;
LPWSTR ai_canonname;
sockaddr* ai_addr;
ADDRINFOW* ai_next;
}
enum {
NS_ALL = 0,
NS_DNS = 12
}
struct WSAPROTOCOL_INFO {
DWORD dwServiceFlags1;
DWORD dwServiceFlags2;
DWORD dwServiceFlags3;
DWORD dwServiceFlags4;
DWORD dwProviderFlags;
GUID ProviderId;
DWORD dwCatalogEntryId;
WSAPROTOCOLCHAIN ProtocolChain;
int iVersion;
int iAddressFamily;
int iMaxSockAddr;
int iMinSockAddr;
int iSocketType;
int iProtocol;
int iProtocolMaxOffset;
int iNetworkByteOrder;
int iSecurityScheme;
DWORD dwMessageSize;
DWORD dwProviderReserved;
CHAR[WSAPROTOCOL_LEN+1] szProtocol;
}
alias SOCKADDR = sockaddr;
alias LPWSAOVERLAPPED_COMPLETION_ROUTINEX = void function(DWORD, DWORD, WSAOVERLAPPEDX*, DWORD);
alias LPLOOKUPSERVICE_COMPLETION_ROUTINE = void function(DWORD, DWORD, WSAOVERLAPPEDX*);
alias LPCONDITIONPROC = void*;
alias LPTRANSMIT_FILE_BUFFERS = void*;
SOCKET WSAAccept(SOCKET s, sockaddr *addr, INT* addrlen, LPCONDITIONPROC lpfnCondition, DWORD_PTR dwCallbackData);
int WSAAsyncSelect(SOCKET s, HWND hWnd, uint wMsg, sizediff_t lEvent);
SOCKET WSASocketW(int af, int type, int protocol, WSAPROTOCOL_INFOW *lpProtocolInfo, uint g, DWORD dwFlags);
int WSARecv(SOCKET s, WSABUF* lpBuffers, DWORD dwBufferCount, DWORD* lpNumberOfBytesRecvd, DWORD* lpFlags, in WSAOVERLAPPEDX* lpOverlapped, LPWSAOVERLAPPED_COMPLETION_ROUTINEX lpCompletionRoutine);
int WSASend(SOCKET s, in WSABUF* lpBuffers, DWORD dwBufferCount, DWORD* lpNumberOfBytesSent, DWORD dwFlags, in WSAOVERLAPPEDX* lpOverlapped, LPWSAOVERLAPPED_COMPLETION_ROUTINEX lpCompletionRoutine);
int WSASendDisconnect(SOCKET s, WSABUF* lpOutboundDisconnectData);
INT WSAStringToAddressA(in LPTSTR AddressString, INT AddressFamily, in WSAPROTOCOL_INFO* lpProtocolInfo, SOCKADDR* lpAddress, INT* lpAddressLength);
INT WSAStringToAddressW(in LPWSTR AddressString, INT AddressFamily, in WSAPROTOCOL_INFOW* lpProtocolInfo, SOCKADDR* lpAddress, INT* lpAddressLength);
INT WSAAddressToStringW(in SOCKADDR* lpsaAddress, DWORD dwAddressLength, in WSAPROTOCOL_INFO* lpProtocolInfo, LPWSTR lpszAddressString, DWORD* lpdwAddressStringLength);
int GetAddrInfoExW(LPCWSTR pName, LPCWSTR pServiceName, DWORD dwNameSpace, GUID* lpNspId, const ADDRINFOEXW *pHints, ADDRINFOEXW **ppResult, timeval *timeout, WSAOVERLAPPEDX* lpOverlapped, LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, HANDLE* lpNameHandle);
int GetAddrInfoW(LPCWSTR pName, LPCWSTR pServiceName, const ADDRINFOW *pHints, ADDRINFOW **ppResult);
int getaddrinfo(LPCSTR pName, LPCSTR pServiceName, const ADDRINFOA *pHints, ADDRINFOA **ppResult);
void FreeAddrInfoW(ADDRINFOW* pAddrInfo);
void FreeAddrInfoExW(ADDRINFOEXW* pAddrInfo);
void freeaddrinfo(ADDRINFOA* ai);
BOOL TransmitFile(SOCKET hSocket, HANDLE hFile, DWORD nNumberOfBytesToWrite, DWORD nNumberOfBytesPerSend, OVERLAPPED* lpOverlapped, LPTRANSMIT_FILE_BUFFERS lpTransmitBuffers, DWORD dwFlags);
struct GUID
{
DWORD Data1;
WORD Data2;
WORD Data3;
BYTE[8] Data4;
};
enum WM_USER = 0x0400;
enum {
QS_ALLPOSTMESSAGE = 0x0100,
QS_HOTKEY = 0x0080,
QS_KEY = 0x0001,
QS_MOUSEBUTTON = 0x0004,
QS_MOUSEMOVE = 0x0002,
QS_PAINT = 0x0020,
QS_POSTMESSAGE = 0x0008,
QS_RAWINPUT = 0x0400,
QS_SENDMESSAGE = 0x0040,
QS_TIMER = 0x0010,
QS_MOUSE = (QS_MOUSEMOVE | QS_MOUSEBUTTON),
QS_INPUT = (QS_MOUSE | QS_KEY | QS_RAWINPUT),
QS_ALLEVENTS = (QS_INPUT | QS_POSTMESSAGE | QS_TIMER | QS_PAINT | QS_HOTKEY),
QS_ALLINPUT = (QS_INPUT | QS_POSTMESSAGE | QS_TIMER | QS_PAINT | QS_HOTKEY | QS_SENDMESSAGE),
};
enum {
MWMO_ALERTABLE = 0x0002,
MWMO_INPUTAVAILABLE = 0x0004,
MWMO_WAITALL = 0x0001,
};
}
|
D
|
/*******************************************************************************
Internal implementation of the client's Put request.
Copyright:
Copyright (c) 2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
*******************************************************************************/
module integrationtest.neo.client.request.internal.Put;
import ocean.transition;
/*******************************************************************************
Put request implementation.
Note that request structs act simply as namespaces for the collection of
symbols required to implement a request. They are never instantiated and
have no fields or non-static functions.
The client expects several things to be present in a request struct:
1. The static constants request_type and request_code
2. The UserSpecifiedParams struct, containing all user-specified request
setup (including a notifier)
3. The Notifier delegate type
4. Optionally, the Controller type (if the request can be controlled,
after it has begun)
5. The handler() function
6. The all_finished_notifier() function
The RequestCore mixin provides items 1 and 2.
*******************************************************************************/
public struct Put
{
import integrationtest.neo.common.Put;
import integrationtest.neo.client.request.Put;
import integrationtest.neo.common.RequestCodes;
import swarm.neo.AddrPort;
import swarm.neo.request.Command;
import swarm.neo.client.RequestOnConn;
import swarm.neo.client.NotifierTypes;
import swarm.neo.client.mixins.RequestCore;
import swarm.neo.client.RequestHandlers : UseNodeDg;
import ocean.io.select.protocol.generic.ErrnoIOException: IOError;
/***************************************************************************
Data which the request needs while it is progress. An instance of this
struct is stored per connection on which the request runs and is passed
to the request handler.
***************************************************************************/
public static struct SharedWorking
{
/// Enum indicating the ways in which the request may end.
public enum Result
{
Failure, // Default value; unknown error (presumably in client)
Error, // Node or I/O error
Put // Put record
}
/// The way in which the request ended. Used by the finished notifier to
/// decide what kind of notification (if any) to send to the user.
Result result;
}
/***************************************************************************
Request core. Mixes in the types `NotificationInfo`, `Notifier`,
`Params`, `Context` plus the static constants `request_type` and
`request_code`.
***************************************************************************/
mixin RequestCore!(RequestType.SingleNode, RequestCode.Put, 0, Args,
SharedWorking, Notification);
/***************************************************************************
Request handler. Called from RequestOnConn.runHandler().
Params:
use_node = delegate to be called to allow the request to send /
receive data over a specific connection. May be called as many
times as required by the request
context_blob = untyped chunk of data containing the serialized
context of the request which is to be handled
***************************************************************************/
public static void handler ( UseNodeDg use_node, void[] context_blob )
{
auto context = Put.getContext(context_blob);
context.shared_working.result = SharedWorking.Result.Failure;
// In a real client, you'd have to have some way for a request to decide
// which node to operate on. In this simple example, we just hard-code
// the node's address/port.
AddrPort node;
node.setAddress("127.0.0.1");
node.port = 10_000;
scope dg = ( RequestOnConn.EventDispatcher conn )
{
try
{
// Send request info to node
conn.send(
( conn.Payload payload )
{
payload.add(Put.cmd.code);
payload.add(Put.cmd.ver);
payload.add(context.user_params.args.key);
payload.addArray(context.user_params.args.value);
}
);
// Receive supported status from node
auto supported = conn.receiveValue!(SupportedStatus)();
if ( !Put.handleSupportedCodes(supported, context,
conn.remote_address) )
{
// Global codes (not supported / version not supported)
context.shared_working.result = SharedWorking.Result.Error;
}
else
{
// Receive result code from node
auto result = conn.receiveValue!(StatusCode)();
with ( RequestStatusCode ) switch ( result )
{
case Succeeded:
context.shared_working.result =
SharedWorking.Result.Put;
break;
case Error:
context.shared_working.result =
SharedWorking.Result.Error;
// The node returned an error code. Notify the user.
Notification n;
n.node_error = RequestNodeInfo(
context.request_id, conn.remote_address);
Put.notify(context.user_params, n);
break;
default:
// Treat unknown codes as internal errors.
goto case Error;
}
}
}
catch ( IOError e )
{
// A connection error occurred. Notify the user.
context.shared_working.result =
SharedWorking.Result.Error;
Notification n;
n.node_disconnected = RequestNodeExceptionInfo(
context.request_id, conn.remote_address, e);
Put.notify(context.user_params, n);
}
};
use_node(node, dg);
}
/***************************************************************************
Request finished notifier. Called from Request.handlerFinished().
Params:
context_blob = untyped chunk of data containing the serialized
context of the request which is finishing
***************************************************************************/
public static void all_finished_notifier ( void[] context_blob )
{
auto context = Put.getContext(context_blob);
Notification n;
with ( SharedWorking.Result ) switch ( context.shared_working.result )
{
case Failure:
n.error = NoInfo();
break;
case Put:
n.succeeded = NoInfo();
break;
case Error:
// Error notification was already handled in handle(), where
// we have access to the node's address &/ exception.
return;
default:
assert(false);
}
Put.notify(context.user_params, n);
}
}
|
D
|
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/SQLOrderBy.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBind.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoinMethod.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSerializable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDataType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdate.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDelete.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBoolLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDefaultLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoin.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCollation.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKeyAction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLConnection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDirection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnDefinition.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDeleteBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateGroupBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsertBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLRawBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndexBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryFetcher.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIndexModifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBinaryOperator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDistinct.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunctionArgument.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLGroupBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLOrderBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPrimaryKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/SQLOrderBy~partial.swiftmodule : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBind.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoinMethod.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSerializable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDataType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdate.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDelete.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBoolLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDefaultLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoin.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCollation.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKeyAction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLConnection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDirection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnDefinition.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDeleteBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateGroupBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsertBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLRawBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndexBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryFetcher.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIndexModifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBinaryOperator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDistinct.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunctionArgument.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLGroupBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLOrderBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPrimaryKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/SQLOrderBy~partial.swiftdoc : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBind.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoinMethod.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSerializable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDataType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdate.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDelete.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBoolLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDefaultLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoin.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCollation.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKeyAction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLConnection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDirection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnDefinition.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDeleteBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateGroupBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsertBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLRawBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndexBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryFetcher.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIndexModifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBinaryOperator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDistinct.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunctionArgument.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLGroupBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLOrderBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPrimaryKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/SQLOrderBy~partial.swiftsourceinfo : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBind.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoinMethod.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSerializable.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDataType.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdate.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDelete.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBoolLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDefaultLiteral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraintAlgorithm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLJoin.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectExpression.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCollation.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKeyAction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLConnection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDirection.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunction.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnDefinition.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLAlterTableBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLUpdateBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDeleteBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPredicateGroupBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelectBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsertBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLRawBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndexBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryBuilder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryEncoder.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQueryFetcher.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIndexModifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnIdentifier.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLBinaryOperator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLSelect.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDistinct.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLFunctionArgument.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLTableConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLColumnConstraint.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLInsert.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLCreateIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLDropIndex.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLGroupBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLOrderBy.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLForeignKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLPrimaryKey.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/sql/Sources/SQL/SQLQuery.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError.o : /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/MultipartFormData.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Timeline.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Response.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/TaskDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ParameterEncoding.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Validation.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ResponseSerialization.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/AFError.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Notifications.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Result.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Request.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
/Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError~partial.swiftmodule : /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/MultipartFormData.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Timeline.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Response.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/TaskDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ParameterEncoding.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Validation.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ResponseSerialization.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/AFError.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Notifications.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Result.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Request.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
/Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/AFError~partial.swiftdoc : /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/MultipartFormData.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Timeline.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Alamofire.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Response.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/TaskDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionDelegate.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ParameterEncoding.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Validation.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ResponseSerialization.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/SessionManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/AFError.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Notifications.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Result.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/Request.swift /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/Chintan/Desktop/Work/CS/Projects/Positively3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
|
D
|
module mixin1;
import std.stdio;
/*******************************************/
mixin template Foo(T)
{
T x;
}
mixin Foo!(uint);
struct Bar
{
template Abc(T)
{
T y;
}
template Def(T)
{
T z;
}
}
mixin Bar.Abc!(int);
Bar b;
mixin typeof(b).Def!(int);
void test1()
{
x = 3;
assert(x == 3);
y = 4;
assert(y == 4);
z = 5;
assert(z == 5);
}
/*******************************************/
template Foo2(T)
{
T x2 = T.sizeof;
}
mixin Foo2!(uint) B2;
mixin Foo2!(long) C2;
mixin Foo2!(int);
void test2()
{
B2.x2 = 3;
assert(B2.x2 == 3);
assert(C2.x2 == long.sizeof);
// assert(x2 == int.sizeof);
}
/*******************************************/
template Foo3(T)
{
int func() { printf("Foo3.func()\n"); return 1; }
}
class Bar3
{
mixin Foo3!(int);
}
class Code3 : Bar3
{
override int func() { printf("Code3.func()\n"); return 2; }
}
void test3()
{
int i;
Bar3 b = new Bar3();
i = b.func();
assert(i == 1);
b = new Code3();
i = b.func();
assert(i == 2);
}
/*******************************************/
template Foo4(T)
{
int func() { printf("Foo4.func()\n"); return 1; }
}
struct Bar4
{
mixin Foo4!(int);
}
void test4()
{
int i;
Bar4 b;
i = b.func();
assert(i == 1);
}
/*******************************************/
template Foo5()
{
int func() { printf("Foo5.func()\n"); return 1; }
}
struct Bar5
{
mixin Foo5;
}
void test5()
{
int i;
Bar5 b;
i = b.func();
assert(i == 1);
}
/*******************************************/
template Foo6()
{
int x = 5;
}
struct Bar6
{
mixin Foo6;
}
void test6()
{
int i;
Bar6 b;
i = b.x;
assert(i == 5);
assert(b.sizeof == int.sizeof);
}
/*******************************************/
template Foo7()
{
int x = 5;
}
class Bar7
{
int y = 6;
mixin Foo7;
}
void test7()
{
int i;
Bar7 b = new Bar7();
i = b.x;
printf("b.x = %d\n", b.x);
assert(i == 5);
}
/*******************************************/
template Foo8()
{
int x = 5;
int bar() { return 7; }
}
void test8()
{
mixin Foo8;
printf("x = %d\n", x);
assert(x == 5);
assert(bar() == 7);
}
/*******************************************/
template Foo9()
{
int abc() { return y; }
}
void test9()
{
int y = 8;
mixin Foo9;
assert(abc() == 8);
}
/*******************************************/
template Foo10(alias b)
{
typeof(b) abc() { return b; }
}
void test10()
{
int y = 8;
mixin Foo10!(y);
assert(abc() == 8);
}
/*******************************************/
template Foo11(alias b)
{
int abc() { return b; }
}
void test11()
{
int y = 8;
mixin Foo11!(y) B;
assert(B.abc() == 8);
}
/*******************************************/
template duff_for(alias id1, alias id2, alias s)
{
void duff_for()
{
printf("duff_for(%d, %d)\n", id1, id2);
typeof(id1) id = id1;
printf("fid = %d, %d\n", id, (id2 - id) % 8);
switch ((id2 - id) % 8)
{
case 0:
while (id != id2)
{
printf("wid = %d\n", id);
s(); ++id;
goto case;
case 7: s(); ++id; goto case;
case 6: s(); ++id; goto case;
case 5: s(); ++id; goto case;
case 4: s(); ++id; goto case;
case 3: s(); ++id; goto case;
case 2: s(); ++id; goto case;
case 1: s(); ++id;
break;
default: assert(0);
}
}
}
}
void foo12() { printf("foo12\n"); }
void test12()
{
int i = 1;
int j = 11;
mixin duff_for!(i, j, delegate void() { foo12(); });
duff_for();
}
/*******************************************/
template duff(alias id1, alias id2, alias s)
{
void duff()
{
s();
s();
}
}
void foo13(int j)
{
printf("foo13 j = %d\n", j);
assert(j == 1);
}
void test13()
{
int i = 1;
int j = 11;
mixin duff!(i, j, delegate { foo13(i); });
duff();
}
/*******************************************/
template Foo14()
{
int x14 = 5;
}
void test14()
{
int x14 = 6;
mixin Foo14;
printf("x14 = %d\n", x14);
assert(x14 == 6);
}
/*******************************************/
template Foo15()
{
int x15 = 5;
int bar15() { return x15; }
}
int x15 = 6;
mixin Foo15;
void test15()
{
printf("x15 = %d\n", x15);
printf("bar15() = %d\n", bar15());
assert(x15 == 6);
assert(bar15() == 5);
}
/*******************************************/
template Foo16()
{
int x16 = 5;
int bar() { return x16; }
}
mixin Foo16 A16;
int x16 = 6;
mixin Foo16 B16;
void test16()
{
printf("x16 = %d\n", x16);
printf("bar() = %d\n", A16.bar());
assert(x16 == 6);
assert(A16.x16 == 5);
assert(B16.x16 == 5);
assert(A16.bar() == 5);
assert(B16.bar() == 5);
}
/*******************************************/
template Foo17()
{
int x17 = 5;
}
mixin Foo17;
struct Bar17
{
mixin Foo17;
}
void test17()
{
printf("x17 = %d\n", x17); // prints 5
assert(x17 == 5);
{ Bar17 b;
int x17 = 3;
printf("b.x17 = %d\n", b.x17); // prints 5
assert(b.x17 == 5);
printf("x17 = %d\n", x17); // prints 3
assert(x17 == 3);
{
mixin Foo17;
printf("x17 = %d\n", x17); // prints 5
assert(x17 == 5);
x17 = 4;
printf("x17 = %d\n", x17); // prints 4
assert(x17 == 4);
}
printf("x17 = %d\n", x17); // prints 3
assert(x17 == 3);
}
printf("x17 = %d\n", x17); // prints 5
assert(x17 == 5);
}
/*******************************************/
template Foo18() { int z = 3; }
struct Bar18(alias Tmpl)
{
mixin Tmpl;
}
Bar18!(Foo18) b18;
void test18()
{
assert(b18.z == 3);
}
/*******************************************/
template Mix1(T)
{
int foo19(T a) { return 2*a; }
}
template Mix2(T)
{
mixin Mix1!(T);
int bar19(T a) { return foo19(a); }
}
mixin Mix2!(int);
void test19()
{
int i;
i = bar19(7);
assert(i == 14);
}
/*******************************************/
interface A20 { int f(); }
template Foo20()
{
int f()
{
printf("in C20.f()\n");
return 6;
}
}
class C20 : A20
{
mixin Foo20;
// void f() { printf("in C20.f()\n"); }
}
void test20()
{
C20 c = new C20();
int i = c.f();
assert(i == 6);
}
/*******************************************/
template Mix21() { this(int x) { printf("mix1\n"); }}
class Bar21
{
int myx;
mixin Mix21; // wouldn't compile
this() { myx = 15; }
// mixin Mix21; // placing it here compiles
}
void test21()
{
Bar21 bar = new Bar21();
}
/*******************************************/
template A22(T)
{
this()
{ int i;
i = super.foo();
assert(i == 67);
}
}
class B22
{
int foo() { printf("B22.foo()\n"); return 67; }
}
class C22 : B22
{
mixin A22!(C22);
}
void test22()
{
C22 c = new C22;
}
/*******************************************/
template Foo23()
{
const int x = 5;
}
class C23
{
mixin Foo23 F;
}
struct D23
{
mixin Foo23 F;
}
void test23()
{
C23 c = new C23;
printf("%d\n",c.F.x);
assert(c.F.x == 5);
D23 d;
printf("%d\n",d.F.x);
assert(d.F.x == 5);
}
/*******************************************/
template T24()
{
void foo24() { return cast(void)0; }
// alias foo24 foo24;
}
mixin T24;
void test24()
{
foo24();
}
/*******************************************/
template ctor25()
{
this() { this(null); }
this( Object o ) {}
}
class Foo25
{
mixin ctor25;
}
void test25()
{
Foo25 foo = new Foo25();
}
/*******************************************/
template Get26(T)
{
Reader get (ref T x)
{
return this;
}
}
class Reader
{
mixin Get26!(byte) bar;
alias bar.get get;
mixin Get26!(int) beq;
alias beq.get get;
}
void test26()
{
Reader r = new Reader;
Reader s;
byte q;
s = r.get (q);
assert(s == r);
}
/*******************************************/
template Template(int L)
{
int i = L;
int foo(int b = Template!(9).i) {
return b;
}
}
void test27()
{
int i = 10;
int foo(int b = Template!(9).i) {
return b;
}
assert(foo()==9);
}
/*******************************************/
template Blah28(int a, alias B)
{
mixin Blah28!(a-1, B);
//mixin Blah28!(0, B);
}
template Blah28(int a:0, alias B)
{
}
void test28()
{
int a;
mixin Blah28!(5,a);
printf("a = %d\n", a);
}
/*******************************************/
template T29()
{
int x;
}
struct S29
{
mixin T29;
int y;
}
const S29 s29 = { x:2, y:3 };
void test29()
{
assert(s29.x == 2);
assert(s29.y == 3);
}
/*******************************************/
class A30
{
template ctor(Type)
{
this(Type[] arr)
{
foreach(Type v; arr) writeln(typeid(typeof(v)));
}
}
mixin ctor!(int);
}
void test30()
{
static int[] ints = [0,1,2,3];
A30 a = new A30(ints);
}
/*******************************************/
template Share(T) {
const bool opEquals(ref const T x) { return true; }
}
struct List31(T) {
//int opEquals(List31 x) { return 0; }
mixin Share!(List31);
}
void test31()
{
List31!(int) x;
List31!(int) y;
int i = x == y;
assert(i == 1);
}
/*******************************************/
template Blah(int a, alias B)
{
mixin Blah!(a-1, B);
}
template Blah(int a:0, alias B)
{
int foo()
{ return B + 1;
}
}
void test32()
{
int a = 3;
mixin Blah!(5,a);
assert(foo() == 4);
}
/*******************************************/
template T33( int i )
{
int foo()
{
printf("foo %d\n", i );
return i;
}
int opCall()
{
printf("opCall %d\n", i );
return i;
}
}
class C33
{
mixin T33!( 1 ) t1;
mixin T33!( 2 ) t2;
}
void test33()
{
int i;
C33 c1 = new C33;
i = c1.t1.foo();
assert(i == 1);
i = c1.t2.foo();
assert(i == 2);
i = c1.t1();
assert(i == 1);
i = c1.t2();
assert(i == 2);
}
/*******************************************/
template mix34()
{
int i;
void print()
{
printf( "%d %d\n", i, j );
assert(i == 0);
assert(j == 0);
}
}
void test34()
{
int j;
mixin mix34!();
print();
//printf( "%i\n", i );
}
/*******************************************/
mixin T35!(int) m35;
template T35(t)
{
t a;
}
void test35()
{
m35.a = 3;
}
/*******************************************/
struct Foo36
{
int a;
mixin T!(int) m;
template T(t)
{
t b;
}
int c;
}
void test36()
{
Foo36 f;
printf("f.sizeof = %d\n", f.sizeof);
assert(f.sizeof == 12);
f.a = 1;
f.m.b = 2;
f.c = 3;
assert(f.a == 1);
assert(f.m.b == 2);
assert(f.c == 3);
}
/*******************************************/
template Foo37()
{
template func() {
int func() {
return 6;
}
}
}
class Baz37
{
mixin Foo37 bar;
}
void test37()
{
Baz37 b = new Baz37;
auto i = b.bar.func!()();
assert(i == 6);
i = (new Baz37).bar.func!()();
assert(i == 6);
}
/*******************************************/
template Foo38()
{
int a = 4;
~this()
{
printf("one\n");
assert(a == 4);
assert(b == 5);
c++;
}
}
class Outer38
{ int b = 5;
static int c;
mixin Foo38!() bar;
mixin Foo38!() abc;
~this()
{
printf("two\n");
assert(b == 5);
assert(c == 0);
c++;
}
}
void test38()
{
Outer38 o = new Outer38();
delete o;
assert(Outer38.c == 3);
}
/*******************************************/
template TDtor()
{
~this()
{
printf("Mixed-in dtor\n");
}
}
class Base39
{
~this()
{
printf("Base39 dtor\n");
}
}
class Class39 : Base39
{
mixin TDtor A;
mixin TDtor B;
~this()
{
printf("Class39 dtor\n");
}
}
void test39()
{
auto test = new Class39;
}
/*******************************************/
template Mix40()
{
int i;
}
struct Z40
{
union { mixin Mix40; }
}
void test40()
{
Z40 z;
z.i = 3;
}
/*******************************************/
class X41(P...)
{
alias P[0] Q;
mixin Q!();
}
template MYP()
{
void foo() { }
}
void test41()
{
X41!(MYP) x;
}
/*******************************************/
// 2245
template TCALL2245a(ARGS...)
{
int makecall(ARGS args)
{
return args.length;
}
}
template TCALL2245b(int n)
{
int makecall2(ARGS...)(ARGS args) if (ARGS.length == n)
{
return args.length;
}
}
class C2245
{
mixin TCALL2245a!();
mixin TCALL2245a!(int);
mixin TCALL2245a!(int,int);
mixin TCALL2245b!(0);
mixin TCALL2245b!(1);
mixin TCALL2245b!(2);
}
struct S2245
{
mixin TCALL2245a!();
mixin TCALL2245a!(int);
mixin TCALL2245a!(int,int);
mixin TCALL2245b!(0);
mixin TCALL2245b!(1);
mixin TCALL2245b!(2);
}
void test2245()
{
auto c = new C2245;
assert(c.makecall() == 0);
assert(c.makecall(0) == 1);
assert(c.makecall(0,1) == 2);
assert(c.makecall2() == 0);
assert(c.makecall2(0) == 1);
assert(c.makecall2(0,1) == 2);
assert(c.makecall2!()() == 0);
assert(c.makecall2!(int)(0) == 1);
assert(c.makecall2!(int, int)(0,1) == 2);
auto s = S2245();
assert(s.makecall() == 0);
assert(s.makecall(0) == 1);
assert(s.makecall(0,1) == 2);
assert(s.makecall2() == 0);
assert(s.makecall2(0) == 1);
assert(s.makecall2(0,1) == 2);
assert(s.makecall2!()() == 0);
assert(s.makecall2!(int)(0) == 1);
assert(s.makecall2!(int, int)(0,1) == 2);
}
/*******************************************/
// 2481
template M2481() { int i; }
class Z2481a { struct { mixin M2481!(); } }
class Z2481b { struct { int i; } }
void test2481()
{
Z2481a z1;
Z2481b z2;
static assert(z1.i.offsetof == z2.i.offsetof);
}
/*******************************************/
// 2740
interface IFooable2740
{
bool foo();
}
abstract class CFooable2740
{
bool foo();
}
mixin template MFoo2740()
{
override bool foo() { return true; }
}
class Foo2740i1 : IFooable2740
{
override bool foo() { return false; }
mixin MFoo2740;
}
class Foo2740i2 : IFooable2740
{
mixin MFoo2740;
override bool foo() { return false; }
}
class Foo2740c1 : CFooable2740
{
override bool foo() { return false; }
mixin MFoo2740;
}
class Foo2740c2 : CFooable2740
{
mixin MFoo2740;
override bool foo() { return false; }
}
void test2740()
{
{
auto p = new Foo2740i1();
IFooable2740 i = p;
assert(p.foo() == false);
assert(i.foo() == false);
}
{
auto p = new Foo2740i2();
IFooable2740 i = p;
assert(p.foo() == false);
assert(i.foo() == false);
}
{
auto p = new Foo2740c1();
CFooable2740 i = p;
assert(p.foo() == false);
assert(i.foo() == false);
}
{
auto p = new Foo2740c2();
CFooable2740 i = p;
assert(p.foo() == false);
assert(i.foo() == false);
}
}
/*******************************************/
mixin template MTestFoo()
{
int foo(){ return 2; }
}
class TestFoo
{
mixin MTestFoo!() test;
int foo(){ return 1; }
}
void test42()
{
auto p = new TestFoo();
assert(p.foo() == 1);
assert(p.test.foo() == 2);
}
/*******************************************/
// 7744
class ZeroOrMore7744(Expr)
{
enum name = "ZeroOrMore7744!("~Expr.name~")";
}
class Range7744(char begin, char end)
{
enum name = "Range7744!("~begin~","~end~")";
}
mixin(q{
class RubySource7744 : ZeroOrMore7744!(DecLiteral7744)
{
}
class DecLiteral7744 : Range7744!('0','9')
{
}
});
/*******************************************/
// 8032
mixin template T8032()
{
void f() { }
}
class A8032a
{
mixin T8032; // Named mixin causes the error too
void f() { }
}
class B8032a : A8032a
{
override void f() { }
}
class A8032b
{
void f() { }
mixin T8032; // Named mixin causes the error too
}
class B8032b : A8032b
{
override void f() { }
}
/*********************************************/
// 9417
mixin template Foo9417()
{
void foo() {}
}
void test9417()
{
struct B
{
mixin Foo9417;
}
}
/*******************************************/
// 11487
template X11487()
{
struct R()
{
C11487 c;
~this()
{
static assert(is(typeof(c.front) == void));
}
}
template Mix(alias R)
{
R!() range;
@property front() inout {}
}
}
class C11487
{
alias X11487!() M;
mixin M.Mix!(M.R);
}
/*******************************************/
int main()
{
test1();
test2();
test3();
test4();
test5();
test6();
test7();
test8();
test9();
test10();
test11();
test12();
test13();
test14();
test15();
test16();
test17();
test18();
test19();
test20();
test21();
test22();
test23();
test24();
test25();
test26();
test27();
test28();
test29();
test30();
test31();
test32();
test33();
test34();
test35();
test36();
test37();
test38();
test39();
test40();
test41();
test2245();
test2740();
test42();
test9417();
printf("Success\n");
return 0;
}
|
D
|
var int brahim_showedmaps;
func void b_brahimnewmaps()
{
if(BRAHIM_SHOWEDMAPS == TRUE)
{
AI_Output(self,other,"B_BrahimNewMaps_07_00"); //Vrať se později, určitě pro tebe pak budu něco mít.
};
};
instance DIA_BRAHIM_EXIT(C_INFO)
{
npc = vlk_437_brahim;
nr = 999;
condition = dia_brahim_exit_condition;
information = dia_brahim_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_brahim_exit_condition()
{
if(KAPITEL <= 2)
{
return TRUE;
};
};
func void dia_brahim_exit_info()
{
b_brahimnewmaps();
AI_StopProcessInfos(self);
};
instance DIA_BRAHIM_PICKPOCKET(C_INFO)
{
npc = vlk_437_brahim;
nr = 900;
condition = dia_brahim_pickpocket_condition;
information = dia_brahim_pickpocket_info;
permanent = TRUE;
description = PICKPOCKET_20;
};
func int dia_brahim_pickpocket_condition()
{
return c_beklauen(15,15);
};
func void dia_brahim_pickpocket_info()
{
Info_ClearChoices(dia_brahim_pickpocket);
Info_AddChoice(dia_brahim_pickpocket,DIALOG_BACK,dia_brahim_pickpocket_back);
Info_AddChoice(dia_brahim_pickpocket,DIALOG_PICKPOCKET,dia_brahim_pickpocket_doit);
};
func void dia_brahim_pickpocket_doit()
{
b_beklauen();
Info_ClearChoices(dia_brahim_pickpocket);
};
func void dia_brahim_pickpocket_back()
{
Info_ClearChoices(dia_brahim_pickpocket);
};
instance DIA_BRAHIM_GREET(C_INFO)
{
npc = vlk_437_brahim;
nr = 2;
condition = dia_brahim_greet_condition;
information = dia_brahim_greet_info;
permanent = FALSE;
description = "Co tady děláš?";
};
func int dia_brahim_greet_condition()
{
return TRUE;
};
func void dia_brahim_greet_info()
{
AI_Output(other,self,"DIA_Brahim_GREET_15_00"); //Co tady děláš?
AI_Output(self,other,"DIA_Brahim_GREET_07_01"); //Jmenuji se Brahim. Kreslím mapy a pak je prodávám.
AI_Output(self,other,"DIA_Brahim_GREET_07_02"); //Tys tu nový, a tak by se ti nějaká mapa města jistě hodila.
AI_Output(self,other,"DIA_Brahim_GREET_07_03"); //Je poměrně levná a bude se ti dost hodit, dokud se tu úplně nezorientuješ.
Log_CreateTopic(TOPIC_CITYTRADER,LOG_NOTE);
b_logentry(TOPIC_CITYTRADER,"Brahim kreslí a prodává mapy. Sídlí poblíž přístavu.");
};
instance DIA_ADDON_BRAHIM_MISSINGPEOPLE(C_INFO)
{
npc = vlk_437_brahim;
nr = 5;
condition = dia_addon_brahim_missingpeople_condition;
information = dia_addon_brahim_missingpeople_info;
description = "Je to pravda, že obyvatelé tohohle města mizejí bez jakékoli stopy?";
};
func int dia_addon_brahim_missingpeople_condition()
{
if((SC_HEAREDABOUTMISSINGPEOPLE == TRUE) && (ENTERED_ADDONWORLD == FALSE))
{
return TRUE;
};
};
func void dia_addon_brahim_missingpeople_info()
{
AI_Output(other,self,"DIA_Addon_Brahim_MissingPeople_15_00"); //Je to pravda, že obyvatelé tohohle města mizejí bez jakékoli stopy?
AI_Output(self,other,"DIA_Addon_Brahim_MissingPeople_07_01"); //Hej, taky sem o tom slyšel. Bohužel, nemůžu říct, jestli jsou ty příbehy pravdivé.
AI_Output(self,other,"DIA_Addon_Brahim_MissingPeople_07_02"); //Jen se koukni okolo. Tohle skutečně není místo kde bys chtel žít navždy, co?
AI_Output(self,other,"DIA_Addon_Brahim_MissingPeople_07_03"); //Žáden div, že lidé odcházejí.
};
instance DIA_BRAHIM_BUY(C_INFO)
{
npc = vlk_437_brahim;
nr = 9;
condition = dia_brahim_buy_condition;
information = dia_brahim_buy_info;
permanent = TRUE;
trade = TRUE;
description = "Ukaž mi své mapy.";
};
func int dia_brahim_buy_condition()
{
if(Npc_KnowsInfo(hero,dia_brahim_greet))
{
return TRUE;
};
};
func void dia_brahim_buy_info()
{
b_givetradeinv(self);
AI_Output(other,self,"DIA_Brahim_BUY_15_00"); //Ukaž mi své mapy.
if(hero.guild == GIL_KDF)
{
AI_Output(self,other,"DIA_Brahim_BUY_07_01"); //Lepší nenajdeš ani v tom svém klášteře.
};
if(hero.guild == GIL_PAL)
{
AI_Output(self,other,"DIA_Brahim_BUY_07_02"); //Dobré mapy jsou důležité, zvláště pro ty, kdo přicházejí z pevniny, mistře paladine.
};
BRAHIM_SHOWEDMAPS = TRUE;
};
instance DIA_BRAHIM_KAP3_EXIT(C_INFO)
{
npc = vlk_437_brahim;
nr = 999;
condition = dia_brahim_kap3_exit_condition;
information = dia_brahim_kap3_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_brahim_kap3_exit_condition()
{
if((KAPITEL >= 3) && (Npc_KnowsInfo(other,dia_brahim_kap3_first_exit) || (Npc_HasItems(other,itwr_shatteredgolem_mis) == 0)))
{
return TRUE;
};
};
func void dia_brahim_kap3_exit_info()
{
if(KAPITEL <= 4)
{
b_brahimnewmaps();
};
AI_StopProcessInfos(self);
};
instance DIA_BRAHIM_KAP3_FIRST_EXIT(C_INFO)
{
npc = vlk_437_brahim;
nr = 999;
condition = dia_brahim_kap3_first_exit_condition;
information = dia_brahim_kap3_first_exit_info;
permanent = FALSE;
description = DIALOG_ENDE;
};
func int dia_brahim_kap3_first_exit_condition()
{
if((KAPITEL >= 3) && (Npc_HasItems(other,itwr_shatteredgolem_mis) >= 1))
{
return TRUE;
};
};
func void dia_brahim_kap3_first_exit_info()
{
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_07_00"); //Já věděl, že tě tenhle kousek bude zajímat.
AI_Output(other,self,"DIA_Brahim_Kap3_First_EXIT_15_01"); //Jaký kousek?
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_07_02"); //No, ta stará mapa, kterou sis právě koupil.
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_07_03"); //Znám takové, jako jsi ty. Nepropásnete jedinou šanci, jak přijít k bohatství.
Info_ClearChoices(dia_brahim_kap3_first_exit);
Info_AddChoice(dia_brahim_kap3_first_exit,DIALOG_BACK,dia_brahim_kap3_first_exit_back);
Info_AddChoice(dia_brahim_kap3_first_exit,"Jak jsi získal tenhle dokument?",dia_brahim_kap3_first_exit_wheregetit);
Info_AddChoice(dia_brahim_kap3_first_exit,"Co je to za dokument?",dia_brahim_kap3_first_exit_content);
Info_AddChoice(dia_brahim_kap3_first_exit,"Proč si ji nenecháš sám?",dia_brahim_kap3_first_exit_keepit);
};
func void dia_brahim_kap3_first_exit_back()
{
Info_ClearChoices(dia_brahim_kap3_first_exit);
};
func void dia_brahim_kap3_first_exit_wheregetit()
{
AI_Output(other,self,"DIA_Brahim_Kap3_First_EXIT_WhereGetIt_15_00"); //Kde jsi získal tuhle mapu?
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_WhereGetIt_07_01"); //No, našel jsem ji ve štosu starých map, který jsem nedávno koupil.
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_WhereGetIt_07_02"); //Ten, kdo ji prodával, ji musel přehlédnout.
};
func void dia_brahim_kap3_first_exit_content()
{
AI_Output(other,self,"DIA_Brahim_Kap3_First_EXIT_Content_15_00"); //Co je to za mapu?
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_Content_07_01"); //Vypadá to jako nějaká mapa k pokladu.
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_Content_07_02"); //Ty mi ale připadáš jako někdo, kdo by něčemu takovému mohl přijít na kloub.
};
func void dia_brahim_kap3_first_exit_keepit()
{
AI_Output(other,self,"DIA_Brahim_Kap3_First_EXIT_KeepIt_15_00"); //Proč si ji nenecháš sám?
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_KeepIt_07_01"); //Jsem už starý a časy, kdy jsem vyrážel na výpravy, už jsou dávno pryč.
AI_Output(self,other,"DIA_Brahim_Kap3_First_EXIT_KeepIt_07_02"); //Teď už to nechávám na mladších.
};
|
D
|
<?xml version="1.0" encoding="UTF-8"?>
<di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi">
<pageList>
<availablePage>
<emfPageIdentifier href="tinkergraph.notation#_vuFDkNWaEeK7NLjWHR0vxw"/>
</availablePage>
<availablePage>
<emfPageIdentifier href="tinkergraph.notation#_Oh51wNWeEeKvx-CpQtHgtA"/>
</availablePage>
<availablePage>
<emfPageIdentifier href="tinkergraph.notation#_Ru-1wNWeEeKvx-CpQtHgtA"/>
</availablePage>
<availablePage>
<emfPageIdentifier href="tinkergraph.notation#_Uk3dwNWeEeKvx-CpQtHgtA"/>
</availablePage>
<availablePage>
<emfPageIdentifier href="tinkergraph.notation#_e5R9EPZ9EeKXi9pM4yg14w"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="tinkergraph.notation#_Uk3dwNWeEeKvx-CpQtHgtA"/>
</children>
<children>
<emfPageIdentifier href="tinkergraph.notation#_e5R9EPZ9EeKXi9pM4yg14w"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
|
D
|
// Implementation is in internal\object.d
module object;
alias bool bit;
alias typeof(int.sizeof) size_t;
alias typeof(cast(void*)0 - cast(void*)0) ptrdiff_t;
alias size_t hash_t;
alias invariant(char)[] string;
alias invariant(wchar)[] wstring;
alias invariant(dchar)[] dstring;
extern (C)
{
int printf(in char *, ...);
void trace_term();
}
class Object
{
void print();
string toString();
hash_t toHash();
int opCmp(Object o);
int opEquals(Object o);
final void notifyRegister(void delegate(Object) dg);
final void notifyUnRegister(void delegate(Object) dg);
static Object factory(string classname);
}
struct Interface
{
ClassInfo classinfo;
void *[] vtbl;
int offset; // offset to Interface 'this' from Object 'this'
}
class ClassInfo : Object
{
byte[] init; // class static initializer
string name; // class name
void *[] vtbl; // virtual function pointer table
Interface[] interfaces;
ClassInfo base;
void *destructor;
void (*classInvariant)(Object);
uint flags;
// 1: // is IUnknown or is derived from IUnknown
// 2: // has no possible pointers into GC memory
// 4: // has offTi[] member
// 8: // has constructors
// 16: // has xgetMembers member
void *deallocator;
OffsetTypeInfo[] offTi;
void* defaultConstructor; // default Constructor
const(MemberInfo[]) function(string) xgetMembers;
static ClassInfo find(string classname);
Object create();
const(MemberInfo[]) getMembers(string);
}
struct OffsetTypeInfo
{
size_t offset;
TypeInfo ti;
}
class TypeInfo
{
hash_t getHash(in void *p);
int equals(in void *p1, in void *p2);
int compare(in void *p1, in void *p2);
size_t tsize();
void swap(void *p1, void *p2);
TypeInfo next();
void[] init();
uint flags();
// 1: // has possible pointers into GC memory
OffsetTypeInfo[] offTi();
}
class TypeInfo_Typedef : TypeInfo
{
TypeInfo base;
string name;
void[] m_init;
}
class TypeInfo_Enum : TypeInfo_Typedef
{
}
class TypeInfo_Pointer : TypeInfo
{
TypeInfo m_next;
}
class TypeInfo_Array : TypeInfo
{
TypeInfo value;
}
class TypeInfo_StaticArray : TypeInfo
{
TypeInfo value;
size_t len;
}
class TypeInfo_AssociativeArray : TypeInfo
{
TypeInfo value;
TypeInfo key;
}
class TypeInfo_Function : TypeInfo
{
TypeInfo next;
}
class TypeInfo_Delegate : TypeInfo
{
TypeInfo next;
}
class TypeInfo_Class : TypeInfo
{
ClassInfo info;
}
class TypeInfo_Interface : TypeInfo
{
ClassInfo info;
}
class TypeInfo_Struct : TypeInfo
{
string name;
void[] m_init;
uint function(in void*) xtoHash;
int function(in void*, in void*) xopEquals;
int function(in void*, in void*) xopCmp;
string function(const(void)*) xtoString;
uint m_flags;
const(MemberInfo[]) function(string) xgetMembers;
}
class TypeInfo_Tuple : TypeInfo
{
TypeInfo[] elements;
}
class TypeInfo_Const : TypeInfo
{
TypeInfo next;
}
class TypeInfo_Invariant : TypeInfo_Const
{
}
abstract class MemberInfo
{
string name();
}
class MemberInfo_field : MemberInfo
{
this(string name, TypeInfo ti, size_t offset);
override string name();
TypeInfo typeInfo();
size_t offset();
}
class MemberInfo_function : MemberInfo
{
enum
{ Virtual = 1,
Member = 2,
Static = 4,
}
this(string name, TypeInfo ti, void* fp, uint flags);
override string name();
TypeInfo typeInfo();
void* fp();
uint flags();
}
// Recoverable errors
class Exception : Object
{
string msg;
Exception next;
this(string msg);
this(string msg, Error next);
override void print();
override string toString();
}
// Non-recoverable errors
class Error : Exception
{
this(string msg);
this(string msg, Error next);
}
|
D
|
/**
License:
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
Authors:
aermicioi
**/
/**
License:
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
Authors:
Alexandru Ermicioi
**/
module aermicioi.aedi_property_reader.test.sdlang.convertor;
import std.meta;
import std.exception;
import std.datetime;
import sdlang;
import sdlang.ast;
import sdlang.token;
import aermicioi.aedi_property_reader.convertor.exception : NotFoundException, InvalidCastException;
import aermicioi.aedi_property_reader.convertor.placeholder;
import aermicioi.aedi_property_reader.sdlang.convertor;
unittest {
TagConvertor tagConvertor = new TagConvertor;
AttributeConvertor attributeConvertor = new AttributeConvertor;
Tag root = parseSource(q{
valid null true 1 2L 3.0f 4.0 5.0BD "string" 'c'
date-full 2015/12/06 12:00:00-UTC
date-local 2015/12/06 12:00:00.000
date 2015/12/06
duration 12:14:34
ubyte-array [c3RyaW5n]
attribute nullable=null bool=true int=1 long=2L float=3.0f double=4.0 real=5.0BD string="string" dchar='c' date-full=2015/12/06 12:00:00-UTC date-local=2015/12/06 12:00:00.000 date=2015/12/06 duration=12:14:34 ubyte-array=[c3RyaW5n]
});
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(typeof(null))).unpack!(typeof(null)) == null);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(bool)).unpack!(bool) == true);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(int)).unpack!(int) == 1);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(long)).unpack!(long) == 2L);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(float)).unpack!(float) == 3.0);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(double)).unpack!(double) == 4.0);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(real)).unpack!(real) == 5.0);
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(string)).unpack!(string) == "string");
assert(tagConvertor.convert(root.tags["valid"].front.pack, typeid(dchar)).unpack!(dchar) == 'c');
assert(tagConvertor.convert(root.tags["date"].front.pack, typeid(Date)).unpack!(Date) == Date(2015, 12, 06));
assert(tagConvertor.convert(root.tags["date-local"].front.pack, typeid(DateTimeFrac)).unpack!(DateTimeFrac) == DateTimeFrac(DateTime(Date(2015, 12, 06), TimeOfDay(12, 00, 00)), dur!"seconds"(0)));
assert(tagConvertor.convert(root.tags["date-full"].front.pack, typeid(SysTime)).unpack!(SysTime) == SysTime(DateTime(Date(2015, 12, 06), TimeOfDay(12, 00, 00)), UTC()));
assert(tagConvertor.convert(root.tags["duration"].front.pack, typeid(Duration)).unpack!(Duration).total!"seconds" == ((12*60+14)*60+34));
assert(tagConvertor.convert(root.tags["ubyte-array"].front.pack, typeid(ubyte[])).unpack!(ubyte[]) == cast(ubyte[]) "string");
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["nullable"].front.pack, typeid(typeof(null))).unpack!(typeof(null)) == null);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["bool"].front.pack, typeid(bool)).unpack!(bool) == true);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["int"].front.pack, typeid(int)).unpack!(int) == 1);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["long"].front.pack, typeid(long)).unpack!(long) == 2L);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["float"].front.pack, typeid(float)).unpack!(float) == 3.0);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["double"].front.pack, typeid(double)).unpack!(double) == 4.0);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["real"].front.pack, typeid(real)).unpack!(real) == 5.0);
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["string"].front.pack, typeid(string)).unpack!(string) == "string");
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["dchar"].front.pack, typeid(dchar)).unpack!(dchar) == 'c');
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["date"].front.pack, typeid(Date)).unpack!(Date) == Date(2015, 12, 06));
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["date-local"].front.pack, typeid(DateTimeFrac)).unpack!(DateTimeFrac) == DateTimeFrac(DateTime(Date(2015, 12, 06), TimeOfDay(12, 00, 00)), dur!"seconds"(0)));
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["date-full"].front.pack, typeid(SysTime)).unpack!(SysTime) == SysTime(DateTime(Date(2015, 12, 06), TimeOfDay(12, 00, 00)), UTC()));
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["duration"].front.pack, typeid(Duration)).unpack!(Duration).total!"seconds" == ((12*60+14)*60+34));
assert(attributeConvertor.convert(root.tags["attribute"].front.attributes["ubyte-array"].front.pack, typeid(ubyte[])).unpack!(ubyte[]) == cast(ubyte[]) "string");
}
|
D
|
/*******************************************************************************************
*
* raygui v2.5 - A simple and easy-to-use immedite-mode-gui library
*
* DESCRIPTION:
*
* raygui is a tools-dev-focused immediate-mode-gui library based on raylib but also possible
* to be used as a standalone library, as long as input and drawing functions are provided.
*
* Controls provided:
*
* # Container/separators Controls
* - WindowBox
* - GroupBox
* - Line
* - Panel
*
* # Basic Controls
* - Label
* - Button
* - LabelButton --> Label
* - ImageButton --> Button
* - ImageButtonEx --> Button
* - Toggle
* - ToggleGroup --> Toggle
* - CheckBox
* - ComboBox
* - DropdownBox
* - TextBox
* - TextBoxMulti
* - ValueBox --> TextBox
* - Spinner --> Button, ValueBox
* - Slider
* - SliderBar --> Slider
* - ProgressBar
* - StatusBar
* - ScrollBar
* - ScrollPanel
* - DummyRec
* - Grid
*
* # Advance Controls
* - ListView --> ListElement
* - ColorPicker --> ColorPanel, ColorBarHue
* - MessageBox --> Label, Button
* - TextInputBox --> Label, TextBox, Button
*
* It also provides a set of functions for styling the controls based on its properties (size, color).
*
* CONFIGURATION:
*
* #define RAYGUI_IMPLEMENTATION
* Generates the implementation of the library into the included file.
* If not defined, the library is in header only mode and can be included in other headers
* or source files without problems. But only ONE file should hold the implementation.
*
* #define RAYGUI_STATIC (defined by default)
* The generated implementation will stay private inside implementation file and all
* internal symbols and functions will only be visible inside that file.
*
* #define RAYGUI_STANDALONE
* Avoid raylib.h header inclusion in this file. Data types defined on raylib are defined
* internally in the library and input management and drawing functions must be provided by
* the user (check library implementation for further details).
*
* #define RAYGUI_RICONS_SUPPORT
* Includes ricons.h header defining a set of 128 icons (binary format) to be used on
* multiple controls and following raygui styles
*
* #define RAYGUI_TEXTBOX_EXTENDED
* Enables the advance GuiTextBox()/GuiValueBox()/GuiSpinner() implementation with
* text selection support and text copy/cut/paste support
*
* VERSIONS HISTORY:
* 2.5 (28-May-2019) Implemented extended GuiTextBox(), GuiValueBox(), GuiSpinner()
* 2.3 (29-Apr-2019) Added rIcons auxiliar library and support for it, multiple controls reviewed
* Refactor all controls drawing mechanism to use control state
* 2.2 (05-Feb-2019) Added GuiScrollBar(), GuiScrollPanel(), reviewed GuiListView(), removed Gui*Ex() controls
* 2.1 (26-Dec-2018) Redesign of GuiCheckBox(), GuiComboBox(), GuiDropdownBox(), GuiToggleGroup() > Use combined text string
* Complete redesign of style system (breaking change)
* 2.0 (08-Nov-2018) Support controls guiLock and custom fonts, reviewed GuiComboBox(), GuiListView()...
* 1.9 (09-Oct-2018) Controls review: GuiGrid(), GuiTextBox(), GuiTextBoxMulti(), GuiValueBox()...
* 1.8 (01-May-2018) Lot of rework and redesign to align with rGuiStyler and rGuiLayout
* 1.5 (21-Jun-2017) Working in an improved styles system
* 1.4 (15-Jun-2017) Rewritten all GUI functions (removed useless ones)
* 1.3 (12-Jun-2017) Redesigned styles system
* 1.1 (01-Jun-2017) Complete review of the library
* 1.0 (07-Jun-2016) Converted to header-only by Ramon Santamaria.
* 0.9 (07-Mar-2016) Reviewed and tested by Albert Martos, Ian Eito, Sergio Martinez and Ramon Santamaria.
* 0.8 (27-Aug-2015) Initial release. Implemented by Kevin Gato, Daniel Nicolás and Ramon Santamaria.
*
* CONTRIBUTORS:
* Ramon Santamaria: Supervision, review, redesign, update and maintenance...
* Vlad Adrian: Complete rewrite of GuiTextBox() to support extended features (2019)
* Sergio Martinez: Review, testing (2015) and redesign of multiple controls (2018)
* Adria Arranz: Testing and Implementation of additional controls (2018)
* Jordi Jorba: Testing and Implementation of additional controls (2018)
* Albert Martos: Review and testing of the library (2015)
* Ian Eito: Review and testing of the library (2015)
* Kevin Gato: Initial implementation of basic components (2014)
* Daniel Nicolas: Initial implementation of basic components (2014)
*
*
* LICENSE: zlib/libpng
*
* Copyright (c) 2014-2019 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose, including commercial
* applications, and to alter it and redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not claim that you
* wrote the original software. If you use this software in a product, an acknowledgment
* in the product documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and must not be misrepresented
* as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
*
**********************************************************************************************/
module raygui;
import raylib;
///Current Raygui version.
enum RAYGUI_VERSION = "2.5-dev";
//Following https://github.com/raysan5/raygui/blob/75769bdd6bba6e5ac335ef596dbef9fe8a7e41d0/src/raygui.h
// We are building raygui as a Win32 shared library (.dll).
// We are using raygui as a Win32 shared library (.dll)
// Functions visible from other files (no name mangling of functions in C++) // Functions visible from other files
// Functions just visible to module including this file
// Required for: atoi()
//----------------------------------------------------------------------------------
// Defines and Macros
//----------------------------------------------------------------------------------
/// Vertical alignment for pixel perfect
auto VALIGN_OFFSET(T)(auto ref T h) {
return cast(int) h % 2;
}
/// Text edit controls cursor blink timming
enum TEXTEDIT_CURSOR_BLINK_FRAMES = 20;
/// Number of standard controls
enum NUM_CONTROLS = 16;
/// Number of standard properties
enum NUM_PROPS_DEFAULT = 16;
/// Number of extended properties
enum NUM_PROPS_EXTENDED = 8;
//----------------------------------------------------------------------------------
// Types and Structures Definition
// NOTE: Some types are required for RAYGUI_STANDALONE usage
//----------------------------------------------------------------------------------
// Boolean type
// Vector2 type
// Vector3 type
// Color type, RGBA (32bit)
// Rectangle type
// Texture2D type
// Font type
// Gui text box state data
// Cursor position in text
// Text start position (from where we begin drawing the text)
// Text start index (index inside the text of `start` always in sync)
// Marks position of cursor when selection has started
/// Gui control state
enum GuiControlState
{
GUI_STATE_NORMAL = 0,
GUI_STATE_FOCUSED = 1,
GUI_STATE_PRESSED = 2,
GUI_STATE_DISABLED = 3
}
/// Gui control text alignment
enum GuiTextAlignment
{
GUI_TEXT_ALIGN_LEFT = 0,
GUI_TEXT_ALIGN_CENTER = 1,
GUI_TEXT_ALIGN_RIGHT = 2
}
/// Gui controls
enum GuiControl
{
DEFAULT = 0,
LABEL = 1, // LABELBUTTON
BUTTON = 2, // IMAGEBUTTON
TOGGLE = 3, // TOGGLEGROUP
SLIDER = 4, // SLIDERBAR
PROGRESSBAR = 5,
CHECKBOX = 6,
COMBOBOX = 7,
DROPDOWNBOX = 8,
TEXTBOX = 9, // TEXTBOXMULTI
VALUEBOX = 10,
SPINNER = 11,
LISTVIEW = 12,
COLORPICKER = 13,
SCROLLBAR = 14,
RESERVED = 15
}
/// Gui base properties for every control
enum GuiControlProperty
{
BORDER_COLOR_NORMAL = 0,
BASE_COLOR_NORMAL = 1,
TEXT_COLOR_NORMAL = 2,
BORDER_COLOR_FOCUSED = 3,
BASE_COLOR_FOCUSED = 4,
TEXT_COLOR_FOCUSED = 5,
BORDER_COLOR_PRESSED = 6,
BASE_COLOR_PRESSED = 7,
TEXT_COLOR_PRESSED = 8,
BORDER_COLOR_DISABLED = 9,
BASE_COLOR_DISABLED = 10,
TEXT_COLOR_DISABLED = 11,
BORDER_WIDTH = 12,
INNER_PADDING = 13,
TEXT_ALIGNMENT = 14,
RESERVED02 = 15
}
// Gui extended properties depend on control
// NOTE: We reserve a fixed size of additional properties per control
/// DEFAULT properties
enum GuiDefaultProperty
{
TEXT_SIZE = 16,
TEXT_SPACING = 17,
LINE_COLOR = 18,
BACKGROUND_COLOR = 19
}
/// Toggle / ToggleGroup
enum GuiToggleProperty
{
GROUP_PADDING = 16
}
/// Slider / SliderBar
enum GuiSliderProperty
{
SLIDER_WIDTH = 16,
TEXT_PADDING = 17
}
/// CheckBox
enum GuiCheckBoxProperty
{
CHECK_TEXT_PADDING = 16
}
/// ComboBox
enum GuiComboBoxProperty
{
SELECTOR_WIDTH = 16,
SELECTOR_PADDING = 17
}
/// DropdownBox
enum GuiDropdownBoxProperty
{
ARROW_RIGHT_PADDING = 16
}
/// TextBox / TextBoxMulti / ValueBox / Spinner
enum GuiTextBoxProperty
{
MULTILINE_PADDING = 16,
COLOR_SELECTED_FG = 17,
COLOR_SELECTED_BG = 18
}
enum GuiSpinnerProperty
{
SELECT_BUTTON_WIDTH = 16,
SELECT_BUTTON_PADDING = 17,
SELECT_BUTTON_BORDER_WIDTH = 18
}
/// ScrollBar
enum GuiScrollBarProperty
{
ARROWS_SIZE = 16,
SLIDER_PADDING = 17,
SLIDER_SIZE = 18,
SCROLL_SPEED = 19,
SHOW_SPINNER_BUTTONS = 20
}
/// ScrollBar side
enum GuiScrollBarSide
{
SCROLLBAR_LEFT_SIDE = 0,
SCROLLBAR_RIGHT_SIDE = 1
}
/// ListView
enum GuiListViewProperty
{
ELEMENTS_HEIGHT = 16,
ELEMENTS_PADDING = 17,
SCROLLBAR_WIDTH = 18,
SCROLLBAR_SIDE = 19 // This property defines vertical scrollbar side (SCROLLBAR_LEFT_SIDE or SCROLLBAR_RIGHT_SIDE)
}
/// ColorPicker
enum GuiColorPickerProperty
{
COLOR_SELECTOR_SIZE = 16,
BAR_WIDTH = 17, // Lateral bar width
BAR_PADDING = 18, // Lateral bar separation from panel
BAR_SELECTOR_HEIGHT = 19, // Lateral bar selector height
BAR_SELECTOR_PADDING = 20 // Lateral bar selector outer padding
}
/// Place enums into the global space. Example: Allows usage of both KeyboardKey.KEY_RIGHT and KEY_RIGHT.
private string _enum(E...)() {
import std.format : formattedWrite;
import std.traits : EnumMembers;
import std.array : appender;
auto writer = appender!string;
static foreach(T; E) {
static foreach(member; EnumMembers!T) {
writer.formattedWrite("alias %s = " ~ T.stringof ~ ".%s;\n", member, member);
}
}
return writer.data;
}
mixin(_enum!(GuiControlState, GuiTextAlignment, GuiControl, GuiControlProperty,
GuiDefaultProperty, GuiToggleProperty, GuiSliderProperty, GuiCheckBoxProperty,
GuiComboBoxProperty, GuiDropdownBoxProperty, GuiTextBoxProperty, GuiSpinnerProperty,
GuiScrollBarProperty, GuiScrollBarSide, GuiListViewProperty, GuiColorPickerProperty,
GuiPropertyElement));
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
// ...
//----------------------------------------------------------------------------------
// Module Functions Declaration
//----------------------------------------------------------------------------------
version(RAYGUI_LIB) {
// Global gui modification functions
void GuiEnable (); // Enable gui controls (global state)
void GuiDisable (); // Disable gui controls (global state)
void GuiLock (); // Lock gui controls (global state)
void GuiUnlock (); // Unlock gui controls (global state)
void GuiState (int state); // Set gui state (global state)
void GuiFont (Font font); // Set gui custom font (global state)
void GuiFade (float alpha); // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f
// Style set/get functions
void GuiSetStyle (int control, int property, int value); // Set one style property
int GuiGetStyle (int control, int property); // Get one style property
// GuiTextBox() extended functions
// Sets the active textbox
// Get bounds of active textbox
// Set cursor position of active textbox
// Get cursor position of active textbox
// Set selection of active textbox
// Get selection of active textbox (x - selection start y - selection length)
// Returns true if a textbox control with specified `bounds` is the active textbox
// Get state for the active textbox
// Set state for the active textbox (state must be valid else things will break)
// Select all characters in the active textbox (same as pressing `CTRL` + `A`)
// Copy selected text to clipboard from the active textbox (same as pressing `CTRL` + `C`)
// Paste text from clipboard into the textbox (same as pressing `CTRL` + `V`)
// Cut selected text in the active textbox and copy it to clipboard (same as pressing `CTRL` + `X`)
// Deletes a character or selection before from the active textbox (depending on `before`). Returns bytes deleted.
// Get the byte index for a character starting at position `from` with index `start` until position `to`.
// Container/separator controls, useful for controls organization
bool GuiWindowBox (Rectangle bounds, const(char)* text); // Window Box control, shows a window that can be closed
void GuiGroupBox (Rectangle bounds, const(char)* text); // Group Box control with title name
void GuiLine (Rectangle bounds, const(char)* text); // Line separator control, could contain text
void GuiPanel (Rectangle bounds); // Panel control, useful to group controls
Rectangle GuiScrollPanel (Rectangle bounds, Rectangle content, Vector2* scroll); // Scroll Panel control
// Basic controls set
void GuiLabel (Rectangle bounds, const(char)* text); // Label control, shows text
bool GuiButton (Rectangle bounds, const(char)* text); // Button control, returns true when clicked
bool GuiLabelButton (Rectangle bounds, const(char)* text); // Label button control, show true when clicked
bool GuiImageButton (Rectangle bounds, Texture2D texture); // Image button control, returns true when clicked
bool GuiImageButtonEx (Rectangle bounds, Texture2D texture, Rectangle texSource, const(char)* text); // Image button extended control, returns true when clicked
bool GuiToggle (Rectangle bounds, const(char)* text, bool active); // Toggle Button control, returns true when active
int GuiToggleGroup (Rectangle bounds, const(char)* text, int active); // Toggle Group control, returns active toggle index
bool GuiCheckBox (Rectangle bounds, const(char)* text, bool checked); // Check Box control, returns true when active
int GuiComboBox (Rectangle bounds, const(char)* text, int active); // Combo Box control, returns selected item index
bool GuiDropdownBox (Rectangle bounds, const(char)* text, int* active, bool editMode); // Dropdown Box control, returns selected item
bool GuiSpinner (Rectangle bounds, int* value, int minValue, int maxValue, bool editMode); // Spinner control, returns selected value
bool GuiValueBox (Rectangle bounds, int* value, int minValue, int maxValue, bool editMode); // Value Box control, updates input text with numbers
bool GuiTextBox (Rectangle bounds, char* text, int textSize, bool editMode); // Text Box control, updates input text
bool GuiTextBoxMulti (Rectangle bounds, char* text, int textSize, bool editMode); // Text Box control with multiple lines
float GuiSlider (Rectangle bounds, const(char)* text, float value, float minValue, float maxValue, bool showValue); // Slider control, returns selected value
float GuiSliderBar (Rectangle bounds, const(char)* text, float value, float minValue, float maxValue, bool showValue); // Slider Bar control, returns selected value
float GuiProgressBar (Rectangle bounds, const(char)* text, float value, float minValue, float maxValue, bool showValue); // Progress Bar control, shows current progress value
void GuiStatusBar (Rectangle bounds, const(char)* text); // Status Bar control, shows info text
void GuiDummyRec (Rectangle bounds, const(char)* text); // Dummy control for placeholders
int GuiScrollBar (Rectangle bounds, int value, int minValue, int maxValue); // Scroll Bar control
Vector2 GuiGrid (Rectangle bounds, float spacing, int subdivs); // Grid
// Advance controls set
bool GuiListView (Rectangle bounds, const(char)* text, int* active, int* scrollIndex, bool editMode); // List View control, returns selected list element index
bool GuiListViewEx (Rectangle bounds, const(char*)* text, int count, int* enabled, int* active, int* focus, int* scrollIndex, bool editMode); // List View with extended parameters
int GuiMessageBox (Rectangle bounds, const(char)* windowTitle, const(char)* message, const(char)* buttons); // Message Box control, displays a message
int GuiTextInputBox (Rectangle bounds, const(char)* windowTitle, const(char)* message, char* text, const(char)* buttons); // Text Input Box control, ask for text
Color GuiColorPicker (Rectangle bounds, Color color); // Color Picker control
// Styles loading functions
void GuiLoadStyle (const(char)* fileName); // Load style file (.rgs)
void GuiLoadStyleProps (const(int)* props, int count); // Load style properties from array
void GuiLoadStyleDefault (); // Load style default over global style
void GuiUpdateStyleComplete (); // Updates full style properties set with default values
/*
typedef GuiStyle (unsigned int *)
RAYGUIDEF GuiStyle LoadGuiStyle(const char *fileName); // Load style from file (.rgs)
RAYGUIDEF void UnloadGuiStyle(GuiStyle style); // Unload style
*/
const(char)* GuiIconText (int iconId, const(char)* text); // Get text with icon id prepended
}
// RAYGUI_H
/***********************************************************************************
*
* RAYGUI IMPLEMENTATION
*
************************************************************************************/
// Required for: raygui icons
// Required for: FILE, fopen(), fclose(), fprintf(), feof(), fscanf(), vsprintf()
// Required for: strlen() on GuiTextBox()
// Required for: va_list, va_start(), vfprintf(), va_end()
//----------------------------------------------------------------------------------
// Defines and Macros
//----------------------------------------------------------------------------------
//...
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
// Gui control property style element
enum GuiPropertyElement
{
BORDER = 0,
BASE = 1,
TEXT = 2,
OTHER = 3
}
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
__gshared GuiControlState guiState;
__gshared Font guiFont; // NOTE: Highly coupled to raylib
__gshared bool guiLocked;
__gshared float guiAlpha = 1.0f;
// Global gui style array (allocated on heap by default)
// NOTE: In raygui we manage a single int array with all the possible style properties.
// When a new style is loaded, it loads over the global style... but default gui style
// could always be recovered with GuiLoadStyleDefault()
__gshared uint[NUM_CONTROLS*(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED)] guiStyle;
__gshared bool guiStyleLoaded;
// Area of the currently active textbox
// Keeps state of the active textbox
//----------------------------------------------------------------------------------
// Standalone Mode Functions Declaration
//
// NOTE: raygui depend on some raylib input and drawing functions
// To use raygui as standalone library, below functions must be defined by the user
//----------------------------------------------------------------------------------
// White -- GuiColorBarAlpha()
// Black -- GuiColorBarAlpha()
// My own White (raylib logo)
// Gray -- GuiColorBarAlpha()
// raylib functions already implemented in raygui
//-------------------------------------------------------------------------------
// Returns a Color struct from hexadecimal value
// Returns hexadecimal value for a Color
// Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
// Check if point is inside rectangle
// Formatting of text with variables to 'embed'
//-------------------------------------------------------------------------------
// Input required functions
//-------------------------------------------------------------------------------
// -- GuiTextBox()
//-------------------------------------------------------------------------------
// Drawing required functions
//-------------------------------------------------------------------------------
/* TODO */
/* TODO */
/* TODO */ // -- GuiColorPicker()
// -- GuiColorPicker()
// -- GuiColorPicker()
// -- GuiColorPicker()
/* TODO */ // -- GuiDropdownBox()
/* TODO */ // -- GuiScrollBar()
// -- GuiImageButtonEx()
//-------------------------------------------------------------------------------
// Text required functions
//-------------------------------------------------------------------------------
// -- GetTextWidth()
// -- GetTextWidth(), GuiTextBoxMulti()
// -- GuiDrawText()
//-------------------------------------------------------------------------------
// RAYGUI_STANDALONE
//----------------------------------------------------------------------------------
// Module specific Functions Declaration
//----------------------------------------------------------------------------------
Vector3 ConvertHSVtoRGB (Vector3 hsv); // Convert color data from HSV to RGB
Vector3 ConvertRGBtoHSV (Vector3 rgb); // Convert color data from RGB to HSV
// TODO: GetTextSize()
/// Gui get text width using default font
private int GetTextWidth(string text) {
import std.string : empty, toStringz;
Vector2 size = Vector2(0.0f, 0.0f);
if(!text.empty) {
size = MeasureTextEx(guiFont, text.toStringz,
GuiGetStyle(GuiControl.DEFAULT, GuiDefaultProperty.TEXT_SIZE),
GuiGetStyle(GuiControl.DEFAULT, GuiDefaultProperty.TEXT_SPACING));
}
// TODO: Consider text icon width here???
return cast(int)size.x;
}
/// Get text bounds considering control bounds
private Rectangle GetTextBounds(int control, in Rectangle bounds) {
immutable border = GuiGetStyle(control, GuiControlProperty.BORDER_WIDTH);
immutable padding = GuiGetStyle(control, GuiControlProperty.INNER_PADDING);
Rectangle textBounds = Rectangle(
bounds.x + border + padding,
bounds.y + border + padding,
bounds.width - 2*(border + padding),
bounds.height- 2*(border + padding)
);
switch(control) {
case GuiControl.COMBOBOX:
textBounds.width -= (GuiGetStyle(control, GuiComboBoxProperty.SELECTOR_WIDTH) +
GuiGetStyle(control, GuiComboBoxProperty.SELECTOR_PADDING));
break;
case GuiControl.CHECKBOX:
textBounds.x += (bounds.width + GuiGetStyle(control, GuiCheckBoxProperty.CHECK_TEXT_PADDING));
break;
default:
break;
}
// TODO: Special cases (no label): COMBOBOX, DROPDOWNBOX, SPINNER, LISTVIEW (scrollbar?)
// More special cases (label side): CHECKBOX, SLIDER
return textBounds;
}
/// Get text icon if provided and move text cursor
string GetTextIcon(string text, out int iconId) {
version(RAYGUI_RICONS_SUPPORT) {
//TODO: Work out what's going on here.
if(text[0] == "#") {
//.scan(/#(\d{3})#/).first.first.to_i
}
}
return text;
}
/// Gui draw text using default font
void GuiDrawText(string text, Rectangle bounds, int alignment, Color tint) {
import std.string : empty, toStringz;
enum ICON_TEXT_PADDING = 4;
if(!text.empty) {
int iconId;
text = GetTextIcon(text, iconId); // Check text for icon and move cursor
// Get text position depending on alignment and iconId
//---------------------------------------------------------------------------------
Vector2 position = Vector2(bounds.x, bounds.y);
// NOTE: We get text size after icon been processed
int textWidth = GetTextWidth(text);
int textHeight = GuiGetStyle(DEFAULT, TEXT_SIZE);
version(RAYGUI_RICONS_SUPPORT) {
if (iconId > 0) {
textWidth += RICONS_SIZE;
// WARNING: If only icon provided, text could be pointing to eof character!
if(!text.empty) { textWidth += ICON_TEXT_PADDING; }
}
}
// Check guiTextAlign global variables
switch (alignment)
{
case GUI_TEXT_ALIGN_LEFT:
position.x = bounds.x;
position.y = bounds.y + bounds.height/2 - textHeight/2 + VALIGN_OFFSET(bounds.height);
break;
case GUI_TEXT_ALIGN_CENTER:
position.x = bounds.x + bounds.width/2 - textWidth/2;
position.y = bounds.y + bounds.height/2 - textHeight/2 + VALIGN_OFFSET(bounds.height);
break;
case GUI_TEXT_ALIGN_RIGHT:
position.x = bounds.x + bounds.width - textWidth;
position.y = bounds.y + bounds.height/2 - textHeight/2 + VALIGN_OFFSET(bounds.height);
break;
default: break;
}
//---------------------------------------------------------------------------------
// Draw text (with icon if available)
//---------------------------------------------------------------------------------
version(RAYGUI_RICONS_SUPPORT) {
if (iconId > 0) {
// NOTE: We consider icon height, probably different than text size
DrawIcon(iconId, Vector2(position.x, bounds.y + bounds.height/2 - RICONS_SIZE/2 + VALIGN_OFFSET(bounds.height)), 1, tint);
position.x += (RICONS_SIZE + ICON_TEXT_PADDING);
}
}
else {
DrawTextEx(guiFont, text.toStringz, position, GuiGetStyle(DEFAULT, TEXT_SIZE), GuiGetStyle(DEFAULT, TEXT_SPACING), tint);
}
//---------------------------------------------------------------------------------
}
}
//----------------------------------------------------------------------------------
// Module Functions Definition
//----------------------------------------------------------------------------------
/// Enable gui global state
void GuiEnable() { guiState = GuiControlState.GUI_STATE_NORMAL; }
/// Disable gui global state
void GuiDisable() { guiState = GuiControlState.GUI_STATE_DISABLED; }
/// Lock gui global state
void GuiLock() { guiLocked = true; }
/// Unlock gui global state
void GuiUnlock() { guiLocked = false; };
/// Set gui state (global state)
void GuiState (int state) { guiState = cast(GuiControlState)state; }
/// Define custom gui font
void GuiFont(Font font) {
if(font.texture.id > 0) {
guiFont = font;
GuiSetStyle(GuiControl.DEFAULT, GuiDefaultProperty.TEXT_SIZE, font.baseSize);
}
}
/// Set gui controls alpha global state
void GuiFade(float alpha) {
import std.algorithm : clamp;
guiAlpha = alpha.clamp(0.0f, 1.0f);
}
/// Set control style property value
void GuiSetStyle (int control, int property, int value) {
if(!guiStyleLoaded) { GuiLoadStyleDefault(); }
guiStyle[control*(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED) + property] = value;
}
/// Get control style property value
int GuiGetStyle (int control, int property) {
if(!guiStyleLoaded) { GuiLoadStyleDefault(); }
return guiStyle[control*(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED) + property];
}
/// Window Box control
bool GuiWindowBox (Rectangle bounds, string text) {
enum WINDOW_CLOSE_BUTTON_PADDING = 2;
enum WINDOW_STATUSBAR_HEIGHT = 24;
GuiControlState state = guiState;
bool clicked;
immutable borderWidth = GuiGetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_WIDTH);
immutable statusBar = Rectangle(bounds.x, bounds.y, bounds.width, WINDOW_STATUSBAR_HEIGHT);
immutable buttonRec = Rectangle(statusBar.x + statusBar.width - borderWidth - WINDOW_CLOSE_BUTTON_PADDING - 20,
statusBar.y + borderWidth + WINDOW_CLOSE_BUTTON_PADDING, 18, 18);
if (bounds.height < WINDOW_STATUSBAR_HEIGHT*2) bounds.height = WINDOW_STATUSBAR_HEIGHT*2;
// Update control
//--------------------------------------------------------------------
// NOTE: Logic is directly managed by button
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// Draw window base
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(GuiControl.DEFAULT, GuiPropertyElement.BORDER + (state*3))), guiAlpha));
DrawRectangleRec(Rectangle(bounds.x + borderWidth, bounds.y + borderWidth,
bounds.width - borderWidth*2, bounds.height - borderWidth*2),
Fade(GetColor(GuiGetStyle(GuiControl.DEFAULT, GuiDefaultProperty.BACKGROUND_COLOR)), guiAlpha));
// Draw window header as status bar
immutable defaultPadding = GuiGetStyle(GuiControl.DEFAULT, GuiControlProperty.INNER_PADDING);
immutable defaultTextAlign = GuiGetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_ALIGNMENT);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.INNER_PADDING, 8);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_LEFT);
GuiStatusBar(statusBar, text);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.INNER_PADDING, defaultPadding);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_ALIGNMENT, defaultTextAlign);
// Draw window close button
immutable tempBorderWidth = GuiGetStyle(GuiControl.BUTTON, GuiControlProperty.BORDER_WIDTH);
immutable tempTextAlignment = GuiGetStyle(GuiControl.BUTTON, GuiControlProperty.TEXT_ALIGNMENT);
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.BORDER_WIDTH, 1);
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_CENTER);
version(RAYGUI_RICONS_SUPPORT) { clicked = GuiButton(buttonRec, GuiIconText(RICON_CROSS_SMALL, NULL)); }
else { clicked = GuiButton(buttonRec, "x"); }
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.BORDER_WIDTH, tempBorderWidth);
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.TEXT_ALIGNMENT, tempTextAlignment);
//--------------------------------------------------------------------
return clicked;
}
//// Group Box control with title name
void GuiGroupBox (Rectangle bounds, string text) {
enum GROUPBOX_LINE_THICK = 1;
immutable state = guiState;
immutable color = (state == GUI_STATE_DISABLED) ? BORDER_COLOR_DISABLED : LINE_COLOR;
auto fade = GuiGetStyle(GuiControl.DEFAULT, color).GetColor.Fade(guiAlpha);
// Draw control
//--------------------------------------------------------------------
DrawRectangle(cast(int)bounds.x, cast(int)bounds.y, GROUPBOX_LINE_THICK, cast(int)bounds.height, fade);
DrawRectangle(cast(int)bounds.x, cast(int)(bounds.y + bounds.height - 1), cast(int)bounds.width, GROUPBOX_LINE_THICK, fade);
DrawRectangle(cast(int)(bounds.x + bounds.width - 1), cast(int)bounds.y, GROUPBOX_LINE_THICK, cast(int)bounds.height, fade);
GuiLine(Rectangle(cast(int)bounds.x, cast(int)bounds.y, cast(int)bounds.width, 1), text);
}
/// Line control
void GuiLine(Rectangle bounds, string text) {
import std.string : empty;
enum LINE_TEXT_PADDING = 10;
enum LINE_TEXT_SPACING = 2;
GuiControlState state = guiState;
immutable color = (state == GUI_STATE_DISABLED) ? BORDER_COLOR_DISABLED : LINE_COLOR;
auto fade = GuiGetStyle(GuiControl.DEFAULT, color).GetColor.Fade(guiAlpha);
// Draw control
//--------------------------------------------------------------------
if (text.empty) { DrawRectangle(cast(int)bounds.x, cast(int)(bounds.y + bounds.height/2), cast(int)bounds.width, 1, fade); }
else {
Rectangle textBounds;
textBounds.width = GetTextWidth(text) + 2*LINE_TEXT_SPACING; // TODO: Consider text icon
textBounds.height = GuiGetStyle(DEFAULT, TEXT_SIZE);
textBounds.x = bounds.x + LINE_TEXT_PADDING + LINE_TEXT_SPACING;
textBounds.y = bounds.y - GuiGetStyle(DEFAULT, TEXT_SIZE)/2;
// Draw line with embedded text label: "--- text --------------"
DrawRectangle(cast(int)bounds.x, cast(int)bounds.y, LINE_TEXT_PADDING, 1, fade);
GuiLabel(textBounds, text);
DrawRectangle(cast(int)(bounds.x + textBounds.width + LINE_TEXT_PADDING + 2*LINE_TEXT_SPACING), cast(int)bounds.y, cast(int)(bounds.width - (textBounds.width + LINE_TEXT_PADDING + 2*LINE_TEXT_SPACING)), 1, fade);
}
//--------------------------------------------------------------------
}
/// Panel control
void GuiPanel(Rectangle bounds) {
enum PANEL_BORDER_WIDTH = 1;
auto state = guiState;
// Draw control
//--------------------------------------------------------------------
DrawRectangleRec(bounds, Fade(GetColor(GuiGetStyle(DEFAULT, (state == GUI_STATE_DISABLED)? BASE_COLOR_DISABLED : BACKGROUND_COLOR)), guiAlpha));
DrawRectangleLinesEx(bounds, PANEL_BORDER_WIDTH, Fade(GetColor(GuiGetStyle(DEFAULT, (state == GUI_STATE_DISABLED)? BORDER_COLOR_DISABLED: LINE_COLOR)), guiAlpha));
//--------------------------------------------------------------------
}
/// Scroll Panel control
Rectangle GuiScrollPanel(Rectangle bounds, Rectangle content, ref Vector2 scroll) {
import std.algorithm : clamp;
auto state = guiState;
Vector2 scrollPos = scroll;
bool hasHorizontalScrollBar = (content.width > bounds.width - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH))? true : false;
bool hasVerticalScrollBar = (content.height > bounds.height - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH))? true : false;
// Recheck to account for the other scrollbar being visible
if (!hasHorizontalScrollBar) hasHorizontalScrollBar = (hasVerticalScrollBar && (content.width > (bounds.width - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH))))? true : false;
if (!hasVerticalScrollBar) hasVerticalScrollBar = (hasHorizontalScrollBar && (content.height > (bounds.height - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH))))? true : false;
const horizontalScrollBarWidth = hasHorizontalScrollBar? GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH) : 0;
const verticalScrollBarWidth = hasVerticalScrollBar? GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH) : 0;
const Rectangle horizontalScrollBar = { ((GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)? bounds.x + verticalScrollBarWidth : bounds.x) + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.y + bounds.height - horizontalScrollBarWidth - GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.width - verticalScrollBarWidth - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH), horizontalScrollBarWidth };
const Rectangle verticalScrollBar = { ((GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)? bounds.x + GuiGetStyle(DEFAULT, BORDER_WIDTH) : bounds.x + bounds.width - verticalScrollBarWidth - GuiGetStyle(DEFAULT, BORDER_WIDTH)), bounds.y + GuiGetStyle(DEFAULT, BORDER_WIDTH), verticalScrollBarWidth, bounds.height - horizontalScrollBarWidth - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) };
// Calculate view area (area without the scrollbars)
Rectangle view = (GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)?
Rectangle(bounds.x + verticalScrollBarWidth + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.y + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.width - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - verticalScrollBarWidth, bounds.height - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - horizontalScrollBarWidth) :
Rectangle(bounds.x + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.y + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.width - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - verticalScrollBarWidth, bounds.height - 2*GuiGetStyle(DEFAULT, BORDER_WIDTH) - horizontalScrollBarWidth);
// Clip view area to the actual content size
view.width = view.width.clamp(0, content.width);
view.height = view.height.clamp(0, content.height);
// TODO: Review!
const horizontalMin = hasHorizontalScrollBar? ((GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)? -verticalScrollBarWidth : 0) - GuiGetStyle(DEFAULT, BORDER_WIDTH) : ((GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)? -verticalScrollBarWidth : 0) - GuiGetStyle(DEFAULT, BORDER_WIDTH);
const horizontalMax = hasHorizontalScrollBar? content.width - bounds.width + verticalScrollBarWidth + GuiGetStyle(DEFAULT, BORDER_WIDTH) - ((GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE)? verticalScrollBarWidth : 0) : -GuiGetStyle(DEFAULT, BORDER_WIDTH);
const verticalMin = hasVerticalScrollBar? -GuiGetStyle(DEFAULT, BORDER_WIDTH) : -GuiGetStyle(DEFAULT, BORDER_WIDTH);
const verticalMax = hasVerticalScrollBar? content.height - bounds.height + horizontalScrollBarWidth + GuiGetStyle(DEFAULT, BORDER_WIDTH) : -GuiGetStyle(DEFAULT, BORDER_WIDTH);
// Update control
//--------------------------------------------------------------------
if ((state != GUI_STATE_DISABLED) && !guiLocked)
{
auto mousePoint = GetMousePosition();
// Check button state
if (CheckCollisionPointRec(mousePoint, bounds))
{
if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) state = GUI_STATE_PRESSED;
else state = GUI_STATE_FOCUSED;
if (hasHorizontalScrollBar)
{
if (IsKeyDown(KEY_RIGHT)) scrollPos.x -= GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
if (IsKeyDown(KEY_LEFT)) scrollPos.x += GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
}
if (hasVerticalScrollBar)
{
if (IsKeyDown(KEY_DOWN)) scrollPos.y -= GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
if (IsKeyDown(KEY_UP)) scrollPos.y += GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
}
scrollPos.y += GetMouseWheelMove()*20;
}
}
// Normalize scroll values
if (scrollPos.x > -horizontalMin) scrollPos.x = -horizontalMin;
if (scrollPos.x < -horizontalMax) scrollPos.x = -horizontalMax;
if (scrollPos.y > -verticalMin) scrollPos.y = -verticalMin;
if (scrollPos.y < -verticalMax) scrollPos.y = -verticalMax;
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleRec(bounds, GetColor(GuiGetStyle(DEFAULT, BACKGROUND_COLOR))); // Draw background
// Save size of the scrollbar slider
const int slider = GuiGetStyle(SCROLLBAR, SLIDER_SIZE);
// Draw horizontal scrollbar if visible
if (hasHorizontalScrollBar)
{
// Change scrollbar slider size to show the diff in size between the content width and the widget width
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, cast(int)(((bounds.width - 2 * GuiGetStyle(DEFAULT, BORDER_WIDTH) - verticalScrollBarWidth)/content.width)*(bounds.width - 2 * GuiGetStyle(DEFAULT, BORDER_WIDTH) - verticalScrollBarWidth)));
scrollPos.x = -GuiScrollBar(horizontalScrollBar, cast(int)-scrollPos.x, cast(int)horizontalMin, cast(int)horizontalMax);
}
// Draw vertical scrollbar if visible
if (hasVerticalScrollBar)
{
// Change scrollbar slider size to show the diff in size between the content height and the widget height
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, cast(int)(((bounds.height - 2 * GuiGetStyle(DEFAULT, BORDER_WIDTH) - horizontalScrollBarWidth)/content.height)* (bounds.height - 2 * GuiGetStyle(DEFAULT, BORDER_WIDTH) - horizontalScrollBarWidth)));
scrollPos.y = -GuiScrollBar(verticalScrollBar, cast(int)-scrollPos.y, cast(int)verticalMin, cast(int)verticalMax);
}
// Draw detail corner rectangle if both scroll bars are visible
if (hasHorizontalScrollBar && hasVerticalScrollBar)
{
// TODO: Consider scroll bars side
DrawRectangleRec(Rectangle(horizontalScrollBar.x + horizontalScrollBar.width + 2,
verticalScrollBar.y + verticalScrollBar.height + 2,
horizontalScrollBarWidth - 4, verticalScrollBarWidth - 4),
Fade(GetColor(GuiGetStyle(LISTVIEW, TEXT + (state*3))), guiAlpha));
}
// Set scrollbar slider size back to the way it was before
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, slider);
// Draw scrollbar lines depending on current state
DrawRectangleLinesEx(bounds, GuiGetStyle(DEFAULT, BORDER_WIDTH), Fade(GetColor(GuiGetStyle(LISTVIEW, BORDER + (state*3))), guiAlpha));
//--------------------------------------------------------------------
scroll = scrollPos;
return view;
}
/// Label control
void GuiLabel (Rectangle bounds, string text) {
auto state = guiState;
immutable color = (state == GUI_STATE_DISABLED) ? TEXT_COLOR_DISABLED : TEXT_COLOR_NORMAL;
auto fade = GuiGetStyle(GuiControl.LABEL, color).GetColor.Fade(guiAlpha);
// Update control
//--------------------------------------------------------------------
// ...
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
GuiDrawText(text, GetTextBounds(LABEL, bounds), GuiGetStyle(LABEL, TEXT_ALIGNMENT), fade);
//--------------------------------------------------------------------
}
/// Button control, returns true when clicked
bool GuiButton (Rectangle bounds, string text) {
auto state = guiState;
immutable borderWidth = GuiGetStyle(BUTTON, BORDER_WIDTH);
immutable pressed = bounds.LeftClicked(state);
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(BUTTON, BORDER + (state*3))), guiAlpha));
DrawRectangleRec(Rectangle(bounds.x + borderWidth,
bounds.y + borderWidth,
bounds.width - 2*borderWidth,
bounds.height - 2*borderWidth),
Fade(GetColor(GuiGetStyle(BUTTON, BASE + (state*3))), guiAlpha));
GuiDrawText(text, GetTextBounds(BUTTON, bounds), GuiGetStyle(BUTTON, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(BUTTON, TEXT + (state*3))), guiAlpha));
//------------------------------------------------------------------
return pressed;
}
/// Determine whether something has been clicked.
private bool LeftClicked(in Rectangle bounds, ref GuiControlState state) {
bool clicked;
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
// Check checkbox state
if(CheckCollisionPointRec(mousePoint, bounds)) {
if(IsMouseButtonDown(MOUSE_LEFT_BUTTON)) { state = GUI_STATE_PRESSED; }
else if(IsMouseButtonReleased(MOUSE_LEFT_BUTTON)) { clicked = true; }
else { state = GUI_STATE_FOCUSED; }
}
}
return clicked;
}
/// Label button control
bool GuiLabelButton (Rectangle bounds, string text) {
auto state = guiState;
auto clicked = bounds.LeftClicked(state);
auto fade = GuiGetStyle(LABEL, TEXT + (state*3)).GetColor.Fade(guiAlpha);
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
GuiDrawText(text, GetTextBounds(LABEL, bounds), GuiGetStyle(LABEL, TEXT_ALIGNMENT), fade);
//--------------------------------------------------------------------
return clicked;
}
/// Image button control, returns true when clicked
bool GuiImageButton (Rectangle bounds, Texture2D texture) {
return GuiImageButtonEx(bounds, texture, Rectangle(0, 0, texture.width, texture.height), "");
}
/// Image button control, returns true when clicked
bool GuiImageButtonEx (Rectangle bounds, Texture2D texture, Rectangle texSource, string text) {
auto state = guiState;
auto clicked = bounds.LeftClicked(state);
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, GuiGetStyle(BUTTON, BORDER_WIDTH), Fade(GetColor(GuiGetStyle(BUTTON, BORDER + (state*3))), guiAlpha));
DrawRectangle(cast(int)(bounds.x + GuiGetStyle(BUTTON, BORDER_WIDTH)), cast(int)(bounds.y + GuiGetStyle(BUTTON, BORDER_WIDTH)), cast(int)(bounds.width - 2*GuiGetStyle(BUTTON, BORDER_WIDTH)), cast(int)(bounds.height - 2*GuiGetStyle(BUTTON, BORDER_WIDTH)), Fade(GetColor(GuiGetStyle(BUTTON, BASE + (state*3))), guiAlpha));
if (text !is "") GuiDrawText(text, GetTextBounds(BUTTON, bounds), GuiGetStyle(BUTTON, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(BUTTON, TEXT + (state*3))), guiAlpha));
if (texture.id > 0) DrawTextureRec(texture, texSource, Vector2(bounds.x + bounds.width/2 - (texSource.width + GuiGetStyle(BUTTON, INNER_PADDING)/2)/2, bounds.y + bounds.height/2 - texSource.height/2), Fade(GetColor(GuiGetStyle(BUTTON, TEXT + (state*3))), guiAlpha));
//------------------------------------------------------------------
return clicked;
}
/// Toggle Button control, returns true when active
bool GuiToggle(Rectangle bounds, string text, bool active) {
auto state = guiState;
immutable borderWidth = GuiGetStyle(TOGGLE, BORDER_WIDTH);
immutable textAlignment = GuiGetStyle(TOGGLE, TEXT_ALIGNMENT);
// Update control.
if(bounds.LeftClicked(state)) { active = !active; }
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
immutable Rectangle toggleView = { bounds.x + borderWidth, bounds.y + borderWidth, bounds.width - 2*borderWidth, bounds.height - 2*borderWidth };
if (state == GUI_STATE_NORMAL) {
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(TOGGLE, (active? BORDER_COLOR_PRESSED : (BORDER + state*3)))), guiAlpha));
DrawRectangleRec(toggleView, Fade(GetColor(GuiGetStyle(TOGGLE, (active? BASE_COLOR_PRESSED : (BASE + state*3)))), guiAlpha));
GuiDrawText(text, GetTextBounds(TOGGLE, bounds), textAlignment, Fade(GetColor(GuiGetStyle(TOGGLE, (active? TEXT_COLOR_PRESSED : (TEXT + state*3)))), guiAlpha));
}
else {
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(TOGGLE, BORDER + state*3)), guiAlpha));
DrawRectangleRec(toggleView, Fade(GetColor(GuiGetStyle(TOGGLE, BASE + state*3)), guiAlpha));
GuiDrawText(text, GetTextBounds(TOGGLE, bounds), textAlignment, Fade(GetColor(GuiGetStyle(TOGGLE, TEXT + state*3)), guiAlpha));
}
//--------------------------------------------------------------------
return active;
}
/// Toggle Group control, returns toggled button index
int GuiToggleGroup(Rectangle bounds, string text, int active) {
immutable initBoundsX = bounds.x;
immutable padding = GuiGetStyle(TOGGLE, GROUP_PADDING);
// Get substrings elements from text (elements pointers)
string[] elements = text.GuiTextSplit();
string prevRow = elements[0];
foreach(i, element; elements)
{
if (prevRow != element) {
bounds.x = initBoundsX;
bounds.y += (bounds.height + padding);
prevRow = element;
}
if(i == active) { GuiToggle(bounds, element, true); }
else if(GuiToggle(bounds, element, false) == true) { active = i; }
bounds.x += (bounds.width + padding);
}
return active;
}
/// Check Box control, returns true when active
bool GuiCheckBox(Rectangle bounds, string text, bool checked) {
auto state = guiState;
Rectangle textBounds;
immutable textPadding = GuiGetStyle(CHECKBOX, CHECK_TEXT_PADDING);
immutable controlPadding = GuiGetStyle(CHECKBOX, INNER_PADDING);
immutable borderWidth = GuiGetStyle(CHECKBOX, BORDER_WIDTH);
textBounds.x = bounds.x + bounds.width + textPadding;
textBounds.y = bounds.y + bounds.height/2 - GuiGetStyle(DEFAULT, TEXT_SIZE)/2;
textBounds.width = GetTextWidth(text); // TODO: Consider text icon
textBounds.height = GuiGetStyle(DEFAULT, TEXT_SIZE);
// Update control
//--------------------------------------------------------------------
if(bounds.LeftClicked(state)) { checked = !checked; }
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(CHECKBOX, BORDER + (state*3))), guiAlpha));
if(checked) {
DrawRectangleRec(Rectangle(bounds.x + borderWidth + controlPadding,
bounds.y + borderWidth + controlPadding,
bounds.width - 2*(borderWidth + controlPadding),
bounds.height - 2*(borderWidth + controlPadding)),
Fade(GetColor(GuiGetStyle(CHECKBOX, TEXT + state*3)), guiAlpha));
}
// NOTE: Forced left text alignment
GuiDrawText(text, textBounds, GUI_TEXT_ALIGN_LEFT, Fade(GetColor(GuiGetStyle(LABEL, TEXT + (state*3))), guiAlpha));
//--------------------------------------------------------------------
return checked;
}
/// Combo Box control, returns selected item index
int GuiComboBox(Rectangle bounds, string text, int active) {
import std.algorithm : clamp;
import std.string : fromStringz;
auto state = guiState;
immutable comboWidth = GuiGetStyle(COMBOBOX, SELECTOR_WIDTH);
immutable comboPadding = GuiGetStyle(COMBOBOX, SELECTOR_PADDING);
immutable comboBorderWidth = GuiGetStyle(COMBOBOX, BORDER_WIDTH);
bounds.width -= (comboWidth + comboPadding);
Rectangle selector = Rectangle(bounds.x + bounds.width + comboPadding, bounds.y, comboWidth, bounds.height);
// Get substrings elements from text (elements pointers, lengths and count)
auto elements = text.GuiTextSplit();
immutable elementCount = (elements.length - 1) > 0 ? elements.length - 1 : 0;
active = active.clamp(0, elementCount);
// Update control
//--------------------------------------------------------------------
if(bounds.LeftClicked(state)) { active = ((active + 1) >= elements.length) ? 0 : active + 1; }
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// Draw combo box main
DrawRectangleLinesEx(bounds, comboBorderWidth, Fade(GetColor(GuiGetStyle(COMBOBOX, BORDER + (state*3))), guiAlpha));
DrawRectangle(cast(int)(bounds.x + comboBorderWidth),
cast(int)(bounds.y + comboBorderWidth),
cast(int)(bounds.width - 2*comboBorderWidth),
cast(int)(bounds.height - 2*comboBorderWidth),
Fade(GetColor(GuiGetStyle(COMBOBOX, BASE + (state*3))), guiAlpha));
GuiDrawText(elements[active], GetTextBounds(COMBOBOX, bounds), GuiGetStyle(COMBOBOX, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(COMBOBOX, TEXT + (state*3))), guiAlpha));
// Draw selector using a custom button
// NOTE: BORDER_WIDTH and TEXT_ALIGNMENT forced values
immutable tempBorderWidth = GuiGetStyle(BUTTON, BORDER_WIDTH);
immutable tempTextAlign = GuiGetStyle(BUTTON, TEXT_ALIGNMENT);
GuiSetStyle(BUTTON, BORDER_WIDTH, 1);
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
GuiButton(selector, cast(string)TextFormat("%i/%i", active + 1, elements.length).fromStringz);
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, tempTextAlign);
GuiSetStyle(BUTTON, BORDER_WIDTH, tempBorderWidth);
//--------------------------------------------------------------------
return active;
}
/// Dropdown Box control, returns selected item
bool GuiDropdownBox(Rectangle bounds, string text, ref int active, bool editMode) {
auto state = guiState;
bool pressed;
int auxActive = active;
const elements = text.GuiTextSplit();
Rectangle closeBounds = bounds;
Rectangle openBounds = bounds;
openBounds.height *= elements.length + 1;
if(guiLocked && editMode) { guiLocked = false; }
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
if(editMode) { state = GUI_STATE_PRESSED; }
if(!editMode) {
if(CheckCollisionPointRec(mousePoint, closeBounds)) {
if(IsMouseButtonDown(MOUSE_LEFT_BUTTON)) { state = GUI_STATE_PRESSED; }
if(IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) { pressed = true; }
else { state = GUI_STATE_FOCUSED; }
}
}
else {
if (CheckCollisionPointRec(mousePoint, closeBounds)) {
if(IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) { pressed = true; }
}
else if(!CheckCollisionPointRec(mousePoint, openBounds)) {
if(IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsMouseButtonReleased(MOUSE_LEFT_BUTTON)) { pressed = true; }
}
}
}
// Draw control
//--------------------------------------------------------------------
// TODO: Review this ugly hack... DROPDOWNBOX depends on GuiListElement() that uses DEFAULT_TEXT_ALIGNMENT
immutable tempTextAlign = GuiGetStyle(DEFAULT, TEXT_ALIGNMENT);
immutable dropDownPadding = GuiGetStyle(DROPDOWNBOX, INNER_PADDING);
GuiSetStyle(DEFAULT, TEXT_ALIGNMENT, GuiGetStyle(DROPDOWNBOX, TEXT_ALIGNMENT));
switch (state) {
case GUI_STATE_NORMAL:
DrawRectangleRec(bounds, Fade(GetColor(GuiGetStyle(DROPDOWNBOX, BASE_COLOR_NORMAL)), guiAlpha));
DrawRectangleLinesEx(bounds, GuiGetStyle(DROPDOWNBOX, BORDER_WIDTH), Fade(GetColor(GuiGetStyle(DROPDOWNBOX, BORDER_COLOR_NORMAL)), guiAlpha));
GuiListElement(bounds, elements[auxActive], false, false);
break;
case GUI_STATE_FOCUSED:
GuiListElement(bounds, elements[auxActive], false, editMode);
break;
case GUI_STATE_PRESSED:
if(!editMode) { GuiListElement(bounds, elements[auxActive], true, true); }
if (editMode) {
GuiPanel(openBounds);
GuiListElement(bounds, elements[auxActive], true, true);
foreach(i, element; elements) {
Rectangle listRect = { bounds.x, bounds.y + bounds.height*(i+1) + dropDownPadding, bounds.width, bounds.height - dropDownPadding };
if (i == auxActive && editMode) {
if (GuiListElement(listRect, element, true, true) == false) { pressed = true; }
}
else {
if(GuiListElement(listRect, element, false, true)) {
auxActive = i;
pressed = true;
}
}
}
}
break;
case GUI_STATE_DISABLED:
DrawRectangleRec(bounds, Fade(GetColor(GuiGetStyle(DROPDOWNBOX, BASE_COLOR_DISABLED)), guiAlpha));
DrawRectangleLinesEx(bounds, GuiGetStyle(DROPDOWNBOX, BORDER_WIDTH), Fade(GetColor(GuiGetStyle(DROPDOWNBOX, BORDER_COLOR_DISABLED)), guiAlpha));
GuiListElement(bounds, elements[auxActive], false, false);
break;
default: break;
}
GuiSetStyle(DEFAULT, TEXT_ALIGNMENT, tempTextAlign);
immutable arrowPadding = GuiGetStyle(DROPDOWNBOX, ARROW_RIGHT_PADDING);
// TODO: Avoid this function, use icon instead or 'v'
DrawTriangle(Vector2(bounds.x + bounds.width - arrowPadding, bounds.y + bounds.height/2 - 2),
Vector2(bounds.x + bounds.width - arrowPadding + 5, bounds.y + bounds.height/2 - 2 + 5),
Vector2(bounds.x + bounds.width - arrowPadding + 10, bounds.y + bounds.height/2 - 2),
Fade(GetColor(GuiGetStyle(DROPDOWNBOX, TEXT + (state*3))), guiAlpha));
//--------------------------------------------------------------------
active = auxActive;
return pressed;
}
/// Spinner control, returns selected value
bool GuiSpinner(Rectangle bounds, ref int value, int minValue, int maxValue, bool editMode) {
import std.algorithm : clamp;
bool pressed;
int tempValue = value;
immutable selectWidth = GuiGetStyle(SPINNER, SELECT_BUTTON_WIDTH);
immutable selectPadding = GuiGetStyle(SPINNER, SELECT_BUTTON_PADDING);
Rectangle spinner = { bounds.x + selectWidth + selectPadding, bounds.y, bounds.width - 2*(selectWidth + selectPadding), bounds.height };
Rectangle leftButtonBound = { bounds.x, bounds.y, selectWidth, bounds.height };
Rectangle rightButtonBound = { bounds.x + bounds.width - selectWidth, bounds.y, selectWidth, bounds.height };
// Update control
//--------------------------------------------------------------------
if (!editMode) {
tempValue = tempValue.clamp(minValue, maxValue);
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// TODO: Set Spinner properties for ValueBox
pressed = GuiValueBox(spinner, tempValue, minValue, maxValue, editMode);
// Draw value selector custom buttons
// NOTE: BORDER_WIDTH and TEXT_ALIGNMENT forced values
immutable tempBorderWidth = GuiGetStyle(BUTTON, BORDER_WIDTH);
GuiSetStyle(BUTTON, BORDER_WIDTH, GuiGetStyle(SPINNER, BORDER_WIDTH));
immutable tempTextAlign = GuiGetStyle(BUTTON, TEXT_ALIGNMENT);
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
version(RAYGUI_RICONS_SUPPORT) {
if (GuiButton(leftButtonBound, GuiIconText(RICON_ARROW_LEFT_FILL, NULL))) { tempValue--; }
if (GuiButton(rightButtonBound, GuiIconText(RICON_ARROW_RIGHT_FILL, NULL))) { tempValue++; }
}
else {
if (GuiButton(leftButtonBound, "<")) { tempValue--; }
if (GuiButton(rightButtonBound, ">")) { tempValue++; }
}
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, tempTextAlign);
GuiSetStyle(BUTTON, BORDER_WIDTH, tempBorderWidth);
//--------------------------------------------------------------------
value = tempValue;
return pressed;
}
/// Value Box control, updates input text with numbers
bool GuiValueBox(Rectangle bounds, ref int value, int minValue, int maxValue, bool editMode) {
import std.conv : to, parse;
import std.algorithm : clamp;
enum VALUEBOX_MAX_CHARS = 32;
auto text = value.to!string;
bool pressed = GuiTextBox(bounds, text, VALUEBOX_MAX_CHARS, editMode);
try { value = text.parse!int; } catch(Exception) { value = minValue; }
value = value.clamp(minValue, maxValue);
return pressed;
}
/// Text Box control, updates input text
bool GuiTextBox(Rectangle bounds, ref string text, int textSize, bool editMode) {
static int framesCounter = 0; // Required for blinking cursor
auto state = guiState;
bool pressed;
immutable borderWidth = GuiGetStyle(TEXTBOX, BORDER_WIDTH);
// Update control
//--------------------------------------------------------------------
if((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
if(editMode) {
state = GUI_STATE_PRESSED;
framesCounter++;
immutable key = GetKeyPressed();
int keyCount = text.length;
// Only allow keys in range [32..125]
if (keyCount < (textSize - 1)) {
immutable maxWidth = (bounds.width - (GuiGetStyle(DEFAULT, INNER_PADDING)*2));
if (text.GetTextWidth() < (maxWidth - GuiGetStyle(DEFAULT, TEXT_SIZE))) {
if (((key >= 32) && (key <= 125)) || ((key >= 128) && (key < 255))) {
text ~= key;
keyCount++;
}
}
}
// Delete text
if (keyCount > 0) {
if (IsKeyPressed(KEY_BACKSPACE)) {
text.length--;
framesCounter = 0;
}
else if (IsKeyDown(KEY_BACKSPACE)) {
if ((framesCounter > TEXTEDIT_CURSOR_BLINK_FRAMES) && (framesCounter%2) == 0) { text.length--; }
}
import std.algorithm : clamp;
text.length = text.length.clamp(0, textSize);
}
}
if (!editMode) {
if (CheckCollisionPointRec(mousePoint, bounds)) {
state = GUI_STATE_FOCUSED;
if (IsMouseButtonPressed(0)) { pressed = true; }
}
}
else {
if (IsKeyPressed(KEY_ENTER) || (!CheckCollisionPointRec(mousePoint, bounds) && IsMouseButtonPressed(0))) {
pressed = true;
}
}
if (pressed) { framesCounter = 0; }
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(TEXTBOX, BORDER + (state*3))), guiAlpha));
if (state == GUI_STATE_PRESSED) {
DrawRectangleRec(Rectangle(bounds.x + borderWidth, bounds.y + borderWidth, bounds.width - 2*borderWidth, bounds.height - 2*borderWidth), Fade(GetColor(GuiGetStyle(TEXTBOX, BASE_COLOR_PRESSED)), guiAlpha));
// Draw blinking cursor
if (editMode && ((framesCounter/20)%2 == 0)) {
DrawRectangleRec(Rectangle(bounds.x + GuiGetStyle(TEXTBOX, INNER_PADDING) + GetTextWidth(text) + 2 + bounds.width/2*GuiGetStyle(TEXTBOX, TEXT_ALIGNMENT), bounds.y + bounds.height/2 - GuiGetStyle(DEFAULT, TEXT_SIZE), 1, GuiGetStyle(DEFAULT, TEXT_SIZE)*2), Fade(GetColor(GuiGetStyle(TEXTBOX, BORDER_COLOR_PRESSED)), guiAlpha));
}
}
else if (state == GUI_STATE_DISABLED) {
DrawRectangleRec(Rectangle(bounds.x + borderWidth, bounds.y + borderWidth, bounds.width - 2*borderWidth, bounds.height - 2*borderWidth), Fade(GetColor(GuiGetStyle(TEXTBOX, BASE_COLOR_DISABLED)), guiAlpha));
}
GuiDrawText(text, GetTextBounds(TEXTBOX, bounds), GuiGetStyle(TEXTBOX, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(TEXTBOX, TEXT + (state*3))), guiAlpha));
//--------------------------------------------------------------------
return pressed;
}
/// Text Box control with multiple lines
bool GuiTextBoxMulti(Rectangle bounds, ref string text, int textSize, bool editMode) {
import std.string : lastIndexOf;
import std.string : toStringz;
import std.format : formattedWrite;
import std.array : array, appender;
import std.conv : to;
static int framesCounter = 0; // Required for blinking cursor
auto state = guiState;
bool pressed = false;
bool textHasChange = false;
int currentLine = 0;
immutable textBoxPadding = GuiGetStyle(TEXTBOX, INNER_PADDING);
immutable textBoxSize = GuiGetStyle(DEFAULT, TEXT_SIZE);
immutable textBoxBorderW = GuiGetStyle(TEXTBOX, BORDER_WIDTH);
auto writer = appender!string;
auto newLineIndex = 0;
auto end = textSize > text.length ? text.length : textSize;
string newChar;
writer.reserve(textSize + 2);
// Update control
//--------------------------------------------------------------------
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
if (editMode) {
state = GUI_STATE_PRESSED;
framesCounter++;
int keyCount = text.length;
immutable maxWidth = (bounds.width - (textBoxPadding*2));
immutable maxHeight = (bounds.height - (textBoxPadding*2));
//numChars = TextFormat("%i/%i", keyCount, textSize - 1);
// Only allow keys in range [32..125]
if (keyCount < (textSize - 1)) {
immutable key = GetKeyPressed();
if (MeasureTextEx(guiFont, text.toStringz, textBoxSize, 1).y < (maxHeight - textBoxSize)) {
if (IsKeyPressed(KEY_ENTER)) {
newChar = "\n";
keyCount++;
}
else if (((key >= 32) && (key <= 125)) || ((key >= 128) && (key < 255)))
{
newChar = cast(string)[key];
keyCount++;
textHasChange = true;
}
}
else if (GetTextWidth(text[text.lastIndexOf('\n')..$]) < (maxWidth - textBoxSize)) {
if (((key >= 32) && (key <= 125)) || ((key >= 128) && (key < 255))) {
newChar = cast(string)[key];
keyCount++;
textHasChange = true;
}
}
}
// Delete text
if (keyCount > 0) {
if (IsKeyPressed(KEY_BACKSPACE)) {
keyCount--;
end = keyCount;
framesCounter = 0;
textHasChange = true;
}
else if (IsKeyDown(KEY_BACKSPACE)) {
if ((framesCounter > TEXTEDIT_CURSOR_BLINK_FRAMES) && (framesCounter%2) == 0) { keyCount--; }
end = keyCount;
textHasChange = true;
}
}
// Introduce automatic new line if necessary
if (textHasChange) {
textHasChange = false;
if (text.GetTextWidth() >= maxWidth) {
immutable lastSpace = text.lastIndexOf(" ");
if (lastSpace != -1) {
newLineIndex = lastSpace + 1;
} else { newLineIndex = text.length - 1; }
}
}
writer.formattedWrite("%s%s%s%s",text[0..newLineIndex], (newLineIndex > 0 ? "\n" : ""), text[newLineIndex..end], newChar);
text = writer.data;
// Counting how many new lines
foreach(c; text) {
if(c == '\n') { currentLine++; }
}
}
// Changing edit mode
if (!editMode) {
if (CheckCollisionPointRec(mousePoint, bounds)) {
state = GUI_STATE_FOCUSED;
if (IsMouseButtonPressed(0)) { pressed = true; }
}
}
else {
if (!CheckCollisionPointRec(mousePoint, bounds) && IsMouseButtonPressed(0)) { pressed = true; }
}
if (pressed) { framesCounter = 0; }
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, textBoxBorderW, Fade(GetColor(GuiGetStyle(TEXTBOX, BORDER + (state*3))), guiAlpha));
if (state == GUI_STATE_PRESSED)
{
DrawRectangleRec(Rectangle(bounds.x + textBoxBorderW, bounds.y + textBoxBorderW, bounds.width - 2*textBoxBorderW, bounds.height - 2*textBoxBorderW), Fade(GetColor(GuiGetStyle(TEXTBOX, BASE_COLOR_PRESSED)), guiAlpha));
if (editMode) {
if ((framesCounter/20)%2 == 0) {
string line;
if (currentLine > 0) { line = text[text.lastIndexOf('\n')..$]; }
else { line = text; }
// Draw text cursor
DrawRectangleRec(Rectangle(bounds.x + textBoxBorderW + textBoxPadding + GetTextWidth(line),
bounds.y + textBoxBorderW + textBoxPadding/2 + ((GuiGetStyle(DEFAULT, TEXT_SIZE) + textBoxPadding)*currentLine),
1, GuiGetStyle(DEFAULT, TEXT_SIZE) + textBoxPadding), Fade(GetColor(GuiGetStyle(TEXTBOX, BORDER_COLOR_FOCUSED)), guiAlpha));
}
}
}
else if (state == GUI_STATE_DISABLED) {
DrawRectangleRec(Rectangle(bounds.x + textBoxBorderW, bounds.y + textBoxBorderW, bounds.width - 2*textBoxBorderW, bounds.height - 2*textBoxBorderW), Fade(GetColor(GuiGetStyle(TEXTBOX, BASE_COLOR_DISABLED)), guiAlpha));
}
GuiDrawText(text, GetTextBounds(TEXTBOX, bounds), GuiGetStyle(TEXTBOX, GUI_TEXT_ALIGN_LEFT), Fade(GetColor(GuiGetStyle(TEXTBOX, TEXT + (state*3))), guiAlpha));
//--------------------------------------------------------------------
return pressed;
}
/// Slider control with pro parameters
/// NOTE: Other GuiSlider*() controls use this one
float GuiSliderPro(Rectangle bounds, string text, float value, float minValue, float maxValue, int sliderWidth, bool showValue) {
import std.string : fromStringz;
import std.algorithm : clamp;
auto state = guiState;
immutable sliderBorderWidth = GuiGetStyle(SLIDER, BORDER_WIDTH);
immutable sliderPadding = GuiGetStyle(SLIDER, INNER_PADDING);
immutable sliderText = GuiGetStyle(DEFAULT, TEXT_SIZE);
immutable sliderValue = cast(int)(((value - minValue)/(maxValue - minValue))*(bounds.width - 2*sliderBorderWidth));
Rectangle slider = { bounds.x, bounds.y + sliderBorderWidth + sliderPadding,
0, bounds.height - 2*sliderBorderWidth - 2*sliderPadding };
if (sliderWidth > 0) // Slider
{
slider.x += (sliderValue - sliderWidth/2);
slider.width = sliderWidth;
}
else if (sliderWidth == 0) // SliderBar
{
slider.x += sliderBorderWidth;
slider.width = sliderValue;
}
Rectangle textBounds = { 0 };
textBounds.width = GetTextWidth(text); // TODO: Consider text icon
textBounds.height = GuiGetStyle(DEFAULT, TEXT_SIZE);
textBounds.x = bounds.x - textBounds.width - GuiGetStyle(SLIDER, TEXT_PADDING);
textBounds.y = bounds.y + bounds.height/2 - GuiGetStyle(DEFAULT, TEXT_SIZE)/2;
// Update control
//--------------------------------------------------------------------
if ((state != GUI_STATE_DISABLED) && !guiLocked)
{
auto mousePoint = GetMousePosition();
if (CheckCollisionPointRec(mousePoint, bounds))
{
if (IsMouseButtonDown(MOUSE_LEFT_BUTTON))
{
state = GUI_STATE_PRESSED;
// Get equivalent value and slider position from mousePoint.x
value = ((maxValue - minValue)*(mousePoint.x - cast(float)(bounds.x + sliderWidth/2)))/cast(float)(bounds.width - sliderWidth) + minValue;
if (sliderWidth > 0) slider.x = mousePoint.x - slider.width/2; // Slider
else if (sliderWidth == 0) slider.width = sliderValue; // SliderBar
}
else { state = GUI_STATE_FOCUSED; }
}
value = value.clamp(minValue, maxValue);
}
// Bar limits check
if (sliderWidth > 0) // Slider
{
if (slider.x <= (bounds.x + sliderBorderWidth)) slider.x = bounds.x + sliderBorderWidth;
else if ((slider.x + slider.width) >= (bounds.x + bounds.width)) slider.x = bounds.x + bounds.width - slider.width - sliderBorderWidth;
}
else if (sliderWidth == 0) // SliderBar
{
if (slider.width > bounds.width) slider.width = bounds.width - 2*sliderBorderWidth;
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds, sliderBorderWidth, Fade(GetColor(GuiGetStyle(SLIDER, BORDER + (state*3))), guiAlpha));
DrawRectangleRec(Rectangle(bounds.x + sliderBorderWidth, bounds.y + sliderBorderWidth, bounds.width - 2*sliderBorderWidth, bounds.height - 2*sliderBorderWidth), Fade(GetColor(GuiGetStyle(SLIDER, (state != GUI_STATE_DISABLED)? BASE_COLOR_NORMAL : BASE_COLOR_DISABLED)), guiAlpha));
// Draw slider internal bar (depends on state)
if ((state == GUI_STATE_NORMAL) || (state == GUI_STATE_PRESSED)) DrawRectangleRec(slider, Fade(GetColor(GuiGetStyle(SLIDER, BASE_COLOR_PRESSED)), guiAlpha));
else if (state == GUI_STATE_FOCUSED) DrawRectangleRec(slider, Fade(GetColor(GuiGetStyle(SLIDER, TEXT_COLOR_FOCUSED)), guiAlpha));
GuiDrawText(text, textBounds, GuiGetStyle(SLIDER, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(SLIDER, TEXT + (state*3))), guiAlpha));
// TODO: Review showValue parameter, really ugly...
if (showValue) GuiDrawText(cast(string)TextFormat("%.02f", value).fromStringz, Rectangle(bounds.x + bounds.width + GuiGetStyle(SLIDER, TEXT_PADDING),
bounds.y + bounds.height/2 - sliderText/2 + sliderPadding,
sliderText, sliderText), GUI_TEXT_ALIGN_LEFT,
Fade(GetColor(GuiGetStyle(SLIDER, TEXT + (state*3))), guiAlpha));
//--------------------------------------------------------------------
return value;
}
/// Slider control extended, returns selected value and has text
float GuiSlider(Rectangle bounds, string text, float value, float minValue, float maxValue, bool showValue) {
return GuiSliderPro(bounds, text, value, minValue, maxValue, GuiGetStyle(SLIDER, SLIDER_WIDTH), showValue);
}
/// Slider Bar control extended, returns selected value
float GuiSliderBar(Rectangle bounds, string text, float value, float minValue, float maxValue, bool showValue) {
return GuiSliderPro(bounds, text, value, minValue, maxValue, 0, showValue);
}
/// Progress Bar control extended, shows current progress value
float GuiProgressBar(Rectangle bounds, string text, float value, float minValue, float maxValue, bool showValue) {
import std.string : fromStringz;
auto state = guiState;
immutable borderWidth = GuiGetStyle(PROGRESSBAR, BORDER_WIDTH);
immutable progressPadding = GuiGetStyle(PROGRESSBAR, INNER_PADDING);
Rectangle progress = { bounds.x + borderWidth,
bounds.y + borderWidth + progressPadding, 0,
bounds.height - 2*borderWidth - 2*progressPadding };
// Update control
//--------------------------------------------------------------------
if (state != GUI_STATE_DISABLED) progress.width = cast(int)(value/(maxValue - minValue)*cast(float)(bounds.width - 2*borderWidth));
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
if (showValue) GuiLabel(Rectangle(bounds.x + bounds.width + GuiGetStyle(SLIDER, TEXT_PADDING), bounds.y + bounds.height/2 - GuiGetStyle(DEFAULT, TEXT_SIZE)/2 + GuiGetStyle(SLIDER, INNER_PADDING), GuiGetStyle(DEFAULT, TEXT_SIZE), GuiGetStyle(DEFAULT, TEXT_SIZE)), cast(string)TextFormat("%.02f", value).fromStringz);
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(PROGRESSBAR, BORDER + (state*3))), guiAlpha));
// Draw slider internal progress bar (depends on state)
if ((state == GUI_STATE_NORMAL) || (state == GUI_STATE_PRESSED)) DrawRectangleRec(progress, Fade(GetColor(GuiGetStyle(PROGRESSBAR, BASE_COLOR_PRESSED)), guiAlpha));
else if (state == GUI_STATE_FOCUSED) DrawRectangleRec(progress, Fade(GetColor(GuiGetStyle(PROGRESSBAR, TEXT_COLOR_FOCUSED)), guiAlpha));
//--------------------------------------------------------------------
return value;
}
// Status Bar control
void GuiStatusBar(Rectangle bounds, string text) {
auto state = guiState;
// Draw control
//--------------------------------------------------------------------
DrawRectangleLinesEx(bounds,
GuiGetStyle(DEFAULT, BORDER_WIDTH),
Fade(GetColor(GuiGetStyle(DEFAULT, (state != GUI_STATE_DISABLED)? BORDER_COLOR_NORMAL : BORDER_COLOR_DISABLED)),
guiAlpha));
DrawRectangleRec(Rectangle(bounds.x + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.y + GuiGetStyle(DEFAULT, BORDER_WIDTH), bounds.width - GuiGetStyle(DEFAULT, BORDER_WIDTH)*2, bounds.height - GuiGetStyle(DEFAULT, BORDER_WIDTH)*2), Fade(GetColor(GuiGetStyle(DEFAULT, (state != GUI_STATE_DISABLED)? BASE_COLOR_NORMAL : BASE_COLOR_DISABLED)), guiAlpha));
GuiDrawText(text, GetTextBounds(DEFAULT, bounds), GuiGetStyle(DEFAULT, TEXT_ALIGNMENT), Fade(GetColor(GuiGetStyle(DEFAULT, (state != GUI_STATE_DISABLED)? TEXT_COLOR_NORMAL : TEXT_COLOR_DISABLED)), guiAlpha));
//--------------------------------------------------------------------
}
/// Dummy rectangle control, intended for placeholding
void GuiDummyRec(Rectangle bounds, string text) {
auto state = guiState;
// Update control
//--------------------------------------------------------------------
bounds.LeftClicked(state);
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleRec(bounds, Fade(GetColor(GuiGetStyle(DEFAULT, (state != GUI_STATE_DISABLED)? BASE_COLOR_NORMAL : BASE_COLOR_DISABLED)), guiAlpha));
GuiDrawText(text, GetTextBounds(DEFAULT, bounds), GUI_TEXT_ALIGN_CENTER, Fade(GetColor(GuiGetStyle(BUTTON, (state != GUI_STATE_DISABLED)? TEXT_COLOR_NORMAL : TEXT_COLOR_DISABLED)), guiAlpha));
}
/// Scroll Bar control
int GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue) {
import std.algorithm : clamp;
auto state = guiState;
immutable scrollBarWidth = GuiGetStyle(SCROLLBAR, BORDER_WIDTH);
immutable scrollBarPadding = GuiGetStyle(SCROLLBAR, INNER_PADDING);
immutable sliderPadding = GuiGetStyle(SCROLLBAR, SLIDER_PADDING);
float sliderSize = GuiGetStyle(SCROLLBAR, SLIDER_SIZE);
// Is the scrollbar horizontal or vertical?
immutable isVertical = (bounds.width > bounds.height)? false : true;
// The size (width or height depending on scrollbar type) of the spinner buttons
immutable spinnerSize = GuiGetStyle(SCROLLBAR, SHOW_SPINNER_BUTTONS)? (isVertical? bounds.width - 2 * scrollBarWidth : bounds.height - 2 * scrollBarWidth) : 0;
// Spinner buttons [<] [>] [∧] [∨]
Rectangle spinnerUpLeft, spinnerDownRight;
// Actual area of the scrollbar excluding the spinner buttons
Rectangle scrollbar; // ------------
// Slider bar that moves --[///]-----
Rectangle slider;
// Normalize value
value = value.clamp(minValue, maxValue);
immutable range = maxValue - minValue;
// Calculate rectangles for all of the components
spinnerUpLeft = Rectangle(bounds.x + scrollBarWidth, bounds.y + scrollBarWidth, spinnerSize, spinnerSize);
if (isVertical) {
spinnerDownRight = Rectangle(bounds.x + scrollBarWidth, bounds.y + bounds.height - spinnerSize - scrollBarWidth, spinnerSize, spinnerSize);
scrollbar = Rectangle((bounds.x + scrollBarWidth + scrollBarPadding), spinnerUpLeft.y + spinnerUpLeft.height, bounds.width - 2*(scrollBarWidth + scrollBarPadding), bounds.height - spinnerUpLeft.height - spinnerDownRight.height - 2*scrollBarWidth);
sliderSize = (sliderSize >= scrollbar.height) ? (scrollbar.height - 2) : sliderSize; // Make sure the slider won't get outside of the scrollbar
slider = Rectangle(bounds.x + scrollBarWidth + sliderPadding, scrollbar.y + cast(int)((cast(float)(value - minValue)/range)*(scrollbar.height - sliderSize)), bounds.width - 2*(scrollBarWidth + sliderPadding), sliderSize);
}
else {
spinnerDownRight = Rectangle(bounds.x + bounds.width - spinnerSize - scrollBarWidth, bounds.y + scrollBarWidth, spinnerSize, spinnerSize);
scrollbar = Rectangle(spinnerUpLeft.x + spinnerUpLeft.width, bounds.y + scrollBarWidth + scrollBarPadding, bounds.width - spinnerUpLeft.width - spinnerDownRight.width - 2*scrollBarWidth, bounds.height - 2*(scrollBarWidth + scrollBarPadding));
sliderSize = (sliderSize >= scrollbar.width)? (scrollbar.width - 2) : sliderSize; // Make sure the slider won't get outside of the scrollbar
slider = Rectangle(scrollbar.x + cast(int)((cast(float)(value - minValue)/range)*(scrollbar.width - sliderSize)), bounds.y + scrollBarWidth + sliderPadding, sliderSize, bounds.height - 2*(scrollBarWidth + sliderPadding));
}
// Update control
//--------------------------------------------------------------------
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
if (CheckCollisionPointRec(mousePoint, bounds))
{
state = GUI_STATE_FOCUSED;
// Handle mouse wheel
immutable wheel = GetMouseWheelMove();
if (wheel != 0) value += wheel;
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
{
if (CheckCollisionPointRec(mousePoint, spinnerUpLeft)) value -= range/GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
else if (CheckCollisionPointRec(mousePoint, spinnerDownRight)) value += range/GuiGetStyle(SCROLLBAR, SCROLL_SPEED);
state = GUI_STATE_PRESSED;
}
else if (IsMouseButtonDown(MOUSE_LEFT_BUTTON))
{
if (!isVertical)
{
Rectangle scrollArea = { spinnerUpLeft.x + spinnerUpLeft.width, spinnerUpLeft.y, scrollbar.width, bounds.height - 2*scrollBarWidth };
if (CheckCollisionPointRec(mousePoint, scrollArea)) value = cast(int)((cast(float)(mousePoint.x - scrollArea.x - slider.width/2)*range)/(scrollArea.width - slider.width) + minValue);
}
else
{
Rectangle scrollArea = { spinnerUpLeft.x, spinnerUpLeft.y+spinnerUpLeft.height, bounds.width - 2*scrollBarWidth, scrollbar.height };
if (CheckCollisionPointRec(mousePoint, scrollArea)) value = cast(int)((cast(float)(mousePoint.y - scrollArea.y - slider.height/2)*range)/(scrollArea.height - slider.height) + minValue);
}
}
}
// Normalize value
value = value.clamp(minValue, maxValue);
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleRec(bounds, Fade(GetColor(GuiGetStyle(DEFAULT, BORDER_COLOR_DISABLED)), guiAlpha)); // Draw the background
DrawRectangleRec(scrollbar, Fade(GetColor(GuiGetStyle(BUTTON, BASE_COLOR_NORMAL)), guiAlpha)); // Draw the scrollbar active area background
DrawRectangleLinesEx(bounds, scrollBarWidth, Fade(GetColor(GuiGetStyle(LISTVIEW, BORDER + state*3)), guiAlpha));
DrawRectangleRec(slider, Fade(GetColor(GuiGetStyle(SLIDER, BORDER + state*3)), guiAlpha)); // Draw the slider bar
// Draw arrows using lines
immutable padding = (spinnerSize - GuiGetStyle(SCROLLBAR, ARROWS_SIZE))/2;
const Vector2[] lineCoords =
[
//coordinates for < 0,1,2
{spinnerUpLeft.x + padding, spinnerUpLeft.y + spinnerSize/2},
{spinnerUpLeft.x + spinnerSize - padding, spinnerUpLeft.y + padding },
{spinnerUpLeft.x + spinnerSize - padding, spinnerUpLeft.y + spinnerSize - padding},
//coordinates for > 3,4,5
{spinnerDownRight.x + padding, spinnerDownRight.y + padding},
{spinnerDownRight.x + spinnerSize - padding, spinnerDownRight.y + spinnerSize/2 },
{spinnerDownRight.x + padding, spinnerDownRight.y + spinnerSize - padding},
//coordinates for ∧ 6,7,8
{spinnerUpLeft.x + spinnerSize/2, spinnerUpLeft.y + padding},
{spinnerUpLeft.x + padding, spinnerUpLeft.y + spinnerSize - padding},
{spinnerUpLeft.x + spinnerSize - padding, spinnerUpLeft.y + spinnerSize - padding},
//coordinates for ∨ 9,10,11
{spinnerDownRight.x + padding, spinnerDownRight.y + padding},
{spinnerDownRight.x + spinnerSize/2, spinnerDownRight.y + spinnerSize - padding },
{spinnerDownRight.x + spinnerSize - padding, spinnerDownRight.y + padding}
];
Color lineColor = Fade(GetColor(GuiGetStyle(BUTTON, TEXT + state*3)), guiAlpha);
if (GuiGetStyle(SCROLLBAR, SHOW_SPINNER_BUTTONS))
{
if (isVertical)
{
// Draw ∧
DrawLineEx(lineCoords[6], lineCoords[7], 3.0f, lineColor);
DrawLineEx(lineCoords[6], lineCoords[8], 3.0f, lineColor);
// Draw ∨
DrawLineEx(lineCoords[9], lineCoords[10], 3.0f, lineColor);
DrawLineEx(lineCoords[11], lineCoords[10], 3.0f, lineColor);
}
else
{
// Draw <
DrawLineEx(lineCoords[0], lineCoords[1], 3.0f, lineColor);
DrawLineEx(lineCoords[0], lineCoords[2], 3.0f, lineColor);
// Draw >
DrawLineEx(lineCoords[3], lineCoords[4], 3.0f, lineColor);
DrawLineEx(lineCoords[5], lineCoords[4], 3.0f, lineColor);
}
}
//--------------------------------------------------------------------
return value;
}
/// List Element control, returns element state
bool GuiListElement(Rectangle bounds, string text, bool active, bool editMode) {
auto state = guiState;
if (!guiLocked && editMode) state = GUI_STATE_NORMAL;
// Update control
//--------------------------------------------------------------------
if(bounds.LeftClicked(state)) { active = !active; }
//--------------------------------------------------------------------
// Internal drawing function.
void drawElement(in GuiControlProperty list, in GuiControlProperty border) {
immutable viewColour = GuiGetStyle(LISTVIEW, list).GetColor.Fade(guiAlpha);
immutable borderColour = GuiGetStyle(LISTVIEW, border).GetColor.Fade(guiAlpha);
DrawRectangleRec(bounds, viewColour);
DrawRectangleLinesEx(bounds, GuiGetStyle(DEFAULT, BORDER_WIDTH), borderColour);
}
// Draw control
//--------------------------------------------------------------------
// Draw element rectangle
switch (state) {
case GUI_STATE_NORMAL:
if (active) { drawElement(GuiControlProperty.BASE_COLOR_PRESSED, GuiControlProperty.BORDER_COLOR_PRESSED); }
break;
case GUI_STATE_FOCUSED:
drawElement(GuiControlProperty.BASE_COLOR_FOCUSED, GuiControlProperty.BORDER_COLOR_FOCUSED);
break;
case GUI_STATE_PRESSED:
drawElement(GuiControlProperty.BASE_COLOR_PRESSED, GuiControlProperty.BORDER_COLOR_PRESSED);
break;
case GUI_STATE_DISABLED:
if (active) { drawElement(GuiControlProperty.BASE_COLOR_DISABLED, GuiControlProperty.BORDER_COLOR_NORMAL); }
break;
default: break;
}
immutable textBounds = GetTextBounds(DEFAULT, bounds);
immutable textAlignment = GuiGetStyle(DEFAULT, TEXT_ALIGNMENT);
// Draw text depending on state
if (state == GUI_STATE_NORMAL) { GuiDrawText(text, textBounds, textAlignment, Fade(GetColor(GuiGetStyle(LISTVIEW, active? TEXT_COLOR_PRESSED : TEXT_COLOR_NORMAL)), guiAlpha)); }
else if (state == GUI_STATE_DISABLED) { GuiDrawText(text, textBounds, textAlignment, Fade(GetColor(GuiGetStyle(LISTVIEW, active? TEXT_COLOR_NORMAL : TEXT_COLOR_DISABLED)), guiAlpha)); }
else { GuiDrawText(text, textBounds, textAlignment, Fade(GetColor(GuiGetStyle(LISTVIEW, TEXT + state*3)), guiAlpha)); }
//--------------------------------------------------------------------
return active;
}
/// List View control
bool GuiListView(Rectangle bounds, string text, ref int active, ref int scrollIndex, bool editMode) {
auto list = text.GuiTextSplit();
int enabled;
int focus;
return GuiListViewEx(bounds, list, list.length, enabled, active, focus, scrollIndex, editMode);
}
/// List View control extended parameters
/// NOTE: Elements could be disabled individually and focused element could be obtained:
/// int *enabled defines an array with enabled elements inside the list
/// int *focus returns focused element (may be not pressed)
bool GuiListViewEx(Rectangle bounds, string[] text, int count, ref int enabled, ref int active, ref int focus, ref int scrollIndex, bool editMode) {
//FIXME: Seems to rely on null being a valid value for enabled and focus.
import std.algorithm : clamp;
auto state = guiState;
bool pressed;
int focusElement = -1;
int startIndex = scrollIndex;
bool useScrollBar = true;
bool pressedKey;
immutable elementsPadding = GuiGetStyle(LISTVIEW, ELEMENTS_PADDING);
immutable elementsHeight = GuiGetStyle(LISTVIEW, ELEMENTS_HEIGHT);
immutable scrollBarWidth = GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH);
immutable borderWidth = GuiGetStyle(DEFAULT, BORDER_WIDTH);
auto visibleElements = cast(int) ( bounds.height / (elementsHeight + elementsPadding) );
startIndex = startIndex.clamp(0, count - visibleElements);
auto endIndex = startIndex + visibleElements;
int auxActive = active;
float barHeight = bounds.height;
immutable minBarHeight = 10.0f;
// Update control
//--------------------------------------------------------------------
// All the elements fit inside ListView and dont need scrollbar.
if (visibleElements >= count) {
useScrollBar = false;
startIndex = 0;
endIndex = count;
}
// Calculate position X and width to draw each element.
auto posX = bounds.x + elementsPadding;
auto elementWidth = bounds.width - 2*elementsPadding - borderWidth;
if (useScrollBar) {
posX = GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE? posX + scrollBarWidth : posX;
elementWidth = bounds.width - scrollBarWidth - 2*elementsPadding - borderWidth;
}
Rectangle scrollBarRect = { bounds.x + borderWidth, bounds.y + borderWidth, scrollBarWidth, bounds.height - 2*borderWidth };
if (GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_RIGHT_SIDE) scrollBarRect.x = posX + elementWidth + elementsPadding;
// Area without the scrollbar
Rectangle viewArea = { posX, bounds.y + borderWidth, elementWidth, bounds.height - 2*borderWidth };
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
auto mousePoint = GetMousePosition();
if (editMode) {
state = GUI_STATE_PRESSED;
// Change active with keys
if (IsKeyPressed(KEY_UP)) {
if (auxActive > 0) {
auxActive--;
if((useScrollBar) && (auxActive < startIndex)) { startIndex--; }
}
pressedKey = true;
}
else if (IsKeyPressed(KEY_DOWN)) {
if (auxActive < count - 1) {
auxActive++;
if((useScrollBar) && (auxActive >= endIndex)) { startIndex++; }
}
pressedKey = true;
}
if (useScrollBar) {
endIndex = startIndex + visibleElements;
if (CheckCollisionPointRec(mousePoint, viewArea)) {
immutable wheel = GetMouseWheelMove();
if(wheel < 0 && endIndex < count) { startIndex -= wheel; }
else if(wheel > 0 && startIndex > 0) { startIndex -= wheel; }
}
if (pressedKey) {
pressedKey = false;
if((auxActive < startIndex) || (auxActive >= endIndex)) { startIndex = auxActive; }
}
if (startIndex < 0) { startIndex = 0; }
else if(startIndex > (count - (endIndex - startIndex))) {
startIndex = count - (endIndex - startIndex);
}
endIndex = startIndex + visibleElements;
if(endIndex > count) { endIndex = count; }
}
}
if(!editMode) {
if(CheckCollisionPointRec(mousePoint, viewArea)) {
state = GUI_STATE_FOCUSED;
if(IsMouseButtonPressed(0)) { pressed = true; }
startIndex -= GetMouseWheelMove();
if(startIndex < 0) { startIndex = 0; }
else if(startIndex > (count - (endIndex - startIndex))) {
startIndex = count - (endIndex - startIndex);
}
pressed = true;
}
}
else {
if (!CheckCollisionPointRec(mousePoint, viewArea)) {
if (IsMouseButtonPressed(0) || (GetMouseWheelMove() != 0)) { pressed = true; }
}
}
// Get focused element
foreach(i; startIndex .. endIndex) {
if(CheckCollisionPointRec(mousePoint, Rectangle(posX, bounds.y + elementsPadding + borderWidth + (i - startIndex)*(elementsHeight + elementsPadding), elementWidth, elementsHeight ))) {
focusElement = i;
}
}
}
immutable slider = GuiGetStyle(SCROLLBAR, SLIDER_SIZE); // Save default slider size
// Calculate percentage of visible elements and apply same percentage to scrollbar
if (useScrollBar) {
immutable percentVisible = (endIndex - startIndex)*100.0f/count;
barHeight *= percentVisible/100;
barHeight = barHeight.clamp(minBarHeight, bounds.height);
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, cast(int)barHeight); // Change slider size
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
DrawRectangleRec(bounds, GetColor(GuiGetStyle(DEFAULT, BACKGROUND_COLOR))); // Draw background
// Draw scrollBar
if (useScrollBar) {
immutable scrollSpeed = GuiGetStyle(SCROLLBAR, SCROLL_SPEED); // Save default scroll speed
GuiSetStyle(SCROLLBAR, SCROLL_SPEED, count - visibleElements); // Hack to make the spinner buttons work
int index = scrollIndex != 0 ? scrollIndex : startIndex;
index = GuiScrollBar(scrollBarRect, index, 0, count - visibleElements);
GuiSetStyle(SCROLLBAR, SCROLL_SPEED, scrollSpeed); // Reset scroll speed to default
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, slider); // Reset slider size to default
// FIXME: Quick hack to make this thing work, think of a better way
if (CheckCollisionPointRec(GetMousePosition(), scrollBarRect) && IsMouseButtonDown(MOUSE_LEFT_BUTTON)) {
startIndex = index;
startIndex = startIndex.clamp(0, (count - (endIndex - startIndex)));
endIndex = startIndex + visibleElements;
if(endIndex > count) { endIndex = count; }
}
}
Rectangle elementRect(int i) {
//FIXME: elementWidth-1 is a temporary fix. Must be a rounding error from truncation.
return Rectangle(posX, bounds.y + elementsPadding + borderWidth + (i - startIndex)*(elementsHeight + elementsPadding), elementWidth-1, elementsHeight);
}
DrawRectangleLinesEx(bounds, borderWidth, Fade(GetColor(GuiGetStyle(LISTVIEW, BORDER + state*3)), guiAlpha));
// Draw ListView states
switch (state) {
case GUI_STATE_NORMAL:
foreach(i; startIndex .. endIndex) {
if (enabled == 0) {
GuiDisable();
GuiListElement(elementRect(i), text[i], false, false);
GuiEnable();
}
else if (i == auxActive) {
GuiDisable();
GuiListElement(elementRect(i), text[i], true, false);
GuiEnable();
}
else GuiListElement(elementRect(i), text[i], false, false);
}
break;
case GUI_STATE_FOCUSED:
foreach(i; startIndex .. endIndex) {
if (enabled == 0) {
GuiDisable();
GuiListElement(elementRect(i), text[i], false, false);
GuiEnable();
}
else if (i == auxActive) { GuiListElement(elementRect(i), text[i], true, false); }
else { GuiListElement(elementRect(i), text[i], false, false); }
}
break;
case GUI_STATE_PRESSED:
foreach(i; startIndex .. endIndex) {
if (enabled == 0) {
GuiDisable();
GuiListElement(elementRect(i), text[i], false, false);
GuiEnable();
}
else if ((i == auxActive) && editMode) {
if (GuiListElement(elementRect(i), text[i], true, true) == false) auxActive = -1;
}
else {
if (GuiListElement(elementRect(i), text[i], false, true) == true) auxActive = i;
}
}
break;
case GUI_STATE_DISABLED:
foreach(i; startIndex .. endIndex) {
if (i == auxActive) GuiListElement(elementRect(i), text[i], true, false);
else GuiListElement(elementRect(i), text[i], false, false);
}
break;
default: break;
}
//--------------------------------------------------------------------
//FIXME: Null stuff?
scrollIndex = startIndex;
focus = focusElement;
active = auxActive;
return pressed;
}
// Color Panel control
// HSV: Saturation
// HSV: Value
// Update control
//--------------------------------------------------------------------
// Calculate color from picker
// Get normalized value on x
// Get normalized value on y
// NOTE: Vector3ToColor() only available on raylib 1.8.1
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// Draw color picker: selector
//--------------------------------------------------------------------
Color GuiColorPanel (Rectangle bounds, Color color);
// Color Bar Alpha control
// NOTE: Returns alpha value normalized [0..1]
// Update control
//--------------------------------------------------------------------
//selector.x = bounds.x + (int)(((alpha - 0)/(100 - 0))*(bounds.width - 2*GuiGetStyle(SLIDER, BORDER_WIDTH))) - selector.width/2;
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// Draw alpha bar: checked background
//--------------------------------------------------------------------
float GuiColorBarAlpha (Rectangle bounds, float alpha);
enum COLORBARALPHA_CHECKED_SIZE = 10;
// Color Bar Hue control
// NOTE: Returns hue value normalized [0..1]
// Update control
//--------------------------------------------------------------------
/*if (IsKeyDown(KEY_UP))
{
hue -= 2.0f;
if (hue <= 0.0f) hue = 0.0f;
}
else if (IsKeyDown(KEY_DOWN))
{
hue += 2.0f;
if (hue >= 360.0f) hue = 360.0f;
}*/
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
// Draw hue bar:color bars
// Draw hue bar: selector
//--------------------------------------------------------------------
float GuiColorBarHue (Rectangle bounds, float hue);
// TODO: Color GuiColorBarSat() [WHITE->color]
// TODO: Color GuiColorBarValue() [BLACK->color], HSV / HSL
// TODO: float GuiColorBarLuminance() [BLACK->WHITE]
// Color Picker control
// NOTE: It's divided in multiple controls:
// Color GuiColorPanel() - Color select panel
// float GuiColorBarAlpha(Rectangle bounds, float alpha)
// float GuiColorBarHue(Rectangle bounds, float value)
// NOTE: bounds define GuiColorPanel() size
//Rectangle boundsAlpha = { bounds.x, bounds.y + bounds.height + GuiGetStyle(COLORPICKER, BARS_PADDING), bounds.width, GuiGetStyle(COLORPICKER, BARS_THICK) };
//color.a = (unsigned char)(GuiColorBarAlpha(boundsAlpha, (float)color.a/255.0f)*255.0f);
Color GuiColorPicker (Rectangle bounds, Color color);
/// Message Box control
int GuiMessageBox(Rectangle bounds, string windowTitle, string message, string buttons) {
import std.string : toStringz;
enum MESSAGEBOX_BUTTON_HEIGHT = 24;
enum MESSAGEBOX_BUTTON_PADDING = 10;
enum WINDOW_STATUSBAR_HEIGHT = 24;
int clicked = -1; // Returns clicked button from buttons list, 0 refers to closed window button
const buttonsText = buttons.GuiTextSplit();
immutable buttonsCount = buttonsText.length;
immutable textSize = MeasureTextEx(guiFont, message.toStringz, GuiGetStyle(DEFAULT, TEXT_SIZE), 1);
Rectangle textBounds = { bounds.x + bounds.width/2 - textSize.x/2,
bounds.y + WINDOW_STATUSBAR_HEIGHT + (bounds.height - WINDOW_STATUSBAR_HEIGHT)/4 - textSize.y/2,
textSize.x,
textSize.y };
Rectangle buttonBounds = { bounds.x + MESSAGEBOX_BUTTON_PADDING,
bounds.y + bounds.height/2 + bounds.height/4 - MESSAGEBOX_BUTTON_HEIGHT/2,
(bounds.width - MESSAGEBOX_BUTTON_PADDING*(buttonsCount + 1))/buttonsCount,
MESSAGEBOX_BUTTON_HEIGHT };
// Draw control
//--------------------------------------------------------------------
if (GuiWindowBox(bounds, windowTitle)) clicked = 0;
int prevTextAlignment = GuiGetStyle(LABEL, TEXT_ALIGNMENT);
GuiSetStyle(LABEL, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
GuiLabel(textBounds, message);
GuiSetStyle(LABEL, TEXT_ALIGNMENT, prevTextAlignment);
prevTextAlignment = GuiGetStyle(BUTTON, TEXT_ALIGNMENT);
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
foreach(i; 0 .. buttonsCount) {
if (GuiButton(buttonBounds, buttonsText[i])) clicked = i + 1;
buttonBounds.x += (buttonBounds.width + MESSAGEBOX_BUTTON_PADDING);
}
GuiSetStyle(BUTTON, TEXT_ALIGNMENT, prevTextAlignment);
//--------------------------------------------------------------------
return clicked;
}
/// Text Input Box control, ask for text
int GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string text, string buttons) {
int btnIndex = -1;
//TODO
return btnIndex;
}
/// Grid control
/// NOTE: Returns grid mouse-hover selected cell
/// About drawing lines at subpixel spacing, simple put, not easy solution:
/// https://stackoverflow.com/questions/4435450/2d-opengl-drawing-lines-that-dont-exactly-fit-pixel-raster
Vector2 GuiGrid(Rectangle bounds, float spacing, int subdivs) {
enum GRID_COLOR_ALPHA = 0.15f;
auto state = guiState;
auto mousePoint = GetMousePosition();
Vector2 currentCell = { -1, -1 };
int linesV = (cast(int)(bounds.width/spacing) + 1)*subdivs;
int linesH = (cast(int)(bounds.height/spacing) + 1)*subdivs;
// Update control
//--------------------------------------------------------------------
if ((state != GUI_STATE_DISABLED) && !guiLocked) {
if (CheckCollisionPointRec(mousePoint, bounds)) {
currentCell.x = cast(int)((mousePoint.x - bounds.x)/spacing);
currentCell.y = cast(int)((mousePoint.y - bounds.y)/spacing);
}
}
//--------------------------------------------------------------------
// Draw control
//--------------------------------------------------------------------
switch (state) {
case GUI_STATE_NORMAL:
// Draw vertical grid lines
foreach(i; 0 .. linesV) {
DrawRectangleRec(Rectangle(bounds.x + spacing*i, bounds.y, 1, bounds.height), ((i%subdivs) == 0)? Fade(GetColor(GuiGetStyle(DEFAULT, LINE_COLOR)), GRID_COLOR_ALPHA*4) : Fade(GetColor(GuiGetStyle(DEFAULT, LINE_COLOR)), GRID_COLOR_ALPHA));
}
// Draw horizontal grid lines
foreach(i; 0 .. linesH) {
DrawRectangleRec(Rectangle(bounds.x, bounds.y + spacing*i, bounds.width, 1), ((i%subdivs) == 0)? Fade(GetColor(GuiGetStyle(DEFAULT, LINE_COLOR)), GRID_COLOR_ALPHA*4) : Fade(GetColor(GuiGetStyle(DEFAULT, LINE_COLOR)), GRID_COLOR_ALPHA));
}
break;
default: break;
}
return currentCell;
}
//----------------------------------------------------------------------------------
// Styles loading functions
//----------------------------------------------------------------------------------
/// Load raygui style file (.rgs)
/// TEXT ONLY FOR NOW.
void GuiLoadStyle(string fileName) {
import std.regex : matchFirst, ctRegex;
import std.typecons : Tuple;
import std.conv : to;
import std.stdio : File;
import std.string : toStringz;
alias Style = Tuple!(string, "type", int, "control", int, "property", string, "value");
auto controlRegex = ctRegex!(`^(?P<type>p) (?P<control>\d+) (?P<property>\d+) \b0x(?P<value>[0-9a-fA-F]{8})\b`);
auto fontRegex = ctRegex!(`^(?P<type>f) (?P<control>\d+) (?P<property>\d+) (?P<value>.+(.ttf|.otf))`);
File styles;
try {
styles = File(fileName, "rt");
foreach(style; styles.byLine) {
auto match = style.matchFirst(controlRegex);
if(match.empty) { match = style.matchFirst(fontRegex); }
if(!match.empty) {
immutable s = Style(match["type"].to!string, match["control"].to!int, match["property"].to!int, match["value"].to!string);
switch(s.type) {
case "p":
int colour = s.value.to!uint(16);
if(s.control == 0) {
// If a DEFAULT property is loaded, it is propagated to all controls,
// NOTE: All DEFAULT properties should be defined first in the file
GuiSetStyle(0, s.property, colour);
if(s.property < NUM_PROPS_DEFAULT) { foreach(i; 1 .. NUM_CONTROLS) GuiSetStyle(i, s.property, colour); }
}
else { GuiSetStyle(s.control, s.property, colour); }
break;
case "f":
auto fontFileName = s.value.toStringz;
Font font = "%s/%s".toStringz.FormatText(fileName.toStringz.GetDirectoryPath(), fontFileName).LoadFontEx(s.control, null, s.property);
if((font.texture.id > 0) && (font.charsCount > 0)) {
GuiFont(font);
GuiSetStyle(DEFAULT, TEXT_SIZE, s.control);
GuiSetStyle(DEFAULT, TEXT_SPACING, s.property);
}
break;
default: break;
}
}
}
}
//Catch any exception. Could tighten this up.
catch(Exception) { }
scope(exit) { styles.close(); }
}
/// Load style from a palette values array
void GuiLoadStyleProps (in int[] props, int count) {
int completeSets = count/(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED);
int uncompleteSetProps = count%(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED);
// Load style palette values from array (complete property sets)
foreach(i; 0 .. completeSets) {
// TODO: This code needs review
foreach(j; 0 .. (NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED)) {
GuiSetStyle(i, j, props[i]);
}
}
// Load style palette values from array (uncomplete property set)
foreach(k; 0 .. uncompleteSetProps) {
GuiSetStyle(completeSets, k, props[completeSets*(NUM_PROPS_DEFAULT + NUM_PROPS_EXTENDED) + k]);
}
}
/// Load style default over global style
void GuiLoadStyleDefault() {
// We set this variable first to avoid cyclic function calls
// when calling GuiSetStyle() and GuiGetStyle()
guiStyleLoaded = true;
// Initialize default LIGHT style property values
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_COLOR_NORMAL, 0x838383ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BASE_COLOR_NORMAL, 0xc9c9c9ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_COLOR_NORMAL, 0x686868ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_COLOR_FOCUSED, 0x5bb2d9ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BASE_COLOR_FOCUSED, 0xc9effeff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_COLOR_FOCUSED, 0x6c9bbcff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_COLOR_PRESSED, 0x0492c7ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BASE_COLOR_PRESSED, 0x97e8ffff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_COLOR_PRESSED, 0x368bafff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_COLOR_DISABLED, 0xb5c1c2ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BASE_COLOR_DISABLED, 0xe6e9e9ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_COLOR_DISABLED, 0xaeb7b8ff);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.BORDER_WIDTH, 1);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.INNER_PADDING, 1);
GuiSetStyle(GuiControl.DEFAULT, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_CENTER);
// Populate all controls with default style
GuiUpdateStyleComplete();
//Initialise default font.
guiFont = GetFontDefault();
// Initialize extended property values
// NOTE: By default, extended property values are initialized to 0
GuiSetStyle(GuiControl.DEFAULT, GuiDefaultProperty.TEXT_SIZE, 10);
GuiSetStyle(GuiControl.DEFAULT, GuiDefaultProperty.TEXT_SPACING, 1);
GuiSetStyle(GuiControl.DEFAULT, GuiDefaultProperty.LINE_COLOR, 0x90abb5ff); // GuiControl.DEFAULT specific property
GuiSetStyle(GuiControl.DEFAULT, GuiDefaultProperty.BACKGROUND_COLOR, 0xf5f5f5ff); // GuiControl.DEFAULT specific property
GuiSetStyle(GuiControl.LABEL, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_LEFT);
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.BORDER_WIDTH, 2);
GuiSetStyle(GuiControl.BUTTON, GuiControlProperty.INNER_PADDING, 4);
GuiSetStyle(GuiControl.TOGGLE, GuiToggleProperty.GROUP_PADDING, 2);
GuiSetStyle(GuiControl.SLIDER, GuiSliderProperty.SLIDER_WIDTH, 15);
GuiSetStyle(GuiControl.SLIDER, GuiSliderProperty.TEXT_PADDING, 5);
GuiSetStyle(GuiControl.CHECKBOX, GuiCheckBoxProperty.CHECK_TEXT_PADDING, 5);
GuiSetStyle(GuiControl.COMBOBOX, GuiComboBoxProperty.SELECTOR_WIDTH, 30);
GuiSetStyle(GuiControl.COMBOBOX, GuiComboBoxProperty.SELECTOR_PADDING, 2);
GuiSetStyle(GuiControl.DROPDOWNBOX, GuiDropdownBoxProperty.ARROW_RIGHT_PADDING, 16);
GuiSetStyle(GuiControl.TEXTBOX, GuiControlProperty.INNER_PADDING, 4);
GuiSetStyle(GuiControl.TEXTBOX, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_LEFT);
GuiSetStyle(GuiControl.TEXTBOX, GuiTextBoxProperty.MULTILINE_PADDING, 5);
GuiSetStyle(GuiControl.TEXTBOX, GuiTextBoxProperty.COLOR_SELECTED_FG, 0xf0fffeff);
GuiSetStyle(GuiControl.TEXTBOX, GuiTextBoxProperty.COLOR_SELECTED_BG, 0x839affe0);
GuiSetStyle(GuiControl.VALUEBOX, GuiControlProperty.TEXT_ALIGNMENT, GuiTextAlignment.GUI_TEXT_ALIGN_CENTER);
GuiSetStyle(GuiControl.SPINNER, GuiSpinnerProperty.SELECT_BUTTON_WIDTH, 20);
GuiSetStyle(GuiControl.SPINNER, GuiSpinnerProperty.SELECT_BUTTON_PADDING, 2);
GuiSetStyle(GuiControl.SPINNER, GuiSpinnerProperty.SELECT_BUTTON_BORDER_WIDTH, 1);
GuiSetStyle(GuiControl.SCROLLBAR, GuiControlProperty.BORDER_WIDTH, 0);
GuiSetStyle(GuiControl.SCROLLBAR, GuiScrollBarProperty.SHOW_SPINNER_BUTTONS, 0);
GuiSetStyle(GuiControl.SCROLLBAR, GuiControlProperty.INNER_PADDING, 0);
GuiSetStyle(GuiControl.SCROLLBAR, GuiScrollBarProperty.ARROWS_SIZE, 6);
GuiSetStyle(GuiControl.SCROLLBAR, GuiScrollBarProperty.SLIDER_PADDING, 0);
GuiSetStyle(GuiControl.SCROLLBAR, GuiScrollBarProperty.SLIDER_SIZE, 16);
GuiSetStyle(GuiControl.SCROLLBAR, GuiScrollBarProperty.SCROLL_SPEED, 10);
GuiSetStyle(GuiControl.LISTVIEW, GuiListViewProperty.ELEMENTS_HEIGHT, 0x1e);
GuiSetStyle(GuiControl.LISTVIEW, GuiListViewProperty.ELEMENTS_PADDING, 2);
GuiSetStyle(GuiControl.LISTVIEW, GuiListViewProperty.SCROLLBAR_WIDTH, 10);
GuiSetStyle(GuiControl.LISTVIEW, GuiListViewProperty.SCROLLBAR_SIDE, GuiScrollBarSide.SCROLLBAR_RIGHT_SIDE);
GuiSetStyle(GuiControl.COLORPICKER, GuiColorPickerProperty.COLOR_SELECTOR_SIZE, 6);
GuiSetStyle(GuiControl.COLORPICKER, GuiColorPickerProperty.BAR_WIDTH, 0x14);
GuiSetStyle(GuiControl.COLORPICKER, GuiColorPickerProperty.BAR_PADDING, 0xa);
GuiSetStyle(GuiControl.COLORPICKER, GuiColorPickerProperty.BAR_SELECTOR_HEIGHT, 6);
GuiSetStyle(GuiControl.COLORPICKER, GuiColorPickerProperty.BAR_SELECTOR_PADDING, 2);
}
/// Updates controls style with default values
void GuiUpdateStyleComplete() {
// Populate all controls with default style
// NOTE: Extended style properties are ignored
foreach(i; 1 .. NUM_CONTROLS) {
foreach(j; 0 .. NUM_PROPS_DEFAULT) {
GuiSetStyle(i, j, GuiGetStyle(GuiControl.DEFAULT, j));
}
}
}
/// Get text with icon id prepended
/// NOTE: Useful to add icons by name id (enum) instead of
/// a number that can change between ricon versions
string GuiIconText(int iconId, string text) {
import std.format : format;
return "#%03d#%s".format(iconId, text);
}
//----------------------------------------------------------------------------------
// Module specific Functions Definition
//----------------------------------------------------------------------------------
/// Split controls text into multiple strings
/// Also check for multiple columns (required by GuiToggleGroup())
private string[] GuiTextSplit (string text) {
//TODO: Multiple columns.
import std.regex : splitter, regex;
import std.typecons : No;
import std.array : array;
import std.algorithm : min;
enum MAX_SUBSTRINGS_COUNT = 64;
static pattern = regex(`([;\n])`);
auto result = text.splitter!(No.keepSeparators)(pattern).array;
return result[0..MAX_SUBSTRINGS_COUNT.min(result.length)];
}
// Convert color data from RGB to HSV
// NOTE: Color data should be passed normalized
// Value
// Undefined, maybe NAN?
// NOTE: If max is 0, this divide would cause a crash
// Saturation
// NOTE: If max is 0, then r = g = b = 0, s = 0, h is undefined
// Undefined, maybe NAN?
// NOTE: Comparing float values could not work properly
// Between yellow & magenta
// Between cyan & yellow
// Between magenta & cyan
// Convert to degrees
Vector3 ConvertRGBtoHSV (Vector3 rgb);
// Convert color data from HSV to RGB
// NOTE: Color data should be passed normalized
// NOTE: Comparing float values could not work properly
Vector3 ConvertHSVtoRGB (Vector3 hsv);
// Returns a Color struct from hexadecimal value
// Returns hexadecimal value for a Color
// Check if point is inside rectangle
// Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
// Formatting of text with variables to 'embed'
// RAYGUI_STANDALONE
// RAYGUI_IMPLEMENTATION
|
D
|
/Users/anhdungle/learning/rust_tutorial/variables/target/debug/deps/variables-9c0725b3cbdd3167.rmeta: src/main.rs
/Users/anhdungle/learning/rust_tutorial/variables/target/debug/deps/variables-9c0725b3cbdd3167.d: src/main.rs
src/main.rs:
|
D
|
module android.java.android.graphics.drawable.AnimationDrawable;
public import android.java.android.graphics.drawable.AnimationDrawable_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!AnimationDrawable;
import import1 = android.java.android.graphics.drawable.Drawable;
import import13 = android.java.android.graphics.drawable.Drawable_ConstantState;
import import20 = android.java.java.lang.Class;
import import8 = android.java.android.graphics.Insets;
import import16 = android.java.android.graphics.Region;
|
D
|
/**
* Implementation of a bit array.
*
* Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/root/bitarray.d, root/_bitarray.d)
* Documentation: https://dlang.org/phobos/dmd_root_array.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/root/bitarray.d
*/
module dmd.root.bitarray;
import core.stdc.stdio;
import core.stdc.string;
import dmd.root.rmem;
struct BitArray
{
alias Chunk_t = size_t;
enum ChunkSize = Chunk_t.sizeof;
enum BitsPerChunk = ChunkSize * 8;
size_t length() const @nogc nothrow pure @safe
{
return len;
}
void length(size_t nlen) nothrow pure
{
immutable ochunks = chunks(len);
immutable nchunks = chunks(nlen);
if (ochunks != nchunks)
{
ptr = cast(size_t*)mem.xrealloc_noscan(ptr, nchunks * ChunkSize);
}
if (nchunks > ochunks)
ptr[ochunks .. nchunks] = 0;
if (nlen & (BitsPerChunk - 1))
ptr[nchunks - 1] &= (cast(Chunk_t)1 << (nlen & (BitsPerChunk - 1))) - 1;
len = nlen;
}
void opAssign(const ref BitArray b) nothrow pure
{
if (!len)
length(b.len);
assert(len == b.len);
memcpy(ptr, b.ptr, bytes(len));
}
bool opIndex(size_t idx) const @nogc nothrow pure
{
import core.bitop : bt;
assert(idx < len);
return !!bt(ptr, idx);
}
void opIndexAssign(bool val, size_t idx) @nogc nothrow pure
{
import core.bitop : btc, bts;
assert(idx < len);
if (val)
bts(ptr, idx);
else
btc(ptr, idx);
}
bool opEquals(const ref BitArray b) const @nogc nothrow pure
{
return len == b.len && memcmp(ptr, b.ptr, bytes(len)) == 0;
}
void zero() @nogc nothrow pure
{
memset(ptr, 0, bytes(len));
}
/******
* Returns:
* true if no bits are set
*/
bool isZero() @nogc nothrow pure
{
const nchunks = chunks(len);
foreach (i; 0 .. nchunks)
{
if (ptr[i])
return false;
}
return true;
}
void or(const ref BitArray b) @nogc nothrow pure
{
assert(len == b.len);
const nchunks = chunks(len);
foreach (i; 0 .. nchunks)
ptr[i] |= b.ptr[i];
}
/* Swap contents of `this` with `b`
*/
void swap(ref BitArray b) @nogc nothrow pure
{
assert(len == b.len);
const nchunks = chunks(len);
foreach (i; 0 .. nchunks)
{
const chunk = ptr[i];
ptr[i] = b.ptr[i];
b.ptr[i] = chunk;
}
}
~this() nothrow pure
{
debug
{
// Stomp the allocated memory
const nchunks = chunks(len);
foreach (i; 0 .. nchunks)
{
ptr[i] = cast(Chunk_t)0xFEFEFEFE_FEFEFEFE;
}
}
mem.xfree(ptr);
debug
{
// Set to implausible values
len = cast(size_t)0xFEFEFEFE_FEFEFEFE;
ptr = cast(size_t*)cast(size_t)0xFEFEFEFE_FEFEFEFE;
}
}
private:
size_t len; // length in bits
size_t *ptr;
/// Returns: The amount of chunks used to store len bits
static size_t chunks(const size_t len) @nogc nothrow pure @safe
{
return (len + BitsPerChunk - 1) / BitsPerChunk;
}
/// Returns: The amount of bytes used to store len bits
static size_t bytes(const size_t len) @nogc nothrow pure @safe
{
return chunks(len) * ChunkSize;
}
}
nothrow pure unittest
{
BitArray array;
array.length = 20;
assert(array[19] == 0);
array[10] = 1;
assert(array[10] == 1);
array[10] = 0;
assert(array[10] == 0);
assert(array.length == 20);
BitArray a,b;
assert(a != array);
a.length = 200;
assert(a != array);
assert(a.isZero());
a[100] = true;
b.length = 200;
b[100] = true;
assert(a == b);
a.length = 300;
b.length = 300;
assert(a == b);
b[299] = true;
assert(a != b);
assert(!a.isZero());
a.swap(b);
assert(a[299] == true);
assert(b[299] == false);
a = b;
assert(a == b);
}
|
D
|
{
files = {
"test/test.cpp"
},
values = {
"/usr/bin/xcrun -sdk macosx clang",
{
"-Qunused-arguments",
"-arch",
"arm64",
"-fvisibility=hidden",
"-fvisibility-inlines-hidden",
"-O3",
"-isystem",
"/Users/meetai/.xmake/packages/g/gtest/1.10.0/dbaf6b5094c24dd7bf1da104bfec6517/include",
"-isystem",
"/Users/meetai/.xmake/packages/s/spdlog/v1.8.5/e3d09d62f31748529f5b700437f219d6/include",
"-std=c++14",
"-DNDEBUG"
}
},
depfiles_gcc = "build/.objs/test/macosx/arm64/release/test/test.cpp.o: test/test.cpp\
"
}
|
D
|
/**
* D header file for POSIX.
*
* Copyright: Public Domain
* License: Public Domain
* Authors: Sean Kelly
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
module core.sys.posix.pwd;
private import core.sys.posix.config;
public import core.sys.posix.sys.types; // for gid_t, uid_t
extern (C):
//
// Required
//
/*
struct passwd
{
char* pw_name;
uid_t pw_uid;
gid_t pw_gid;
char* pw_dir;
char* pw_shell;
}
passwd* getpwnam(in char*);
passwd* getpwuid(uid_t);
*/
version( linux )
{
struct passwd
{
char* pw_name;
char* pw_passwd;
uid_t pw_uid;
gid_t pw_gid;
char* pw_gecos;
char* pw_dir;
char* pw_shell;
}
}
else version( OSX )
{
struct passwd
{
char* pw_name;
char* pw_passwd;
uid_t pw_uid;
gid_t pw_gid;
time_t pw_change;
char* pw_class;
char* pw_gecos;
char* pw_dir;
char* pw_shell;
time_t pw_expire;
}
}
else version( freebsd )
{
struct passwd
{
char* pw_name; /* user name */
char* pw_passwd; /* encrypted password */
uid_t pw_uid; /* user uid */
gid_t pw_gid; /* user gid */
time_t pw_change; /* password change time */
char* pw_class; /* user access class */
char* pw_gecos; /* Honeywell login info */
char* pw_dir; /* home directory */
char* pw_shell; /* default shell */
time_t pw_expire; /* account expiration */
int pw_fields; /* internal: fields filled in */
}
}
passwd* getpwnam(in char*);
passwd* getpwuid(uid_t);
//
// Thread-Safe Functions (TSF)
//
/*
int getpwnam_r(in char*, passwd*, char*, size_t, passwd**);
int getpwuid_r(uid_t, passwd*, char*, size_t, passwd**);
*/
version( linux )
{
int getpwnam_r(in char*, passwd*, char*, size_t, passwd**);
int getpwuid_r(uid_t, passwd*, char*, size_t, passwd**);
}
else version( OSX )
{
int getpwnam_r(in char*, passwd*, char*, size_t, passwd**);
int getpwuid_r(uid_t, passwd*, char*, size_t, passwd**);
}
else version( freebsd )
{
int getpwnam_r(in char*, passwd*, char*, size_t, passwd**);
int getpwuid_r(uid_t, passwd*, char*, size_t, passwd**);
}
//
// XOpen (XSI)
//
/*
void endpwent();
passwd* getpwent();
void setpwent();
*/
version( linux )
{
void endpwent();
passwd* getpwent();
void setpwent();
}
else version ( OSX )
{
void endpwent();
passwd* getpwent();
void setpwent();
}
else version ( freebsd )
{
void endpwent();
passwd* getpwent();
void setpwent();
}
|
D
|
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Materialize.o : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Materialize~partial.swiftmodule : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Materialize~partial.swiftdoc : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Materialize~partial.swiftsourceinfo : /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Deprecated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Cancelable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObserverType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Reactive.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/RecursiveLock.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Errors.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/AtomicInt.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Event.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/First.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Rx.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/Platform/Platform.Linux.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/nalousnguyen/Documents/FinalSDK/CredifyIOS/CredifyCore/derived_data/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Intermediates.noindex/Supplements.build/Debug-iphonesimulator/Supplements.build/Objects-normal/x86_64/DeficitViewController.o : /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/CustomTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/PickerTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/HealthService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/UserNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PagesNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+Date.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/AppDelegate.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/UIImage+imageResize.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/tableViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PageCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/Views/ConstructureTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/CustomCollectionViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionsCollectionViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Googleuser.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Errors.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constants.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsHeaderVIew.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+ScrollView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/ContentView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Enums/Enum+Sex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/CalendarHeatmap.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/SwipeableTabBarController.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/Popover.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UniformTypeIdentifiers.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CloudKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/HealthKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/SnapKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/DeveloperToolsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/CollectionViewPagingLayout.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/LinearProgressView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/Onboard-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingViewController.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingContentViewController.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-Swift.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/HealthKit.framework/Headers/HealthKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Intermediates.noindex/Supplements.build/Debug-iphonesimulator/Supplements.build/Objects-normal/x86_64/DeficitViewController~partial.swiftmodule : /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/CustomTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/PickerTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/HealthService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/UserNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PagesNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+Date.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/AppDelegate.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/UIImage+imageResize.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/tableViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PageCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/Views/ConstructureTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/CustomCollectionViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionsCollectionViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Googleuser.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Errors.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constants.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsHeaderVIew.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+ScrollView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/ContentView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Enums/Enum+Sex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/CalendarHeatmap.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/SwipeableTabBarController.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/Popover.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UniformTypeIdentifiers.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CloudKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/HealthKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/SnapKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/DeveloperToolsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/CollectionViewPagingLayout.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/LinearProgressView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/Onboard-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingViewController.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingContentViewController.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-Swift.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/HealthKit.framework/Headers/HealthKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Intermediates.noindex/Supplements.build/Debug-iphonesimulator/Supplements.build/Objects-normal/x86_64/DeficitViewController~partial.swiftdoc : /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/CustomTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/PickerTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/HealthService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/UserNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PagesNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+Date.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/AppDelegate.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/UIImage+imageResize.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/tableViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PageCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/Views/ConstructureTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/CustomCollectionViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionsCollectionViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Googleuser.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Errors.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constants.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsHeaderVIew.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+ScrollView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/ContentView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Enums/Enum+Sex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/CalendarHeatmap.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/SwipeableTabBarController.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/Popover.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UniformTypeIdentifiers.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CloudKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/HealthKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/SnapKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/DeveloperToolsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/CollectionViewPagingLayout.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/LinearProgressView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/Onboard-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingViewController.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingContentViewController.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-Swift.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/HealthKit.framework/Headers/HealthKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Intermediates.noindex/Supplements.build/Debug-iphonesimulator/Supplements.build/Objects-normal/x86_64/DeficitViewController~partial.swiftsourceinfo : /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/CustomTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/PickerTextField.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/HealthService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/UserNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PagesNetworkService.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+Date.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/AppDelegate.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/UIImage+imageResize.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/tableViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayModel.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/PageCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/Views/ConstructureTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitTableViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/Views/CustomCollectionViewCell.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constructure/ConstructureViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Blog/BlogViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/FormViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Login/LoginViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/QuestionsCollectionViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Symptoms/SymptomsViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Deficit/DeficitViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/TodayViewController.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Googleuser.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Errors.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Constants.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Today/Views/PillsHeaderVIew.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Extensions/Extension+ScrollView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Form/Views/ContentView.swift /Users/sapientisat/Projects/Supplements/Supplements/Supplements/Enums/Enum+Sex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/SwiftyJSON.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/CalendarHeatmap.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/SwipeableTabBarController.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/Popover.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UniformTypeIdentifiers.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CloudKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/HealthKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/SnapKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/DeveloperToolsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/CollectionViewPagingLayout.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/LinearProgressView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/Onboard-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-umbrella.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingViewController.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Headers/OnboardingContentViewController.h /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers/SwiftyJSON-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Headers/CalendarHeatmap-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Headers/SwipeableTabBarController-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Headers/Popover-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers/SnapKit-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Headers/CollectionViewPagingLayout-Swift.h /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Headers/LinearProgressView-Swift.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/dyld.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Onboard/Onboard.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CalendarHeatmap/CalendarHeatmap.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SwipeableTabBarController/SwipeableTabBarController.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/Popover/Popover.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/CollectionViewPagingLayout/CollectionViewPagingLayout.framework/Modules/module.modulemap /Users/sapientisat/Projects/Supplements/Supplements/XcodeBuild/Products/Debug-iphonesimulator/LinearProgressView/LinearProgressView.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/HealthKit.framework/Headers/HealthKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
// Written in the D programming language.
/**
String handling functions.
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BOOKTABLE ,
$(TR $(TH Category) $(TH Functions) )
$(TR $(TDNW Searching)
$(TD
$(MYREF column)
$(MYREF indexOf)
$(MYREF indexOfAny)
$(MYREF indexOfNeither)
$(MYREF lastIndexOf)
$(MYREF lastIndexOfAny)
$(MYREF lastIndexOfNeither)
)
)
$(TR $(TDNW Comparison)
$(TD
$(MYREF isNumeric)
)
)
$(TR $(TDNW Mutation)
$(TD
$(MYREF capitalize)
)
)
$(TR $(TDNW Pruning and Filling)
$(TD
$(MYREF center)
$(MYREF chomp)
$(MYREF chompPrefix)
$(MYREF chop)
$(MYREF detabber)
$(MYREF detab)
$(MYREF entab)
$(MYREF entabber)
$(MYREF leftJustify)
$(MYREF outdent)
$(MYREF rightJustify)
$(MYREF strip)
$(MYREF stripLeft)
$(MYREF stripRight)
$(MYREF wrap)
)
)
$(TR $(TDNW Substitution)
$(TD
$(MYREF abbrev)
$(MYREF soundex)
$(MYREF soundexer)
$(MYREF succ)
$(MYREF tr)
$(MYREF translate)
)
)
$(TR $(TDNW Miscellaneous)
$(TD
$(MYREF assumeUTF)
$(MYREF fromStringz)
$(MYREF lineSplitter)
$(MYREF representation)
$(MYREF splitLines)
$(MYREF toStringz)
)
)))
Objects of types `string`, `wstring`, and `dstring` are value types
and cannot be mutated element-by-element. For using mutation during building
strings, use `char[]`, `wchar[]`, or `dchar[]`. The `xxxstring`
types are preferable because they don't exhibit undesired aliasing, thus
making code more robust.
The following functions are publicly imported:
$(BOOKTABLE ,
$(TR $(TH Module) $(TH Functions) )
$(LEADINGROW Publicly imported functions)
$(TR $(TD std.algorithm)
$(TD
$(REF_SHORT cmp, std,algorithm,comparison)
$(REF_SHORT count, std,algorithm,searching)
$(REF_SHORT endsWith, std,algorithm,searching)
$(REF_SHORT startsWith, std,algorithm,searching)
))
$(TR $(TD std.array)
$(TD
$(REF_SHORT join, std,array)
$(REF_SHORT replace, std,array)
$(REF_SHORT replaceInPlace, std,array)
$(REF_SHORT split, std,array)
$(REF_SHORT empty, std,array)
))
$(TR $(TD std.format)
$(TD
$(REF_SHORT format, std,format)
$(REF_SHORT sformat, std,format)
))
$(TR $(TD std.uni)
$(TD
$(REF_SHORT icmp, std,uni)
$(REF_SHORT toLower, std,uni)
$(REF_SHORT toLowerInPlace, std,uni)
$(REF_SHORT toUpper, std,uni)
$(REF_SHORT toUpperInPlace, std,uni)
))
)
There is a rich set of functions for string handling defined in other modules.
Functions related to Unicode and ASCII are found in $(MREF std, uni)
and $(MREF std, ascii), respectively. Other functions that have a
wider generality than just strings can be found in $(MREF std, algorithm)
and $(MREF std, range).
See_Also:
$(LIST
$(MREF std, algorithm) and
$(MREF std, range)
for generic range algorithms
,
$(MREF std, ascii)
for functions that work with ASCII strings
,
$(MREF std, uni)
for functions that work with unicode strings
)
Copyright: Copyright The D Language Foundation 2007-.
License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(HTTP digitalmars.com, Walter Bright),
$(HTTP erdani.org, Andrei Alexandrescu),
$(HTTP jmdavisprog.com, Jonathan M Davis),
and David L. 'SpottedTiger' Davis
Source: $(PHOBOSSRC std/string.d)
*/
module std.string;
version (StdUnittest)
{
private:
struct TestAliasedString
{
string get() @safe @nogc pure nothrow { return _s; }
alias get this;
@disable this(this);
string _s;
}
bool testAliasedString(alias func, Args...)(string s, Args args)
{
import std.algorithm.comparison : equal;
auto a = func(TestAliasedString(s), args);
auto b = func(s, args);
static if (is(typeof(equal(a, b))))
{
// For ranges, compare contents instead of object identity.
return equal(a, b);
}
else
{
return a == b;
}
}
}
public import std.format : format, sformat;
import std.typecons : Flag, Yes, No;
public import std.uni : icmp, toLower, toLowerInPlace, toUpper, toUpperInPlace;
import std.meta : AliasSeq, staticIndexOf;
import std.range.primitives : back, ElementEncodingType, ElementType, front,
hasLength, hasSlicing, isBidirectionalRange, isForwardRange, isInfinite,
isInputRange, isOutputRange, isRandomAccessRange, popBack, popFront, put,
save;
import std.traits : isConvertibleToString, isNarrowString, isSomeChar,
isSomeString, StringTypeOf, Unqual;
//public imports for backward compatibility
public import std.algorithm.comparison : cmp;
public import std.algorithm.searching : startsWith, endsWith, count;
public import std.array : join, replace, replaceInPlace, split, empty;
/* ************* Exceptions *************** */
/++
Exception thrown on errors in std.string functions.
+/
class StringException : Exception
{
import std.exception : basicExceptionCtors;
///
mixin basicExceptionCtors;
}
///
@safe pure unittest
{
import std.exception : assertThrown;
auto bad = " a\n\tb\n c";
assertThrown!StringException(bad.outdent);
}
/++
Params:
cString = A null-terminated c-style string.
Returns: A D-style array of `char`, `wchar` or `dchar` referencing the same
string. The returned array will retain the same type qualifiers as the input.
$(RED Important Note:) The returned array is a slice of the original buffer.
The original data is not changed and not copied.
+/
inout(Char)[] fromStringz(Char)(return scope inout(Char)* cString) @nogc @system pure nothrow
if (isSomeChar!Char)
{
import core.stdc.stddef : wchar_t;
static if (is(immutable Char == immutable char))
import core.stdc.string : cstrlen = strlen;
else static if (is(immutable Char == immutable wchar_t))
import core.stdc.wchar_ : cstrlen = wcslen;
else
static size_t cstrlen(scope const Char* s)
{
const(Char)* p = s;
while (*p)
++p;
return p - s;
}
return cString ? cString[0 .. cstrlen(cString)] : null;
}
///
@system pure unittest
{
assert(fromStringz("foo\0"c.ptr) == "foo"c);
assert(fromStringz("foo\0"w.ptr) == "foo"w);
assert(fromStringz("foo\0"d.ptr) == "foo"d);
assert(fromStringz("福\0"c.ptr) == "福"c);
assert(fromStringz("福\0"w.ptr) == "福"w);
assert(fromStringz("福\0"d.ptr) == "福"d);
}
@system pure unittest
{
char* a = null;
assert(fromStringz(a) == null);
wchar* b = null;
assert(fromStringz(b) == null);
dchar* c = null;
assert(fromStringz(c) == null);
const char* d = "foo\0";
assert(fromStringz(d) == "foo");
immutable char* e = "foo\0";
assert(fromStringz(e) == "foo");
const wchar* f = "foo\0";
assert(fromStringz(f) == "foo");
immutable wchar* g = "foo\0";
assert(fromStringz(g) == "foo");
const dchar* h = "foo\0";
assert(fromStringz(h) == "foo");
immutable dchar* i = "foo\0";
assert(fromStringz(i) == "foo");
immutable wchar z = 0x0000;
// Test some surrogate pairs
// high surrogates are in the range 0xD800 .. 0xDC00
// low surrogates are in the range 0xDC00 .. 0xE000
// since UTF16 doesn't specify endianness we test both.
foreach (wchar[] t; [[0xD800, 0xDC00], [0xD800, 0xE000], [0xDC00, 0xDC00],
[0xDC00, 0xE000], [0xDA00, 0xDE00]])
{
immutable hi = t[0], lo = t[1];
assert(fromStringz([hi, lo, z].ptr) == [hi, lo]);
assert(fromStringz([lo, hi, z].ptr) == [lo, hi]);
}
}
/++
Params:
s = A D-style string.
Returns: A C-style null-terminated string equivalent to `s`. `s`
must not contain embedded `'\0'`'s as any C function will treat the
first `'\0'` that it sees as the end of the string. If `s.empty` is
`true`, then a string containing only `'\0'` is returned.
$(RED Important Note:) When passing a `char*` to a C function, and the C
function keeps it around for any reason, make sure that you keep a
reference to it in your D code. Otherwise, it may become invalid during a
garbage collection cycle and cause a nasty bug when the C code tries to use
it.
+/
immutable(char)* toStringz(scope const(char)[] s) @trusted pure nothrow
out (result)
{
import core.stdc.string : strlen, memcmp;
if (result)
{
auto slen = s.length;
while (slen > 0 && s[slen-1] == 0) --slen;
assert(strlen(result) == slen,
"The result c string is shorter than the in input string");
assert(result[0 .. slen] == s[0 .. slen],
"The input and result string are not equal");
}
}
do
{
import std.exception : assumeUnique;
/+ Unfortunately, this isn't reliable.
We could make this work if string literals are put
in read-only memory and we test if s[] is pointing into
that.
/* Peek past end of s[], if it's 0, no conversion necessary.
* Note that the compiler will put a 0 past the end of static
* strings, and the storage allocator will put a 0 past the end
* of newly allocated char[]'s.
*/
char* p = &s[0] + s.length;
if (*p == 0)
return s;
+/
// Need to make a copy
auto copy = new char[s.length + 1];
copy[0 .. s.length] = s[];
copy[s.length] = 0;
return &assumeUnique(copy)[0];
}
/++ Ditto +/
immutable(char)* toStringz(return scope string s) @trusted pure nothrow
{
if (s.empty) return "".ptr;
/* Peek past end of s[], if it's 0, no conversion necessary.
* Note that the compiler will put a 0 past the end of static
* strings, and the storage allocator will put a 0 past the end
* of newly allocated char[]'s.
*/
immutable p = s.ptr + s.length;
// Is p dereferenceable? A simple test: if the p points to an
// address multiple of 4, then conservatively assume the pointer
// might be pointing to a new block of memory, which might be
// unreadable. Otherwise, it's definitely pointing to valid
// memory.
if ((cast(size_t) p & 3) && *p == 0)
return &s[0];
return toStringz(cast(const char[]) s);
}
///
pure nothrow @system unittest
{
import core.stdc.string : strlen;
import std.conv : to;
auto p = toStringz("foo");
assert(strlen(p) == 3);
const(char)[] foo = "abbzxyzzy";
p = toStringz(foo[3 .. 5]);
assert(strlen(p) == 2);
string test = "";
p = toStringz(test);
assert(*p == 0);
test = "\0";
p = toStringz(test);
assert(*p == 0);
test = "foo\0";
p = toStringz(test);
assert(p[0] == 'f' && p[1] == 'o' && p[2] == 'o' && p[3] == 0);
const string test2 = "";
p = toStringz(test2);
assert(*p == 0);
}
/**
Flag indicating whether a search is case-sensitive.
*/
alias CaseSensitive = Flag!"caseSensitive";
/++
Searches for character in range.
Params:
s = string or InputRange of characters to search in correct UTF format
c = character to search for
startIdx = starting index to a well-formed code point
cs = `Yes.caseSensitive` or `No.caseSensitive`
Returns:
the index of the first occurrence of `c` in `s` with
respect to the start index `startIdx`. If `c`
is not found, then `-1` is returned.
If `c` is found the value of the returned index is at least
`startIdx`.
If the parameters are not valid UTF, the result will still
be in the range [-1 .. s.length], but will not be reliable otherwise.
Throws:
If the sequence starting at `startIdx` does not represent a well
formed codepoint, then a $(REF UTFException, std,utf) may be thrown.
See_Also: $(REF countUntil, std,algorithm,searching)
+/
ptrdiff_t indexOf(Range)(Range s, dchar c, CaseSensitive cs = Yes.caseSensitive)
if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range)
{
return _indexOf(s, c, cs);
}
/// Ditto
ptrdiff_t indexOf(C)(scope const(C)[] s, dchar c, CaseSensitive cs = Yes.caseSensitive)
if (isSomeChar!C)
{
return _indexOf(s, c, cs);
}
/// Ditto
ptrdiff_t indexOf(Range)(Range s, dchar c, size_t startIdx, CaseSensitive cs = Yes.caseSensitive)
if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range)
{
return _indexOf(s, c, startIdx, cs);
}
/// Ditto
ptrdiff_t indexOf(C)(scope const(C)[] s, dchar c, size_t startIdx, CaseSensitive cs = Yes.caseSensitive)
if (isSomeChar!C)
{
return _indexOf(s, c, startIdx, cs);
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(indexOf(s, 'W') == 6);
assert(indexOf(s, 'Z') == -1);
assert(indexOf(s, 'w', No.caseSensitive) == 6);
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(indexOf(s, 'W', 4) == 6);
assert(indexOf(s, 'Z', 100) == -1);
assert(indexOf(s, 'w', 3, No.caseSensitive) == 6);
}
@safe pure unittest
{
assert(testAliasedString!indexOf("std/string.d", '/'));
enum S : string { a = "std/string.d" }
assert(S.a.indexOf('/') == 3);
char[S.a.length] sa = S.a[];
assert(sa.indexOf('/') == 3);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
import std.traits : EnumMembers;
import std.utf : byChar, byWchar, byDchar;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
assert(indexOf(cast(S) null, cast(dchar)'a') == -1);
assert(indexOf(to!S("def"), cast(dchar)'a') == -1);
assert(indexOf(to!S("abba"), cast(dchar)'a') == 0);
assert(indexOf(to!S("def"), cast(dchar)'f') == 2);
assert(indexOf(to!S("def"), cast(dchar)'a', No.caseSensitive) == -1);
assert(indexOf(to!S("def"), cast(dchar)'a', No.caseSensitive) == -1);
assert(indexOf(to!S("Abba"), cast(dchar)'a', No.caseSensitive) == 0);
assert(indexOf(to!S("def"), cast(dchar)'F', No.caseSensitive) == 2);
assert(indexOf(to!S("ödef"), 'ö', No.caseSensitive) == 0);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
assert(indexOf("def", cast(char)'f', No.caseSensitive) == 2);
assert(indexOf(sPlts, cast(char)'P', No.caseSensitive) == 23);
assert(indexOf(sPlts, cast(char)'R', No.caseSensitive) == 2);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOf("hello\U00010143\u0100\U00010143", '\u0100', cs) == 9);
assert(indexOf("hello\U00010143\u0100\U00010143"w, '\u0100', cs) == 7);
assert(indexOf("hello\U00010143\u0100\U00010143"d, '\u0100', cs) == 6);
assert(indexOf("hello\U00010143\u0100\U00010143".byChar, '\u0100', cs) == 9);
assert(indexOf("hello\U00010143\u0100\U00010143".byWchar, '\u0100', cs) == 7);
assert(indexOf("hello\U00010143\u0100\U00010143".byDchar, '\u0100', cs) == 6);
assert(indexOf("hello\U000007FF\u0100\U00010143".byChar, 'l', cs) == 2);
assert(indexOf("hello\U000007FF\u0100\U00010143".byChar, '\u0100', cs) == 7);
assert(indexOf("hello\U0000EFFF\u0100\U00010143".byChar, '\u0100', cs) == 8);
assert(indexOf("hello\U00010100".byWchar, '\U00010100', cs) == 5);
assert(indexOf("hello\U00010100".byWchar, '\U00010101', cs) == -1);
}
char[10] fixedSizeArray = "0123456789";
assert(indexOf(fixedSizeArray, '2') == 2);
});
}
@safe pure unittest
{
assert(testAliasedString!indexOf("std/string.d", '/', 0));
assert(testAliasedString!indexOf("std/string.d", '/', 1));
assert(testAliasedString!indexOf("std/string.d", '/', 4));
enum S : string { a = "std/string.d" }
assert(S.a.indexOf('/', 0) == 3);
assert(S.a.indexOf('/', 1) == 3);
assert(S.a.indexOf('/', 4) == -1);
char[S.a.length] sa = S.a[];
assert(sa.indexOf('/', 0) == 3);
assert(sa.indexOf('/', 1) == 3);
assert(sa.indexOf('/', 4) == -1);
}
@safe pure unittest
{
import std.conv : to;
import std.traits : EnumMembers;
import std.utf : byCodeUnit, byChar, byWchar;
assert("hello".byCodeUnit.indexOf(cast(dchar)'l', 1) == 2);
assert("hello".byWchar.indexOf(cast(dchar)'l', 1) == 2);
assert("hello".byWchar.indexOf(cast(dchar)'l', 6) == -1);
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
assert(indexOf(cast(S) null, cast(dchar)'a', 1) == -1);
assert(indexOf(to!S("def"), cast(dchar)'a', 1) == -1);
assert(indexOf(to!S("abba"), cast(dchar)'a', 1) == 3);
assert(indexOf(to!S("def"), cast(dchar)'f', 1) == 2);
assert((to!S("def")).indexOf(cast(dchar)'a', 1,
No.caseSensitive) == -1);
assert(indexOf(to!S("def"), cast(dchar)'a', 1,
No.caseSensitive) == -1);
assert(indexOf(to!S("def"), cast(dchar)'a', 12,
No.caseSensitive) == -1);
assert(indexOf(to!S("AbbA"), cast(dchar)'a', 2,
No.caseSensitive) == 3);
assert(indexOf(to!S("def"), cast(dchar)'F', 2, No.caseSensitive) == 2);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
assert(indexOf("def", cast(char)'f', cast(uint) 2,
No.caseSensitive) == 2);
assert(indexOf(sPlts, cast(char)'P', 12, No.caseSensitive) == 23);
assert(indexOf(sPlts, cast(char)'R', cast(ulong) 1,
No.caseSensitive) == 2);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOf("hello\U00010143\u0100\U00010143", '\u0100', 2, cs)
== 9);
assert(indexOf("hello\U00010143\u0100\U00010143"w, '\u0100', 3, cs)
== 7);
assert(indexOf("hello\U00010143\u0100\U00010143"d, '\u0100', 6, cs)
== 6);
}
}
private ptrdiff_t _indexOf(Range)(Range s, dchar c, CaseSensitive cs = Yes.caseSensitive)
if (isInputRange!Range && isSomeChar!(ElementType!Range))
{
static import std.ascii;
static import std.uni;
import std.utf : byDchar, byCodeUnit, UTFException, codeLength;
alias Char = Unqual!(ElementEncodingType!Range);
if (cs == Yes.caseSensitive)
{
static if (Char.sizeof == 1 && isSomeString!Range)
{
if (std.ascii.isASCII(c) && !__ctfe)
{ // Plain old ASCII
static ptrdiff_t trustedmemchr(Range s, char c) @trusted
{
import core.stdc.string : memchr;
const p = cast(const(Char)*)memchr(s.ptr, c, s.length);
return p ? p - s.ptr : -1;
}
return trustedmemchr(s, cast(char) c);
}
}
static if (Char.sizeof == 1)
{
if (c <= 0x7F)
{
ptrdiff_t i;
foreach (const c2; s)
{
if (c == c2)
return i;
++i;
}
}
else
{
ptrdiff_t i;
foreach (const c2; s.byDchar())
{
if (c == c2)
return i;
i += codeLength!Char(c2);
}
}
}
else static if (Char.sizeof == 2)
{
if (c <= 0xFFFF)
{
ptrdiff_t i;
foreach (const c2; s)
{
if (c == c2)
return i;
++i;
}
}
else if (c <= 0x10FFFF)
{
// Encode UTF-16 surrogate pair
const wchar c1 = cast(wchar)((((c - 0x10000) >> 10) & 0x3FF) + 0xD800);
const wchar c2 = cast(wchar)(((c - 0x10000) & 0x3FF) + 0xDC00);
ptrdiff_t i;
for (auto r = s.byCodeUnit(); !r.empty; r.popFront())
{
if (c1 == r.front)
{
r.popFront();
if (r.empty) // invalid UTF - missing second of pair
break;
if (c2 == r.front)
return i;
++i;
}
++i;
}
}
}
else static if (Char.sizeof == 4)
{
ptrdiff_t i;
foreach (const c2; s)
{
if (c == c2)
return i;
++i;
}
}
else
static assert(0);
return -1;
}
else
{
if (std.ascii.isASCII(c))
{ // Plain old ASCII
immutable c1 = cast(char) std.ascii.toLower(c);
ptrdiff_t i;
foreach (const c2; s.byCodeUnit())
{
if (c1 == std.ascii.toLower(c2))
return i;
++i;
}
}
else
{ // c is a universal character
immutable c1 = std.uni.toLower(c);
ptrdiff_t i;
foreach (const c2; s.byDchar())
{
if (c1 == std.uni.toLower(c2))
return i;
i += codeLength!Char(c2);
}
}
}
return -1;
}
private ptrdiff_t _indexOf(Range)(Range s, dchar c, size_t startIdx, CaseSensitive cs = Yes.caseSensitive)
if (isInputRange!Range && isSomeChar!(ElementType!Range))
{
static if (isSomeString!(typeof(s)) ||
(hasSlicing!(typeof(s)) && hasLength!(typeof(s))))
{
if (startIdx < s.length)
{
ptrdiff_t foundIdx = indexOf(s[startIdx .. $], c, cs);
if (foundIdx != -1)
{
return foundIdx + cast(ptrdiff_t) startIdx;
}
}
}
else
{
foreach (i; 0 .. startIdx)
{
if (s.empty)
return -1;
s.popFront();
}
ptrdiff_t foundIdx = indexOf(s, c, cs);
if (foundIdx != -1)
{
return foundIdx + cast(ptrdiff_t) startIdx;
}
}
return -1;
}
private template _indexOfStr(CaseSensitive cs)
{
private ptrdiff_t _indexOfStr(Range, Char)(Range s, const(Char)[] sub)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
isSomeChar!Char)
{
alias Char1 = Unqual!(ElementEncodingType!Range);
static if (isSomeString!Range)
{
static if (is(Char1 == Char) && cs == Yes.caseSensitive)
{
import std.algorithm.searching : countUntil;
return s.representation.countUntil(sub.representation);
}
else
{
import std.algorithm.searching : find;
const(Char1)[] balance;
static if (cs == Yes.caseSensitive)
{
balance = find(s, sub);
}
else
{
balance = find!
((a, b) => toLower(a) == toLower(b))
(s, sub);
}
return () @trusted { return balance.empty ? -1 : balance.ptr - s.ptr; } ();
}
}
else
{
if (s.empty)
return -1;
if (sub.empty)
return 0; // degenerate case
import std.utf : byDchar, codeLength;
auto subr = sub.byDchar; // decode sub[] by dchar's
dchar sub0 = subr.front; // cache first character of sub[]
subr.popFront();
// Special case for single character search
if (subr.empty)
return indexOf(s, sub0, cs);
static if (cs == No.caseSensitive)
sub0 = toLower(sub0);
/* Classic double nested loop search algorithm
*/
ptrdiff_t index = 0; // count code unit index into s
for (auto sbydchar = s.byDchar(); !sbydchar.empty; sbydchar.popFront())
{
dchar c2 = sbydchar.front;
static if (cs == No.caseSensitive)
c2 = toLower(c2);
if (c2 == sub0)
{
auto s2 = sbydchar.save; // why s must be a forward range
foreach (c; subr.save)
{
s2.popFront();
if (s2.empty)
return -1;
static if (cs == Yes.caseSensitive)
{
if (c != s2.front)
goto Lnext;
}
else
{
if (toLower(c) != toLower(s2.front))
goto Lnext;
}
}
return index;
}
Lnext:
index += codeLength!Char1(c2);
}
return -1;
}
}
}
/++
Searches for substring in `s`.
Params:
s = string or ForwardRange of characters to search in correct UTF format
sub = substring to search for
startIdx = the index into s to start searching from
cs = `Yes.caseSensitive` (default) or `No.caseSensitive`
Returns:
the index of the first occurrence of `sub` in `s` with
respect to the start index `startIdx`. If `sub` is not found,
then `-1` is returned.
If the arguments are not valid UTF, the result will still
be in the range [-1 .. s.length], but will not be reliable otherwise.
If `sub` is found the value of the returned index is at least
`startIdx`.
Throws:
If the sequence starting at `startIdx` does not represent a well
formed codepoint, then a $(REF UTFException, std,utf) may be thrown.
Bugs:
Does not work with case insensitive strings where the mapping of
tolower and toupper is not 1:1.
+/
ptrdiff_t indexOf(Range, Char)(Range s, const(Char)[] sub)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
isSomeChar!Char)
{
return _indexOfStr!(Yes.caseSensitive)(s, sub);
}
/// Ditto
ptrdiff_t indexOf(Range, Char)(Range s, const(Char)[] sub, in CaseSensitive cs)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
isSomeChar!Char)
{
if (cs == Yes.caseSensitive)
return indexOf(s, sub);
else
return _indexOfStr!(No.caseSensitive)(s, sub);
}
/// Ditto
ptrdiff_t indexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
in size_t startIdx)
@safe
if (isSomeChar!Char1 && isSomeChar!Char2)
{
if (startIdx >= s.length)
return -1;
ptrdiff_t foundIdx = indexOf(s[startIdx .. $], sub);
if (foundIdx == -1)
return -1;
return foundIdx + cast(ptrdiff_t) startIdx;
}
/// Ditto
ptrdiff_t indexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
in size_t startIdx, in CaseSensitive cs)
@safe
if (isSomeChar!Char1 && isSomeChar!Char2)
{
if (startIdx >= s.length)
return -1;
ptrdiff_t foundIdx = indexOf(s[startIdx .. $], sub, cs);
if (foundIdx == -1)
return -1;
return foundIdx + cast(ptrdiff_t) startIdx;
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(indexOf(s, "Wo", 4) == 6);
assert(indexOf(s, "Zo", 100) == -1);
assert(indexOf(s, "wo", 3, No.caseSensitive) == 6);
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(indexOf(s, "Wo") == 6);
assert(indexOf(s, "Zo") == -1);
assert(indexOf(s, "wO", No.caseSensitive) == 6);
}
@safe pure nothrow @nogc unittest
{
string s = "Hello World";
assert(indexOf(s, "Wo", 4) == 6);
assert(indexOf(s, "Zo", 100) == -1);
assert(indexOf(s, "Wo") == 6);
assert(indexOf(s, "Zo") == -1);
}
ptrdiff_t indexOf(Range, Char)(auto ref Range s, const(Char)[] sub)
if (!(isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
isSomeChar!Char) &&
is(StringTypeOf!Range))
{
return indexOf!(StringTypeOf!Range)(s, sub);
}
ptrdiff_t indexOf(Range, Char)(auto ref Range s, const(Char)[] sub,
in CaseSensitive cs)
if (!(isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
isSomeChar!Char) &&
is(StringTypeOf!Range))
{
return indexOf!(StringTypeOf!Range)(s, sub, cs);
}
@safe pure nothrow @nogc unittest
{
assert(testAliasedString!indexOf("std/string.d", "string"));
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
import std.traits : EnumMembers;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
assert(indexOf(cast(S) null, to!T("a")) == -1);
assert(indexOf(to!S("def"), to!T("a")) == -1);
assert(indexOf(to!S("abba"), to!T("a")) == 0);
assert(indexOf(to!S("def"), to!T("f")) == 2);
assert(indexOf(to!S("dfefffg"), to!T("fff")) == 3);
assert(indexOf(to!S("dfeffgfff"), to!T("fff")) == 6);
assert(indexOf(to!S("dfeffgfff"), to!T("a"), No.caseSensitive) == -1);
assert(indexOf(to!S("def"), to!T("a"), No.caseSensitive) == -1);
assert(indexOf(to!S("abba"), to!T("a"), No.caseSensitive) == 0);
assert(indexOf(to!S("def"), to!T("f"), No.caseSensitive) == 2);
assert(indexOf(to!S("dfefffg"), to!T("fff"), No.caseSensitive) == 3);
assert(indexOf(to!S("dfeffgfff"), to!T("fff"), No.caseSensitive) == 6);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
S sMars = "Who\'s \'My Favorite Maritian?\'";
assert(indexOf(sMars, to!T("MY fAVe"), No.caseSensitive) == -1);
assert(indexOf(sMars, to!T("mY fAVOriTe"), No.caseSensitive) == 7);
assert(indexOf(sPlts, to!T("mArS:"), No.caseSensitive) == 0);
assert(indexOf(sPlts, to!T("rOcK"), No.caseSensitive) == 17);
assert(indexOf(sPlts, to!T("Un."), No.caseSensitive) == 41);
assert(indexOf(sPlts, to!T(sPlts), No.caseSensitive) == 0);
assert(indexOf("\u0100", to!T("\u0100"), No.caseSensitive) == 0);
// Thanks to Carlos Santander B. and zwang
assert(indexOf("sus mejores cortesanos. Se embarcaron en el puerto de Dubai y",
to!T("page-break-before"), No.caseSensitive) == -1);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOf("hello\U00010143\u0100\U00010143", to!S("\u0100"), cs) == 9);
assert(indexOf("hello\U00010143\u0100\U00010143"w, to!S("\u0100"), cs) == 7);
assert(indexOf("hello\U00010143\u0100\U00010143"d, to!S("\u0100"), cs) == 6);
}
}
});
}
@safe pure @nogc nothrow
unittest
{
import std.traits : EnumMembers;
import std.utf : byWchar;
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOf("".byWchar, "", cs) == -1);
assert(indexOf("hello".byWchar, "", cs) == 0);
assert(indexOf("hello".byWchar, "l", cs) == 2);
assert(indexOf("heLLo".byWchar, "LL", cs) == 2);
assert(indexOf("hello".byWchar, "lox", cs) == -1);
assert(indexOf("hello".byWchar, "betty", cs) == -1);
assert(indexOf("hello\U00010143\u0100*\U00010143".byWchar, "\u0100*", cs) == 7);
}
}
@safe pure unittest
{
import std.conv : to;
import std.traits : EnumMembers;
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
assert(indexOf(cast(S) null, to!T("a"), 1337) == -1);
assert(indexOf(to!S("def"), to!T("a"), 0) == -1);
assert(indexOf(to!S("abba"), to!T("a"), 2) == 3);
assert(indexOf(to!S("def"), to!T("f"), 1) == 2);
assert(indexOf(to!S("dfefffg"), to!T("fff"), 1) == 3);
assert(indexOf(to!S("dfeffgfff"), to!T("fff"), 5) == 6);
assert(indexOf(to!S("dfeffgfff"), to!T("a"), 1, No.caseSensitive) == -1);
assert(indexOf(to!S("def"), to!T("a"), 2, No.caseSensitive) == -1);
assert(indexOf(to!S("abba"), to!T("a"), 3, No.caseSensitive) == 3);
assert(indexOf(to!S("def"), to!T("f"), 1, No.caseSensitive) == 2);
assert(indexOf(to!S("dfefffg"), to!T("fff"), 2, No.caseSensitive) == 3);
assert(indexOf(to!S("dfeffgfff"), to!T("fff"), 4, No.caseSensitive) == 6);
assert(indexOf(to!S("dfeffgffföä"), to!T("öä"), 9, No.caseSensitive) == 9,
to!string(indexOf(to!S("dfeffgffföä"), to!T("öä"), 9, No.caseSensitive))
~ " " ~ S.stringof ~ " " ~ T.stringof);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
S sMars = "Who\'s \'My Favorite Maritian?\'";
assert(indexOf(sMars, to!T("MY fAVe"), 10,
No.caseSensitive) == -1);
assert(indexOf(sMars, to!T("mY fAVOriTe"), 4, No.caseSensitive) == 7);
assert(indexOf(sPlts, to!T("mArS:"), 0, No.caseSensitive) == 0);
assert(indexOf(sPlts, to!T("rOcK"), 12, No.caseSensitive) == 17);
assert(indexOf(sPlts, to!T("Un."), 32, No.caseSensitive) == 41);
assert(indexOf(sPlts, to!T(sPlts), 0, No.caseSensitive) == 0);
assert(indexOf("\u0100", to!T("\u0100"), 0, No.caseSensitive) == 0);
// Thanks to Carlos Santander B. and zwang
assert(indexOf("sus mejores cortesanos. Se embarcaron en el puerto de Dubai y",
to!T("page-break-before"), 10, No.caseSensitive) == -1);
// In order for indexOf with and without index to be consistent
assert(indexOf(to!S(""), to!T("")) == indexOf(to!S(""), to!T(""), 0));
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOf("hello\U00010143\u0100\U00010143", to!S("\u0100"),
3, cs) == 9);
assert(indexOf("hello\U00010143\u0100\U00010143"w, to!S("\u0100"),
3, cs) == 7);
assert(indexOf("hello\U00010143\u0100\U00010143"d, to!S("\u0100"),
3, cs) == 6);
}
}
}
/++
Params:
s = string to search
c = character to search for
startIdx = the index into s to start searching from
cs = `Yes.caseSensitive` or `No.caseSensitive`
Returns:
The index of the last occurrence of `c` in `s`. If `c` is not
found, then `-1` is returned. The `startIdx` slices `s` in
the following way $(D s[0 .. startIdx]). `startIdx` represents a
codeunit index in `s`.
Throws:
If the sequence ending at `startIdx` does not represent a well
formed codepoint, then a $(REF UTFException, std,utf) may be thrown.
`cs` indicates whether the comparisons are case sensitive.
+/
ptrdiff_t lastIndexOf(Char)(const(Char)[] s, in dchar c,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char)
{
static import std.ascii, std.uni;
import std.utf : canSearchInCodeUnits;
if (cs == Yes.caseSensitive)
{
if (canSearchInCodeUnits!Char(c))
{
foreach_reverse (i, it; s)
{
if (it == c)
{
return i;
}
}
}
else
{
foreach_reverse (i, dchar it; s)
{
if (it == c)
{
return i;
}
}
}
}
else
{
if (std.ascii.isASCII(c))
{
immutable c1 = std.ascii.toLower(c);
foreach_reverse (i, it; s)
{
immutable c2 = std.ascii.toLower(it);
if (c1 == c2)
{
return i;
}
}
}
else
{
immutable c1 = std.uni.toLower(c);
foreach_reverse (i, dchar it; s)
{
immutable c2 = std.uni.toLower(it);
if (c1 == c2)
{
return i;
}
}
}
}
return -1;
}
/// Ditto
ptrdiff_t lastIndexOf(Char)(const(Char)[] s, in dchar c, in size_t startIdx,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char)
{
if (startIdx <= s.length)
{
return lastIndexOf(s[0u .. startIdx], c, cs);
}
return -1;
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(lastIndexOf(s, 'l') == 9);
assert(lastIndexOf(s, 'Z') == -1);
assert(lastIndexOf(s, 'L', No.caseSensitive) == 9);
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(lastIndexOf(s, 'l', 4) == 3);
assert(lastIndexOf(s, 'Z', 1337) == -1);
assert(lastIndexOf(s, 'L', 7, No.caseSensitive) == 3);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
import std.traits : EnumMembers;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
assert(lastIndexOf(cast(S) null, 'a') == -1);
assert(lastIndexOf(to!S("def"), 'a') == -1);
assert(lastIndexOf(to!S("abba"), 'a') == 3);
assert(lastIndexOf(to!S("def"), 'f') == 2);
assert(lastIndexOf(to!S("ödef"), 'ö') == 0);
assert(lastIndexOf(cast(S) null, 'a', No.caseSensitive) == -1);
assert(lastIndexOf(to!S("def"), 'a', No.caseSensitive) == -1);
assert(lastIndexOf(to!S("AbbA"), 'a', No.caseSensitive) == 3);
assert(lastIndexOf(to!S("def"), 'F', No.caseSensitive) == 2);
assert(lastIndexOf(to!S("ödef"), 'ö', No.caseSensitive) == 0);
assert(lastIndexOf(to!S("i\u0100def"), to!dchar("\u0100"),
No.caseSensitive) == 1);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
assert(lastIndexOf(to!S("def"), 'f', No.caseSensitive) == 2);
assert(lastIndexOf(sPlts, 'M', No.caseSensitive) == 34);
assert(lastIndexOf(sPlts, 'S', No.caseSensitive) == 40);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(lastIndexOf("\U00010143\u0100\U00010143hello", '\u0100', cs) == 4);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"w, '\u0100', cs) == 2);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"d, '\u0100', cs) == 1);
}
});
}
@safe pure unittest
{
import std.conv : to;
import std.traits : EnumMembers;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
assert(lastIndexOf(cast(S) null, 'a') == -1);
assert(lastIndexOf(to!S("def"), 'a') == -1);
assert(lastIndexOf(to!S("abba"), 'a', 3) == 0);
assert(lastIndexOf(to!S("deff"), 'f', 3) == 2);
assert(lastIndexOf(cast(S) null, 'a', No.caseSensitive) == -1);
assert(lastIndexOf(to!S("def"), 'a', No.caseSensitive) == -1);
assert(lastIndexOf(to!S("AbbAa"), 'a', to!ushort(4), No.caseSensitive) == 3,
to!string(lastIndexOf(to!S("AbbAa"), 'a', 4, No.caseSensitive)));
assert(lastIndexOf(to!S("def"), 'F', 3, No.caseSensitive) == 2);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
assert(lastIndexOf(to!S("def"), 'f', 4, No.caseSensitive) == -1);
assert(lastIndexOf(sPlts, 'M', sPlts.length -2, No.caseSensitive) == 34);
assert(lastIndexOf(sPlts, 'S', sPlts.length -2, No.caseSensitive) == 40);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(lastIndexOf("\U00010143\u0100\U00010143hello", '\u0100', cs) == 4);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"w, '\u0100', cs) == 2);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"d, '\u0100', cs) == 1);
}
}
/++
Params:
s = string to search
sub = substring to search for
startIdx = the index into s to start searching from
cs = `Yes.caseSensitive` or `No.caseSensitive`
Returns:
the index of the last occurrence of `sub` in `s`. If `sub` is
not found, then `-1` is returned. The `startIdx` slices `s`
in the following way $(D s[0 .. startIdx]). `startIdx` represents a
codeunit index in `s`.
Throws:
If the sequence ending at `startIdx` does not represent a well
formed codepoint, then a $(REF UTFException, std,utf) may be thrown.
`cs` indicates whether the comparisons are case sensitive.
+/
ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char1 && isSomeChar!Char2)
{
import std.algorithm.searching : endsWith;
import std.conv : to;
import std.range.primitives : walkLength;
static import std.uni;
import std.utf : strideBack;
if (sub.empty)
return -1;
if (walkLength(sub) == 1)
return lastIndexOf(s, sub.front, cs);
if (cs == Yes.caseSensitive)
{
static if (is(immutable Char1 == immutable Char2))
{
import core.stdc.string : memcmp;
immutable c = sub[0];
for (ptrdiff_t i = s.length - sub.length; i >= 0; --i)
{
if (s[i] == c)
{
if (__ctfe)
{
if (s[i + 1 .. i + sub.length] == sub[1 .. $])
return i;
}
else
{
auto trustedMemcmp(in void* s1, in void* s2, size_t n) @trusted
{
return memcmp(s1, s2, n);
}
if (trustedMemcmp(&s[i + 1], &sub[1],
(sub.length - 1) * Char1.sizeof) == 0)
return i;
}
}
}
}
else
{
for (size_t i = s.length; !s.empty;)
{
if (s.endsWith(sub))
return cast(ptrdiff_t) i - to!(const(Char1)[])(sub).length;
i -= strideBack(s, i);
s = s[0 .. i];
}
}
}
else
{
for (size_t i = s.length; !s.empty;)
{
if (endsWith!((a, b) => std.uni.toLower(a) == std.uni.toLower(b))
(s, sub))
{
return cast(ptrdiff_t) i - to!(const(Char1)[])(sub).length;
}
i -= strideBack(s, i);
s = s[0 .. i];
}
}
return -1;
}
/// Ditto
ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
in size_t startIdx, in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char1 && isSomeChar!Char2)
{
if (startIdx <= s.length)
{
return lastIndexOf(s[0u .. startIdx], sub, cs);
}
return -1;
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(lastIndexOf(s, "ll") == 2);
assert(lastIndexOf(s, "Zo") == -1);
assert(lastIndexOf(s, "lL", No.caseSensitive) == 2);
}
///
@safe pure unittest
{
import std.typecons : No;
string s = "Hello World";
assert(lastIndexOf(s, "ll", 4) == 2);
assert(lastIndexOf(s, "Zo", 128) == -1);
assert(lastIndexOf(s, "lL", 3, No.caseSensitive) == -1);
}
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
auto r = to!S("").lastIndexOf("hello");
assert(r == -1, to!string(r));
r = to!S("hello").lastIndexOf("");
assert(r == -1, to!string(r));
r = to!S("").lastIndexOf("");
assert(r == -1, to!string(r));
}}
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
import std.traits : EnumMembers;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
enum typeStr = S.stringof ~ " " ~ T.stringof;
assert(lastIndexOf(cast(S) null, to!T("a")) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("c")) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("cd")) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("ef")) == 8, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("c")) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("cd")) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("x")) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("xy")) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("")) == -1, typeStr);
assert(lastIndexOf(to!S("öabcdefcdef"), to!T("ö")) == 0, typeStr);
assert(lastIndexOf(cast(S) null, to!T("a"), No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("c"), No.caseSensitive) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("cD"), No.caseSensitive) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("x"), No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("xy"), No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T(""), No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("öabcdefcdef"), to!T("ö"), No.caseSensitive) == 0, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("c"), No.caseSensitive) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("cd"), No.caseSensitive) == 6, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("def"), No.caseSensitive) == 7, typeStr);
assert(lastIndexOf(to!S("ödfeffgfff"), to!T("ö"), Yes.caseSensitive) == 0);
S sPlts = "Mars: the fourth Rock (Planet) from the Sun.";
S sMars = "Who\'s \'My Favorite Maritian?\'";
assert(lastIndexOf(sMars, to!T("RiTE maR"), No.caseSensitive) == 14, typeStr);
assert(lastIndexOf(sPlts, to!T("FOuRTh"), No.caseSensitive) == 10, typeStr);
assert(lastIndexOf(sMars, to!T("whO\'s \'MY"), No.caseSensitive) == 0, typeStr);
assert(lastIndexOf(sMars, to!T(sMars), No.caseSensitive) == 0, typeStr);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
enum csString = to!string(cs);
assert(lastIndexOf("\U00010143\u0100\U00010143hello", to!S("\u0100"), cs) == 4, csString);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"w, to!S("\u0100"), cs) == 2, csString);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"d, to!S("\u0100"), cs) == 1, csString);
}
}
});
}
// https://issues.dlang.org/show_bug.cgi?id=13529
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
enum typeStr = S.stringof ~ " " ~ T.stringof;
auto idx = lastIndexOf(to!T("Hällö Wörldö ö"),to!S("ö ö"));
assert(idx != -1, to!string(idx) ~ " " ~ typeStr);
idx = lastIndexOf(to!T("Hällö Wörldö ö"),to!S("ö öd"));
assert(idx == -1, to!string(idx) ~ " " ~ typeStr);
}}
}
}
@safe pure unittest
{
import std.conv : to;
import std.traits : EnumMembers;
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
enum typeStr = S.stringof ~ " " ~ T.stringof;
assert(lastIndexOf(cast(S) null, to!T("a")) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("c"), 5) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("cd"), 3) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("ef"), 6) == 4, typeStr ~
format(" %u", lastIndexOf(to!S("abcdefcdef"), to!T("ef"), 6)));
assert(lastIndexOf(to!S("abcdefCdef"), to!T("c"), 5) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("cd"), 3) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdefx"), to!T("x"), 1) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdefxy"), to!T("xy"), 6) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T(""), 8) == -1, typeStr);
assert(lastIndexOf(to!S("öafö"), to!T("ö"), 3) == 0, typeStr ~
to!string(lastIndexOf(to!S("öafö"), to!T("ö"), 3))); //BUG 10472
assert(lastIndexOf(cast(S) null, to!T("a"), 1, No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("c"), 5, No.caseSensitive) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefCdef"), to!T("cD"), 4, No.caseSensitive) == 2, typeStr ~
" " ~ to!string(lastIndexOf(to!S("abcdefCdef"), to!T("cD"), 3, No.caseSensitive)));
assert(lastIndexOf(to!S("abcdefcdef"), to!T("x"),3 , No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdefXY"), to!T("xy"), 4, No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T(""), 7, No.caseSensitive) == -1, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("c"), 4, No.caseSensitive) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("cd"), 4, No.caseSensitive) == 2, typeStr);
assert(lastIndexOf(to!S("abcdefcdef"), to!T("def"), 6, No.caseSensitive) == 3, typeStr);
assert(lastIndexOf(to!S(""), to!T(""), 0) == lastIndexOf(to!S(""), to!T("")), typeStr);
}}
foreach (cs; EnumMembers!CaseSensitive)
{
enum csString = to!string(cs);
assert(lastIndexOf("\U00010143\u0100\U00010143hello", to!S("\u0100"), 6, cs) == 4, csString);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"w, to!S("\u0100"), 6, cs) == 2, csString);
assert(lastIndexOf("\U00010143\u0100\U00010143hello"d, to!S("\u0100"), 3, cs) == 1, csString);
}
}
}
// https://issues.dlang.org/show_bug.cgi?id=20783
@safe pure @nogc unittest
{
enum lastIndex = "aa".lastIndexOf("ab");
assert(lastIndex == -1);
}
@safe pure @nogc unittest
{
enum lastIndex = "hello hello hell h".lastIndexOf("hello");
assert(lastIndex == 6);
}
private ptrdiff_t indexOfAnyNeitherImpl(bool forward, bool any, Char, Char2)(
const(Char)[] haystack, const(Char2)[] needles,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
import std.algorithm.searching : canFind, findAmong;
if (cs == Yes.caseSensitive)
{
static if (forward)
{
static if (any)
{
size_t n = haystack.findAmong(needles).length;
return n ? haystack.length - n : -1;
}
else
{
foreach (idx, dchar hay; haystack)
{
if (!canFind(needles, hay))
{
return idx;
}
}
}
}
else
{
static if (any)
{
import std.range : retro;
import std.utf : strideBack;
size_t n = haystack.retro.findAmong(needles).source.length;
if (n)
{
return n - haystack.strideBack(n);
}
}
else
{
foreach_reverse (idx, dchar hay; haystack)
{
if (!canFind(needles, hay))
{
return idx;
}
}
}
}
}
else
{
import std.range.primitives : walkLength;
if (needles.length <= 16 && needles.walkLength(17))
{
size_t si = 0;
dchar[16] scratch = void;
foreach ( dchar c; needles)
{
scratch[si++] = toLower(c);
}
static if (forward)
{
foreach (i, dchar c; haystack)
{
if (canFind(scratch[0 .. si], toLower(c)) == any)
{
return i;
}
}
}
else
{
foreach_reverse (i, dchar c; haystack)
{
if (canFind(scratch[0 .. si], toLower(c)) == any)
{
return i;
}
}
}
}
else
{
static bool f(dchar a, dchar b)
{
return toLower(a) == b;
}
static if (forward)
{
foreach (i, dchar c; haystack)
{
if (canFind!f(needles, toLower(c)) == any)
{
return i;
}
}
}
else
{
foreach_reverse (i, dchar c; haystack)
{
if (canFind!f(needles, toLower(c)) == any)
{
return i;
}
}
}
}
}
return -1;
}
/**
Returns the index of the first occurrence of any of the elements in $(D
needles) in `haystack`. If no element of `needles` is found,
then `-1` is returned. The `startIdx` slices `haystack` in the
following way $(D haystack[startIdx .. $]). `startIdx` represents a
codeunit index in `haystack`. If the sequence ending at `startIdx`
does not represent a well formed codepoint, then a $(REF UTFException, std,utf)
may be thrown.
Params:
haystack = String to search for needles in.
needles = Strings to search for in haystack.
startIdx = slices haystack like this $(D haystack[startIdx .. $]). If
the startIdx is greater equal the length of haystack the functions
returns `-1`.
cs = Indicates whether the comparisons are case sensitive.
*/
ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
return indexOfAnyNeitherImpl!(true, true)(haystack, needles, cs);
}
/// Ditto
ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
in size_t startIdx, in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
if (startIdx < haystack.length)
{
ptrdiff_t foundIdx = indexOfAny(haystack[startIdx .. $], needles, cs);
if (foundIdx != -1)
{
return foundIdx + cast(ptrdiff_t) startIdx;
}
}
return -1;
}
///
@safe pure unittest
{
import std.conv : to;
ptrdiff_t i = "helloWorld".indexOfAny("Wr");
assert(i == 5);
i = "öällo world".indexOfAny("lo ");
assert(i == 4, to!string(i));
}
///
@safe pure unittest
{
import std.conv : to;
ptrdiff_t i = "helloWorld".indexOfAny("Wr", 4);
assert(i == 5);
i = "Foo öällo world".indexOfAny("lh", 3);
assert(i == 8, to!string(i));
}
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
auto r = to!S("").indexOfAny("hello");
assert(r == -1, to!string(r));
r = to!S("hello").indexOfAny("");
assert(r == -1, to!string(r));
r = to!S("").indexOfAny("");
assert(r == -1, to!string(r));
}}
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{
assert(indexOfAny(cast(S) null, to!T("a")) == -1);
assert(indexOfAny(to!S("def"), to!T("rsa")) == -1);
assert(indexOfAny(to!S("abba"), to!T("a")) == 0);
assert(indexOfAny(to!S("def"), to!T("f")) == 2);
assert(indexOfAny(to!S("dfefffg"), to!T("fgh")) == 1);
assert(indexOfAny(to!S("dfeffgfff"), to!T("feg")) == 1);
assert(indexOfAny(to!S("zfeffgfff"), to!T("ACDC"),
No.caseSensitive) == -1);
assert(indexOfAny(to!S("def"), to!T("MI6"),
No.caseSensitive) == -1);
assert(indexOfAny(to!S("abba"), to!T("DEA"),
No.caseSensitive) == 0);
assert(indexOfAny(to!S("def"), to!T("FBI"), No.caseSensitive) == 2);
assert(indexOfAny(to!S("dfefffg"), to!T("NSA"), No.caseSensitive)
== -1);
assert(indexOfAny(to!S("dfeffgfff"), to!T("BND"),
No.caseSensitive) == 0);
assert(indexOfAny(to!S("dfeffgfff"), to!T("BNDabCHIJKQEPÖÖSYXÄ??ß"),
No.caseSensitive) == 0);
assert(indexOfAny("\u0100", to!T("\u0100"), No.caseSensitive) == 0);
}
}
}
);
}
@safe pure unittest
{
import std.conv : to;
import std.traits : EnumMembers;
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{
assert(indexOfAny(cast(S) null, to!T("a"), 1337) == -1);
assert(indexOfAny(to!S("def"), to!T("AaF"), 0) == -1);
assert(indexOfAny(to!S("abba"), to!T("NSa"), 2) == 3);
assert(indexOfAny(to!S("def"), to!T("fbi"), 1) == 2);
assert(indexOfAny(to!S("dfefffg"), to!T("foo"), 2) == 3);
assert(indexOfAny(to!S("dfeffgfff"), to!T("fsb"), 5) == 6);
assert(indexOfAny(to!S("dfeffgfff"), to!T("NDS"), 1,
No.caseSensitive) == -1);
assert(indexOfAny(to!S("def"), to!T("DRS"), 2,
No.caseSensitive) == -1);
assert(indexOfAny(to!S("abba"), to!T("SI"), 3,
No.caseSensitive) == -1);
assert(indexOfAny(to!S("deO"), to!T("ASIO"), 1,
No.caseSensitive) == 2);
assert(indexOfAny(to!S("dfefffg"), to!T("fbh"), 2,
No.caseSensitive) == 3);
assert(indexOfAny(to!S("dfeffgfff"), to!T("fEe"), 4,
No.caseSensitive) == 4);
assert(indexOfAny(to!S("dfeffgffföä"), to!T("föä"), 9,
No.caseSensitive) == 9);
assert(indexOfAny("\u0100", to!T("\u0100"), 0,
No.caseSensitive) == 0);
}
foreach (cs; EnumMembers!CaseSensitive)
{
assert(indexOfAny("hello\U00010143\u0100\U00010143",
to!S("e\u0100"), 3, cs) == 9);
assert(indexOfAny("hello\U00010143\u0100\U00010143"w,
to!S("h\u0100"), 3, cs) == 7);
assert(indexOfAny("hello\U00010143\u0100\U00010143"d,
to!S("l\u0100"), 5, cs) == 6);
}
}
}
/**
Returns the index of the last occurrence of any of the elements in $(D
needles) in `haystack`. If no element of `needles` is found,
then `-1` is returned. The `stopIdx` slices `haystack` in the
following way $(D s[0 .. stopIdx]). `stopIdx` represents a codeunit
index in `haystack`. If the sequence ending at `startIdx` does not
represent a well formed codepoint, then a $(REF UTFException, std,utf) may be
thrown.
Params:
haystack = String to search for needles in.
needles = Strings to search for in haystack.
stopIdx = slices haystack like this $(D haystack[0 .. stopIdx]). If
the stopIdx is greater equal the length of haystack the functions
returns `-1`.
cs = Indicates whether the comparisons are case sensitive.
*/
ptrdiff_t lastIndexOfAny(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in CaseSensitive cs = Yes.caseSensitive)
@safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
return indexOfAnyNeitherImpl!(false, true)(haystack, needles, cs);
}
/// Ditto
ptrdiff_t lastIndexOfAny(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in size_t stopIdx,
in CaseSensitive cs = Yes.caseSensitive) @safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
if (stopIdx <= haystack.length)
{
return lastIndexOfAny(haystack[0u .. stopIdx], needles, cs);
}
return -1;
}
///
@safe pure unittest
{
ptrdiff_t i = "helloWorld".lastIndexOfAny("Wlo");
assert(i == 8);
i = "Foo öäöllo world".lastIndexOfAny("öF");
assert(i == 8);
}
///
@safe pure unittest
{
import std.conv : to;
ptrdiff_t i = "helloWorld".lastIndexOfAny("Wlo", 4);
assert(i == 3);
i = "Foo öäöllo world".lastIndexOfAny("öF", 3);
assert(i == 0);
}
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
auto r = to!S("").lastIndexOfAny("hello");
assert(r == -1, to!string(r));
r = to!S("hello").lastIndexOfAny("");
assert(r == -1, to!string(r));
r = to!S("").lastIndexOfAny("");
assert(r == -1, to!string(r));
}}
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
assert(lastIndexOfAny(cast(S) null, to!T("a")) == -1);
assert(lastIndexOfAny(to!S("def"), to!T("rsa")) == -1);
assert(lastIndexOfAny(to!S("abba"), to!T("a")) == 3);
assert(lastIndexOfAny(to!S("def"), to!T("f")) == 2);
assert(lastIndexOfAny(to!S("dfefffg"), to!T("fgh")) == 6);
ptrdiff_t oeIdx = 9;
if (is(S == wstring) || is(S == dstring))
{
oeIdx = 8;
}
auto foundOeIdx = lastIndexOfAny(to!S("dfeffgföf"), to!T("feg"));
assert(foundOeIdx == oeIdx, to!string(foundOeIdx));
assert(lastIndexOfAny(to!S("zfeffgfff"), to!T("ACDC"),
No.caseSensitive) == -1);
assert(lastIndexOfAny(to!S("def"), to!T("MI6"),
No.caseSensitive) == -1);
assert(lastIndexOfAny(to!S("abba"), to!T("DEA"),
No.caseSensitive) == 3);
assert(lastIndexOfAny(to!S("def"), to!T("FBI"),
No.caseSensitive) == 2);
assert(lastIndexOfAny(to!S("dfefffg"), to!T("NSA"),
No.caseSensitive) == -1);
oeIdx = 2;
if (is(S == wstring) || is(S == dstring))
{
oeIdx = 1;
}
assert(lastIndexOfAny(to!S("ödfeffgfff"), to!T("BND"),
No.caseSensitive) == oeIdx);
assert(lastIndexOfAny("\u0100", to!T("\u0100"),
No.caseSensitive) == 0);
}}
}
}
);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
enum typeStr = S.stringof ~ " " ~ T.stringof;
assert(lastIndexOfAny(cast(S) null, to!T("a"), 1337) == -1,
typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("c"), 7) == 6,
typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("cd"), 5) == 3,
typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("ef"), 6) == 5,
typeStr);
assert(lastIndexOfAny(to!S("abcdefCdef"), to!T("c"), 8) == 2,
typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("x"), 7) == -1,
typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("xy"), 4) == -1,
typeStr);
assert(lastIndexOfAny(to!S("öabcdefcdef"), to!T("ö"), 2) == 0,
typeStr);
assert(lastIndexOfAny(cast(S) null, to!T("a"), 1337,
No.caseSensitive) == -1, typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("C"), 7,
No.caseSensitive) == 6, typeStr);
assert(lastIndexOfAny(to!S("ABCDEFCDEF"), to!T("cd"), 5,
No.caseSensitive) == 3, typeStr);
assert(lastIndexOfAny(to!S("abcdefcdef"), to!T("EF"), 6,
No.caseSensitive) == 5, typeStr);
assert(lastIndexOfAny(to!S("ABCDEFcDEF"), to!T("C"), 8,
No.caseSensitive) == 6, typeStr);
assert(lastIndexOfAny(to!S("ABCDEFCDEF"), to!T("x"), 7,
No.caseSensitive) == -1, typeStr);
assert(lastIndexOfAny(to!S("abCdefcdef"), to!T("XY"), 4,
No.caseSensitive) == -1, typeStr);
assert(lastIndexOfAny(to!S("ÖABCDEFCDEF"), to!T("ö"), 2,
No.caseSensitive) == 0, typeStr);
}}
}
}
);
}
/**
Returns the index of the first occurrence of any character not an elements
in `needles` in `haystack`. If all element of `haystack` are
element of `needles` `-1` is returned.
Params:
haystack = String to search for needles in.
needles = Strings to search for in haystack.
startIdx = slices haystack like this $(D haystack[startIdx .. $]). If
the startIdx is greater equal the length of haystack the functions
returns `-1`.
cs = Indicates whether the comparisons are case sensitive.
*/
ptrdiff_t indexOfNeither(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in CaseSensitive cs = Yes.caseSensitive)
@safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
return indexOfAnyNeitherImpl!(true, false)(haystack, needles, cs);
}
/// Ditto
ptrdiff_t indexOfNeither(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in size_t startIdx,
in CaseSensitive cs = Yes.caseSensitive)
@safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
if (startIdx < haystack.length)
{
ptrdiff_t foundIdx = indexOfAnyNeitherImpl!(true, false)(
haystack[startIdx .. $], needles, cs);
if (foundIdx != -1)
{
return foundIdx + cast(ptrdiff_t) startIdx;
}
}
return -1;
}
///
@safe pure unittest
{
assert(indexOfNeither("abba", "a", 2) == 2);
assert(indexOfNeither("def", "de", 1) == 2);
assert(indexOfNeither("dfefffg", "dfe", 4) == 6);
}
///
@safe pure unittest
{
assert(indexOfNeither("def", "a") == 0);
assert(indexOfNeither("def", "de") == 2);
assert(indexOfNeither("dfefffg", "dfe") == 6);
}
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
auto r = to!S("").indexOfNeither("hello");
assert(r == -1, to!string(r));
r = to!S("hello").indexOfNeither("");
assert(r == 0, to!string(r));
r = to!S("").indexOfNeither("");
assert(r == -1, to!string(r));
}}
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{
assert(indexOfNeither(cast(S) null, to!T("a")) == -1);
assert(indexOfNeither("abba", "a") == 1);
assert(indexOfNeither(to!S("dfeffgfff"), to!T("a"),
No.caseSensitive) == 0);
assert(indexOfNeither(to!S("def"), to!T("D"),
No.caseSensitive) == 1);
assert(indexOfNeither(to!S("ABca"), to!T("a"),
No.caseSensitive) == 1);
assert(indexOfNeither(to!S("def"), to!T("f"),
No.caseSensitive) == 0);
assert(indexOfNeither(to!S("DfEfffg"), to!T("dFe"),
No.caseSensitive) == 6);
if (is(S == string))
{
assert(indexOfNeither(to!S("äDfEfffg"), to!T("ädFe"),
No.caseSensitive) == 8,
to!string(indexOfNeither(to!S("äDfEfffg"), to!T("ädFe"),
No.caseSensitive)));
}
else
{
assert(indexOfNeither(to!S("äDfEfffg"), to!T("ädFe"),
No.caseSensitive) == 7,
to!string(indexOfNeither(to!S("äDfEfffg"), to!T("ädFe"),
No.caseSensitive)));
}
}
}
}
);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{
assert(indexOfNeither(cast(S) null, to!T("a"), 1) == -1);
assert(indexOfNeither(to!S("def"), to!T("a"), 1) == 1,
to!string(indexOfNeither(to!S("def"), to!T("a"), 1)));
assert(indexOfNeither(to!S("dfeffgfff"), to!T("a"), 4,
No.caseSensitive) == 4);
assert(indexOfNeither(to!S("def"), to!T("D"), 2,
No.caseSensitive) == 2);
assert(indexOfNeither(to!S("ABca"), to!T("a"), 3,
No.caseSensitive) == -1);
assert(indexOfNeither(to!S("def"), to!T("tzf"), 2,
No.caseSensitive) == -1);
assert(indexOfNeither(to!S("DfEfffg"), to!T("dFe"), 5,
No.caseSensitive) == 6);
if (is(S == string))
{
assert(indexOfNeither(to!S("öDfEfffg"), to!T("äDi"), 2,
No.caseSensitive) == 3, to!string(indexOfNeither(
to!S("öDfEfffg"), to!T("äDi"), 2, No.caseSensitive)));
}
else
{
assert(indexOfNeither(to!S("öDfEfffg"), to!T("äDi"), 2,
No.caseSensitive) == 2, to!string(indexOfNeither(
to!S("öDfEfffg"), to!T("äDi"), 2, No.caseSensitive)));
}
}
}
}
);
}
/**
Returns the last index of the first occurence of any character that is not
an elements in `needles` in `haystack`. If all element of
`haystack` are element of `needles` `-1` is returned.
Params:
haystack = String to search for needles in.
needles = Strings to search for in haystack.
stopIdx = slices haystack like this $(D haystack[0 .. stopIdx]) If
the stopIdx is greater equal the length of haystack the functions
returns `-1`.
cs = Indicates whether the comparisons are case sensitive.
*/
ptrdiff_t lastIndexOfNeither(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in CaseSensitive cs = Yes.caseSensitive)
@safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
return indexOfAnyNeitherImpl!(false, false)(haystack, needles, cs);
}
/// Ditto
ptrdiff_t lastIndexOfNeither(Char,Char2)(const(Char)[] haystack,
const(Char2)[] needles, in size_t stopIdx,
in CaseSensitive cs = Yes.caseSensitive)
@safe pure
if (isSomeChar!Char && isSomeChar!Char2)
{
if (stopIdx < haystack.length)
{
return indexOfAnyNeitherImpl!(false, false)(haystack[0 .. stopIdx],
needles, cs);
}
return -1;
}
///
@safe pure unittest
{
assert(lastIndexOfNeither("abba", "a") == 2);
assert(lastIndexOfNeither("def", "f") == 1);
}
///
@safe pure unittest
{
assert(lastIndexOfNeither("def", "rsa", 3) == -1);
assert(lastIndexOfNeither("abba", "a", 2) == 1);
}
@safe pure unittest
{
import std.conv : to;
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
auto r = to!S("").lastIndexOfNeither("hello");
assert(r == -1, to!string(r));
r = to!S("hello").lastIndexOfNeither("");
assert(r == 4, to!string(r));
r = to!S("").lastIndexOfNeither("");
assert(r == -1, to!string(r));
}}
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
assert(lastIndexOfNeither(cast(S) null, to!T("a")) == -1);
assert(lastIndexOfNeither(to!S("def"), to!T("rsa")) == 2);
assert(lastIndexOfNeither(to!S("dfefffg"), to!T("fgh")) == 2);
ptrdiff_t oeIdx = 8;
if (is(S == string))
{
oeIdx = 9;
}
auto foundOeIdx = lastIndexOfNeither(to!S("ödfefegff"), to!T("zeg"));
assert(foundOeIdx == oeIdx, to!string(foundOeIdx));
assert(lastIndexOfNeither(to!S("zfeffgfsb"), to!T("FSB"),
No.caseSensitive) == 5);
assert(lastIndexOfNeither(to!S("def"), to!T("MI6"),
No.caseSensitive) == 2, to!string(lastIndexOfNeither(to!S("def"),
to!T("MI6"), No.caseSensitive)));
assert(lastIndexOfNeither(to!S("abbadeafsb"), to!T("fSb"),
No.caseSensitive) == 6, to!string(lastIndexOfNeither(
to!S("abbadeafsb"), to!T("fSb"), No.caseSensitive)));
assert(lastIndexOfNeither(to!S("defbi"), to!T("FBI"),
No.caseSensitive) == 1);
assert(lastIndexOfNeither(to!S("dfefffg"), to!T("NSA"),
No.caseSensitive) == 6);
assert(lastIndexOfNeither(to!S("dfeffgfffö"), to!T("BNDabCHIJKQEPÖÖSYXÄ??ß"),
No.caseSensitive) == 8, to!string(lastIndexOfNeither(to!S("dfeffgfffö"),
to!T("BNDabCHIJKQEPÖÖSYXÄ??ß"), No.caseSensitive)));
}}
}
}
);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{
static foreach (T; AliasSeq!(string, wstring, dstring))
{{
assert(lastIndexOfNeither(cast(S) null, to!T("a"), 1337) == -1);
assert(lastIndexOfNeither(to!S("def"), to!T("f")) == 1);
assert(lastIndexOfNeither(to!S("dfefffg"), to!T("fgh")) == 2);
ptrdiff_t oeIdx = 4;
if (is(S == string))
{
oeIdx = 5;
}
auto foundOeIdx = lastIndexOfNeither(to!S("ödfefegff"), to!T("zeg"),
7);
assert(foundOeIdx == oeIdx, to!string(foundOeIdx));
assert(lastIndexOfNeither(to!S("zfeffgfsb"), to!T("FSB"), 6,
No.caseSensitive) == 5);
assert(lastIndexOfNeither(to!S("def"), to!T("MI6"), 2,
No.caseSensitive) == 1, to!string(lastIndexOfNeither(to!S("def"),
to!T("MI6"), 2, No.caseSensitive)));
assert(lastIndexOfNeither(to!S("abbadeafsb"), to!T("fSb"), 6,
No.caseSensitive) == 5, to!string(lastIndexOfNeither(
to!S("abbadeafsb"), to!T("fSb"), 6, No.caseSensitive)));
assert(lastIndexOfNeither(to!S("defbi"), to!T("FBI"), 3,
No.caseSensitive) == 1);
assert(lastIndexOfNeither(to!S("dfefffg"), to!T("NSA"), 2,
No.caseSensitive) == 1, to!string(lastIndexOfNeither(
to!S("dfefffg"), to!T("NSA"), 2, No.caseSensitive)));
}}
}
}
);
}
/**
* Returns the _representation of a string, which has the same type
* as the string except the character type is replaced by `ubyte`,
* `ushort`, or `uint` depending on the character width.
*
* Params:
* s = The string to return the _representation of.
*
* Returns:
* The _representation of the passed string.
*/
auto representation(Char)(Char[] s) @safe pure nothrow @nogc
if (isSomeChar!Char)
{
import std.traits : ModifyTypePreservingTQ;
alias ToRepType(T) = AliasSeq!(ubyte, ushort, uint)[T.sizeof / 2];
return cast(ModifyTypePreservingTQ!(ToRepType, Char)[])s;
}
///
@safe pure unittest
{
string s = "hello";
static assert(is(typeof(representation(s)) == immutable(ubyte)[]));
assert(representation(s) is cast(immutable(ubyte)[]) s);
assert(representation(s) == [0x68, 0x65, 0x6c, 0x6c, 0x6f]);
}
@system pure unittest
{
import std.exception : assertCTFEable;
import std.traits : Fields;
import std.typecons : Tuple;
assertCTFEable!(
{
void test(Char, T)(Char[] str)
{
static assert(is(typeof(representation(str)) == T[]));
assert(representation(str) is cast(T[]) str);
}
static foreach (Type; AliasSeq!(Tuple!(char , ubyte ),
Tuple!(wchar, ushort),
Tuple!(dchar, uint )))
{{
alias Char = Fields!Type[0];
alias Int = Fields!Type[1];
enum immutable(Char)[] hello = "hello";
test!( immutable Char, immutable Int)(hello);
test!( const Char, const Int)(hello);
test!( Char, Int)(hello.dup);
test!( shared Char, shared Int)(cast(shared) hello.dup);
test!(const shared Char, const shared Int)(hello);
}}
});
}
/**
* Capitalize the first character of `s` and convert the rest of `s` to
* lowercase.
*
* Params:
* input = The string to _capitalize.
*
* Returns:
* The capitalized string.
*
* See_Also:
* $(REF asCapitalized, std,uni) for a lazy range version that doesn't allocate memory
*/
S capitalize(S)(S input) @trusted pure
if (isSomeString!S)
{
import std.array : array;
import std.uni : asCapitalized;
import std.utf : byUTF;
return input.asCapitalized.byUTF!(ElementEncodingType!(S)).array;
}
///
pure @safe unittest
{
assert(capitalize("hello") == "Hello");
assert(capitalize("World") == "World");
}
auto capitalize(S)(auto ref S s)
if (!isSomeString!S && is(StringTypeOf!S))
{
return capitalize!(StringTypeOf!S)(s);
}
@safe pure unittest
{
assert(testAliasedString!capitalize("hello"));
}
@safe pure unittest
{
import std.algorithm.comparison : cmp;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring, char[], wchar[], dchar[]))
{{
S s1 = to!S("FoL");
S s2;
s2 = capitalize(s1);
assert(cmp(s2, "Fol") == 0);
assert(s2 !is s1);
s2 = capitalize(s1[0 .. 2]);
assert(cmp(s2, "Fo") == 0);
s1 = to!S("fOl");
s2 = capitalize(s1);
assert(cmp(s2, "Fol") == 0);
assert(s2 !is s1);
s1 = to!S("\u0131 \u0130");
s2 = capitalize(s1);
assert(cmp(s2, "\u0049 i\u0307") == 0);
assert(s2 !is s1);
s1 = to!S("\u017F \u0049");
s2 = capitalize(s1);
assert(cmp(s2, "\u0053 \u0069") == 0);
assert(s2 !is s1);
}}
});
}
/++
Split `s` into an array of lines according to the unicode standard using
`'\r'`, `'\n'`, `"\r\n"`, $(REF lineSep, std,uni),
$(REF paraSep, std,uni), `U+0085` (NEL), `'\v'` and `'\f'`
as delimiters. If `keepTerm` is set to `KeepTerminator.yes`, then the
delimiter is included in the strings returned.
Does not throw on invalid UTF; such is simply passed unchanged
to the output.
Allocates memory; use $(LREF lineSplitter) for an alternative that
does not.
Adheres to $(HTTP www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Params:
s = a string of `chars`, `wchars`, or `dchars`, or any custom
type that casts to a `string` type
keepTerm = whether delimiter is included or not in the results
Returns:
array of strings, each element is a line that is a slice of `s`
See_Also:
$(LREF lineSplitter)
$(REF splitter, std,algorithm)
$(REF splitter, std,regex)
+/
alias KeepTerminator = Flag!"keepTerminator";
/// ditto
C[][] splitLines(C)(C[] s, KeepTerminator keepTerm = No.keepTerminator) @safe pure
if (isSomeChar!C)
{
import std.array : appender;
import std.uni : lineSep, paraSep;
size_t iStart = 0;
auto retval = appender!(C[][])();
for (size_t i; i < s.length; ++i)
{
switch (s[i])
{
case '\v', '\f', '\n':
retval.put(s[iStart .. i + (keepTerm == Yes.keepTerminator)]);
iStart = i + 1;
break;
case '\r':
if (i + 1 < s.length && s[i + 1] == '\n')
{
retval.put(s[iStart .. i + (keepTerm == Yes.keepTerminator) * 2]);
iStart = i + 2;
++i;
}
else
{
goto case '\n';
}
break;
static if (s[i].sizeof == 1)
{
/* Manually decode:
* lineSep is E2 80 A8
* paraSep is E2 80 A9
*/
case 0xE2:
if (i + 2 < s.length &&
s[i + 1] == 0x80 &&
(s[i + 2] == 0xA8 || s[i + 2] == 0xA9)
)
{
retval.put(s[iStart .. i + (keepTerm == Yes.keepTerminator) * 3]);
iStart = i + 3;
i += 2;
}
else
goto default;
break;
/* Manually decode:
* NEL is C2 85
*/
case 0xC2:
if (i + 1 < s.length && s[i + 1] == 0x85)
{
retval.put(s[iStart .. i + (keepTerm == Yes.keepTerminator) * 2]);
iStart = i + 2;
i += 1;
}
else
goto default;
break;
}
else
{
case lineSep:
case paraSep:
case '\u0085':
goto case '\n';
}
default:
break;
}
}
if (iStart != s.length)
retval.put(s[iStart .. $]);
return retval.data;
}
///
@safe pure nothrow unittest
{
string s = "Hello\nmy\rname\nis";
assert(splitLines(s) == ["Hello", "my", "name", "is"]);
}
@safe pure nothrow unittest
{
string s = "a\xC2\x86b";
assert(splitLines(s) == [s]);
}
@safe pure nothrow unittest
{
assert(testAliasedString!splitLines("hello\nworld"));
enum S : string { a = "hello\nworld" }
assert(S.a.splitLines() == ["hello", "world"]);
char[S.a.length] sa = S.a[];
assert(sa.splitLines() == ["hello", "world"]);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{{
auto s = to!S(
"\rpeter\n\rpaul\r\njerry\u2028ice\u2029cream\n\nsunday\n" ~
"mon\u2030day\nschadenfreude\vkindergarten\f\vcookies\u0085"
);
auto lines = splitLines(s);
assert(lines.length == 14);
assert(lines[0] == "");
assert(lines[1] == "peter");
assert(lines[2] == "");
assert(lines[3] == "paul");
assert(lines[4] == "jerry");
assert(lines[5] == "ice");
assert(lines[6] == "cream");
assert(lines[7] == "");
assert(lines[8] == "sunday");
assert(lines[9] == "mon\u2030day");
assert(lines[10] == "schadenfreude");
assert(lines[11] == "kindergarten");
assert(lines[12] == "");
assert(lines[13] == "cookies");
ubyte[] u = ['a', 0xFF, 0x12, 'b']; // invalid UTF
auto ulines = splitLines(cast(char[]) u);
assert(cast(ubyte[])(ulines[0]) == u);
lines = splitLines(s, Yes.keepTerminator);
assert(lines.length == 14);
assert(lines[0] == "\r");
assert(lines[1] == "peter\n");
assert(lines[2] == "\r");
assert(lines[3] == "paul\r\n");
assert(lines[4] == "jerry\u2028");
assert(lines[5] == "ice\u2029");
assert(lines[6] == "cream\n");
assert(lines[7] == "\n");
assert(lines[8] == "sunday\n");
assert(lines[9] == "mon\u2030day\n");
assert(lines[10] == "schadenfreude\v");
assert(lines[11] == "kindergarten\f");
assert(lines[12] == "\v");
assert(lines[13] == "cookies\u0085");
s.popBack(); // Lop-off trailing \n
lines = splitLines(s);
assert(lines.length == 14);
assert(lines[9] == "mon\u2030day");
lines = splitLines(s, Yes.keepTerminator);
assert(lines.length == 14);
assert(lines[13] == "cookies");
}}
});
}
private struct LineSplitter(KeepTerminator keepTerm = No.keepTerminator, Range)
{
import std.conv : unsigned;
import std.uni : lineSep, paraSep;
private:
Range _input;
alias IndexType = typeof(unsigned(_input.length));
enum IndexType _unComputed = IndexType.max;
IndexType iStart = _unComputed;
IndexType iEnd = 0;
IndexType iNext = 0;
public:
this(Range input)
{
_input = input;
}
static if (isInfinite!Range)
{
enum bool empty = false;
}
else
{
@property bool empty()
{
return iStart == _unComputed && iNext == _input.length;
}
}
@property typeof(_input) front()
{
if (iStart == _unComputed)
{
iStart = iNext;
Loop:
for (IndexType i = iNext; ; ++i)
{
if (i == _input.length)
{
iEnd = i;
iNext = i;
break Loop;
}
switch (_input[i])
{
case '\v', '\f', '\n':
iEnd = i + (keepTerm == Yes.keepTerminator);
iNext = i + 1;
break Loop;
case '\r':
if (i + 1 < _input.length && _input[i + 1] == '\n')
{
iEnd = i + (keepTerm == Yes.keepTerminator) * 2;
iNext = i + 2;
break Loop;
}
else
{
goto case '\n';
}
static if (_input[i].sizeof == 1)
{
/* Manually decode:
* lineSep is E2 80 A8
* paraSep is E2 80 A9
*/
case 0xE2:
if (i + 2 < _input.length &&
_input[i + 1] == 0x80 &&
(_input[i + 2] == 0xA8 || _input[i + 2] == 0xA9)
)
{
iEnd = i + (keepTerm == Yes.keepTerminator) * 3;
iNext = i + 3;
break Loop;
}
else
goto default;
/* Manually decode:
* NEL is C2 85
*/
case 0xC2:
if (i + 1 < _input.length && _input[i + 1] == 0x85)
{
iEnd = i + (keepTerm == Yes.keepTerminator) * 2;
iNext = i + 2;
break Loop;
}
else
goto default;
}
else
{
case '\u0085':
case lineSep:
case paraSep:
goto case '\n';
}
default:
break;
}
}
}
return _input[iStart .. iEnd];
}
void popFront()
{
if (iStart == _unComputed)
{
assert(!empty, "Can not popFront an empty range");
front;
}
iStart = _unComputed;
}
static if (isForwardRange!Range)
{
@property typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
}
/***********************************
* Split an array or slicable range of characters into a range of lines
using `'\r'`, `'\n'`, `'\v'`, `'\f'`, `"\r\n"`,
$(REF lineSep, std,uni), $(REF paraSep, std,uni) and `'\u0085'` (NEL)
as delimiters. If `keepTerm` is set to `Yes.keepTerminator`, then the
delimiter is included in the slices returned.
Does not throw on invalid UTF; such is simply passed unchanged
to the output.
Adheres to $(HTTP www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Does not allocate memory.
Params:
r = array of `chars`, `wchars`, or `dchars` or a slicable range
keepTerm = whether delimiter is included or not in the results
Returns:
range of slices of the input range `r`
See_Also:
$(LREF splitLines)
$(REF splitter, std,algorithm)
$(REF splitter, std,regex)
*/
auto lineSplitter(KeepTerminator keepTerm = No.keepTerminator, Range)(Range r)
if (hasSlicing!Range && hasLength!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range)
{
return LineSplitter!(keepTerm, Range)(r);
}
/// Ditto
auto lineSplitter(KeepTerminator keepTerm = No.keepTerminator, C)(C[] r)
if (isSomeChar!C)
{
return LineSplitter!(keepTerm, C[])(r);
}
///
@safe pure unittest
{
import std.array : array;
string s = "Hello\nmy\rname\nis";
/* notice the call to 'array' to turn the lazy range created by
lineSplitter comparable to the string[] created by splitLines.
*/
assert(lineSplitter(s).array == splitLines(s));
}
@safe pure unittest
{
import std.array : array;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{{
auto s = to!S(
"\rpeter\n\rpaul\r\njerry\u2028ice\u2029cream\n\n" ~
"sunday\nmon\u2030day\nschadenfreude\vkindergarten\f\vcookies\u0085"
);
auto lines = lineSplitter(s).array;
assert(lines.length == 14);
assert(lines[0] == "");
assert(lines[1] == "peter");
assert(lines[2] == "");
assert(lines[3] == "paul");
assert(lines[4] == "jerry");
assert(lines[5] == "ice");
assert(lines[6] == "cream");
assert(lines[7] == "");
assert(lines[8] == "sunday");
assert(lines[9] == "mon\u2030day");
assert(lines[10] == "schadenfreude");
assert(lines[11] == "kindergarten");
assert(lines[12] == "");
assert(lines[13] == "cookies");
ubyte[] u = ['a', 0xFF, 0x12, 'b']; // invalid UTF
auto ulines = lineSplitter(cast(char[]) u).array;
assert(cast(ubyte[])(ulines[0]) == u);
lines = lineSplitter!(Yes.keepTerminator)(s).array;
assert(lines.length == 14);
assert(lines[0] == "\r");
assert(lines[1] == "peter\n");
assert(lines[2] == "\r");
assert(lines[3] == "paul\r\n");
assert(lines[4] == "jerry\u2028");
assert(lines[5] == "ice\u2029");
assert(lines[6] == "cream\n");
assert(lines[7] == "\n");
assert(lines[8] == "sunday\n");
assert(lines[9] == "mon\u2030day\n");
assert(lines[10] == "schadenfreude\v");
assert(lines[11] == "kindergarten\f");
assert(lines[12] == "\v");
assert(lines[13] == "cookies\u0085");
s.popBack(); // Lop-off trailing \n
lines = lineSplitter(s).array;
assert(lines.length == 14);
assert(lines[9] == "mon\u2030day");
lines = lineSplitter!(Yes.keepTerminator)(s).array;
assert(lines.length == 14);
assert(lines[13] == "cookies");
}}
});
}
///
@nogc @safe pure unittest
{
auto s = "\rpeter\n\rpaul\r\njerry\u2028ice\u2029cream\n\nsunday\nmon\u2030day\n";
auto lines = s.lineSplitter();
static immutable witness = ["", "peter", "", "paul", "jerry", "ice", "cream", "", "sunday", "mon\u2030day"];
uint i;
foreach (line; lines)
{
assert(line == witness[i++]);
}
assert(i == witness.length);
}
@nogc @safe pure unittest
{
import std.algorithm.comparison : equal;
import std.range : only;
auto s = "std/string.d";
auto as = TestAliasedString(s);
assert(equal(s.lineSplitter(), as.lineSplitter()));
enum S : string { a = "hello\nworld" }
assert(equal(S.a.lineSplitter(), only("hello", "world")));
char[S.a.length] sa = S.a[];
assert(equal(sa.lineSplitter(), only("hello", "world")));
}
@safe pure unittest
{
auto s = "line1\nline2";
auto spl0 = s.lineSplitter!(Yes.keepTerminator);
auto spl1 = spl0.save;
spl0.popFront;
assert(spl1.front ~ spl0.front == s);
string r = "a\xC2\x86b";
assert(r.lineSplitter.front == r);
}
/++
Strips leading whitespace (as defined by $(REF isWhite, std,uni)) or
as specified in the second argument.
Params:
input = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
of characters
chars = string of characters to be stripped
Returns: `input` stripped of leading whitespace or characters
specified in the second argument.
Postconditions: `input` and the returned value
will share the same tail (see $(REF sameTail, std,array)).
See_Also:
Generic stripping on ranges: $(REF _stripLeft, std, algorithm, mutation)
+/
auto stripLeft(Range)(Range input)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isInfinite!Range && !isConvertibleToString!Range)
{
import std.traits : isDynamicArray;
static import std.ascii;
static import std.uni;
static if (is(immutable ElementEncodingType!Range == immutable dchar)
|| is(immutable ElementEncodingType!Range == immutable wchar))
{
// Decoding is never needed for dchar. It happens not to be needed
// here for wchar because no whitepace is outside the basic
// multilingual plane meaning every whitespace character is encoded
// with a single wchar and due to the design of UTF-16 those wchars
// will not occur as part of the encoding of multi-wchar codepoints.
static if (isDynamicArray!Range)
{
foreach (i; 0 .. input.length)
{
if (!std.uni.isWhite(input[i]))
return input[i .. $];
}
return input[$ .. $];
}
else
{
while (!input.empty)
{
if (!std.uni.isWhite(input.front))
break;
input.popFront();
}
return input;
}
}
else
{
static if (isDynamicArray!Range)
{
// ASCII optimization for dynamic arrays.
size_t i = 0;
for (const size_t end = input.length; i < end; ++i)
{
auto c = input[i];
if (c >= 0x80) goto NonAsciiPath;
if (!std.ascii.isWhite(c)) break;
}
input = input[i .. $];
return input;
NonAsciiPath:
input = input[i .. $];
// Fall through to standard case.
}
import std.utf : decode, decodeFront, UseReplacementDchar;
static if (isNarrowString!Range)
{
for (size_t index = 0; index < input.length;)
{
const saveIndex = index;
if (!std.uni.isWhite(decode!(UseReplacementDchar.yes)(input, index)))
return input[saveIndex .. $];
}
return input[$ .. $];
}
else
{
while (!input.empty)
{
auto c = input.front;
if (std.ascii.isASCII(c))
{
if (!std.ascii.isWhite(c))
break;
input.popFront();
}
else
{
auto save = input.save;
auto dc = decodeFront!(UseReplacementDchar.yes)(input);
if (!std.uni.isWhite(dc))
return save;
}
}
return input;
}
}
}
///
nothrow @safe pure unittest
{
import std.uni : lineSep, paraSep;
assert(stripLeft(" hello world ") ==
"hello world ");
assert(stripLeft("\n\t\v\rhello world\n\t\v\r") ==
"hello world\n\t\v\r");
assert(stripLeft(" \u2028hello world") ==
"hello world");
assert(stripLeft("hello world") ==
"hello world");
assert(stripLeft([lineSep] ~ "hello world" ~ lineSep) ==
"hello world" ~ [lineSep]);
assert(stripLeft([paraSep] ~ "hello world" ~ paraSep) ==
"hello world" ~ [paraSep]);
import std.array : array;
import std.utf : byChar;
assert(stripLeft(" hello world "w.byChar).array ==
"hello world ");
assert(stripLeft(" \u2022hello world ".byChar).array ==
"\u2022hello world ");
}
auto stripLeft(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return stripLeft!(StringTypeOf!Range)(str);
}
@nogc nothrow @safe pure unittest
{
assert(testAliasedString!stripLeft(" hello"));
}
/// Ditto
auto stripLeft(Range, Char)(Range input, const(Char)[] chars)
if (((isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)) ||
isConvertibleToString!Range) && isSomeChar!Char)
{
static if (isConvertibleToString!Range)
return stripLeft!(StringTypeOf!Range)(input, chars);
else
{
for (; !input.empty; input.popFront)
{
if (chars.indexOf(input.front) == -1)
break;
}
return input;
}
}
///
@safe pure unittest
{
assert(stripLeft(" hello world ", " ") ==
"hello world ");
assert(stripLeft("xxxxxhello world ", "x") ==
"hello world ");
assert(stripLeft("xxxyy hello world ", "xy ") ==
"hello world ");
}
///
@safe pure unittest
{
import std.array : array;
import std.utf : byChar, byWchar, byDchar;
assert(stripLeft(" xxxyy hello world "w.byChar, "xy ").array ==
"hello world ");
assert(stripLeft("\u2028\u2020hello world\u2028"w.byWchar,
"\u2028").array == "\u2020hello world\u2028");
assert(stripLeft("\U00010001hello world"w.byWchar, " ").array ==
"\U00010001hello world"w);
assert(stripLeft("\U00010001 xyhello world"d.byDchar,
"\U00010001 xy").array == "hello world"d);
assert(stripLeft("\u2020hello"w, "\u2020"w) == "hello"w);
assert(stripLeft("\U00010001hello"d, "\U00010001"d) == "hello"d);
assert(stripLeft(" hello ", "") == " hello ");
}
@safe pure unittest
{
assert(testAliasedString!stripLeft(" xyz hello", "xyz "));
}
/++
Strips trailing whitespace (as defined by $(REF isWhite, std,uni)) or
as specified in the second argument.
Params:
str = string or random access range of characters
chars = string of characters to be stripped
Returns:
slice of `str` stripped of trailing whitespace or characters
specified in the second argument.
See_Also:
Generic stripping on ranges: $(REF _stripRight, std, algorithm, mutation)
+/
auto stripRight(Range)(Range str)
if (isSomeString!Range ||
isRandomAccessRange!Range && hasLength!Range && hasSlicing!Range &&
!isConvertibleToString!Range &&
isSomeChar!(ElementEncodingType!Range))
{
import std.traits : isDynamicArray;
import std.uni : isWhite;
alias C = Unqual!(ElementEncodingType!(typeof(str)));
static if (isSomeString!(typeof(str)) && C.sizeof >= 2)
{
// No whitespace takes multiple wchars to encode and due to
// the design of UTF-16 those wchars will not occur as part
// of the encoding of multi-wchar codepoints.
foreach_reverse (i, C c; str)
{
if (!isWhite(c))
return str[0 .. i + 1];
}
return str[0 .. 0];
}
else
{
// ASCII optimization for dynamic arrays.
static if (isDynamicArray!(typeof(str)))
{
static import std.ascii;
foreach_reverse (i, C c; str)
{
if (c >= 0x80)
{
str = str[0 .. i + 1];
goto NonAsciiPath;
}
if (!std.ascii.isWhite(c))
{
return str[0 .. i + 1];
}
}
return str[0 .. 0];
}
NonAsciiPath:
size_t i = str.length;
while (i--)
{
static if (C.sizeof >= 2)
{
// No whitespace takes multiple wchars to encode and due to
// the design of UTF-16 those wchars will not occur as part
// of the encoding of multi-wchar codepoints.
if (isWhite(str[i]))
continue;
break;
}
else static if (C.sizeof == 1)
{
const cx = str[i];
if (cx <= 0x7F)
{
if (isWhite(cx))
continue;
break;
}
else
{
if (i == 0 || (0b1100_0000 & cx) != 0b1000_0000)
break;
const uint d = 0b0011_1111 & cx;
const c2 = str[i - 1];
if ((c2 & 0b1110_0000) == 0b1100_0000) // 2 byte encoding.
{
if (isWhite(d + (uint(c2 & 0b0001_1111) << 6)))
{
i--;
continue;
}
break;
}
if (i == 1 || (c2 & 0b1100_0000) != 0b1000_0000)
break;
const c3 = str[i - 2];
// In UTF-8 all whitespace is encoded in 3 bytes or fewer.
if ((c3 & 0b1111_0000) == 0b1110_0000 &&
isWhite(d + (uint(c2 & 0b0011_1111) << 6) + (uint(c3 & 0b0000_1111) << 12)))
{
i -= 2;
continue;
}
break;
}
}
else
static assert(0);
}
return str[0 .. i + 1];
}
}
///
nothrow @safe pure
unittest
{
import std.uni : lineSep, paraSep;
assert(stripRight(" hello world ") ==
" hello world");
assert(stripRight("\n\t\v\rhello world\n\t\v\r") ==
"\n\t\v\rhello world");
assert(stripRight("hello world") ==
"hello world");
assert(stripRight([lineSep] ~ "hello world" ~ lineSep) ==
[lineSep] ~ "hello world");
assert(stripRight([paraSep] ~ "hello world" ~ paraSep) ==
[paraSep] ~ "hello world");
}
auto stripRight(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return stripRight!(StringTypeOf!Range)(str);
}
@nogc nothrow @safe pure unittest
{
assert(testAliasedString!stripRight("hello "));
}
@safe pure unittest
{
import std.array : array;
import std.uni : lineSep, paraSep;
import std.utf : byChar, byDchar, byUTF, byWchar, invalidUTFstrings;
assert(stripRight(" hello world ".byChar).array == " hello world");
assert(stripRight("\n\t\v\rhello world\n\t\v\r"w.byWchar).array == "\n\t\v\rhello world"w);
assert(stripRight("hello world"d.byDchar).array == "hello world"d);
assert(stripRight("\u2028hello world\u2020\u2028".byChar).array == "\u2028hello world\u2020");
assert(stripRight("hello world\U00010001"w.byWchar).array == "hello world\U00010001"w);
static foreach (C; AliasSeq!(char, wchar, dchar))
{
foreach (s; invalidUTFstrings!C())
{
cast(void) stripRight(s.byUTF!C).array;
}
}
cast(void) stripRight("a\x80".byUTF!char).array;
wstring ws = ['a', cast(wchar) 0xDC00];
cast(void) stripRight(ws.byUTF!wchar).array;
}
/// Ditto
auto stripRight(Range, Char)(Range str, const(Char)[] chars)
if (((isBidirectionalRange!Range && isSomeChar!(ElementEncodingType!Range)) ||
isConvertibleToString!Range) && isSomeChar!Char)
{
static if (isConvertibleToString!Range)
return stripRight!(StringTypeOf!Range)(str, chars);
else
{
for (; !str.empty; str.popBack)
{
if (chars.indexOf(str.back) == -1)
break;
}
return str;
}
}
///
@safe pure
unittest
{
assert(stripRight(" hello world ", "x") ==
" hello world ");
assert(stripRight(" hello world ", " ") ==
" hello world");
assert(stripRight(" hello worldxy ", "xy ") ==
" hello world");
}
@safe pure unittest
{
assert(testAliasedString!stripRight("hello xyz ", "xyz "));
}
@safe pure unittest
{
import std.array : array;
import std.utf : byChar, byDchar, byUTF, byWchar;
assert(stripRight(" hello world xyz ".byChar,
"xyz ").array == " hello world");
assert(stripRight("\u2028hello world\u2020\u2028"w.byWchar,
"\u2028").array == "\u2028hello world\u2020");
assert(stripRight("hello world\U00010001"w.byWchar,
" ").array == "hello world\U00010001"w);
assert(stripRight("hello world\U00010001 xy"d.byDchar,
"\U00010001 xy").array == "hello world"d);
assert(stripRight("hello\u2020"w, "\u2020"w) == "hello"w);
assert(stripRight("hello\U00010001"d, "\U00010001"d) == "hello"d);
assert(stripRight(" hello ", "") == " hello ");
}
/++
Strips both leading and trailing whitespace (as defined by
$(REF isWhite, std,uni)) or as specified in the second argument.
Params:
str = string or random access range of characters
chars = string of characters to be stripped
leftChars = string of leading characters to be stripped
rightChars = string of trailing characters to be stripped
Returns:
slice of `str` stripped of leading and trailing whitespace
or characters as specified in the second argument.
See_Also:
Generic stripping on ranges: $(REF _strip, std, algorithm, mutation)
+/
auto strip(Range)(Range str)
if (isSomeString!Range ||
isRandomAccessRange!Range && hasLength!Range && hasSlicing!Range &&
!isConvertibleToString!Range &&
isSomeChar!(ElementEncodingType!Range))
{
return stripRight(stripLeft(str));
}
///
@safe pure unittest
{
import std.uni : lineSep, paraSep;
assert(strip(" hello world ") ==
"hello world");
assert(strip("\n\t\v\rhello world\n\t\v\r") ==
"hello world");
assert(strip("hello world") ==
"hello world");
assert(strip([lineSep] ~ "hello world" ~ [lineSep]) ==
"hello world");
assert(strip([paraSep] ~ "hello world" ~ [paraSep]) ==
"hello world");
}
auto strip(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return strip!(StringTypeOf!Range)(str);
}
@safe pure unittest
{
assert(testAliasedString!strip(" hello world "));
}
@safe pure unittest
{
import std.algorithm.comparison : equal;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!( char[], const char[], string,
wchar[], const wchar[], wstring,
dchar[], const dchar[], dstring))
{
assert(equal(stripLeft(to!S(" foo\t ")), "foo\t "));
assert(equal(stripLeft(to!S("\u2008 foo\t \u2007")), "foo\t \u2007"));
assert(equal(stripLeft(to!S("\u0085 μ \u0085 \u00BB \r")), "μ \u0085 \u00BB \r"));
assert(equal(stripLeft(to!S("1")), "1"));
assert(equal(stripLeft(to!S("\U0010FFFE")), "\U0010FFFE"));
assert(equal(stripLeft(to!S("")), ""));
assert(equal(stripRight(to!S(" foo\t ")), " foo"));
assert(equal(stripRight(to!S("\u2008 foo\t \u2007")), "\u2008 foo"));
assert(equal(stripRight(to!S("\u0085 μ \u0085 \u00BB \r")), "\u0085 μ \u0085 \u00BB"));
assert(equal(stripRight(to!S("1")), "1"));
assert(equal(stripRight(to!S("\U0010FFFE")), "\U0010FFFE"));
assert(equal(stripRight(to!S("")), ""));
assert(equal(strip(to!S(" foo\t ")), "foo"));
assert(equal(strip(to!S("\u2008 foo\t \u2007")), "foo"));
assert(equal(strip(to!S("\u0085 μ \u0085 \u00BB \r")), "μ \u0085 \u00BB"));
assert(equal(strip(to!S("\U0010FFFE")), "\U0010FFFE"));
assert(equal(strip(to!S("")), ""));
}
});
}
@safe pure unittest
{
import std.array : sameHead, sameTail;
import std.exception : assertCTFEable;
assertCTFEable!(
{
wstring s = " ";
assert(s.sameTail(s.stripLeft()));
assert(s.sameHead(s.stripRight()));
});
}
/// Ditto
auto strip(Range, Char)(Range str, const(Char)[] chars)
if (((isBidirectionalRange!Range && isSomeChar!(ElementEncodingType!Range)) ||
isConvertibleToString!Range) && isSomeChar!Char)
{
static if (isConvertibleToString!Range)
return strip!(StringTypeOf!Range)(str, chars);
else
return stripRight(stripLeft(str, chars), chars);
}
///
@safe pure unittest
{
assert(strip(" hello world ", "x") ==
" hello world ");
assert(strip(" hello world ", " ") ==
"hello world");
assert(strip(" xyxyhello worldxyxy ", "xy ") ==
"hello world");
assert(strip("\u2020hello\u2020"w, "\u2020"w) == "hello"w);
assert(strip("\U00010001hello\U00010001"d, "\U00010001"d) == "hello"d);
assert(strip(" hello ", "") == " hello ");
}
@safe pure unittest
{
assert(testAliasedString!strip(" xyz hello world xyz ", "xyz "));
}
/// Ditto
auto strip(Range, Char)(Range str, const(Char)[] leftChars, const(Char)[] rightChars)
if (((isBidirectionalRange!Range && isSomeChar!(ElementEncodingType!Range)) ||
isConvertibleToString!Range) && isSomeChar!Char)
{
static if (isConvertibleToString!Range)
return strip!(StringTypeOf!Range)(str, leftChars, rightChars);
else
return stripRight(stripLeft(str, leftChars), rightChars);
}
///
@safe pure unittest
{
assert(strip("xxhelloyy", "x", "y") == "hello");
assert(strip(" xyxyhello worldxyxyzz ", "xy ", "xyz ") ==
"hello world");
assert(strip("\u2020hello\u2028"w, "\u2020"w, "\u2028"w) == "hello"w);
assert(strip("\U00010001hello\U00010002"d, "\U00010001"d, "\U00010002"d) ==
"hello"d);
assert(strip(" hello ", "", "") == " hello ");
}
@safe pure unittest
{
assert(testAliasedString!strip(" xy hello world pq ", "xy ", "pq "));
}
@safe pure unittest
{
import std.algorithm.comparison : equal;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!( char[], const char[], string,
wchar[], const wchar[], wstring,
dchar[], const dchar[], dstring))
{
assert(equal(stripLeft(to!S(" \tfoo\t "), "\t "), "foo\t "));
assert(equal(stripLeft(to!S("\u2008 foo\t \u2007"), "\u2008 "),
"foo\t \u2007"));
assert(equal(stripLeft(to!S("\u0085 μ \u0085 \u00BB \r"), "\u0085 "),
"μ \u0085 \u00BB \r"));
assert(equal(stripLeft(to!S("1"), " "), "1"));
assert(equal(stripLeft(to!S("\U0010FFFE"), " "), "\U0010FFFE"));
assert(equal(stripLeft(to!S(""), " "), ""));
assert(equal(stripRight(to!S(" foo\t "), "\t "), " foo"));
assert(equal(stripRight(to!S("\u2008 foo\t \u2007"), "\u2007\t "),
"\u2008 foo"));
assert(equal(stripRight(to!S("\u0085 μ \u0085 \u00BB \r"), "\r "),
"\u0085 μ \u0085 \u00BB"));
assert(equal(stripRight(to!S("1"), " "), "1"));
assert(equal(stripRight(to!S("\U0010FFFE"), " "), "\U0010FFFE"));
assert(equal(stripRight(to!S(""), " "), ""));
assert(equal(strip(to!S(" foo\t "), "\t "), "foo"));
assert(equal(strip(to!S("\u2008 foo\t \u2007"), "\u2008\u2007\t "),
"foo"));
assert(equal(strip(to!S("\u0085 μ \u0085 \u00BB \r"), "\u0085\r "),
"μ \u0085 \u00BB"));
assert(equal(strip(to!S("\U0010FFFE"), " "), "\U0010FFFE"));
assert(equal(strip(to!S(""), " "), ""));
assert(equal(strip(to!S(" \nfoo\t "), "\n ", "\t "), "foo"));
assert(equal(strip(to!S("\u2008\n foo\t \u2007"),
"\u2008\n ", "\u2007\t "), "foo"));
assert(equal(strip(to!S("\u0085 μ \u0085 \u00BB μ \u00BB\r"),
"\u0085 ", "\u00BB\r "), "μ \u0085 \u00BB μ"));
assert(equal(strip(to!S("\U0010FFFE"), " ", " "), "\U0010FFFE"));
assert(equal(strip(to!S(""), " ", " "), ""));
}
});
}
@safe pure unittest
{
import std.array : sameHead, sameTail;
import std.exception : assertCTFEable;
assertCTFEable!(
{
wstring s = " xyz ";
assert(s.sameTail(s.stripLeft(" ")));
assert(s.sameHead(s.stripRight(" ")));
});
}
/++
If `str` ends with `delimiter`, then `str` is returned without
`delimiter` on its end. If it `str` does $(I not) end with
`delimiter`, then it is returned unchanged.
If no `delimiter` is given, then one trailing `'\r'`, `'\n'`,
`"\r\n"`, `'\f'`, `'\v'`, $(REF lineSep, std,uni), $(REF paraSep, std,uni), or $(REF nelSep, std,uni)
is removed from the end of `str`. If `str` does not end with any of those characters,
then it is returned unchanged.
Params:
str = string or indexable range of characters
delimiter = string of characters to be sliced off end of str[]
Returns:
slice of str
+/
Range chomp(Range)(Range str)
if ((isRandomAccessRange!Range && isSomeChar!(ElementEncodingType!Range) ||
isNarrowString!Range) &&
!isConvertibleToString!Range)
{
import std.uni : lineSep, paraSep, nelSep;
if (str.empty)
return str;
alias C = ElementEncodingType!Range;
switch (str[$ - 1])
{
case '\n':
{
if (str.length > 1 && str[$ - 2] == '\r')
return str[0 .. $ - 2];
goto case;
}
case '\r', '\v', '\f':
return str[0 .. $ - 1];
// Pop off the last character if lineSep, paraSep, or nelSep
static if (is(C : const char))
{
/* Manually decode:
* lineSep is E2 80 A8
* paraSep is E2 80 A9
*/
case 0xA8: // Last byte of lineSep
case 0xA9: // Last byte of paraSep
if (str.length > 2 && str[$ - 2] == 0x80 && str[$ - 3] == 0xE2)
return str [0 .. $ - 3];
goto default;
/* Manually decode:
* NEL is C2 85
*/
case 0x85:
if (str.length > 1 && str[$ - 2] == 0xC2)
return str [0 .. $ - 2];
goto default;
}
else
{
case lineSep:
case paraSep:
case nelSep:
return str[0 .. $ - 1];
}
default:
return str;
}
}
/// Ditto
Range chomp(Range, C2)(Range str, const(C2)[] delimiter)
if ((isBidirectionalRange!Range && isSomeChar!(ElementEncodingType!Range) ||
isNarrowString!Range) &&
!isConvertibleToString!Range &&
isSomeChar!C2)
{
if (delimiter.empty)
return chomp(str);
alias C1 = ElementEncodingType!Range;
static if (is(immutable C1 == immutable C2) && (isSomeString!Range || (hasSlicing!Range && C2.sizeof == 4)))
{
import std.algorithm.searching : endsWith;
if (str.endsWith(delimiter))
return str[0 .. $ - delimiter.length];
return str;
}
else
{
auto orig = str.save;
static if (isSomeString!Range)
alias C = dchar; // because strings auto-decode
else
alias C = C1; // and ranges do not
foreach_reverse (C c; delimiter)
{
if (str.empty || str.back != c)
return orig;
str.popBack();
}
return str;
}
}
///
@safe pure
unittest
{
import std.uni : lineSep, paraSep, nelSep;
import std.utf : decode;
assert(chomp(" hello world \n\r") == " hello world \n");
assert(chomp(" hello world \r\n") == " hello world ");
assert(chomp(" hello world \f") == " hello world ");
assert(chomp(" hello world \v") == " hello world ");
assert(chomp(" hello world \n\n") == " hello world \n");
assert(chomp(" hello world \n\n ") == " hello world \n\n ");
assert(chomp(" hello world \n\n" ~ [lineSep]) == " hello world \n\n");
assert(chomp(" hello world \n\n" ~ [paraSep]) == " hello world \n\n");
assert(chomp(" hello world \n\n" ~ [ nelSep]) == " hello world \n\n");
assert(chomp(" hello world") == " hello world");
assert(chomp("") == "");
assert(chomp(" hello world", "orld") == " hello w");
assert(chomp(" hello world", " he") == " hello world");
assert(chomp("", "hello") == "");
// Don't decode pointlessly
assert(chomp("hello\xFE", "\r") == "hello\xFE");
}
StringTypeOf!Range chomp(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return chomp!(StringTypeOf!Range)(str);
}
StringTypeOf!Range chomp(Range, C2)(auto ref Range str, const(C2)[] delimiter)
if (isConvertibleToString!Range)
{
return chomp!(StringTypeOf!Range, C2)(str, delimiter);
}
@safe pure unittest
{
assert(testAliasedString!chomp(" hello world \n\r"));
assert(testAliasedString!chomp(" hello world", "orld"));
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{
// @@@ BUG IN COMPILER, MUST INSERT CAST
assert(chomp(cast(S) null) is null);
assert(chomp(to!S("hello")) == "hello");
assert(chomp(to!S("hello\n")) == "hello");
assert(chomp(to!S("hello\r")) == "hello");
assert(chomp(to!S("hello\r\n")) == "hello");
assert(chomp(to!S("hello\n\r")) == "hello\n");
assert(chomp(to!S("hello\n\n")) == "hello\n");
assert(chomp(to!S("hello\r\r")) == "hello\r");
assert(chomp(to!S("hello\nxxx\n")) == "hello\nxxx");
assert(chomp(to!S("hello\u2028")) == "hello");
assert(chomp(to!S("hello\u2029")) == "hello");
assert(chomp(to!S("hello\u0085")) == "hello");
assert(chomp(to!S("hello\u2028\u2028")) == "hello\u2028");
assert(chomp(to!S("hello\u2029\u2029")) == "hello\u2029");
assert(chomp(to!S("hello\u2029\u2129")) == "hello\u2029\u2129");
assert(chomp(to!S("hello\u2029\u0185")) == "hello\u2029\u0185");
static foreach (T; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{
// @@@ BUG IN COMPILER, MUST INSERT CAST
assert(chomp(cast(S) null, cast(T) null) is null);
assert(chomp(to!S("hello\n"), cast(T) null) == "hello");
assert(chomp(to!S("hello"), to!T("o")) == "hell");
assert(chomp(to!S("hello"), to!T("p")) == "hello");
// @@@ BUG IN COMPILER, MUST INSERT CAST
assert(chomp(to!S("hello"), cast(T) null) == "hello");
assert(chomp(to!S("hello"), to!T("llo")) == "he");
assert(chomp(to!S("\uFF28ello"), to!T("llo")) == "\uFF28e");
assert(chomp(to!S("\uFF28el\uFF4co"), to!T("l\uFF4co")) == "\uFF28e");
}
}
});
// Ranges
import std.array : array;
import std.utf : byChar, byWchar, byDchar;
assert(chomp("hello world\r\n" .byChar ).array == "hello world");
assert(chomp("hello world\r\n"w.byWchar).array == "hello world"w);
assert(chomp("hello world\r\n"d.byDchar).array == "hello world"d);
assert(chomp("hello world"d.byDchar, "ld").array == "hello wor"d);
assert(chomp("hello\u2020" .byChar , "\u2020").array == "hello");
assert(chomp("hello\u2020"d.byDchar, "\u2020"d).array == "hello"d);
}
/++
If `str` starts with `delimiter`, then the part of `str` following
`delimiter` is returned. If `str` does $(I not) start with
`delimiter`, then it is returned unchanged.
Params:
str = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
of characters
delimiter = string of characters to be sliced off front of str[]
Returns:
slice of str
+/
Range chompPrefix(Range, C2)(Range str, const(C2)[] delimiter)
if ((isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) ||
isNarrowString!Range) &&
!isConvertibleToString!Range &&
isSomeChar!C2)
{
alias C1 = ElementEncodingType!Range;
static if (is(immutable C1 == immutable C2) && (isSomeString!Range || (hasSlicing!Range && C2.sizeof == 4)))
{
import std.algorithm.searching : startsWith;
if (str.startsWith(delimiter))
return str[delimiter.length .. $];
return str;
}
else
{
auto orig = str.save;
static if (isSomeString!Range)
alias C = dchar; // because strings auto-decode
else
alias C = C1; // and ranges do not
foreach (C c; delimiter)
{
if (str.empty || str.front != c)
return orig;
str.popFront();
}
return str;
}
}
///
@safe pure unittest
{
assert(chompPrefix("hello world", "he") == "llo world");
assert(chompPrefix("hello world", "hello w") == "orld");
assert(chompPrefix("hello world", " world") == "hello world");
assert(chompPrefix("", "hello") == "");
}
StringTypeOf!Range chompPrefix(Range, C2)(auto ref Range str, const(C2)[] delimiter)
if (isConvertibleToString!Range)
{
return chompPrefix!(StringTypeOf!Range, C2)(str, delimiter);
}
@safe pure
unittest
{
import std.algorithm.comparison : equal;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{
static foreach (T; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{
assert(equal(chompPrefix(to!S("abcdefgh"), to!T("abcde")), "fgh"));
assert(equal(chompPrefix(to!S("abcde"), to!T("abcdefgh")), "abcde"));
assert(equal(chompPrefix(to!S("\uFF28el\uFF4co"), to!T("\uFF28el\uFF4co")), ""));
assert(equal(chompPrefix(to!S("\uFF28el\uFF4co"), to!T("\uFF28el")), "\uFF4co"));
assert(equal(chompPrefix(to!S("\uFF28el"), to!T("\uFF28el\uFF4co")), "\uFF28el"));
}
}
});
// Ranges
import std.array : array;
import std.utf : byChar, byWchar, byDchar;
assert(chompPrefix("hello world" .byChar , "hello"d).array == " world");
assert(chompPrefix("hello world"w.byWchar, "hello" ).array == " world"w);
assert(chompPrefix("hello world"d.byDchar, "hello"w).array == " world"d);
assert(chompPrefix("hello world"c.byDchar, "hello"w).array == " world"d);
assert(chompPrefix("hello world"d.byDchar, "lx").array == "hello world"d);
assert(chompPrefix("hello world"d.byDchar, "hello world xx").array == "hello world"d);
assert(chompPrefix("\u2020world" .byChar , "\u2020").array == "world");
assert(chompPrefix("\u2020world"d.byDchar, "\u2020"d).array == "world"d);
}
@safe pure unittest
{
assert(testAliasedString!chompPrefix("hello world", "hello"));
}
/++
Returns `str` without its last character, if there is one. If `str`
ends with `"\r\n"`, then both are removed. If `str` is empty, then
it is returned unchanged.
Params:
str = string (must be valid UTF)
Returns:
slice of str
+/
Range chop(Range)(Range str)
if ((isBidirectionalRange!Range && isSomeChar!(ElementEncodingType!Range) ||
isNarrowString!Range) &&
!isConvertibleToString!Range)
{
if (str.empty)
return str;
static if (isSomeString!Range)
{
if (str.length >= 2 && str[$ - 1] == '\n' && str[$ - 2] == '\r')
return str[0 .. $ - 2];
str.popBack();
return str;
}
else
{
alias C = Unqual!(ElementEncodingType!Range);
C c = str.back;
str.popBack();
if (c == '\n')
{
if (!str.empty && str.back == '\r')
str.popBack();
return str;
}
// Pop back a dchar, not just a code unit
static if (C.sizeof == 1)
{
int cnt = 1;
while ((c & 0xC0) == 0x80)
{
if (str.empty)
break;
c = str.back;
str.popBack();
if (++cnt > 4)
break;
}
}
else static if (C.sizeof == 2)
{
if (c >= 0xD800 && c <= 0xDBFF)
{
if (!str.empty)
str.popBack();
}
}
else static if (C.sizeof == 4)
{
}
else
static assert(0);
return str;
}
}
///
@safe pure unittest
{
assert(chop("hello world") == "hello worl");
assert(chop("hello world\n") == "hello world");
assert(chop("hello world\r") == "hello world");
assert(chop("hello world\n\r") == "hello world\n");
assert(chop("hello world\r\n") == "hello world");
assert(chop("Walter Bright") == "Walter Brigh");
assert(chop("") == "");
}
StringTypeOf!Range chop(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return chop!(StringTypeOf!Range)(str);
}
@safe pure unittest
{
assert(testAliasedString!chop("hello world"));
}
@safe pure unittest
{
import std.array : array;
import std.utf : byChar, byWchar, byDchar, byCodeUnit, invalidUTFstrings;
assert(chop("hello world".byChar).array == "hello worl");
assert(chop("hello world\n"w.byWchar).array == "hello world"w);
assert(chop("hello world\r"d.byDchar).array == "hello world"d);
assert(chop("hello world\n\r".byChar).array == "hello world\n");
assert(chop("hello world\r\n"w.byWchar).array == "hello world"w);
assert(chop("Walter Bright"d.byDchar).array == "Walter Brigh"d);
assert(chop("".byChar).array == "");
assert(chop(`ミツバチと科学者` .byCodeUnit).array == "ミツバチと科学");
assert(chop(`ミツバチと科学者`w.byCodeUnit).array == "ミツバチと科学"w);
assert(chop(`ミツバチと科学者`d.byCodeUnit).array == "ミツバチと科学"d);
auto ca = invalidUTFstrings!char();
foreach (s; ca)
{
foreach (c; chop(s.byCodeUnit))
{
}
}
auto wa = invalidUTFstrings!wchar();
foreach (s; wa)
{
foreach (c; chop(s.byCodeUnit))
{
}
}
}
@safe pure unittest
{
import std.algorithm.comparison : equal;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{
assert(chop(cast(S) null) is null);
assert(equal(chop(to!S("hello")), "hell"));
assert(equal(chop(to!S("hello\r\n")), "hello"));
assert(equal(chop(to!S("hello\n\r")), "hello\n"));
assert(equal(chop(to!S("Verité")), "Verit"));
assert(equal(chop(to!S(`さいごの果実`)), "さいごの果"));
assert(equal(chop(to!S(`ミツバチと科学者`)), "ミツバチと科学"));
}
});
}
/++
Left justify `s` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`s` doesn't fill.
Params:
s = string
width = minimum field width
fillChar = used to pad end up to `width` characters
Returns:
GC allocated string
See_Also:
$(LREF leftJustifier), which does not allocate
+/
S leftJustify(S)(S s, size_t width, dchar fillChar = ' ')
if (isSomeString!S)
{
import std.array : array;
return leftJustifier(s, width, fillChar).array;
}
///
@safe pure unittest
{
assert(leftJustify("hello", 7, 'X') == "helloXX");
assert(leftJustify("hello", 2, 'X') == "hello");
assert(leftJustify("hello", 9, 'X') == "helloXXXX");
}
/++
Left justify `s` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`s` doesn't fill.
Params:
r = string or range of characters
width = minimum field width
fillChar = used to pad end up to `width` characters
Returns:
a lazy range of the left justified result
See_Also:
$(LREF rightJustifier)
+/
auto leftJustifier(Range)(Range r, size_t width, dchar fillChar = ' ')
if (isInputRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isConvertibleToString!Range)
{
alias C = Unqual!(ElementEncodingType!Range);
static if (C.sizeof == 1)
{
import std.utf : byDchar, byChar;
return leftJustifier(r.byDchar, width, fillChar).byChar;
}
else static if (C.sizeof == 2)
{
import std.utf : byDchar, byWchar;
return leftJustifier(r.byDchar, width, fillChar).byWchar;
}
else static if (C.sizeof == 4)
{
static struct Result
{
private:
Range _input;
size_t _width;
dchar _fillChar;
size_t len;
public:
@property bool empty()
{
return len >= _width && _input.empty;
}
@property C front()
{
return _input.empty ? _fillChar : _input.front;
}
void popFront()
{
++len;
if (!_input.empty)
_input.popFront();
}
static if (isForwardRange!Range)
{
@property typeof(this) save() return scope
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
}
return Result(r, width, fillChar);
}
else
static assert(0);
}
///
@safe pure @nogc nothrow
unittest
{
import std.algorithm.comparison : equal;
import std.utf : byChar;
assert(leftJustifier("hello", 2).equal("hello".byChar));
assert(leftJustifier("hello", 7).equal("hello ".byChar));
assert(leftJustifier("hello", 7, 'x').equal("helloxx".byChar));
}
auto leftJustifier(Range)(auto ref Range r, size_t width, dchar fillChar = ' ')
if (isConvertibleToString!Range)
{
return leftJustifier!(StringTypeOf!Range)(r, width, fillChar);
}
@safe pure unittest
{
auto r = "hello".leftJustifier(8);
r.popFront();
auto save = r.save;
r.popFront();
assert(r.front == 'l');
assert(save.front == 'e');
}
@safe pure unittest
{
assert(testAliasedString!leftJustifier("hello", 2));
}
/++
Right justify `s` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`s` doesn't fill.
Params:
s = string
width = minimum field width
fillChar = used to pad end up to `width` characters
Returns:
GC allocated string
See_Also:
$(LREF rightJustifier), which does not allocate
+/
S rightJustify(S)(S s, size_t width, dchar fillChar = ' ')
if (isSomeString!S)
{
import std.array : array;
return rightJustifier(s, width, fillChar).array;
}
///
@safe pure unittest
{
assert(rightJustify("hello", 7, 'X') == "XXhello");
assert(rightJustify("hello", 2, 'X') == "hello");
assert(rightJustify("hello", 9, 'X') == "XXXXhello");
}
/++
Right justify `s` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`s` doesn't fill.
Params:
r = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
of characters
width = minimum field width
fillChar = used to pad end up to `width` characters
Returns:
a lazy range of the right justified result
See_Also:
$(LREF leftJustifier)
+/
auto rightJustifier(Range)(Range r, size_t width, dchar fillChar = ' ')
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isConvertibleToString!Range)
{
alias C = Unqual!(ElementEncodingType!Range);
static if (C.sizeof == 1)
{
import std.utf : byDchar, byChar;
return rightJustifier(r.byDchar, width, fillChar).byChar;
}
else static if (C.sizeof == 2)
{
import std.utf : byDchar, byWchar;
return rightJustifier(r.byDchar, width, fillChar).byWchar;
}
else static if (C.sizeof == 4)
{
static struct Result
{
private:
Range _input;
size_t _width;
alias nfill = _width; // number of fill characters to prepend
dchar _fillChar;
bool inited;
// Lazy initialization so constructor is trivial and cannot fail
void initialize()
{
// Replace _width with nfill
// (use alias instead of union because CTFE cannot deal with unions)
assert(_width, "width of 0 not allowed");
static if (hasLength!Range)
{
immutable len = _input.length;
nfill = (_width > len) ? _width - len : 0;
}
else
{
// Lookahead to see now many fill characters are needed
import std.range : take;
import std.range.primitives : walkLength;
nfill = _width - walkLength(_input.save.take(_width), _width);
}
inited = true;
}
public:
this(Range input, size_t width, dchar fillChar) pure nothrow
{
_input = input;
_fillChar = fillChar;
_width = width;
}
@property bool empty()
{
return !nfill && _input.empty;
}
@property C front()
{
if (!nfill)
return _input.front; // fast path
if (!inited)
initialize();
return nfill ? _fillChar : _input.front;
}
void popFront()
{
if (!nfill)
_input.popFront(); // fast path
else
{
if (!inited)
initialize();
if (nfill)
--nfill;
else
_input.popFront();
}
}
@property typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
return Result(r, width, fillChar);
}
else
static assert(0, "Invalid character type of " ~ C.stringof);
}
///
@safe pure @nogc nothrow
unittest
{
import std.algorithm.comparison : equal;
import std.utf : byChar;
assert(rightJustifier("hello", 2).equal("hello".byChar));
assert(rightJustifier("hello", 7).equal(" hello".byChar));
assert(rightJustifier("hello", 7, 'x').equal("xxhello".byChar));
}
auto rightJustifier(Range)(auto ref Range r, size_t width, dchar fillChar = ' ')
if (isConvertibleToString!Range)
{
return rightJustifier!(StringTypeOf!Range)(r, width, fillChar);
}
@safe pure unittest
{
assert(testAliasedString!rightJustifier("hello", 2));
}
@safe pure unittest
{
auto r = "hello"d.rightJustifier(6);
r.popFront();
auto save = r.save;
r.popFront();
assert(r.front == 'e');
assert(save.front == 'h');
auto t = "hello".rightJustifier(7);
t.popFront();
assert(t.front == ' ');
t.popFront();
assert(t.front == 'h');
auto u = "hello"d.rightJustifier(5);
u.popFront();
u.popFront();
u.popFront();
}
/++
Center `s` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`s` doesn't fill.
Params:
s = The string to center
width = Width of the field to center `s` in
fillChar = The character to use for filling excess space in the field
Returns:
The resulting _center-justified string. The returned string is
GC-allocated. To avoid GC allocation, use $(LREF centerJustifier)
instead.
+/
S center(S)(S s, size_t width, dchar fillChar = ' ')
if (isSomeString!S)
{
import std.array : array;
return centerJustifier(s, width, fillChar).array;
}
///
@safe pure unittest
{
assert(center("hello", 7, 'X') == "XhelloX");
assert(center("hello", 2, 'X') == "hello");
assert(center("hello", 9, 'X') == "XXhelloXX");
}
@safe pure
unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{{
S s = to!S("hello");
assert(leftJustify(s, 2) == "hello");
assert(rightJustify(s, 2) == "hello");
assert(center(s, 2) == "hello");
assert(leftJustify(s, 7) == "hello ");
assert(rightJustify(s, 7) == " hello");
assert(center(s, 7) == " hello ");
assert(leftJustify(s, 8) == "hello ");
assert(rightJustify(s, 8) == " hello");
assert(center(s, 8) == " hello ");
assert(leftJustify(s, 8, '\u0100') == "hello\u0100\u0100\u0100");
assert(rightJustify(s, 8, '\u0100') == "\u0100\u0100\u0100hello");
assert(center(s, 8, '\u0100') == "\u0100hello\u0100\u0100");
assert(leftJustify(s, 8, 'ö') == "helloööö");
assert(rightJustify(s, 8, 'ö') == "öööhello");
assert(center(s, 8, 'ö') == "öhelloöö");
}}
});
}
/++
Center justify `r` in a field `width` characters wide. `fillChar`
is the character that will be used to fill up the space in the field that
`r` doesn't fill.
Params:
r = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
of characters
width = minimum field width
fillChar = used to pad end up to `width` characters
Returns:
a lazy range of the center justified result
See_Also:
$(LREF leftJustifier)
$(LREF rightJustifier)
+/
auto centerJustifier(Range)(Range r, size_t width, dchar fillChar = ' ')
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isConvertibleToString!Range)
{
alias C = Unqual!(ElementEncodingType!Range);
static if (C.sizeof == 1)
{
import std.utf : byDchar, byChar;
return centerJustifier(r.byDchar, width, fillChar).byChar;
}
else static if (C.sizeof == 2)
{
import std.utf : byDchar, byWchar;
return centerJustifier(r.byDchar, width, fillChar).byWchar;
}
else static if (C.sizeof == 4)
{
import std.range : chain, repeat;
import std.range.primitives : walkLength;
auto len = walkLength(r.save, width);
if (len > width)
len = width;
const nleft = (width - len) / 2;
const nright = width - len - nleft;
return chain(repeat(fillChar, nleft), r, repeat(fillChar, nright));
}
else
static assert(0);
}
///
@safe pure @nogc nothrow
unittest
{
import std.algorithm.comparison : equal;
import std.utf : byChar;
assert(centerJustifier("hello", 2).equal("hello".byChar));
assert(centerJustifier("hello", 8).equal(" hello ".byChar));
assert(centerJustifier("hello", 7, 'x').equal("xhellox".byChar));
}
auto centerJustifier(Range)(auto ref Range r, size_t width, dchar fillChar = ' ')
if (isConvertibleToString!Range)
{
return centerJustifier!(StringTypeOf!Range)(r, width, fillChar);
}
@safe pure unittest
{
assert(testAliasedString!centerJustifier("hello", 8));
}
@safe unittest
{
static auto byFwdRange(dstring s)
{
static struct FRange
{
@safe:
dstring str;
this(dstring s) { str = s; }
@property bool empty() { return str.length == 0; }
@property dchar front() { return str[0]; }
void popFront() { str = str[1 .. $]; }
@property FRange save() { return this; }
}
return FRange(s);
}
auto r = centerJustifier(byFwdRange("hello"d), 6);
r.popFront();
auto save = r.save;
r.popFront();
assert(r.front == 'l');
assert(save.front == 'e');
auto t = "hello".centerJustifier(7);
t.popFront();
assert(t.front == 'h');
t.popFront();
assert(t.front == 'e');
auto u = byFwdRange("hello"d).centerJustifier(6);
u.popFront();
u.popFront();
u.popFront();
u.popFront();
u.popFront();
u.popFront();
}
/++
Replace each tab character in `s` with the number of spaces necessary
to align the following character at the next tab stop.
Params:
s = string
tabSize = distance between tab stops
Returns:
GC allocated string with tabs replaced with spaces
+/
auto detab(Range)(auto ref Range s, size_t tabSize = 8) pure
if ((isForwardRange!Range && isSomeChar!(ElementEncodingType!Range))
|| __traits(compiles, StringTypeOf!Range))
{
import std.array : array;
return detabber(s, tabSize).array;
}
///
@safe pure unittest
{
assert(detab(" \n\tx", 9) == " \n x");
}
@safe pure unittest
{
static struct TestStruct
{
string s;
alias s this;
}
static struct TestStruct2
{
string s;
alias s this;
@disable this(this);
}
string s = " \n\tx";
string cmp = " \n x";
auto t = TestStruct(s);
assert(detab(t, 9) == cmp);
assert(detab(TestStruct(s), 9) == cmp);
assert(detab(TestStruct(s), 9) == detab(TestStruct(s), 9));
assert(detab(TestStruct2(s), 9) == detab(TestStruct2(s), 9));
assert(detab(TestStruct2(s), 9) == cmp);
}
/++
Replace each tab character in `r` with the number of spaces
necessary to align the following character at the next tab stop.
Params:
r = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
tabSize = distance between tab stops
Returns:
lazy forward range with tabs replaced with spaces
+/
auto detabber(Range)(Range r, size_t tabSize = 8)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isConvertibleToString!Range)
{
import std.uni : lineSep, paraSep, nelSep;
import std.utf : codeUnitLimit, decodeFront;
assert(tabSize > 0);
alias C = Unqual!(ElementEncodingType!(Range));
static struct Result
{
private:
Range _input;
size_t _tabSize;
size_t nspaces;
int column;
size_t index;
public:
this(Range input, size_t tabSize)
{
_input = input;
_tabSize = tabSize;
}
static if (isInfinite!(Range))
{
enum bool empty = false;
}
else
{
@property bool empty()
{
return _input.empty && nspaces == 0;
}
}
@property C front()
{
if (nspaces)
return ' ';
static if (isSomeString!(Range))
C c = _input[0];
else
C c = _input.front;
if (index)
return c;
dchar dc;
if (c < codeUnitLimit!(immutable(C)[]))
{
dc = c;
index = 1;
}
else
{
auto r = _input.save;
dc = decodeFront(r, index); // lookahead to decode
}
switch (dc)
{
case '\r':
case '\n':
case paraSep:
case lineSep:
case nelSep:
column = 0;
break;
case '\t':
nspaces = _tabSize - (column % _tabSize);
column += nspaces;
c = ' ';
break;
default:
++column;
break;
}
return c;
}
void popFront()
{
if (!index)
front;
if (nspaces)
--nspaces;
if (!nspaces)
{
static if (isSomeString!(Range))
_input = _input[1 .. $];
else
_input.popFront();
--index;
}
}
@property typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
return Result(r, tabSize);
}
///
@safe pure unittest
{
import std.array : array;
assert(detabber(" \n\tx", 9).array == " \n x");
}
auto detabber(Range)(auto ref Range r, size_t tabSize = 8)
if (isConvertibleToString!Range)
{
return detabber!(StringTypeOf!Range)(r, tabSize);
}
@safe pure unittest
{
assert(testAliasedString!detabber( " ab\t asdf ", 8));
}
@safe pure unittest
{
import std.algorithm.comparison : cmp;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
{{
S s = to!S("This \tis\t a fofof\tof list");
assert(cmp(detab(s), "This is a fofof of list") == 0);
assert(detab(cast(S) null) is null);
assert(detab("").empty);
assert(detab("a") == "a");
assert(detab("\t") == " ");
assert(detab("\t", 3) == " ");
assert(detab("\t", 9) == " ");
assert(detab( " ab\t asdf ") == " ab asdf ");
assert(detab( " \U00010000b\tasdf ") == " \U00010000b asdf ");
assert(detab("\r\t", 9) == "\r ");
assert(detab("\n\t", 9) == "\n ");
assert(detab("\u0085\t", 9) == "\u0085 ");
assert(detab("\u2028\t", 9) == "\u2028 ");
assert(detab(" \u2029\t", 9) == " \u2029 ");
}}
});
}
///
@safe pure unittest
{
import std.array : array;
import std.utf : byChar, byWchar;
assert(detabber(" \u2029\t".byChar, 9).array == " \u2029 ");
auto r = "hel\tx".byWchar.detabber();
assert(r.front == 'h');
auto s = r.save;
r.popFront();
r.popFront();
assert(r.front == 'l');
assert(s.front == 'h');
}
/++
Replaces spaces in `s` with the optimal number of tabs.
All spaces and tabs at the end of a line are removed.
Params:
s = String to convert.
tabSize = Tab columns are `tabSize` spaces apart.
Returns:
GC allocated string with spaces replaced with tabs;
use $(LREF entabber) to not allocate.
See_Also:
$(LREF entabber)
+/
auto entab(Range)(Range s, size_t tabSize = 8)
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range))
{
import std.array : array;
return entabber(s, tabSize).array;
}
///
@safe pure unittest
{
assert(entab(" x \n") == "\tx\n");
}
auto entab(Range)(auto ref Range s, size_t tabSize = 8)
if (!(isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)) &&
is(StringTypeOf!Range))
{
return entab!(StringTypeOf!Range)(s, tabSize);
}
@safe pure unittest
{
assert(testAliasedString!entab(" x \n"));
}
/++
Replaces spaces in range `r` with the optimal number of tabs.
All spaces and tabs at the end of a line are removed.
Params:
r = string or $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives)
tabSize = distance between tab stops
Returns:
lazy forward range with spaces replaced with tabs
See_Also:
$(LREF entab)
+/
auto entabber(Range)(Range r, size_t tabSize = 8)
if (isForwardRange!Range && !isConvertibleToString!Range)
{
import std.uni : lineSep, paraSep, nelSep;
import std.utf : codeUnitLimit, decodeFront;
assert(tabSize > 0, "tabSize must be greater than 0");
alias C = Unqual!(ElementEncodingType!Range);
static struct Result
{
private:
Range _input;
size_t _tabSize;
size_t nspaces;
size_t ntabs;
int column;
size_t index;
@property C getFront()
{
static if (isSomeString!Range)
return _input[0]; // avoid autodecode
else
return _input.front;
}
public:
this(Range input, size_t tabSize)
{
_input = input;
_tabSize = tabSize;
}
@property bool empty()
{
if (ntabs || nspaces)
return false;
/* Since trailing spaces are removed,
* look ahead for anything that is not a trailing space
*/
static if (isSomeString!Range)
{
foreach (c; _input)
{
if (c != ' ' && c != '\t')
return false;
}
return true;
}
else
{
if (_input.empty)
return true;
immutable c = _input.front;
if (c != ' ' && c != '\t')
return false;
auto t = _input.save;
t.popFront();
foreach (c2; t)
{
if (c2 != ' ' && c2 != '\t')
return false;
}
return true;
}
}
@property C front()
{
//writefln(" front(): ntabs = %s nspaces = %s index = %s front = '%s'", ntabs, nspaces, index, getFront);
if (ntabs)
return '\t';
if (nspaces)
return ' ';
C c = getFront;
if (index)
return c;
dchar dc;
if (c < codeUnitLimit!(immutable(C)[]))
{
index = 1;
dc = c;
if (c == ' ' || c == '\t')
{
// Consume input until a non-blank is encountered
immutable startcol = column;
C cx;
static if (isSomeString!Range)
{
while (1)
{
assert(_input.length, "input did not contain non "
~ "whitespace character");
cx = _input[0];
if (cx == ' ')
++column;
else if (cx == '\t')
column += _tabSize - (column % _tabSize);
else
break;
_input = _input[1 .. $];
}
}
else
{
while (1)
{
assert(_input.length, "input did not contain non "
~ "whitespace character");
cx = _input.front;
if (cx == ' ')
++column;
else if (cx == '\t')
column += _tabSize - (column % _tabSize);
else
break;
_input.popFront();
}
}
// Compute ntabs+nspaces to get from startcol to column
immutable n = column - startcol;
if (n == 1)
{
nspaces = 1;
}
else
{
ntabs = column / _tabSize - startcol / _tabSize;
if (ntabs == 0)
nspaces = column - startcol;
else
nspaces = column % _tabSize;
}
//writefln("\tstartcol = %s, column = %s, _tabSize = %s", startcol, column, _tabSize);
//writefln("\tntabs = %s, nspaces = %s", ntabs, nspaces);
if (cx < codeUnitLimit!(immutable(C)[]))
{
dc = cx;
index = 1;
}
else
{
auto r = _input.save;
dc = decodeFront(r, index); // lookahead to decode
}
switch (dc)
{
case '\r':
case '\n':
case paraSep:
case lineSep:
case nelSep:
column = 0;
// Spaces followed by newline are ignored
ntabs = 0;
nspaces = 0;
return cx;
default:
++column;
break;
}
return ntabs ? '\t' : ' ';
}
}
else
{
auto r = _input.save;
dc = decodeFront(r, index); // lookahead to decode
}
//writefln("dc = x%x", dc);
switch (dc)
{
case '\r':
case '\n':
case paraSep:
case lineSep:
case nelSep:
column = 0;
break;
default:
++column;
break;
}
return c;
}
void popFront()
{
//writefln("popFront(): ntabs = %s nspaces = %s index = %s front = '%s'", ntabs, nspaces, index, getFront);
if (!index)
front;
if (ntabs)
--ntabs;
else if (nspaces)
--nspaces;
else if (!ntabs && !nspaces)
{
static if (isSomeString!Range)
_input = _input[1 .. $];
else
_input.popFront();
--index;
}
}
@property typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
return Result(r, tabSize);
}
///
@safe pure unittest
{
import std.array : array;
assert(entabber(" x \n").array == "\tx\n");
}
auto entabber(Range)(auto ref Range r, size_t tabSize = 8)
if (isConvertibleToString!Range)
{
return entabber!(StringTypeOf!Range)(r, tabSize);
}
@safe pure unittest
{
assert(testAliasedString!entabber(" ab asdf ", 8));
}
@safe pure
unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
assert(entab(cast(string) null) is null);
assert(entab("").empty);
assert(entab("a") == "a");
assert(entab(" ") == "");
assert(entab(" x") == "\tx");
assert(entab(" ab asdf ") == " ab\tasdf");
assert(entab(" ab asdf ") == " ab\t asdf");
assert(entab(" ab \t asdf ") == " ab\t asdf");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\ta");
assert(entab("1234567 \ta") == "1234567\t\t\ta");
assert(entab("a ") == "a");
assert(entab("a\v") == "a\v");
assert(entab("a\f") == "a\f");
assert(entab("a\n") == "a\n");
assert(entab("a\n\r") == "a\n\r");
assert(entab("a\r\n") == "a\r\n");
assert(entab("a\u2028") == "a\u2028");
assert(entab("a\u2029") == "a\u2029");
assert(entab("a\u0085") == "a\u0085");
assert(entab("a ") == "a");
assert(entab("a\t") == "a");
assert(entab("\uFF28\uFF45\uFF4C\uFF4C567 \t\uFF4F \t") ==
"\uFF28\uFF45\uFF4C\uFF4C567\t\t\uFF4F");
assert(entab(" \naa") == "\naa");
assert(entab(" \r aa") == "\r aa");
assert(entab(" \u2028 aa") == "\u2028 aa");
assert(entab(" \u2029 aa") == "\u2029 aa");
assert(entab(" \u0085 aa") == "\u0085 aa");
});
}
@safe pure
unittest
{
import std.array : array;
import std.utf : byChar;
assert(entabber(" \u0085 aa".byChar).array == "\u0085 aa");
assert(entabber(" \u2028\t aa \t".byChar).array == "\u2028\t aa");
auto r = entabber("1234", 4);
r.popFront();
auto rsave = r.save;
r.popFront();
assert(r.front == '3');
assert(rsave.front == '2');
}
/++
Replaces the characters in `str` which are keys in `transTable` with
their corresponding values in `transTable`. `transTable` is an AA
where its keys are `dchar` and its values are either `dchar` or some
type of string. Also, if `toRemove` is given, the characters in it are
removed from `str` prior to translation. `str` itself is unaltered.
A copy with the changes is returned.
See_Also:
$(LREF tr),
$(REF replace, std,array),
$(REF substitute, std,algorithm,iteration)
Params:
str = The original string.
transTable = The AA indicating which characters to replace and what to
replace them with.
toRemove = The characters to remove from the string.
+/
C1[] translate(C1, C2 = immutable char)(C1[] str,
in dchar[dchar] transTable,
const(C2)[] toRemove = null) @safe pure
if (isSomeChar!C1 && isSomeChar!C2)
{
import std.array : appender;
auto buffer = appender!(C1[])();
translateImpl(str, transTable, toRemove, buffer);
return buffer.data;
}
///
@safe pure unittest
{
dchar[dchar] transTable1 = ['e' : '5', 'o' : '7', '5': 'q'];
assert(translate("hello world", transTable1) == "h5ll7 w7rld");
assert(translate("hello world", transTable1, "low") == "h5 rd");
string[dchar] transTable2 = ['e' : "5", 'o' : "orange"];
assert(translate("hello world", transTable2) == "h5llorange worangerld");
}
// https://issues.dlang.org/show_bug.cgi?id=13018
@safe pure unittest
{
immutable dchar[dchar] transTable1 = ['e' : '5', 'o' : '7', '5': 'q'];
assert(translate("hello world", transTable1) == "h5ll7 w7rld");
assert(translate("hello world", transTable1, "low") == "h5 rd");
immutable string[dchar] transTable2 = ['e' : "5", 'o' : "orange"];
assert(translate("hello world", transTable2) == "h5llorange worangerld");
}
@system pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!( char[], const( char)[], immutable( char)[],
wchar[], const(wchar)[], immutable(wchar)[],
dchar[], const(dchar)[], immutable(dchar)[]))
{(){ // workaround slow optimizations for large functions
// https://issues.dlang.org/show_bug.cgi?id=2396
assert(translate(to!S("hello world"), cast(dchar[dchar])['h' : 'q', 'l' : '5']) ==
to!S("qe55o wor5d"));
assert(translate(to!S("hello world"), cast(dchar[dchar])['o' : 'l', 'l' : '\U00010143']) ==
to!S("he\U00010143\U00010143l wlr\U00010143d"));
assert(translate(to!S("hello \U00010143 world"), cast(dchar[dchar])['h' : 'q', 'l': '5']) ==
to!S("qe55o \U00010143 wor5d"));
assert(translate(to!S("hello \U00010143 world"), cast(dchar[dchar])['o' : '0', '\U00010143' : 'o']) ==
to!S("hell0 o w0rld"));
assert(translate(to!S("hello world"), cast(dchar[dchar]) null) == to!S("hello world"));
static foreach (T; AliasSeq!( char[], const( char)[], immutable( char)[],
wchar[], const(wchar)[], immutable(wchar)[],
dchar[], const(dchar)[], immutable(dchar)[]))
(){ // workaround slow optimizations for large functions
// https://issues.dlang.org/show_bug.cgi?id=2396
static foreach (R; AliasSeq!(dchar[dchar], const dchar[dchar],
immutable dchar[dchar]))
{{
R tt = ['h' : 'q', 'l' : '5'];
assert(translate(to!S("hello world"), tt, to!T("r"))
== to!S("qe55o wo5d"));
assert(translate(to!S("hello world"), tt, to!T("helo"))
== to!S(" wrd"));
assert(translate(to!S("hello world"), tt, to!T("q5"))
== to!S("qe55o wor5d"));
}}
}();
auto s = to!S("hello world");
dchar[dchar] transTable = ['h' : 'q', 'l' : '5'];
static assert(is(typeof(s) == typeof(translate(s, transTable))));
assert(translate(s, transTable) == "qe55o wor5d");
}();}
});
}
/++ Ditto +/
C1[] translate(C1, S, C2 = immutable char)(C1[] str,
in S[dchar] transTable,
const(C2)[] toRemove = null) @safe pure
if (isSomeChar!C1 && isSomeString!S && isSomeChar!C2)
{
import std.array : appender;
auto buffer = appender!(C1[])();
translateImpl(str, transTable, toRemove, buffer);
return buffer.data;
}
@system pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (S; AliasSeq!( char[], const( char)[], immutable( char)[],
wchar[], const(wchar)[], immutable(wchar)[],
dchar[], const(dchar)[], immutable(dchar)[]))
{(){ // workaround slow optimizations for large functions
// https://issues.dlang.org/show_bug.cgi?id=2396
assert(translate(to!S("hello world"), ['h' : "yellow", 'l' : "42"]) ==
to!S("yellowe4242o wor42d"));
assert(translate(to!S("hello world"), ['o' : "owl", 'l' : "\U00010143\U00010143"]) ==
to!S("he\U00010143\U00010143\U00010143\U00010143owl wowlr\U00010143\U00010143d"));
assert(translate(to!S("hello \U00010143 world"), ['h' : "yellow", 'l' : "42"]) ==
to!S("yellowe4242o \U00010143 wor42d"));
assert(translate(to!S("hello \U00010143 world"), ['o' : "owl", 'l' : "\U00010143\U00010143"]) ==
to!S("he\U00010143\U00010143\U00010143\U00010143owl \U00010143 wowlr\U00010143\U00010143d"));
assert(translate(to!S("hello \U00010143 world"), ['h' : ""]) ==
to!S("ello \U00010143 world"));
assert(translate(to!S("hello \U00010143 world"), ['\U00010143' : ""]) ==
to!S("hello world"));
assert(translate(to!S("hello world"), cast(string[dchar]) null) == to!S("hello world"));
static foreach (T; AliasSeq!( char[], const( char)[], immutable( char)[],
wchar[], const(wchar)[], immutable(wchar)[],
dchar[], const(dchar)[], immutable(dchar)[]))
(){ // workaround slow optimizations for large functions
// https://issues.dlang.org/show_bug.cgi?id=2396
static foreach (R; AliasSeq!(string[dchar], const string[dchar],
immutable string[dchar]))
{{
R tt = ['h' : "yellow", 'l' : "42"];
assert(translate(to!S("hello world"), tt, to!T("r")) ==
to!S("yellowe4242o wo42d"));
assert(translate(to!S("hello world"), tt, to!T("helo")) ==
to!S(" wrd"));
assert(translate(to!S("hello world"), tt, to!T("y42")) ==
to!S("yellowe4242o wor42d"));
assert(translate(to!S("hello world"), tt, to!T("hello world")) ==
to!S(""));
assert(translate(to!S("hello world"), tt, to!T("42")) ==
to!S("yellowe4242o wor42d"));
}}
}();
auto s = to!S("hello world");
string[dchar] transTable = ['h' : "silly", 'l' : "putty"];
static assert(is(typeof(s) == typeof(translate(s, transTable))));
assert(translate(s, transTable) == "sillyeputtyputtyo worputtyd");
}();}
});
}
/++
This is an overload of `translate` which takes an existing buffer to write the contents to.
Params:
str = The original string.
transTable = The AA indicating which characters to replace and what to
replace them with.
toRemove = The characters to remove from the string.
buffer = An output range to write the contents to.
+/
void translate(C1, C2 = immutable char, Buffer)(const(C1)[] str,
in dchar[dchar] transTable,
const(C2)[] toRemove,
Buffer buffer)
if (isSomeChar!C1 && isSomeChar!C2 && isOutputRange!(Buffer, C1))
{
translateImpl(str, transTable, toRemove, buffer);
}
///
@safe pure unittest
{
import std.array : appender;
dchar[dchar] transTable1 = ['e' : '5', 'o' : '7', '5': 'q'];
auto buffer = appender!(dchar[])();
translate("hello world", transTable1, null, buffer);
assert(buffer.data == "h5ll7 w7rld");
buffer.clear();
translate("hello world", transTable1, "low", buffer);
assert(buffer.data == "h5 rd");
buffer.clear();
string[dchar] transTable2 = ['e' : "5", 'o' : "orange"];
translate("hello world", transTable2, null, buffer);
assert(buffer.data == "h5llorange worangerld");
}
// https://issues.dlang.org/show_bug.cgi?id=13018
@safe pure unittest
{
import std.array : appender;
immutable dchar[dchar] transTable1 = ['e' : '5', 'o' : '7', '5': 'q'];
auto buffer = appender!(dchar[])();
translate("hello world", transTable1, null, buffer);
assert(buffer.data == "h5ll7 w7rld");
buffer.clear();
translate("hello world", transTable1, "low", buffer);
assert(buffer.data == "h5 rd");
buffer.clear();
immutable string[dchar] transTable2 = ['e' : "5", 'o' : "orange"];
translate("hello world", transTable2, null, buffer);
assert(buffer.data == "h5llorange worangerld");
}
/++ Ditto +/
void translate(C1, S, C2 = immutable char, Buffer)(C1[] str,
in S[dchar] transTable,
const(C2)[] toRemove,
Buffer buffer)
if (isSomeChar!C1 && isSomeString!S && isSomeChar!C2 && isOutputRange!(Buffer, S))
{
translateImpl(str, transTable, toRemove, buffer);
}
private void translateImpl(C1, T, C2, Buffer)(const(C1)[] str,
scope T transTable,
const(C2)[] toRemove,
Buffer buffer)
{
bool[dchar] removeTable;
foreach (dchar c; toRemove)
removeTable[c] = true;
foreach (dchar c; str)
{
if (c in removeTable)
continue;
auto newC = c in transTable;
if (newC)
put(buffer, *newC);
else
put(buffer, c);
}
}
/++
This is an $(I $(RED ASCII-only)) overload of $(LREF _translate). It
will $(I not) work with Unicode. It exists as an optimization for the
cases where Unicode processing is not necessary.
Unlike the other overloads of $(LREF _translate), this one does not take
an AA. Rather, it takes a `string` generated by $(LREF makeTransTable).
The array generated by `makeTransTable` is `256` elements long such that
the index is equal to the ASCII character being replaced and the value is
equal to the character that it's being replaced with. Note that translate
does not decode any of the characters, so you can actually pass it Extended
ASCII characters if you want to (ASCII only actually uses `128`
characters), but be warned that Extended ASCII characters are not valid
Unicode and therefore will result in a `UTFException` being thrown from
most other Phobos functions.
Also, because no decoding occurs, it is possible to use this overload to
translate ASCII characters within a proper UTF-8 string without altering the
other, non-ASCII characters. It's replacing any code unit greater than
`127` with another code unit or replacing any code unit with another code
unit greater than `127` which will cause UTF validation issues.
See_Also:
$(LREF tr),
$(REF replace, std,array),
$(REF substitute, std,algorithm,iteration)
Params:
str = The original string.
transTable = The string indicating which characters to replace and what
to replace them with. It is generated by $(LREF makeTransTable).
toRemove = The characters to remove from the string.
+/
C[] translate(C = immutable char)(scope const(char)[] str, scope const(char)[] transTable,
scope const(char)[] toRemove = null) @trusted pure nothrow
if (is(immutable C == immutable char))
in
{
import std.conv : to;
assert(transTable.length == 256, "transTable had invalid length of " ~
to!string(transTable.length));
}
do
{
bool[256] remTable = false;
foreach (char c; toRemove)
remTable[c] = true;
size_t count = 0;
foreach (char c; str)
{
if (!remTable[c])
++count;
}
auto buffer = new char[count];
size_t i = 0;
foreach (char c; str)
{
if (!remTable[c])
buffer[i++] = transTable[c];
}
return cast(C[])(buffer);
}
///
@safe pure nothrow unittest
{
auto transTable1 = makeTrans("eo5", "57q");
assert(translate("hello world", transTable1) == "h5ll7 w7rld");
assert(translate("hello world", transTable1, "low") == "h5 rd");
}
/**
* Do same thing as $(LREF makeTransTable) but allocate the translation table
* on the GC heap.
*
* Use $(LREF makeTransTable) instead.
*/
string makeTrans(scope const(char)[] from, scope const(char)[] to) @trusted pure nothrow
{
return makeTransTable(from, to)[].idup;
}
///
@safe pure nothrow unittest
{
auto transTable1 = makeTrans("eo5", "57q");
assert(translate("hello world", transTable1) == "h5ll7 w7rld");
assert(translate("hello world", transTable1, "low") == "h5 rd");
}
/*******
* Construct 256 character translation table, where characters in from[] are replaced
* by corresponding characters in to[].
*
* Params:
* from = array of chars, less than or equal to 256 in length
* to = corresponding array of chars to translate to
* Returns:
* translation array
*/
char[256] makeTransTable(scope const(char)[] from, scope const(char)[] to) @safe pure nothrow @nogc
in
{
import std.ascii : isASCII;
assert(from.length == to.length, "from.length must match to.length");
assert(from.length <= 256, "from.length must be <= 256");
foreach (char c; from)
assert(isASCII(c),
"all characters in from must be valid ascii character");
foreach (char c; to)
assert(isASCII(c),
"all characters in to must be valid ascii character");
}
do
{
char[256] result = void;
foreach (i; 0 .. result.length)
result[i] = cast(char) i;
foreach (i, c; from)
result[c] = to[i];
return result;
}
///
@safe pure unittest
{
assert(translate("hello world", makeTransTable("hl", "q5")) == "qe55o wor5d");
assert(translate("hello world", makeTransTable("12345", "67890")) == "hello world");
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
static foreach (C; AliasSeq!(char, const char, immutable char))
{{
assert(translate!C("hello world", makeTransTable("hl", "q5")) == to!(C[])("qe55o wor5d"));
auto s = to!(C[])("hello world");
auto transTable = makeTransTable("hl", "q5");
static assert(is(typeof(s) == typeof(translate!C(s, transTable))));
assert(translate(s, transTable) == "qe55o wor5d");
}}
static foreach (S; AliasSeq!(char[], const(char)[], immutable(char)[]))
{
assert(translate(to!S("hello world"), makeTransTable("hl", "q5")) == to!S("qe55o wor5d"));
assert(translate(to!S("hello \U00010143 world"), makeTransTable("hl", "q5")) ==
to!S("qe55o \U00010143 wor5d"));
assert(translate(to!S("hello world"), makeTransTable("ol", "1o")) == to!S("heoo1 w1rod"));
assert(translate(to!S("hello world"), makeTransTable("", "")) == to!S("hello world"));
assert(translate(to!S("hello world"), makeTransTable("12345", "67890")) == to!S("hello world"));
assert(translate(to!S("hello \U00010143 world"), makeTransTable("12345", "67890")) ==
to!S("hello \U00010143 world"));
static foreach (T; AliasSeq!(char[], const(char)[], immutable(char)[]))
{
assert(translate(to!S("hello world"), makeTransTable("hl", "q5"), to!T("r")) ==
to!S("qe55o wo5d"));
assert(translate(to!S("hello \U00010143 world"), makeTransTable("hl", "q5"), to!T("r")) ==
to!S("qe55o \U00010143 wo5d"));
assert(translate(to!S("hello world"), makeTransTable("hl", "q5"), to!T("helo")) ==
to!S(" wrd"));
assert(translate(to!S("hello world"), makeTransTable("hl", "q5"), to!T("q5")) ==
to!S("qe55o wor5d"));
}
}
});
}
/++
This is an $(I $(RED ASCII-only)) overload of `translate` which takes an existing buffer to write the contents to.
Params:
str = The original string.
transTable = The string indicating which characters to replace and what
to replace them with. It is generated by $(LREF makeTransTable).
toRemove = The characters to remove from the string.
buffer = An output range to write the contents to.
+/
void translate(C = immutable char, Buffer)(scope const(char)[] str, scope const(char)[] transTable,
scope const(char)[] toRemove, Buffer buffer) @trusted pure
if (is(immutable C == immutable char) && isOutputRange!(Buffer, char))
in
{
assert(transTable.length == 256, format!
"transTable.length %s must equal 256"(transTable.length));
}
do
{
bool[256] remTable = false;
foreach (char c; toRemove)
remTable[c] = true;
foreach (char c; str)
{
if (!remTable[c])
put(buffer, transTable[c]);
}
}
///
@safe pure unittest
{
import std.array : appender;
auto buffer = appender!(char[])();
auto transTable1 = makeTransTable("eo5", "57q");
translate("hello world", transTable1, null, buffer);
assert(buffer.data == "h5ll7 w7rld");
buffer.clear();
translate("hello world", transTable1, "low", buffer);
assert(buffer.data == "h5 rd");
}
/**********************************************
* Return string that is the 'successor' to s[].
* If the rightmost character is a-zA-Z0-9, it is incremented within
* its case or digits. If it generates a carry, the process is
* repeated with the one to its immediate left.
*/
S succ(S)(S s) @safe pure
if (isSomeString!S)
{
import std.ascii : isAlphaNum;
if (s.length && isAlphaNum(s[$ - 1]))
{
auto r = s.dup;
size_t i = r.length - 1;
while (1)
{
dchar c = s[i];
dchar carry;
switch (c)
{
case '9':
c = '0';
carry = '1';
goto Lcarry;
case 'z':
case 'Z':
c -= 'Z' - 'A';
carry = c;
Lcarry:
r[i] = cast(char) c;
if (i == 0)
{
auto t = new typeof(r[0])[r.length + 1];
t[0] = cast(char) carry;
t[1 .. $] = r[];
return t;
}
i--;
break;
default:
if (isAlphaNum(c))
r[i]++;
return r;
}
}
}
return s;
}
///
@safe pure unittest
{
assert(succ("1") == "2");
assert(succ("9") == "10");
assert(succ("999") == "1000");
assert(succ("zz99") == "aaa00");
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
assert(succ(string.init) is null);
assert(succ("!@#$%") == "!@#$%");
assert(succ("1") == "2");
assert(succ("9") == "10");
assert(succ("999") == "1000");
assert(succ("zz99") == "aaa00");
});
}
/++
Replaces the characters in `str` which are in `from` with the
the corresponding characters in `to` and returns the resulting string.
`tr` is based on
$(HTTP pubs.opengroup.org/onlinepubs/9699919799/utilities/_tr.html, Posix's tr),
though it doesn't do everything that the Posix utility does.
Params:
str = The original string.
from = The characters to replace.
to = The characters to replace with.
modifiers = String containing modifiers.
Modifiers:
$(BOOKTABLE,
$(TR $(TD Modifier) $(TD Description))
$(TR $(TD `'c'`) $(TD Complement the list of characters in `from`))
$(TR $(TD `'d'`) $(TD Removes matching characters with no corresponding
replacement in `to`))
$(TR $(TD `'s'`) $(TD Removes adjacent duplicates in the replaced
characters))
)
If the modifier `'d'` is present, then the number of characters in
`to` may be only `0` or `1`.
If the modifier `'d'` is $(I not) present, and `to` is empty, then
`to` is taken to be the same as `from`.
If the modifier `'d'` is $(I not) present, and `to` is shorter than
`from`, then `to` is extended by replicating the last character in
`to`.
Both `from` and `to` may contain ranges using the `'-'` character
(e.g. `"a-d"` is synonymous with `"abcd"`.) Neither accept a leading
`'^'` as meaning the complement of the string (use the `'c'` modifier
for that).
See_Also:
$(LREF translate),
$(REF replace, std,array),
$(REF substitute, std,algorithm,iteration)
+/
C1[] tr(C1, C2, C3, C4 = immutable char)
(C1[] str, const(C2)[] from, const(C3)[] to, const(C4)[] modifiers = null)
{
import std.array : appender;
import std.conv : conv_to = to;
import std.utf : decode;
bool mod_c;
bool mod_d;
bool mod_s;
foreach (char c; modifiers)
{
switch (c)
{
case 'c': mod_c = 1; break; // complement
case 'd': mod_d = 1; break; // delete unreplaced chars
case 's': mod_s = 1; break; // squeeze duplicated replaced chars
default: assert(false, "modifier must be one of ['c', 'd', 's'] not "
~ c);
}
}
if (to.empty && !mod_d)
to = conv_to!(typeof(to))(from);
auto result = appender!(C1[])();
bool modified;
dchar lastc;
foreach (dchar c; str)
{
dchar lastf;
dchar lastt;
dchar newc;
int n = 0;
for (size_t i = 0; i < from.length; )
{
immutable f = decode(from, i);
if (f == '-' && lastf != dchar.init && i < from.length)
{
immutable nextf = decode(from, i);
if (lastf <= c && c <= nextf)
{
n += c - lastf - 1;
if (mod_c)
goto Lnotfound;
goto Lfound;
}
n += nextf - lastf;
lastf = lastf.init;
continue;
}
if (c == f)
{ if (mod_c)
goto Lnotfound;
goto Lfound;
}
lastf = f;
n++;
}
if (!mod_c)
goto Lnotfound;
n = 0; // consider it 'found' at position 0
Lfound:
// Find the nth character in to[]
dchar nextt;
for (size_t i = 0; i < to.length; )
{
immutable t = decode(to, i);
if (t == '-' && lastt != dchar.init && i < to.length)
{
nextt = decode(to, i);
n -= nextt - lastt;
if (n < 0)
{
newc = nextt + n + 1;
goto Lnewc;
}
lastt = dchar.init;
continue;
}
if (n == 0)
{ newc = t;
goto Lnewc;
}
lastt = t;
nextt = t;
n--;
}
if (mod_d)
continue;
newc = nextt;
Lnewc:
if (mod_s && modified && newc == lastc)
continue;
result.put(newc);
assert(newc != dchar.init, "character must not be dchar.init");
modified = true;
lastc = newc;
continue;
Lnotfound:
result.put(c);
lastc = c;
modified = false;
}
return result.data;
}
///
@safe pure unittest
{
assert(tr("abcdef", "cd", "CD") == "abCDef");
assert(tr("1st March, 2018", "March", "MAR", "s") == "1st MAR, 2018");
assert(tr("abcdef", "ef", "", "d") == "abcd");
assert(tr("14-Jul-87", "a-zA-Z", " ", "cs") == " Jul ");
}
@safe pure unittest
{
import std.algorithm.comparison : equal;
import std.conv : to;
import std.exception : assertCTFEable;
// Complete list of test types; too slow to test'em all
// alias TestTypes = AliasSeq!(
// char[], const( char)[], immutable( char)[],
// wchar[], const(wchar)[], immutable(wchar)[],
// dchar[], const(dchar)[], immutable(dchar)[]);
// Reduced list of test types
alias TestTypes = AliasSeq!(char[], const(wchar)[], immutable(dchar)[]);
assertCTFEable!(
{
foreach (S; TestTypes)
{
foreach (T; TestTypes)
{
foreach (U; TestTypes)
{
assert(equal(tr(to!S("abcdef"), to!T("cd"), to!U("CD")), "abCDef"));
assert(equal(tr(to!S("abcdef"), to!T("b-d"), to!U("B-D")), "aBCDef"));
assert(equal(tr(to!S("abcdefgh"), to!T("b-dh"), to!U("B-Dx")), "aBCDefgx"));
assert(equal(tr(to!S("abcdefgh"), to!T("b-dh"), to!U("B-CDx")), "aBCDefgx"));
assert(equal(tr(to!S("abcdefgh"), to!T("b-dh"), to!U("B-BCDx")), "aBCDefgx"));
assert(equal(tr(to!S("abcdef"), to!T("ef"), to!U("*"), to!S("c")), "****ef"));
assert(equal(tr(to!S("abcdef"), to!T("ef"), to!U(""), to!T("d")), "abcd"));
assert(equal(tr(to!S("hello goodbye"), to!T("lo"), to!U(""), to!U("s")), "helo godbye"));
assert(equal(tr(to!S("hello goodbye"), to!T("lo"), to!U("x"), "s"), "hex gxdbye"));
assert(equal(tr(to!S("14-Jul-87"), to!T("a-zA-Z"), to!U(" "), "cs"), " Jul "));
assert(equal(tr(to!S("Abc"), to!T("AAA"), to!U("XYZ")), "Xbc"));
}
}
auto s = to!S("hello world");
static assert(is(typeof(s) == typeof(tr(s, "he", "if"))));
assert(tr(s, "he", "if") == "ifllo world");
}
});
}
@system pure unittest
{
import core.exception : AssertError;
import std.exception : assertThrown;
assertThrown!AssertError(tr("abcdef", "cd", "CD", "X"));
}
/**
* Takes a string `s` and determines if it represents a number. This function
* also takes an optional parameter, `bAllowSep`, which will accept the
* separator characters `','` and `'__'` within the string. But these
* characters should be stripped from the string before using any
* of the conversion functions like `to!int()`, `to!float()`, and etc
* else an error will occur.
*
* Also please note, that no spaces are allowed within the string
* anywhere whether it's a leading, trailing, or embedded space(s),
* thus they too must be stripped from the string before using this
* function, or any of the conversion functions.
*
* Params:
* s = the string or random access range to check
* bAllowSep = accept separator characters or not
*
* Returns:
* `bool`
*/
bool isNumeric(S)(S s, bool bAllowSep = false)
if (isSomeString!S ||
(isRandomAccessRange!S &&
hasSlicing!S &&
isSomeChar!(ElementType!S) &&
!isInfinite!S))
{
import std.algorithm.comparison : among;
import std.ascii : isASCII;
// ASCII only case insensitive comparison with two ranges
static bool asciiCmp(S1)(S1 a, string b)
{
import std.algorithm.comparison : equal;
import std.algorithm.iteration : map;
import std.ascii : toLower;
import std.utf : byChar;
return a.map!toLower.equal(b.byChar.map!toLower);
}
// auto-decoding special case, we're only comparing characters
// in the ASCII range so there's no reason to decode
static if (isSomeString!S)
{
import std.utf : byCodeUnit;
auto codeUnits = s.byCodeUnit;
}
else
{
alias codeUnits = s;
}
if (codeUnits.empty)
return false;
// Check for NaN (Not a Number) and for Infinity
if (codeUnits.among!((a, b) => asciiCmp(a.save, b))
("nan", "nani", "nan+nani", "inf", "-inf"))
return true;
immutable frontResult = codeUnits.front;
if (frontResult == '-' || frontResult == '+')
codeUnits.popFront;
immutable iLen = codeUnits.length;
bool bDecimalPoint, bExponent, bComplex, sawDigits;
for (size_t i = 0; i < iLen; i++)
{
immutable c = codeUnits[i];
if (!c.isASCII)
return false;
// Digits are good, skip to the next character
if (c >= '0' && c <= '9')
{
sawDigits = true;
continue;
}
// Check for the complex type, and if found
// reset the flags for checking the 2nd number.
if (c == '+')
{
if (!i)
return false;
bDecimalPoint = false;
bExponent = false;
bComplex = true;
sawDigits = false;
continue;
}
// Allow only one exponent per number
if (c == 'e' || c == 'E')
{
// A 2nd exponent found, return not a number
if (bExponent || i + 1 >= iLen)
return false;
// Look forward for the sign, and if
// missing then this is not a number.
if (codeUnits[i + 1] != '-' && codeUnits[i + 1] != '+')
return false;
bExponent = true;
i++;
continue;
}
// Allow only one decimal point per number to be used
if (c == '.')
{
// A 2nd decimal point found, return not a number
if (bDecimalPoint)
return false;
bDecimalPoint = true;
continue;
}
// Check for ending literal characters: "f,u,l,i,ul,fi,li",
// and whether they're being used with the correct datatype.
if (i == iLen - 2)
{
if (!sawDigits)
return false;
// Integer Whole Number
if (asciiCmp(codeUnits[i .. iLen], "ul") &&
(!bDecimalPoint && !bExponent && !bComplex))
return true;
// Floating-Point Number
if (codeUnits[i .. iLen].among!((a, b) => asciiCmp(a, b))("fi", "li") &&
(bDecimalPoint || bExponent || bComplex))
return true;
if (asciiCmp(codeUnits[i .. iLen], "ul") &&
(bDecimalPoint || bExponent || bComplex))
return false;
// Could be a Integer or a Float, thus
// all these suffixes are valid for both
return codeUnits[i .. iLen].among!((a, b) => asciiCmp(a, b))
("ul", "fi", "li") != 0;
}
if (i == iLen - 1)
{
if (!sawDigits)
return false;
// Integer Whole Number
if (c.among!('u', 'l', 'U', 'L')() &&
(!bDecimalPoint && !bExponent && !bComplex))
return true;
// Check to see if the last character in the string
// is the required 'i' character
if (bComplex)
return c.among!('i', 'I')() != 0;
// Floating-Point Number
return c.among!('l', 'L', 'f', 'F', 'i', 'I')() != 0;
}
// Check if separators are allowed to be in the numeric string
if (!bAllowSep || !c.among!('_', ',')())
return false;
}
return sawDigits;
}
/**
* Integer Whole Number: (byte, ubyte, short, ushort, int, uint, long, and ulong)
* ['+'|'-']digit(s)[U|L|UL]
*/
@safe @nogc pure nothrow unittest
{
assert(isNumeric("123"));
assert(isNumeric("123UL"));
assert(isNumeric("123L"));
assert(isNumeric("+123U"));
assert(isNumeric("-123L"));
}
/**
* Floating-Point Number: (float, double, real, ifloat, idouble, and ireal)
* ['+'|'-']digit(s)[.][digit(s)][[e-|e+]digit(s)][i|f|L|Li|fi]]
* or [nan|nani|inf|-inf]
*/
@safe @nogc pure nothrow unittest
{
assert(isNumeric("+123"));
assert(isNumeric("-123.01"));
assert(isNumeric("123.3e-10f"));
assert(isNumeric("123.3e-10fi"));
assert(isNumeric("123.3e-10L"));
assert(isNumeric("nan"));
assert(isNumeric("nani"));
assert(isNumeric("-inf"));
}
/**
* Floating-Point Number: (cfloat, cdouble, and creal)
* ['+'|'-']digit(s)[.][digit(s)][[e-|e+]digit(s)][+]
* [digit(s)[.][digit(s)][[e-|e+]digit(s)][i|f|L|Li|fi]]
* or [nan|nani|nan+nani|inf|-inf]
*/
@safe @nogc pure nothrow unittest
{
assert(isNumeric("-123e-1+456.9e-10Li"));
assert(isNumeric("+123e+10+456i"));
assert(isNumeric("123+456"));
}
@safe @nogc pure nothrow unittest
{
assert(!isNumeric("F"));
assert(!isNumeric("L"));
assert(!isNumeric("U"));
assert(!isNumeric("i"));
assert(!isNumeric("fi"));
assert(!isNumeric("ul"));
assert(!isNumeric("li"));
assert(!isNumeric("."));
assert(!isNumeric("-"));
assert(!isNumeric("+"));
assert(!isNumeric("e-"));
assert(!isNumeric("e+"));
assert(!isNumeric(".f"));
assert(!isNumeric("e+f"));
assert(!isNumeric("++1"));
assert(!isNumeric(""));
assert(!isNumeric("1E+1E+1"));
assert(!isNumeric("1E1"));
assert(!isNumeric("\x81"));
}
// Test string types
@safe unittest
{
import std.conv : to;
static foreach (T; AliasSeq!(string, char[], wstring, wchar[], dstring, dchar[]))
{
assert("123".to!T.isNumeric());
assert("123UL".to!T.isNumeric());
assert("123fi".to!T.isNumeric());
assert("123li".to!T.isNumeric());
assert(!"--123L".to!T.isNumeric());
}
}
// test ranges
@system pure unittest
{
import std.range : refRange;
import std.utf : byCodeUnit;
assert("123".byCodeUnit.isNumeric());
assert("123UL".byCodeUnit.isNumeric());
assert("123fi".byCodeUnit.isNumeric());
assert("123li".byCodeUnit.isNumeric());
assert(!"--123L".byCodeUnit.isNumeric());
dstring z = "0";
assert(isNumeric(refRange(&z)));
dstring nani = "nani";
assert(isNumeric(refRange(&nani)));
}
/// isNumeric works with CTFE
@safe pure unittest
{
enum a = isNumeric("123.00E-5+1234.45E-12Li");
enum b = isNumeric("12345xxxx890");
static assert( a);
static assert(!b);
}
@system unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
// Test the isNumeric(in string) function
assert(isNumeric("1") == true );
assert(isNumeric("1.0") == true );
assert(isNumeric("1e-1") == true );
assert(isNumeric("12345xxxx890") == false );
assert(isNumeric("567L") == true );
assert(isNumeric("23UL") == true );
assert(isNumeric("-123..56f") == false );
assert(isNumeric("12.3.5.6") == false );
assert(isNumeric(" 12.356") == false );
assert(isNumeric("123 5.6") == false );
assert(isNumeric("1233E-1+1.0e-1i") == true );
assert(isNumeric("123.00E-5+1234.45E-12Li") == true);
assert(isNumeric("123.00e-5+1234.45E-12iL") == false);
assert(isNumeric("123.00e-5+1234.45e-12uL") == false);
assert(isNumeric("123.00E-5+1234.45e-12lu") == false);
assert(isNumeric("123fi") == true);
assert(isNumeric("123li") == true);
assert(isNumeric("--123L") == false);
assert(isNumeric("+123.5UL") == false);
assert(isNumeric("123f") == true);
assert(isNumeric("123.u") == false);
// @@@BUG@@ to!string(float) is not CTFEable.
// Related: formatValue(T) if (is(FloatingPointTypeOf!T))
if (!__ctfe)
{
assert(isNumeric(to!string(real.nan)) == true);
assert(isNumeric(to!string(-real.infinity)) == true);
}
string s = "$250.99-";
assert(isNumeric(s[1 .. s.length - 2]) == true);
assert(isNumeric(s) == false);
assert(isNumeric(s[0 .. s.length - 1]) == false);
});
assert(!isNumeric("-"));
assert(!isNumeric("+"));
}
/*****************************
* Soundex algorithm.
*
* The Soundex algorithm converts a word into 4 characters
* based on how the word sounds phonetically. The idea is that
* two spellings that sound alike will have the same Soundex
* value, which means that Soundex can be used for fuzzy matching
* of names.
*
* Params:
* str = String or InputRange to convert to Soundex representation.
*
* Returns:
* The four character array with the Soundex result in it.
* The array has zero's in it if there is no Soundex representation for the string.
*
* See_Also:
* $(LINK2 http://en.wikipedia.org/wiki/Soundex, Wikipedia),
* $(LUCKY The Soundex Indexing System)
* $(LREF soundex)
*
* Note:
* Only works well with English names.
*/
char[4] soundexer(Range)(Range str)
if (isInputRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isConvertibleToString!Range)
{
alias C = Unqual!(ElementEncodingType!Range);
static immutable dex =
// ABCDEFGHIJKLMNOPQRSTUVWXYZ
"01230120022455012623010202";
char[4] result = void;
size_t b = 0;
C lastc;
foreach (C c; str)
{
if (c >= 'a' && c <= 'z')
c -= 'a' - 'A';
else if (c >= 'A' && c <= 'Z')
{
}
else
{
lastc = lastc.init;
continue;
}
if (b == 0)
{
result[0] = cast(char) c;
b++;
lastc = dex[c - 'A'];
}
else
{
if (c == 'H' || c == 'W')
continue;
if (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U')
lastc = lastc.init;
c = dex[c - 'A'];
if (c != '0' && c != lastc)
{
result[b] = cast(char) c;
b++;
lastc = c;
}
if (b == 4)
goto Lret;
}
}
if (b == 0)
result[] = 0;
else
result[b .. 4] = '0';
Lret:
return result;
}
/// ditto
char[4] soundexer(Range)(auto ref Range str)
if (isConvertibleToString!Range)
{
return soundexer!(StringTypeOf!Range)(str);
}
///
@safe unittest
{
assert(soundexer("Gauss") == "G200");
assert(soundexer("Ghosh") == "G200");
assert(soundexer("Robert") == "R163");
assert(soundexer("Rupert") == "R163");
assert(soundexer("0123^&^^**&^") == ['\0', '\0', '\0', '\0']);
}
/*****************************
* Like $(LREF soundexer), but with different parameters
* and return value.
*
* Params:
* str = String to convert to Soundex representation.
* buffer = Optional 4 char array to put the resulting Soundex
* characters into. If null, the return value
* buffer will be allocated on the heap.
* Returns:
* The four character array with the Soundex result in it.
* Returns null if there is no Soundex representation for the string.
* See_Also:
* $(LREF soundexer)
*/
char[] soundex(scope const(char)[] str, char[] buffer = null)
@safe pure nothrow
in
{
assert(buffer is null || buffer.length >= 4);
}
out (result)
{
if (result !is null)
{
assert(result.length == 4, "Result must have length of 4");
assert(result[0] >= 'A' && result[0] <= 'Z', "The first character of "
~ " the result must be an upper character not " ~ result);
foreach (char c; result[1 .. 4])
assert(c >= '0' && c <= '6', "the last three character of the"
~ " result must be number between 0 and 6 not " ~ result);
}
}
do
{
char[4] result = soundexer(str);
if (result[0] == 0)
return null;
if (buffer is null)
buffer = new char[4];
buffer[] = result[];
return buffer;
}
///
@safe unittest
{
assert(soundex("Gauss") == "G200");
assert(soundex("Ghosh") == "G200");
assert(soundex("Robert") == "R163");
assert(soundex("Rupert") == "R163");
assert(soundex("0123^&^^**&^") == null);
}
@safe pure nothrow unittest
{
import std.exception : assertCTFEable;
assertCTFEable!(
{
char[4] buffer;
assert(soundex(null) == null);
assert(soundex("") == null);
assert(soundex("0123^&^^**&^") == null);
assert(soundex("Euler") == "E460");
assert(soundex(" Ellery ") == "E460");
assert(soundex("Gauss") == "G200");
assert(soundex("Ghosh") == "G200");
assert(soundex("Hilbert") == "H416");
assert(soundex("Heilbronn") == "H416");
assert(soundex("Knuth") == "K530");
assert(soundex("Kant", buffer) == "K530");
assert(soundex("Lloyd") == "L300");
assert(soundex("Ladd") == "L300");
assert(soundex("Lukasiewicz", buffer) == "L222");
assert(soundex("Lissajous") == "L222");
assert(soundex("Robert") == "R163");
assert(soundex("Rupert") == "R163");
assert(soundex("Rubin") == "R150");
assert(soundex("Washington") == "W252");
assert(soundex("Lee") == "L000");
assert(soundex("Gutierrez") == "G362");
assert(soundex("Pfister") == "P236");
assert(soundex("Jackson") == "J250");
assert(soundex("Tymczak") == "T522");
assert(soundex("Ashcraft") == "A261");
assert(soundex("Woo") == "W000");
assert(soundex("Pilgrim") == "P426");
assert(soundex("Flingjingwaller") == "F452");
assert(soundex("PEARSE") == "P620");
assert(soundex("PIERCE") == "P620");
assert(soundex("Price") == "P620");
assert(soundex("CATHY") == "C300");
assert(soundex("KATHY") == "K300");
assert(soundex("Jones") == "J520");
assert(soundex("johnsons") == "J525");
assert(soundex("Hardin") == "H635");
assert(soundex("Martinez") == "M635");
import std.utf : byChar, byDchar, byWchar;
assert(soundexer("Martinez".byChar ) == "M635");
assert(soundexer("Martinez".byWchar) == "M635");
assert(soundexer("Martinez".byDchar) == "M635");
});
}
@safe pure unittest
{
assert(testAliasedString!soundexer("Martinez"));
}
/***************************************************
* Construct an associative array consisting of all
* abbreviations that uniquely map to the strings in values.
*
* This is useful in cases where the user is expected to type
* in one of a known set of strings, and the program will helpfully
* auto-complete the string once sufficient characters have been
* entered that uniquely identify it.
*/
string[string] abbrev(string[] values) @safe pure
{
import std.algorithm.sorting : sort;
string[string] result;
// Make a copy when sorting so we follow COW principles.
values = values.dup;
sort(values);
size_t values_length = values.length;
size_t lasti = values_length;
size_t nexti;
string nv;
string lv;
for (size_t i = 0; i < values_length; i = nexti)
{
string value = values[i];
// Skip dups
for (nexti = i + 1; nexti < values_length; nexti++)
{
nv = values[nexti];
if (value != values[nexti])
break;
}
import std.utf : stride;
for (size_t j = 0; j < value.length; j += stride(value, j))
{
string v = value[0 .. j];
if ((nexti == values_length || j > nv.length || v != nv[0 .. j]) &&
(lasti == values_length || j > lv.length || v != lv[0 .. j]))
{
result[v] = value;
}
}
result[value] = value;
lasti = i;
lv = value;
}
return result;
}
///
@safe unittest
{
import std.string;
static string[] list = [ "food", "foxy" ];
auto abbrevs = abbrev(list);
assert(abbrevs == ["fox": "foxy", "food": "food",
"foxy": "foxy", "foo": "food"]);
}
@system pure unittest
{
import std.algorithm.sorting : sort;
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
string[] values;
values ~= "hello";
values ~= "hello";
values ~= "he";
string[string] r;
r = abbrev(values);
auto keys = r.keys.dup;
sort(keys);
assert(keys.length == 4);
assert(keys[0] == "he");
assert(keys[1] == "hel");
assert(keys[2] == "hell");
assert(keys[3] == "hello");
assert(r[keys[0]] == "he");
assert(r[keys[1]] == "hello");
assert(r[keys[2]] == "hello");
assert(r[keys[3]] == "hello");
});
}
/******************************************
* Compute _column number at the end of the printed form of the string,
* assuming the string starts in the leftmost _column, which is numbered
* starting from 0.
*
* Tab characters are expanded into enough spaces to bring the _column number
* to the next multiple of tabsize.
* If there are multiple lines in the string, the _column number of the last
* line is returned.
*
* Params:
* str = string or InputRange to be analyzed
* tabsize = number of columns a tab character represents
*
* Returns:
* column number
*/
size_t column(Range)(Range str, in size_t tabsize = 8)
if ((isInputRange!Range && isSomeChar!(Unqual!(ElementEncodingType!Range)) ||
isNarrowString!Range) &&
!isConvertibleToString!Range)
{
static if (is(immutable ElementEncodingType!Range == immutable char))
{
// decoding needed for chars
import std.utf : byDchar;
return str.byDchar.column(tabsize);
}
else
{
// decoding not needed for wchars and dchars
import std.uni : lineSep, paraSep, nelSep;
size_t column;
foreach (const c; str)
{
switch (c)
{
case '\t':
column = (column + tabsize) / tabsize * tabsize;
break;
case '\r':
case '\n':
case paraSep:
case lineSep:
case nelSep:
column = 0;
break;
default:
column++;
break;
}
}
return column;
}
}
///
@safe pure unittest
{
import std.utf : byChar, byWchar, byDchar;
assert(column("1234 ") == 5);
assert(column("1234 "w) == 5);
assert(column("1234 "d) == 5);
assert(column("1234 ".byChar()) == 5);
assert(column("1234 "w.byWchar()) == 5);
assert(column("1234 "d.byDchar()) == 5);
// Tab stops are set at 8 spaces by default; tab characters insert enough
// spaces to bring the column position to the next multiple of 8.
assert(column("\t") == 8);
assert(column("1\t") == 8);
assert(column("\t1") == 9);
assert(column("123\t") == 8);
// Other tab widths are possible by specifying it explicitly:
assert(column("\t", 4) == 4);
assert(column("1\t", 4) == 4);
assert(column("\t1", 4) == 5);
assert(column("123\t", 4) == 4);
// New lines reset the column number.
assert(column("abc\n") == 0);
assert(column("abc\n1") == 1);
assert(column("abcdefg\r1234") == 4);
assert(column("abc\u20281") == 1);
assert(column("abc\u20291") == 1);
assert(column("abc\u00851") == 1);
assert(column("abc\u00861") == 5);
}
size_t column(Range)(auto ref Range str, in size_t tabsize = 8)
if (isConvertibleToString!Range)
{
return column!(StringTypeOf!Range)(str, tabsize);
}
@safe pure unittest
{
assert(testAliasedString!column("abc\u00861"));
}
@safe @nogc unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
assert(column(string.init) == 0);
assert(column("") == 0);
assert(column("\t") == 8);
assert(column("abc\t") == 8);
assert(column("12345678\t") == 16);
});
}
/******************************************
* Wrap text into a paragraph.
*
* The input text string s is formed into a paragraph
* by breaking it up into a sequence of lines, delineated
* by \n, such that the number of columns is not exceeded
* on each line.
* The last line is terminated with a \n.
* Params:
* s = text string to be wrapped
* columns = maximum number of _columns in the paragraph
* firstindent = string used to _indent first line of the paragraph
* indent = string to use to _indent following lines of the paragraph
* tabsize = column spacing of tabs in firstindent[] and indent[]
* Returns:
* resulting paragraph as an allocated string
*/
S wrap(S)(S s, in size_t columns = 80, S firstindent = null,
S indent = null, in size_t tabsize = 8)
if (isSomeString!S)
{
import std.uni : isWhite;
typeof(s.dup) result;
bool inword;
bool first = true;
size_t wordstart;
const indentcol = column(indent, tabsize);
result.length = firstindent.length + s.length;
result.length = firstindent.length;
result[] = firstindent[];
auto col = column(firstindent, tabsize);
foreach (size_t i, dchar c; s)
{
if (isWhite(c))
{
if (inword)
{
if (first)
{
}
else if (col + 1 + (i - wordstart) > columns)
{
result ~= '\n';
result ~= indent;
col = indentcol;
}
else
{
result ~= ' ';
col += 1;
}
result ~= s[wordstart .. i];
col += i - wordstart;
inword = false;
first = false;
}
}
else
{
if (!inword)
{
wordstart = i;
inword = true;
}
}
}
if (inword)
{
if (col + 1 + (s.length - wordstart) >= columns)
{
result ~= '\n';
result ~= indent;
}
else if (result.length != firstindent.length)
result ~= ' ';
result ~= s[wordstart .. s.length];
}
result ~= '\n';
return result;
}
///
@safe pure unittest
{
assert(wrap("a short string", 7) == "a short\nstring\n");
// wrap will not break inside of a word, but at the next space
assert(wrap("a short string", 4) == "a\nshort\nstring\n");
assert(wrap("a short string", 7, "\t") == "\ta\nshort\nstring\n");
assert(wrap("a short string", 7, "\t", " ") == "\ta\n short\n string\n");
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
assertCTFEable!(
{
assert(wrap(string.init) == "\n");
assert(wrap(" a b df ") == "a b df\n");
assert(wrap(" a b df ", 3) == "a b\ndf\n");
assert(wrap(" a bc df ", 3) == "a\nbc\ndf\n");
assert(wrap(" abcd df ", 3) == "abcd\ndf\n");
assert(wrap("x") == "x\n");
assert(wrap("u u") == "u u\n");
assert(wrap("abcd", 3) == "\nabcd\n");
assert(wrap("a de", 10, "\t", " ", 8) == "\ta\n de\n");
});
}
/******************************************
* Removes one level of indentation from a multi-line string.
*
* This uniformly outdents the text as much as possible.
* Whitespace-only lines are always converted to blank lines.
*
* Does not allocate memory if it does not throw.
*
* Params:
* str = multi-line string
*
* Returns:
* outdented string
*
* Throws:
* StringException if indentation is done with different sequences
* of whitespace characters.
*/
S outdent(S)(S str) @safe pure
if (isSomeString!S)
{
return str.splitLines(Yes.keepTerminator).outdent().join();
}
///
@safe pure unittest
{
enum pretty = q{
import std.stdio;
void main() {
writeln("Hello");
}
}.outdent();
enum ugly = q{
import std.stdio;
void main() {
writeln("Hello");
}
};
assert(pretty == ugly);
}
/******************************************
* Removes one level of indentation from an array of single-line strings.
*
* This uniformly outdents the text as much as possible.
* Whitespace-only lines are always converted to blank lines.
*
* Params:
* lines = array of single-line strings
*
* Returns:
* lines[] is rewritten in place with outdented lines
*
* Throws:
* StringException if indentation is done with different sequences
* of whitespace characters.
*/
S[] outdent(S)(S[] lines) @safe pure
if (isSomeString!S)
{
import std.algorithm.searching : startsWith;
if (lines.empty)
{
return null;
}
static S leadingWhiteOf(S str)
{
return str[ 0 .. $ - stripLeft(str).length ];
}
S shortestIndent;
foreach (ref line; lines)
{
const stripped = line.stripLeft();
if (stripped.empty)
{
line = line[line.chomp().length .. $];
}
else
{
const indent = leadingWhiteOf(line);
// Comparing number of code units instead of code points is OK here
// because this function throws upon inconsistent indentation.
if (shortestIndent is null || indent.length < shortestIndent.length)
{
if (indent.empty)
return lines;
shortestIndent = indent;
}
}
}
foreach (ref line; lines)
{
const stripped = line.stripLeft();
if (stripped.empty)
{
// Do nothing
}
else if (line.startsWith(shortestIndent))
{
line = line[shortestIndent.length .. $];
}
else
{
throw new StringException("outdent: Inconsistent indentation");
}
}
return lines;
}
///
@safe pure unittest
{
auto str1 = [
" void main()\n",
" {\n",
" test();\n",
" }\n"
];
auto str1Expected = [
"void main()\n",
"{\n",
" test();\n",
"}\n"
];
assert(str1.outdent == str1Expected);
auto str2 = [
"void main()\n",
" {\n",
" test();\n",
" }\n"
];
assert(str2.outdent == str2);
}
@safe pure unittest
{
import std.conv : to;
import std.exception : assertCTFEable;
template outdent_testStr(S)
{
enum S outdent_testStr =
"
\t\tX
\t\U00010143X
\t\t
\t\t\tX
\t ";
}
template outdent_expected(S)
{
enum S outdent_expected =
"
\tX
\U00010143X
\t\tX
";
}
assertCTFEable!(
{
static foreach (S; AliasSeq!(string, wstring, dstring))
{{
enum S blank = "";
assert(blank.outdent() == blank);
static assert(blank.outdent() == blank);
enum S testStr1 = " \n \t\n ";
enum S expected1 = "\n\n";
assert(testStr1.outdent() == expected1);
static assert(testStr1.outdent() == expected1);
assert(testStr1[0..$-1].outdent() == expected1);
static assert(testStr1[0..$-1].outdent() == expected1);
enum S testStr2 = "a\n \t\nb";
assert(testStr2.outdent() == testStr2);
static assert(testStr2.outdent() == testStr2);
enum S testStr3 =
"
\t\tX
\t\U00010143X
\t\t
\t\t\tX
\t ";
enum S expected3 =
"
\tX
\U00010143X
\t\tX
";
assert(testStr3.outdent() == expected3);
static assert(testStr3.outdent() == expected3);
enum testStr4 = " X\r X\n X\r\n X\u2028 X\u2029 X";
enum expected4 = "X\rX\nX\r\nX\u2028X\u2029X";
assert(testStr4.outdent() == expected4);
static assert(testStr4.outdent() == expected4);
enum testStr5 = testStr4[0..$-1];
enum expected5 = expected4[0..$-1];
assert(testStr5.outdent() == expected5);
static assert(testStr5.outdent() == expected5);
enum testStr6 = " \r \n \r\n \u2028 \u2029";
enum expected6 = "\r\n\r\n\u2028\u2029";
assert(testStr6.outdent() == expected6);
static assert(testStr6.outdent() == expected6);
enum testStr7 = " a \n b ";
enum expected7 = "a \nb ";
assert(testStr7.outdent() == expected7);
static assert(testStr7.outdent() == expected7);
}}
});
}
@safe pure unittest
{
import std.exception : assertThrown;
auto bad = " a\n\tb\n c";
assertThrown!StringException(bad.outdent);
}
/** Assume the given array of integers `arr` is a well-formed UTF string and
return it typed as a UTF string.
`ubyte` becomes `char`, `ushort` becomes `wchar` and `uint`
becomes `dchar`. Type qualifiers are preserved.
When compiled with debug mode, this function performs an extra check to make
sure the return value is a valid Unicode string.
Params:
arr = array of bytes, ubytes, shorts, ushorts, ints, or uints
Returns:
arr retyped as an array of chars, wchars, or dchars
Throws:
In debug mode `AssertError`, when the result is not a well-formed UTF string.
See_Also: $(LREF representation)
*/
auto assumeUTF(T)(T[] arr)
if (staticIndexOf!(immutable T, immutable ubyte, immutable ushort, immutable uint) != -1)
{
import std.traits : ModifyTypePreservingTQ;
import std.exception : collectException;
import std.utf : validate;
alias ToUTFType(U) = AliasSeq!(char, wchar, dchar)[U.sizeof / 2];
auto asUTF = cast(ModifyTypePreservingTQ!(ToUTFType, T)[]) arr;
debug
{
scope ex = collectException(validate(asUTF));
assert(!ex, ex.msg);
}
return asUTF;
}
///
@safe pure unittest
{
string a = "Hölo World";
immutable(ubyte)[] b = a.representation;
string c = b.assumeUTF;
assert(c == "Hölo World");
}
pure @system unittest
{
import std.algorithm.comparison : equal;
static foreach (T; AliasSeq!(char[], wchar[], dchar[]))
{{
immutable T jti = "Hello World";
T jt = jti.dup;
static if (is(T == char[]))
{
auto gt = cast(ubyte[]) jt;
auto gtc = cast(const(ubyte)[])jt;
auto gti = cast(immutable(ubyte)[])jt;
}
else static if (is(T == wchar[]))
{
auto gt = cast(ushort[]) jt;
auto gtc = cast(const(ushort)[])jt;
auto gti = cast(immutable(ushort)[])jt;
}
else static if (is(T == dchar[]))
{
auto gt = cast(uint[]) jt;
auto gtc = cast(const(uint)[])jt;
auto gti = cast(immutable(uint)[])jt;
}
auto ht = assumeUTF(gt);
auto htc = assumeUTF(gtc);
auto hti = assumeUTF(gti);
assert(equal(jt, ht));
assert(equal(jt, htc));
assert(equal(jt, hti));
}}
}
pure @system unittest
{
import core.exception : AssertError;
import std.exception : assertThrown, assertNotThrown;
immutable(ubyte)[] a = [ 0xC0 ];
debug
assertThrown!AssertError( () nothrow @nogc @safe {cast(void) a.assumeUTF;} () );
else
assertNotThrown!AssertError( () nothrow @nogc @safe {cast(void) a.assumeUTF;} () );
}
|
D
|
prototype MST_DEFAULT_DRAGON_UNDEAD(C_NPC)
{
name[0] = "Дракон-нежить";
guild = GIL_DRAGON;
aivar[AIV_MM_REAL_ID] = ID_DRAGON_UNDEAD;
level = 1000;
bodystateinterruptableoverride = TRUE;
// attribute[ATR_STRENGTH] = 170;
attribute[ATR_STRENGTH] = 16;
attribute[ATR_DEXTERITY] = 170;
attribute[ATR_HITPOINTS_MAX] = 1000;
attribute[ATR_HITPOINTS] = 1000;
attribute[ATR_MANA_MAX] = 1000;
attribute[ATR_MANA] = 1000;
protection[PROT_BLUNT] = 150;
protection[PROT_EDGE] = 150;
protection[PROT_POINT] = 150;
protection[PROT_FIRE] = 150;
protection[PROT_FLY] = IMMUNE;
protection[PROT_MAGIC] = 150;
damagetype = DAM_FLY;
fight_tactic = FAI_DRAGON;
senses = SENSE_HEAR | SENSE_SEE | SENSE_SMELL;
senses_range = PERC_DIST_MONSTER_ACTIVE_MAX;
aivar[AIV_MM_FOLLOWTIME] = 1000;
aivar[AIV_MM_FOLLOWINWATER] = FALSE;
aivar[AIV_MAXDISTTOWP] = 1000;
aivar[AIV_ORIGINALFIGHTTACTIC] = FAI_DRAGON;
start_aistate = zs_mm_rtn_dragonrest;
aivar[AIV_MM_RESTSTART] = ONLYROUTINE;
};
func void b_setvisuals_dragon_undead()
{
Mdl_SetVisual(self,"Dragon.mds");
Mdl_SetVisualBody(self,"Dragon_Undead_Body",DEFAULT,DEFAULT,"",DEFAULT,DEFAULT,-1);
};
instance DRAGON_UNDEAD(MST_DEFAULT_DRAGON_UNDEAD)
{
b_setvisuals_dragon_undead();
flags = NPC_FLAG_IMMORTAL;
Npc_SetToFistMode(self);
};
|
D
|
.hd take "take characters from a string (APL style)" 03/20/80
take <length> <string>
.ds
'Take' can be used to extract substrings from the beginning or
end of a string. It is essentially identical in function to
APL's dyadic take operator as applied to character vectors.
.sp
The absolute value of the first argument specifies the number
of characters to be taken (with blank padding, if the source string
is not long enough.) If it is positive, characters are taken from
the beginning of <string>; otherwise, characters are taken from the
end of <string>.
.sp
Other useful string-handling commands are 'drop', 'index', and
'substr'.
.es
take 6 [filename]
take -2 [source_file]
take 2 @[date]
take 3 @[day]
.sa
drop (1), index (1), substr (1), stake (2), sdrop (2)
|
D
|
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Port to the D programming language:
* Frank Benoit <benoit@tionex.de>
*******************************************************************************/
module org.eclipse.swt.dnd.TextTransfer;
import org.eclipse.swt.internal.ole.win32.COM;
import org.eclipse.swt.internal.ole.win32.OBJIDL;
import org.eclipse.swt.internal.win32.OS;
import org.eclipse.swt.dnd.ByteArrayTransfer;
import org.eclipse.swt.dnd.TransferData;
import org.eclipse.swt.dnd.DND;
import java.lang.all;
/**
* The class <code>TextTransfer</code> provides a platform specific mechanism
* for converting plain text represented as a java <code>String</code>
* to a platform specific representation of the data and vice versa.
*
* <p>An example of a java <code>String</code> containing plain text is shown
* below:</p>
*
* <code><pre>
* String textData = "Hello World";
* </code></pre>
*
* @see Transfer
*/
public class TextTransfer : ByteArrayTransfer {
private static TextTransfer _instance;
private static const String CF_UNICODETEXT = "CF_UNICODETEXT"; //$NON-NLS-1$
private static const String CF_TEXT = "CF_TEXT"; //$NON-NLS-1$
private static const int CF_UNICODETEXTID = COM.CF_UNICODETEXT;
private static const int CF_TEXTID = COM.CF_TEXT;
private this() {}
/**
* Returns the singleton instance of the TextTransfer class.
*
* @return the singleton instance of the TextTransfer class
*/
public static TextTransfer getInstance () {
if( _instance is null ){
synchronized {
if( _instance is null ){
_instance = new TextTransfer();
}
}
}
return _instance;
}
/**
* This implementation of <code>javaToNative</code> converts plain text
* represented by a java <code>String</code> to a platform specific representation.
*
* @param object a java <code>String</code> containing text
* @param transferData an empty <code>TransferData</code> object that will
* be filled in on return with the platform specific format of the data
*
* @see Transfer#nativeToJava
*/
override
public void javaToNative (Object object, TransferData transferData){
if (!checkText(object) || !isSupportedType(transferData)) {
DND.error(DND.ERROR_INVALID_DATA);
}
transferData.result = COM.E_FAIL;
String string = stringcast(object);
switch (transferData.type) {
case COM.CF_UNICODETEXT: {
String16 chars = StrToWCHARs(0,string, true);
int charCount = chars.length;
int byteCount = chars.length * 2;
auto newPtr = OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, byteCount);
OS.MoveMemory(newPtr, chars.ptr, byteCount);
transferData.stgmedium = new STGMEDIUM();
transferData.stgmedium.tymed = COM.TYMED_HGLOBAL;
transferData.stgmedium.unionField = newPtr;
transferData.stgmedium.pUnkForRelease = null;
transferData.result = COM.S_OK;
break;
}
case COM.CF_TEXT: {
String16 chars = StrToWCHARs(0,string, true);
int count = chars.length;
int codePage = OS.GetACP();
int cchMultiByte = OS.WideCharToMultiByte(codePage, 0, chars.ptr, -1, null, 0, null, null);
if (cchMultiByte is 0) {
transferData.stgmedium = new STGMEDIUM();
transferData.result = COM.DV_E_STGMEDIUM;
return;
}
auto lpMultiByteStr = cast(CHAR*)OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, cchMultiByte);
OS.WideCharToMultiByte(codePage, 0, chars.ptr, -1, lpMultiByteStr, cchMultiByte, null, null);
transferData.stgmedium = new STGMEDIUM();
transferData.stgmedium.tymed = COM.TYMED_HGLOBAL;
transferData.stgmedium.unionField = lpMultiByteStr;
transferData.stgmedium.pUnkForRelease = null;
transferData.result = COM.S_OK;
break;
}
default:
}
return;
}
/**
* This implementation of <code>nativeToJava</code> converts a platform specific
* representation of plain text to a java <code>String</code>.
*
* @param transferData the platform specific representation of the data to be converted
* @return a java <code>String</code> containing text if the conversion was successful; otherwise null
*
* @see Transfer#javaToNative
*/
override
public Object nativeToJava(TransferData transferData){
if (!isSupportedType(transferData) || transferData.pIDataObject is null) return null;
IDataObject data = transferData.pIDataObject;
data.AddRef();
FORMATETC* formatetc = transferData.formatetc;
STGMEDIUM* stgmedium = new STGMEDIUM();
stgmedium.tymed = COM.TYMED_HGLOBAL;
transferData.result = getData(data, formatetc, stgmedium);
data.Release();
if (transferData.result !is COM.S_OK) return null;
auto hMem = stgmedium.unionField;
try {
switch (transferData.type) {
case CF_UNICODETEXTID: {
/* Ensure byteCount is a multiple of 2 bytes */
int size = OS.GlobalSize(hMem) / 2 * 2;
if (size is 0) return null;
wchar[] chars = new wchar[size/2];
auto ptr = OS.GlobalLock(hMem);
if (ptr is null) return null;
try {
OS.MoveMemory(chars.ptr, ptr, size);
int length_ = chars.length;
for (int i=0; i<chars.length; i++) {
if (chars [i] is '\0') {
length_ = i;
break;
}
}
return new ArrayWrapperString (WCHARsToStr(chars[ 0 .. length_]));
} finally {
OS.GlobalUnlock(hMem);
}
}
case CF_TEXTID: {
auto lpMultiByteStr = cast(CHAR*)OS.GlobalLock(hMem);
if (lpMultiByteStr is null) return null;
try {
int codePage = OS.GetACP();
int cchWideChar = OS.MultiByteToWideChar (codePage, OS.MB_PRECOMPOSED, lpMultiByteStr, -1, null, 0);
if (cchWideChar is 0) return null;
wchar[] lpWideCharStr = new wchar [cchWideChar - 1];
OS.MultiByteToWideChar (codePage, OS.MB_PRECOMPOSED, lpMultiByteStr, -1, lpWideCharStr.ptr, lpWideCharStr.length);
return new ArrayWrapperString( WCHARzToStr(lpWideCharStr.ptr));
} finally {
OS.GlobalUnlock(hMem);
}
}
default:
}
} finally {
OS.GlobalFree(hMem);
}
return null;
}
override
protected int[] getTypeIds(){
return [CF_UNICODETEXTID, CF_TEXTID];
}
override
protected String[] getTypeNames(){
return [CF_UNICODETEXT, CF_TEXT];
}
bool checkText(Object object) {
if( auto s = cast(ArrayWrapperString)object ){
return s.array.length > 0;
}
return false;
}
override
protected bool validate(Object object) {
return checkText(object);
}
}
|
D
|
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="VAR_7_BeT-6711815289.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="VAR_7_BeT-6711815289.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
|
D
|
; Copyright (C) 2008 The Android Open Source Project
;
; 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.
.source T_iput_byte_14.java
.class public dot.junit.opcodes.iput_byte.d.T_iput_byte_14
.super dot/junit/opcodes/iput_byte/d/T_iput_byte_1
.method public <init>()V
.limit regs 1
invoke-direct {v0}, dot/junit/opcodes/iput_byte/d/T_iput_byte_1/<init>()V
return-void
.end method
.method public getProtectedField()B
.limit regs 2
iget-byte v0, v1, dot.junit.opcodes.iput_byte.d.T_iput_byte_1.st_p1 B
return v0
.end method
.method public run()V
.limit regs 3
const v1, 77
iput-byte v1, v2, dot.junit.opcodes.iput_byte.d.T_iput_byte_1.st_p1 B
return-void
.end method
|
D
|
// PERMUTE_ARGS:
module test42;
import core.stdc.stdio;
/***************************************************/
void test1()
{
ubyte[] data2 = [
3,3,3,3,
3,3,3,3,
3,3,3,3,
3,3,3,
];
foreach (i; data2)
{ //printf("i = %d\n", i);
assert(i == 3);
}
ubyte[] data = [
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7];
foreach (i; data)
{ //printf("i = %d\n", i);
assert(i == 7);
}
}
/***************************************************/
int main()
{
test1();
printf("Success\n");
return 0;
}
|
D
|
# FIXED
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_rtc_wrapper.c
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_mcu.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdint.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/include/hal_defs.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_types.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/../_common/cc26xx/_hal_types.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_nvic.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_ints.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_types.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdbool.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_chip_def.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_gpio.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_memmap.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/systick.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/debug.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/interrupt.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/cpu.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/rom.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/uart.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_uart.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/gpio.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/flash.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_flash.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_sysctl.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_fcfg1.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/ioc.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_ioc.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/icall/include/ICall.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdlib.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/linkage.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_rtc_wrapper.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_rtc.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/aon_rtc.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/aon_event.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_device.h
HAL/Target/CC2650/Drivers/hal_rtc_wrapper.obj: C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_event.h
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_rtc_wrapper.c:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_mcu.h:
C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdint.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/include/hal_defs.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_types.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/../_common/cc26xx/_hal_types.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_nvic.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_ints.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_types.h:
C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdbool.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_chip_def.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_gpio.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_memmap.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/systick.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/debug.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/interrupt.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/cpu.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/rom.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/uart.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_uart.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/gpio.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/flash.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_flash.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_sysctl.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_fcfg1.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/ioc.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_ioc.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/icall/include/ICall.h:
C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/stdlib.h:
C:/ti/ccsv6/tools/compiler/arm_15.12.3.LTS/include/linkage.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/simplelink/ble_cc26xx_2_01_00_44423_cloud/Components/hal/target/CC2650TIRTOS/hal_rtc_wrapper.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_rtc.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/aon_rtc.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/driverlib/aon_event.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_device.h:
C:/Users/Sadra/Desktop/Texas/dev.ti/ble_cc26xx_2_01_00_44423_cloud__win/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600/inc/hw_aon_event.h:
|
D
|
module net.pms.util.PmsProperties;
import java.lang.exceptions;
import java.io.InputStream;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.util.Properties;
/**
* Convenience wrapper around the Java Properties class.
*
* @author Tim Cox (mail@tcox.org)
*/
public class PmsProperties {
private immutable Properties properties = new Properties();
private static const String ENCODING = "UTF-8";
public void loadFromByteArray(byte[] data) {
try {
String utf = new String(data, ENCODING);
StringReader reader = new StringReader(utf);
properties.clear();
properties.load(reader);
reader.close();
} catch (UnsupportedEncodingException e) {
throw new IOException("Could not decode " ~ ENCODING);
}
}
/**
* Initialize from a properties file.
* @param filename The properties file.
* @throws IOException
*/
public void loadFromResourceFile(String filename) {
InputStream inputStream = getClass().getResourceAsStream(filename);
try {
properties.load(inputStream);
} finally {
inputStream.close();
}
}
public void clear() {
properties.clear();
}
public String get(String key) {
Object obj = properties.get(key);
if (obj !is null) {
return trimAndRemoveQuotes(obj.toString());
} else {
return "";
}
}
private static String trimAndRemoveQuotes(String _in) {
_in = _in.trim();
if (_in.startsWith("\"")) {
_in = _in.substring(1);
}
if (_in.endsWith("\"")) {
_in = _in.substring(0, _in.length() - 1);
}
return _in;
}
public bool containsKey(String key) {
return properties.containsKey(key);
}
}
|
D
|
/*
* This file is part of gtkD.
*
* gtkD 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, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gtk.c.types;
public import cairo.c.types;
public import glib.c.types;
public import gobject.c.types;
public import gio.c.types;
public import pango.c.types;
public import atk.c.types;
public import gdkpixbuf.c.types;
public import gdk.c.types;
extern(C) Object _d_newclass(ClassInfo ci);
alias GtkAllocation* Allocation;
/**
* A #GtkAllocation-struct of a widget represents region
* which has been allocated to the widget by its parent. It is a subregion
* of its parents allocation. See
* [GtkWidget’s geometry management section][geometry-management] for
* more information.
*/
public alias GdkRectangle GtkAllocation;
public alias char* GtkStock;
/**
* Accelerator flags used with gtk_accel_group_connect().
*/
public enum GtkAccelFlags
{
/**
* Accelerator is visible
*/
VISIBLE = 1,
/**
* Accelerator not removable
*/
LOCKED = 2,
/**
* Mask
*/
MASK = 7,
}
alias GtkAccelFlags AccelFlags;
/**
* Controls how a widget deals with extra space in a single (x or y)
* dimension.
*
* Alignment only matters if the widget receives a “too large” allocation,
* for example if you packed the widget with the #GtkWidget:expand
* flag inside a #GtkBox, then the widget might get extra space. If
* you have for example a 16x16 icon inside a 32x32 space, the icon
* could be scaled and stretched, it could be centered, or it could be
* positioned to one side of the space.
*
* Note that in horizontal context @GTK_ALIGN_START and @GTK_ALIGN_END
* are interpreted relative to text direction.
*
* GTK_ALIGN_BASELINE support for it is optional for containers and widgets, and
* it is only supported for vertical alignment. When its not supported by
* a child or a container it is treated as @GTK_ALIGN_FILL.
*/
public enum GtkAlign
{
/**
* stretch to fill all space if possible, center if
* no meaningful way to stretch
*/
FILL = 0,
/**
* snap to left or top side, leaving space on right
* or bottom
*/
START = 1,
/**
* snap to right or bottom side, leaving space on left
* or top
*/
END = 2,
/**
* center natural width of widget inside the
* allocation
*/
CENTER = 3,
/**
* align the widget according to the baseline. Since 3.10.
*/
BASELINE = 4,
}
alias GtkAlign Align;
/**
* Types of user actions that may be blocked by gtk_application_inhibit().
*
* Since: 3.4
*/
public enum GtkApplicationInhibitFlags
{
/**
* Inhibit ending the user session
* by logging out or by shutting down the computer
*/
LOGOUT = 1,
/**
* Inhibit user switching
*/
SWITCH = 2,
/**
* Inhibit suspending the
* session or computer
*/
SUSPEND = 4,
/**
* Inhibit the session being
* marked as idle (and possibly locked)
*/
IDLE = 8,
}
alias GtkApplicationInhibitFlags ApplicationInhibitFlags;
/**
* Used to specify the placement of scroll arrows in scrolling menus.
*/
public enum GtkArrowPlacement
{
/**
* Place one arrow on each end of the menu.
*/
BOTH = 0,
/**
* Place both arrows at the top of the menu.
*/
START = 1,
/**
* Place both arrows at the bottom of the menu.
*/
END = 2,
}
alias GtkArrowPlacement ArrowPlacement;
/**
* Used to indicate the direction in which an arrow should point.
*/
public enum GtkArrowType
{
/**
* Represents an upward pointing arrow.
*/
UP = 0,
/**
* Represents a downward pointing arrow.
*/
DOWN = 1,
/**
* Represents a left pointing arrow.
*/
LEFT = 2,
/**
* Represents a right pointing arrow.
*/
RIGHT = 3,
/**
* No arrow. Since 2.10.
*/
NONE = 4,
}
alias GtkArrowType ArrowType;
/**
* An enum for determining the page role inside the #GtkAssistant. It's
* used to handle buttons sensitivity and visibility.
*
* Note that an assistant needs to end its page flow with a page of type
* %GTK_ASSISTANT_PAGE_CONFIRM, %GTK_ASSISTANT_PAGE_SUMMARY or
* %GTK_ASSISTANT_PAGE_PROGRESS to be correct.
*
* The Cancel button will only be shown if the page isn’t “committed”.
* See gtk_assistant_commit() for details.
*/
public enum GtkAssistantPageType
{
/**
* The page has regular contents. Both the
* Back and forward buttons will be shown.
*/
CONTENT = 0,
/**
* The page contains an introduction to the
* assistant task. Only the Forward button will be shown if there is a
* next page.
*/
INTRO = 1,
/**
* The page lets the user confirm or deny the
* changes. The Back and Apply buttons will be shown.
*/
CONFIRM = 2,
/**
* The page informs the user of the changes
* done. Only the Close button will be shown.
*/
SUMMARY = 3,
/**
* Used for tasks that take a long time to
* complete, blocks the assistant until the page is marked as complete.
* Only the back button will be shown.
*/
PROGRESS = 4,
/**
* Used for when other page types are not
* appropriate. No buttons will be shown, and the application must
* add its own buttons through gtk_assistant_add_action_widget().
*/
CUSTOM = 5,
}
alias GtkAssistantPageType AssistantPageType;
/**
* Denotes the expansion properties that a widget will have when it (or its
* parent) is resized.
*/
public enum GtkAttachOptions
{
/**
* the widget should expand to take up any extra space in its
* container that has been allocated.
*/
EXPAND = 1,
/**
* the widget should shrink as and when possible.
*/
SHRINK = 2,
/**
* the widget should fill the space allocated to it.
*/
FILL = 4,
}
alias GtkAttachOptions AttachOptions;
/**
* Whenever a container has some form of natural row it may align
* children in that row along a common typographical baseline. If
* the amount of verical space in the row is taller than the total
* requested height of the baseline-aligned children then it can use a
* #GtkBaselinePosition to select where to put the baseline inside the
* extra availible space.
*
* Since: 3.10
*/
public enum GtkBaselinePosition
{
/**
* Align the baseline at the top
*/
TOP = 0,
/**
* Center the baseline
*/
CENTER = 1,
/**
* Align the baseline at the bottom
*/
BOTTOM = 2,
}
alias GtkBaselinePosition BaselinePosition;
/**
* Describes how the border of a UI element should be rendered.
*/
public enum GtkBorderStyle
{
/**
* No visible border
*/
NONE = 0,
/**
* A single line segment
*/
SOLID = 1,
/**
* Looks as if the content is sunken into the canvas
*/
INSET = 2,
/**
* Looks as if the content is coming out of the canvas
*/
OUTSET = 3,
/**
* Same as @GTK_BORDER_STYLE_NONE
*/
HIDDEN = 4,
/**
* A series of round dots
*/
DOTTED = 5,
/**
* A series of square-ended dashes
*/
DASHED = 6,
/**
* Two parallel lines with some space between them
*/
DOUBLE = 7,
/**
* Looks as if it were carved in the canvas
*/
GROOVE = 8,
/**
* Looks as if it were coming out of the canvas
*/
RIDGE = 9,
}
alias GtkBorderStyle BorderStyle;
/**
* Error codes that identify various errors that can occur while using
* #GtkBuilder.
*/
public enum GtkBuilderError
{
/**
* A type-func attribute didn’t name
* a function that returns a #GType.
*/
INVALID_TYPE_FUNCTION = 0,
/**
* The input contained a tag that #GtkBuilder
* can’t handle.
*/
UNHANDLED_TAG = 1,
/**
* An attribute that is required by
* #GtkBuilder was missing.
*/
MISSING_ATTRIBUTE = 2,
/**
* #GtkBuilder found an attribute that
* it doesn’t understand.
*/
INVALID_ATTRIBUTE = 3,
/**
* #GtkBuilder found a tag that
* it doesn’t understand.
*/
INVALID_TAG = 4,
/**
* A required property value was
* missing.
*/
MISSING_PROPERTY_VALUE = 5,
/**
* #GtkBuilder couldn’t parse
* some attribute value.
*/
INVALID_VALUE = 6,
/**
* The input file requires a newer version
* of GTK+.
*/
VERSION_MISMATCH = 7,
/**
* An object id occurred twice.
*/
DUPLICATE_ID = 8,
/**
* A specified object type is of the same type or
* derived from the type of the composite class being extended with builder XML.
*/
OBJECT_TYPE_REFUSED = 9,
/**
* The wrong type was specified in a composite class’s template XML
*/
TEMPLATE_MISMATCH = 10,
/**
* The specified property is unknown for the object class.
*/
INVALID_PROPERTY = 11,
/**
* The specified signal is unknown for the object class.
*/
INVALID_SIGNAL = 12,
/**
* An object id is unknown
*/
INVALID_ID = 13,
}
alias GtkBuilderError BuilderError;
/**
* Used to dictate the style that a #GtkButtonBox uses to layout the buttons it
* contains.
*/
public enum GtkButtonBoxStyle
{
/**
* Buttons are evenly spread across the box.
*/
SPREAD = 1,
/**
* Buttons are placed at the edges of the box.
*/
EDGE = 2,
/**
* Buttons are grouped towards the start of the box,
* (on the left for a HBox, or the top for a VBox).
*/
START = 3,
/**
* Buttons are grouped towards the end of the box,
* (on the right for a HBox, or the bottom for a VBox).
*/
END = 4,
/**
* Buttons are centered in the box. Since 2.12.
*/
CENTER = 5,
/**
* Buttons expand to fill the box. This entails giving
* buttons a "linked" appearance, making button sizes homogeneous, and
* setting spacing to 0 (same as calling gtk_box_set_homogeneous() and
* gtk_box_set_spacing() manually). Since 3.12.
*/
EXPAND = 6,
}
alias GtkButtonBoxStyle ButtonBoxStyle;
/**
* The role specifies the desired appearance of a #GtkModelButton.
*/
public enum GtkButtonRole
{
/**
* A plain button
*/
NORMAL = 0,
/**
* A check button
*/
CHECK = 1,
/**
* A radio button
*/
RADIO = 2,
}
alias GtkButtonRole ButtonRole;
/**
* Prebuilt sets of buttons for the dialog. If
* none of these choices are appropriate, simply use %GTK_BUTTONS_NONE
* then call gtk_dialog_add_buttons().
*
* > Please note that %GTK_BUTTONS_OK, %GTK_BUTTONS_YES_NO
* > and %GTK_BUTTONS_OK_CANCEL are discouraged by the
* > [GNOME Human Interface Guidelines](http://library.gnome.org/devel/hig-book/stable/).
*/
public enum GtkButtonsType
{
/**
* no buttons at all
*/
NONE = 0,
/**
* an OK button
*/
OK = 1,
/**
* a Close button
*/
CLOSE = 2,
/**
* a Cancel button
*/
CANCEL = 3,
/**
* Yes and No buttons
*/
YES_NO = 4,
/**
* OK and Cancel buttons
*/
OK_CANCEL = 5,
}
alias GtkButtonsType ButtonsType;
/**
* These options can be used to influence the display and behaviour of a #GtkCalendar.
*/
public enum GtkCalendarDisplayOptions
{
/**
* Specifies that the month and year should be displayed.
*/
SHOW_HEADING = 1,
/**
* Specifies that three letter day descriptions should be present.
*/
SHOW_DAY_NAMES = 2,
/**
* Prevents the user from switching months with the calendar.
*/
NO_MONTH_CHANGE = 4,
/**
* Displays each week numbers of the current year, down the
* left side of the calendar.
*/
SHOW_WEEK_NUMBERS = 8,
/**
* Just show an indicator, not the full details
* text when details are provided. See gtk_calendar_set_detail_func().
*/
SHOW_DETAILS = 32,
}
alias GtkCalendarDisplayOptions CalendarDisplayOptions;
/**
* Determines if the edited accelerators are GTK+ accelerators. If
* they are, consumed modifiers are suppressed, only accelerators
* accepted by GTK+ are allowed, and the accelerators are rendered
* in the same way as they are in menus.
*/
public enum GtkCellRendererAccelMode
{
/**
* GTK+ accelerators mode
*/
GTK = 0,
/**
* Other accelerator mode
*/
OTHER = 1,
}
alias GtkCellRendererAccelMode CellRendererAccelMode;
/**
* Identifies how the user can interact with a particular cell.
*/
public enum GtkCellRendererMode
{
/**
* The cell is just for display
* and cannot be interacted with. Note that this doesn’t mean that eg. the
* row being drawn can’t be selected -- just that a particular element of
* it cannot be individually modified.
*/
INERT = 0,
/**
* The cell can be clicked.
*/
ACTIVATABLE = 1,
/**
* The cell can be edited or otherwise modified.
*/
EDITABLE = 2,
}
alias GtkCellRendererMode CellRendererMode;
/**
* Tells how a cell is to be rendered.
*/
public enum GtkCellRendererState
{
/**
* The cell is currently selected, and
* probably has a selection colored background to render to.
*/
SELECTED = 1,
/**
* The mouse is hovering over the cell.
*/
PRELIT = 2,
/**
* The cell is drawn in an insensitive manner
*/
INSENSITIVE = 4,
/**
* The cell is in a sorted row
*/
SORTED = 8,
/**
* The cell is in the focus row.
*/
FOCUSED = 16,
/**
* The cell is in a row that can be expanded. Since 3.4
*/
EXPANDABLE = 32,
/**
* The cell is in a row that is expanded. Since 3.4
*/
EXPANDED = 64,
}
alias GtkCellRendererState CellRendererState;
/**
* Specifies which corner a child widget should be placed in when packed into
* a #GtkScrolledWindow. This is effectively the opposite of where the scroll
* bars are placed.
*/
public enum GtkCornerType
{
/**
* Place the scrollbars on the right and bottom of the
* widget (default behaviour).
*/
TOP_LEFT = 0,
/**
* Place the scrollbars on the top and right of the
* widget.
*/
BOTTOM_LEFT = 1,
/**
* Place the scrollbars on the left and bottom of the
* widget.
*/
TOP_RIGHT = 2,
/**
* Place the scrollbars on the top and left of the
* widget.
*/
BOTTOM_RIGHT = 3,
}
alias GtkCornerType CornerType;
/**
* Error codes for %GTK_CSS_PROVIDER_ERROR.
*/
public enum GtkCssProviderError
{
/**
* Failed.
*/
FAILED = 0,
/**
* Syntax error.
*/
SYNTAX = 1,
/**
* Import error.
*/
IMPORT = 2,
/**
* Name error.
*/
NAME = 3,
/**
* Deprecation error.
*/
DEPRECATED = 4,
/**
* Unknown value.
*/
UNKNOWN_VALUE = 5,
}
alias GtkCssProviderError CssProviderError;
/**
* The different types of sections indicate parts of a CSS document as
* parsed by GTK’s CSS parser. They are oriented towards the
* [CSS Grammar](http://www.w3.org/TR/CSS21/grammar.html),
* but may contain extensions.
*
* More types might be added in the future as the parser incorporates
* more features.
*
* Since: 3.2
*/
public enum GtkCssSectionType
{
/**
* The section describes a complete document.
* This section time is the only one where gtk_css_section_get_parent()
* might return %NULL.
*/
DOCUMENT = 0,
/**
* The section defines an import rule.
*/
IMPORT = 1,
/**
* The section defines a color. This
* is a GTK extension to CSS.
*/
COLOR_DEFINITION = 2,
/**
* The section defines a binding set. This
* is a GTK extension to CSS.
*/
BINDING_SET = 3,
/**
* The section defines a CSS ruleset.
*/
RULESET = 4,
/**
* The section defines a CSS selector.
*/
SELECTOR = 5,
/**
* The section defines the declaration of
* a CSS variable.
*/
DECLARATION = 6,
/**
* The section defines the value of a CSS declaration.
*/
VALUE = 7,
/**
* The section defines keyframes. See [CSS
* Animations](http://dev.w3.org/csswg/css3-animations/#keyframes) for details. Since 3.6
*/
KEYFRAMES = 8,
}
alias GtkCssSectionType CssSectionType;
public enum GtkDebugFlag
{
MISC = 1,
PLUGSOCKET = 2,
TEXT = 4,
TREE = 8,
UPDATES = 16,
KEYBINDINGS = 32,
MULTIHEAD = 64,
MODULES = 128,
GEOMETRY = 256,
ICONTHEME = 512,
PRINTING = 1024,
BUILDER = 2048,
SIZE_REQUEST = 4096,
NO_CSS_CACHE = 8192,
BASELINES = 16384,
PIXEL_CACHE = 32768,
NO_PIXEL_CACHE = 65536,
INTERACTIVE = 131072,
TOUCHSCREEN = 262144,
ACTIONS = 524288,
RESIZE = 1048576,
LAYOUT = 2097152,
}
alias GtkDebugFlag DebugFlag;
/**
* See also: #GtkEntry::delete-from-cursor.
*/
public enum GtkDeleteType
{
/**
* Delete characters.
*/
CHARS = 0,
/**
* Delete only the portion of the word to the
* left/right of cursor if we’re in the middle of a word.
*/
WORD_ENDS = 1,
/**
* Delete words.
*/
WORDS = 2,
/**
* Delete display-lines. Display-lines
* refers to the visible lines, with respect to to the current line
* breaks. As opposed to paragraphs, which are defined by line
* breaks in the input.
*/
DISPLAY_LINES = 3,
/**
* Delete only the portion of the
* display-line to the left/right of cursor.
*/
DISPLAY_LINE_ENDS = 4,
/**
* Delete to the end of the
* paragraph. Like C-k in Emacs (or its reverse).
*/
PARAGRAPH_ENDS = 5,
/**
* Delete entire line. Like C-k in pico.
*/
PARAGRAPHS = 6,
/**
* Delete only whitespace. Like M-\ in Emacs.
*/
WHITESPACE = 7,
}
alias GtkDeleteType DeleteType;
/**
* The #GtkDestDefaults enumeration specifies the various
* types of action that will be taken on behalf
* of the user for a drag destination site.
*/
public enum GtkDestDefaults
{
/**
* If set for a widget, GTK+, during a drag over this
* widget will check if the drag matches this widget’s list of possible targets
* and actions.
* GTK+ will then call gdk_drag_status() as appropriate.
*/
MOTION = 1,
/**
* If set for a widget, GTK+ will draw a highlight on
* this widget as long as a drag is over this widget and the widget drag format
* and action are acceptable.
*/
HIGHLIGHT = 2,
/**
* If set for a widget, when a drop occurs, GTK+ will
* will check if the drag matches this widget’s list of possible targets and
* actions. If so, GTK+ will call gtk_drag_get_data() on behalf of the widget.
* Whether or not the drop is successful, GTK+ will call gtk_drag_finish(). If
* the action was a move, then if the drag was successful, then %TRUE will be
* passed for the @delete parameter to gtk_drag_finish().
*/
DROP = 4,
/**
* If set, specifies that all default actions should
* be taken.
*/
ALL = 7,
}
alias GtkDestDefaults DestDefaults;
/**
* Flags used to influence dialog construction.
*/
public enum GtkDialogFlags
{
/**
* Make the constructed dialog modal,
* see gtk_window_set_modal()
*/
MODAL = 1,
/**
* Destroy the dialog when its
* parent is destroyed, see gtk_window_set_destroy_with_parent()
*/
DESTROY_WITH_PARENT = 2,
/**
* Create dialog with actions in header
* bar instead of action area. Since 3.12.
*/
USE_HEADER_BAR = 4,
}
alias GtkDialogFlags DialogFlags;
/**
* Focus movement types.
*/
public enum GtkDirectionType
{
/**
* Move forward.
*/
TAB_FORWARD = 0,
/**
* Move backward.
*/
TAB_BACKWARD = 1,
/**
* Move up.
*/
UP = 2,
/**
* Move down.
*/
DOWN = 3,
/**
* Move left.
*/
LEFT = 4,
/**
* Move right.
*/
RIGHT = 5,
}
alias GtkDirectionType DirectionType;
/**
* Gives an indication why a drag operation failed.
* The value can by obtained by connecting to the
* #GtkWidget::drag-failed signal.
*/
public enum GtkDragResult
{
/**
* The drag operation was successful.
*/
SUCCESS = 0,
/**
* No suitable drag target.
*/
NO_TARGET = 1,
/**
* The user cancelled the drag operation.
*/
USER_CANCELLED = 2,
/**
* The drag operation timed out.
*/
TIMEOUT_EXPIRED = 3,
/**
* The pointer or keyboard grab used
* for the drag operation was broken.
*/
GRAB_BROKEN = 4,
/**
* The drag operation failed due to some
* unspecified error.
*/
ERROR = 5,
}
alias GtkDragResult DragResult;
/**
* Specifies the side of the entry at which an icon is placed.
*
* Since: 2.16
*/
public enum GtkEntryIconPosition
{
/**
* At the beginning of the entry (depending on the text direction).
*/
PRIMARY = 0,
/**
* At the end of the entry (depending on the text direction).
*/
SECONDARY = 1,
}
alias GtkEntryIconPosition EntryIconPosition;
/**
* Describes the state of a #GdkEventSequence in a #GtkGesture.
*
* Since: 3.14
*/
public enum GtkEventSequenceState
{
/**
* The sequence is handled, but not grabbed.
*/
NONE = 0,
/**
* The sequence is handled and grabbed.
*/
CLAIMED = 1,
/**
* The sequence is denied.
*/
DENIED = 2,
}
alias GtkEventSequenceState EventSequenceState;
/**
* Used to specify the style of the expanders drawn by a #GtkTreeView.
*/
public enum GtkExpanderStyle
{
/**
* The style used for a collapsed subtree.
*/
COLLAPSED = 0,
/**
* Intermediate style used during animation.
*/
SEMI_COLLAPSED = 1,
/**
* Intermediate style used during animation.
*/
SEMI_EXPANDED = 2,
/**
* The style used for an expanded subtree.
*/
EXPANDED = 3,
}
alias GtkExpanderStyle ExpanderStyle;
/**
* Describes whether a #GtkFileChooser is being used to open existing files
* or to save to a possibly new file.
*/
public enum GtkFileChooserAction
{
/**
* Indicates open mode. The file chooser
* will only let the user pick an existing file.
*/
OPEN = 0,
/**
* Indicates save mode. The file chooser
* will let the user pick an existing file, or type in a new
* filename.
*/
SAVE = 1,
/**
* Indicates an Open mode for
* selecting folders. The file chooser will let the user pick an
* existing folder.
*/
SELECT_FOLDER = 2,
/**
* Indicates a mode for creating a
* new folder. The file chooser will let the user name an existing or
* new folder.
*/
CREATE_FOLDER = 3,
}
alias GtkFileChooserAction FileChooserAction;
/**
* Used as a return value of handlers for the
* #GtkFileChooser::confirm-overwrite signal of a #GtkFileChooser. This
* value determines whether the file chooser will present the stock
* confirmation dialog, accept the user’s choice of a filename, or
* let the user choose another filename.
*
* Since: 2.8
*/
public enum GtkFileChooserConfirmation
{
/**
* The file chooser will present
* its stock dialog to confirm about overwriting an existing file.
*/
CONFIRM = 0,
/**
* The file chooser will
* terminate and accept the user’s choice of a file name.
*/
ACCEPT_FILENAME = 1,
/**
* The file chooser will
* continue running, so as to let the user select another file name.
*/
SELECT_AGAIN = 2,
}
alias GtkFileChooserConfirmation FileChooserConfirmation;
/**
* These identify the various errors that can occur while calling
* #GtkFileChooser functions.
*/
public enum GtkFileChooserError
{
/**
* Indicates that a file does not exist.
*/
NONEXISTENT = 0,
/**
* Indicates a malformed filename.
*/
BAD_FILENAME = 1,
/**
* Indicates a duplicate path (e.g. when
* adding a bookmark).
*/
ALREADY_EXISTS = 2,
/**
* Indicates an incomplete hostname (e.g. "http://foo" without a slash after that).
*/
INCOMPLETE_HOSTNAME = 3,
}
alias GtkFileChooserError FileChooserError;
/**
* These flags indicate what parts of a #GtkFileFilterInfo struct
* are filled or need to be filled.
*/
public enum GtkFileFilterFlags
{
/**
* the filename of the file being tested
*/
FILENAME = 1,
/**
* the URI for the file being tested
*/
URI = 2,
/**
* the string that will be used to
* display the file in the file chooser
*/
DISPLAY_NAME = 4,
/**
* the mime type of the file
*/
MIME_TYPE = 8,
}
alias GtkFileFilterFlags FileFilterFlags;
/**
* Style for input method preedit. See also
* #GtkSettings:gtk-im-preedit-style
*/
public enum GtkIMPreeditStyle
{
/**
* Deprecated
*/
NOTHING = 0,
/**
* Deprecated
*/
CALLBACK = 1,
/**
* Deprecated
*/
NONE = 2,
}
alias GtkIMPreeditStyle IMPreeditStyle;
/**
* Style for input method status. See also
* #GtkSettings:gtk-im-status-style
*/
public enum GtkIMStatusStyle
{
/**
* Deprecated
*/
NOTHING = 0,
/**
* Deprecated
*/
CALLBACK = 1,
/**
* Deprecated
*/
NONE = 2,
}
alias GtkIMStatusStyle IMStatusStyle;
/**
* Used to specify options for gtk_icon_theme_lookup_icon()
*/
public enum GtkIconLookupFlags
{
/**
* Never get SVG icons, even if gdk-pixbuf
* supports them. Cannot be used together with %GTK_ICON_LOOKUP_FORCE_SVG.
*/
NO_SVG = 1,
/**
* Get SVG icons, even if gdk-pixbuf
* doesn’t support them.
* Cannot be used together with %GTK_ICON_LOOKUP_NO_SVG.
*/
FORCE_SVG = 2,
/**
* When passed to
* gtk_icon_theme_lookup_icon() includes builtin icons
* as well as files. For a builtin icon, gtk_icon_info_get_filename()
* is %NULL and you need to call gtk_icon_info_get_builtin_pixbuf().
*/
USE_BUILTIN = 4,
/**
* Try to shorten icon name at '-'
* characters before looking at inherited themes. This flag is only
* supported in functions that take a single icon name. For more general
* fallback, see gtk_icon_theme_choose_icon(). Since 2.12.
*/
GENERIC_FALLBACK = 8,
/**
* Always get the icon scaled to the
* requested size. Since 2.14.
*/
FORCE_SIZE = 16,
/**
* Try to always load regular icons, even
* when symbolic icon names are given. Since 3.14.
*/
FORCE_REGULAR = 32,
/**
* Try to always load symbolic icons, even
* when regular icon names are given. Since 3.14.
*/
FORCE_SYMBOLIC = 64,
/**
* Try to load a variant of the icon for left-to-right
* text direction. Since 3.14.
*/
DIR_LTR = 128,
/**
* Try to load a variant of the icon for right-to-left
* text direction. Since 3.14.
*/
DIR_RTL = 256,
}
alias GtkIconLookupFlags IconLookupFlags;
/**
* Built-in stock icon sizes.
*/
public enum GtkIconSize
{
/**
* Invalid size.
*/
INVALID = 0,
/**
* Size appropriate for menus (16px).
*/
MENU = 1,
/**
* Size appropriate for small toolbars (16px).
*/
SMALL_TOOLBAR = 2,
/**
* Size appropriate for large toolbars (24px)
*/
LARGE_TOOLBAR = 3,
/**
* Size appropriate for buttons (16px)
*/
BUTTON = 4,
/**
* Size appropriate for drag and drop (32px)
*/
DND = 5,
/**
* Size appropriate for dialogs (48px)
*/
DIALOG = 6,
}
alias GtkIconSize IconSize;
/**
* Error codes for GtkIconTheme operations.
*/
public enum GtkIconThemeError
{
/**
* The icon specified does not exist in the theme
*/
NOT_FOUND = 0,
/**
* An unspecified error occurred.
*/
FAILED = 1,
}
alias GtkIconThemeError IconThemeError;
/**
* An enum for determining where a dropped item goes.
*/
public enum GtkIconViewDropPosition
{
/**
* no drop possible
*/
NO_DROP = 0,
/**
* dropped item replaces the item
*/
DROP_INTO = 1,
/**
* droppped item is inserted to the left
*/
DROP_LEFT = 2,
/**
* dropped item is inserted to the right
*/
DROP_RIGHT = 3,
/**
* dropped item is inserted above
*/
DROP_ABOVE = 4,
/**
* dropped item is inserted below
*/
DROP_BELOW = 5,
}
alias GtkIconViewDropPosition IconViewDropPosition;
/**
* Describes the image data representation used by a #GtkImage. If you
* want to get the image from the widget, you can only get the
* currently-stored representation. e.g. if the
* gtk_image_get_storage_type() returns #GTK_IMAGE_PIXBUF, then you can
* call gtk_image_get_pixbuf() but not gtk_image_get_stock(). For empty
* images, you can request any storage type (call any of the "get"
* functions), but they will all return %NULL values.
*/
public enum GtkImageType
{
/**
* there is no image displayed by the widget
*/
EMPTY = 0,
/**
* the widget contains a #GdkPixbuf
*/
PIXBUF = 1,
/**
* the widget contains a [stock item name][gtkstock]
*/
STOCK = 2,
/**
* the widget contains a #GtkIconSet
*/
ICON_SET = 3,
/**
* the widget contains a #GdkPixbufAnimation
*/
ANIMATION = 4,
/**
* the widget contains a named icon.
* This image type was added in GTK+ 2.6
*/
ICON_NAME = 5,
/**
* the widget contains a #GIcon.
* This image type was added in GTK+ 2.14
*/
GICON = 6,
/**
* the widget contains a #cairo_surface_t.
* This image type was added in GTK+ 3.10
*/
SURFACE = 7,
}
alias GtkImageType ImageType;
/**
* Describes hints that might be taken into account by input methods
* or applications. Note that input methods may already tailor their
* behaviour according to the #GtkInputPurpose of the entry.
*
* Some common sense is expected when using these flags - mixing
* @GTK_INPUT_HINT_LOWERCASE with any of the uppercase hints makes no sense.
*
* This enumeration may be extended in the future; input methods should
* ignore unknown values.
*
* Since: 3.6
*/
public enum GtkInputHints
{
/**
* No special behaviour suggested
*/
NONE = 0,
/**
* Suggest checking for typos
*/
SPELLCHECK = 1,
/**
* Suggest not checking for typos
*/
NO_SPELLCHECK = 2,
/**
* Suggest word completion
*/
WORD_COMPLETION = 4,
/**
* Suggest to convert all text to lowercase
*/
LOWERCASE = 8,
/**
* Suggest to capitalize all text
*/
UPPERCASE_CHARS = 16,
/**
* Suggest to capitalize the first
* character of each word
*/
UPPERCASE_WORDS = 32,
/**
* Suggest to capitalize the
* first word of each sentence
*/
UPPERCASE_SENTENCES = 64,
/**
* Suggest to not show an onscreen keyboard
* (e.g for a calculator that already has all the keys).
*/
INHIBIT_OSK = 128,
/**
* The text is vertical. Since 3.18
*/
VERTICAL_WRITING = 256,
}
alias GtkInputHints InputHints;
/**
* Describes primary purpose of the input widget. This information is
* useful for on-screen keyboards and similar input methods to decide
* which keys should be presented to the user.
*
* Note that the purpose is not meant to impose a totally strict rule
* about allowed characters, and does not replace input validation.
* It is fine for an on-screen keyboard to let the user override the
* character set restriction that is expressed by the purpose. The
* application is expected to validate the entry contents, even if
* it specified a purpose.
*
* The difference between @GTK_INPUT_PURPOSE_DIGITS and
* @GTK_INPUT_PURPOSE_NUMBER is that the former accepts only digits
* while the latter also some punctuation (like commas or points, plus,
* minus) and “e” or “E” as in 3.14E+000.
*
* This enumeration may be extended in the future; input methods should
* interpret unknown values as “free form”.
*
* Since: 3.6
*/
public enum GtkInputPurpose
{
/**
* Allow any character
*/
FREE_FORM = 0,
/**
* Allow only alphabetic characters
*/
ALPHA = 1,
/**
* Allow only digits
*/
DIGITS = 2,
/**
* Edited field expects numbers
*/
NUMBER = 3,
/**
* Edited field expects phone number
*/
PHONE = 4,
/**
* Edited field expects URL
*/
URL = 5,
/**
* Edited field expects email address
*/
EMAIL = 6,
/**
* Edited field expects the name of a person
*/
NAME = 7,
/**
* Like @GTK_INPUT_PURPOSE_FREE_FORM, but characters are hidden
*/
PASSWORD = 8,
/**
* Like @GTK_INPUT_PURPOSE_DIGITS, but characters are hidden
*/
PIN = 9,
}
alias GtkInputPurpose InputPurpose;
/**
* Describes how a rendered element connects to adjacent elements.
*/
public enum GtkJunctionSides
{
/**
* No junctions.
*/
NONE = 0,
/**
* Element connects on the top-left corner.
*/
CORNER_TOPLEFT = 1,
/**
* Element connects on the top-right corner.
*/
CORNER_TOPRIGHT = 2,
/**
* Element connects on the bottom-left corner.
*/
CORNER_BOTTOMLEFT = 4,
/**
* Element connects on the bottom-right corner.
*/
CORNER_BOTTOMRIGHT = 8,
/**
* Element connects on the top side.
*/
TOP = 3,
/**
* Element connects on the bottom side.
*/
BOTTOM = 12,
/**
* Element connects on the left side.
*/
LEFT = 5,
/**
* Element connects on the right side.
*/
RIGHT = 10,
}
alias GtkJunctionSides JunctionSides;
/**
* Used for justifying the text inside a #GtkLabel widget. (See also
* #GtkAlignment).
*/
public enum GtkJustification
{
/**
* The text is placed at the left edge of the label.
*/
LEFT = 0,
/**
* The text is placed at the right edge of the label.
*/
RIGHT = 1,
/**
* The text is placed in the center of the label.
*/
CENTER = 2,
/**
* The text is placed is distributed across the label.
*/
FILL = 3,
}
alias GtkJustification Justification;
/**
* Describes how #GtkLevelBar contents should be rendered.
* Note that this enumeration could be extended with additional modes
* in the future.
*
* Since: 3.6
*/
public enum GtkLevelBarMode
{
/**
* the bar has a continuous mode
*/
CONTINUOUS = 0,
/**
* the bar has a discrete mode
*/
DISCRETE = 1,
}
alias GtkLevelBarMode LevelBarMode;
/**
* The type of license for an application.
*
* This enumeration can be expanded at later date.
*
* Since: 3.0
*/
public enum GtkLicense
{
/**
* No license specified
*/
UNKNOWN = 0,
/**
* A license text is going to be specified by the
* developer
*/
CUSTOM = 1,
/**
* The GNU General Public License, version 2.0 or later
*/
GPL_2_0 = 2,
/**
* The GNU General Public License, version 3.0 or later
*/
GPL_3_0 = 3,
/**
* The GNU Lesser General Public License, version 2.1 or later
*/
LGPL_2_1 = 4,
/**
* The GNU Lesser General Public License, version 3.0 or later
*/
LGPL_3_0 = 5,
/**
* The BSD standard license
*/
BSD = 6,
/**
* The MIT/X11 standard license
*/
MIT_X11 = 7,
/**
* The Artistic License, version 2.0
*/
ARTISTIC = 8,
/**
* The GNU General Public License, version 2.0 only. Since 3.12.
*/
GPL_2_0_ONLY = 9,
/**
* The GNU General Public License, version 3.0 only. Since 3.12.
*/
GPL_3_0_ONLY = 10,
/**
* The GNU Lesser General Public License, version 2.1 only. Since 3.12.
*/
LGPL_2_1_ONLY = 11,
/**
* The GNU Lesser General Public License, version 3.0 only. Since 3.12.
*/
LGPL_3_0_ONLY = 12,
/**
* The GNU Affero General Public License, version 3.0 or later. Since: 3.22.
*/
AGPL_3_0 = 13,
}
alias GtkLicense License;
/**
* An enumeration representing directional movements within a menu.
*/
public enum GtkMenuDirectionType
{
/**
* To the parent menu shell
*/
PARENT = 0,
/**
* To the submenu, if any, associated with the item
*/
CHILD = 1,
/**
* To the next menu item
*/
NEXT = 2,
/**
* To the previous menu item
*/
PREV = 3,
}
alias GtkMenuDirectionType MenuDirectionType;
/**
* The type of message being displayed in the dialog.
*/
public enum GtkMessageType : uint
{
/**
* Informational message
*/
INFO = 0,
/**
* Non-fatal warning message
*/
WARNING = 1,
/**
* Question requiring a choice
*/
QUESTION = 2,
/**
* Fatal error message
*/
ERROR = 3,
/**
* None of the above
*/
OTHER = 4,
}
alias GtkMessageType MessageType;
public enum GtkMovementStep
{
/**
* Move forward or back by graphemes
*/
LOGICAL_POSITIONS = 0,
/**
* Move left or right by graphemes
*/
VISUAL_POSITIONS = 1,
/**
* Move forward or back by words
*/
WORDS = 2,
/**
* Move up or down lines (wrapped lines)
*/
DISPLAY_LINES = 3,
/**
* Move to either end of a line
*/
DISPLAY_LINE_ENDS = 4,
/**
* Move up or down paragraphs (newline-ended lines)
*/
PARAGRAPHS = 5,
/**
* Move to either end of a paragraph
*/
PARAGRAPH_ENDS = 6,
/**
* Move by pages
*/
PAGES = 7,
/**
* Move to ends of the buffer
*/
BUFFER_ENDS = 8,
/**
* Move horizontally by pages
*/
HORIZONTAL_PAGES = 9,
}
alias GtkMovementStep MovementStep;
public enum GtkNotebookTab
{
FIRST = 0,
LAST = 1,
}
alias GtkNotebookTab NotebookTab;
/**
* Used to determine the layout of pages on a sheet when printing
* multiple pages per sheet.
*/
public enum GtkNumberUpLayout
{
/**
* 
*/
LRTB = 0,
/**
* 
*/
LRBT = 1,
/**
* 
*/
RLTB = 2,
/**
* 
*/
RLBT = 3,
/**
* 
*/
TBLR = 4,
/**
* 
*/
TBRL = 5,
/**
* 
*/
BTLR = 6,
/**
* 
*/
BTRL = 7,
}
alias GtkNumberUpLayout NumberUpLayout;
/**
* Represents the orientation of widgets and other objects which can be switched
* between horizontal and vertical orientation on the fly, like #GtkToolbar or
* #GtkGesturePan.
*/
public enum GtkOrientation
{
/**
* The element is in horizontal orientation.
*/
HORIZONTAL = 0,
/**
* The element is in vertical orientation.
*/
VERTICAL = 1,
}
alias GtkOrientation Orientation;
/**
* Determines how widgets should be packed inside menubars
* and menuitems contained in menubars.
*/
public enum GtkPackDirection
{
/**
* Widgets are packed left-to-right
*/
LTR = 0,
/**
* Widgets are packed right-to-left
*/
RTL = 1,
/**
* Widgets are packed top-to-bottom
*/
TTB = 2,
/**
* Widgets are packed bottom-to-top
*/
BTT = 3,
}
alias GtkPackDirection PackDirection;
/**
* Represents the packing location #GtkBox children. (See: #GtkVBox,
* #GtkHBox, and #GtkButtonBox).
*/
public enum GtkPackType
{
/**
* The child is packed into the start of the box
*/
START = 0,
/**
* The child is packed into the end of the box
*/
END = 1,
}
alias GtkPackType PackType;
/**
* The type of a pad action.
*/
public enum GtkPadActionType
{
/**
* Action is triggered by a pad button
*/
BUTTON = 0,
/**
* Action is triggered by a pad ring
*/
RING = 1,
/**
* Action is triggered by a pad strip
*/
STRIP = 2,
}
alias GtkPadActionType PadActionType;
/**
* See also gtk_print_settings_set_orientation().
*/
public enum GtkPageOrientation
{
/**
* Portrait mode.
*/
PORTRAIT = 0,
/**
* Landscape mode.
*/
LANDSCAPE = 1,
/**
* Reverse portrait mode.
*/
REVERSE_PORTRAIT = 2,
/**
* Reverse landscape mode.
*/
REVERSE_LANDSCAPE = 3,
}
alias GtkPageOrientation PageOrientation;
/**
* See also gtk_print_job_set_page_set().
*/
public enum GtkPageSet
{
/**
* All pages.
*/
ALL = 0,
/**
* Even pages.
*/
EVEN = 1,
/**
* Odd pages.
*/
ODD = 2,
}
alias GtkPageSet PageSet;
/**
* Describes the panning direction of a #GtkGesturePan
*
* Since: 3.14
*/
public enum GtkPanDirection
{
/**
* panned towards the left
*/
LEFT = 0,
/**
* panned towards the right
*/
RIGHT = 1,
/**
* panned upwards
*/
UP = 2,
/**
* panned downwards
*/
DOWN = 3,
}
alias GtkPanDirection PanDirection;
/**
* Priorities for path lookups.
* See also gtk_binding_set_add_path().
*/
public enum GtkPathPriorityType
{
/**
* Deprecated
*/
LOWEST = 0,
/**
* Deprecated
*/
GTK = 4,
/**
* Deprecated
*/
APPLICATION = 8,
/**
* Deprecated
*/
THEME = 10,
/**
* Deprecated
*/
RC = 12,
/**
* Deprecated
*/
HIGHEST = 15,
}
alias GtkPathPriorityType PathPriorityType;
/**
* Widget path types.
* See also gtk_binding_set_add_path().
*/
public enum GtkPathType
{
/**
* Deprecated
*/
WIDGET = 0,
/**
* Deprecated
*/
WIDGET_CLASS = 1,
/**
* Deprecated
*/
CLASS = 2,
}
alias GtkPathType PathType;
/**
* These flags serve two purposes. First, the application can call gtk_places_sidebar_set_open_flags()
* using these flags as a bitmask. This tells the sidebar that the application is able to open
* folders selected from the sidebar in various ways, for example, in new tabs or in new windows in
* addition to the normal mode.
*
* Second, when one of these values gets passed back to the application in the
* #GtkPlacesSidebar::open-location signal, it means that the application should
* open the selected location in the normal way, in a new tab, or in a new
* window. The sidebar takes care of determining the desired way to open the location,
* based on the modifier keys that the user is pressing at the time the selection is made.
*
* If the application never calls gtk_places_sidebar_set_open_flags(), then the sidebar will only
* use #GTK_PLACES_OPEN_NORMAL in the #GtkPlacesSidebar::open-location signal. This is the
* default mode of operation.
*/
public enum GtkPlacesOpenFlags
{
/**
* This is the default mode that #GtkPlacesSidebar uses if no other flags
* are specified. It indicates that the calling application should open the selected location
* in the normal way, for example, in the folder view beside the sidebar.
*/
NORMAL = 1,
/**
* When passed to gtk_places_sidebar_set_open_flags(), this indicates
* that the application can open folders selected from the sidebar in new tabs. This value
* will be passed to the #GtkPlacesSidebar::open-location signal when the user selects
* that a location be opened in a new tab instead of in the standard fashion.
*/
NEW_TAB = 2,
/**
* Similar to @GTK_PLACES_OPEN_NEW_TAB, but indicates that the application
* can open folders in new windows.
*/
NEW_WINDOW = 4,
}
alias GtkPlacesOpenFlags PlacesOpenFlags;
/**
* Determines how the size should be computed to achieve the one of the
* visibility mode for the scrollbars.
*/
public enum GtkPolicyType
{
/**
* The scrollbar is always visible. The view size is
* independent of the content.
*/
ALWAYS = 0,
/**
* The scrollbar will appear and disappear as necessary.
* For example, when all of a #GtkTreeView can not be seen.
*/
AUTOMATIC = 1,
/**
* The scrollbar should never appear. In this mode the
* content determines the size.
*/
NEVER = 2,
/**
* Don't show a scrollbar, but don't force the
* size to follow the content. This can be used e.g. to make multiple
* scrolled windows share a scrollbar. Since: 3.16
*/
EXTERNAL = 3,
}
alias GtkPolicyType PolicyType;
/**
* Describes constraints to positioning of popovers. More values
* may be added to this enumeration in the future.
*
* Since: 3.20
*/
public enum GtkPopoverConstraint
{
/**
* Don't constrain the popover position
* beyond what is imposed by the implementation
*/
NONE = 0,
/**
* Constrain the popover to the boundaries
* of the window that it is attached to
*/
WINDOW = 1,
}
alias GtkPopoverConstraint PopoverConstraint;
/**
* Describes which edge of a widget a certain feature is positioned at, e.g. the
* tabs of a #GtkNotebook, the handle of a #GtkHandleBox or the label of a
* #GtkScale.
*/
public enum GtkPositionType
{
/**
* The feature is at the left edge.
*/
LEFT = 0,
/**
* The feature is at the right edge.
*/
RIGHT = 1,
/**
* The feature is at the top edge.
*/
TOP = 2,
/**
* The feature is at the bottom edge.
*/
BOTTOM = 3,
}
alias GtkPositionType PositionType;
/**
* See also gtk_print_settings_set_duplex().
*/
public enum GtkPrintDuplex
{
/**
* No duplex.
*/
SIMPLEX = 0,
/**
* Horizontal duplex.
*/
HORIZONTAL = 1,
/**
* Vertical duplex.
*/
VERTICAL = 2,
}
alias GtkPrintDuplex PrintDuplex;
/**
* Error codes that identify various errors that can occur while
* using the GTK+ printing support.
*/
public enum GtkPrintError
{
/**
* An unspecified error occurred.
*/
GENERAL = 0,
/**
* An internal error occurred.
*/
INTERNAL_ERROR = 1,
/**
* A memory allocation failed.
*/
NOMEM = 2,
/**
* An error occurred while loading a page setup
* or paper size from a key file.
*/
INVALID_FILE = 3,
}
alias GtkPrintError PrintError;
/**
* The @action parameter to gtk_print_operation_run()
* determines what action the print operation should perform.
*/
public enum GtkPrintOperationAction
{
/**
* Show the print dialog.
*/
PRINT_DIALOG = 0,
/**
* Start to print without showing
* the print dialog, based on the current print settings.
*/
PRINT = 1,
/**
* Show the print preview.
*/
PREVIEW = 2,
/**
* Export to a file. This requires
* the export-filename property to be set.
*/
EXPORT = 3,
}
alias GtkPrintOperationAction PrintOperationAction;
/**
* A value of this type is returned by gtk_print_operation_run().
*/
public enum GtkPrintOperationResult
{
/**
* An error has occurred.
*/
ERROR = 0,
/**
* The print settings should be stored.
*/
APPLY = 1,
/**
* The print operation has been canceled,
* the print settings should not be stored.
*/
CANCEL = 2,
/**
* The print operation is not complete
* yet. This value will only be returned when running asynchronously.
*/
IN_PROGRESS = 3,
}
alias GtkPrintOperationResult PrintOperationResult;
/**
* See also gtk_print_job_set_pages()
*/
public enum GtkPrintPages
{
/**
* All pages.
*/
ALL = 0,
/**
* Current page.
*/
CURRENT = 1,
/**
* Range of pages.
*/
RANGES = 2,
/**
* Selected pages.
*/
SELECTION = 3,
}
alias GtkPrintPages PrintPages;
/**
* See also gtk_print_settings_set_quality().
*/
public enum GtkPrintQuality
{
/**
* Low quality.
*/
LOW = 0,
/**
* Normal quality.
*/
NORMAL = 1,
/**
* High quality.
*/
HIGH = 2,
/**
* Draft quality.
*/
DRAFT = 3,
}
alias GtkPrintQuality PrintQuality;
/**
* The status gives a rough indication of the completion of a running
* print operation.
*/
public enum GtkPrintStatus
{
/**
* The printing has not started yet; this
* status is set initially, and while the print dialog is shown.
*/
INITIAL = 0,
/**
* This status is set while the begin-print
* signal is emitted and during pagination.
*/
PREPARING = 1,
/**
* This status is set while the
* pages are being rendered.
*/
GENERATING_DATA = 2,
/**
* The print job is being sent off to the
* printer.
*/
SENDING_DATA = 3,
/**
* The print job has been sent to the printer,
* but is not printed for some reason, e.g. the printer may be stopped.
*/
PENDING = 4,
/**
* Some problem has occurred during
* printing, e.g. a paper jam.
*/
PENDING_ISSUE = 5,
/**
* The printer is processing the print job.
*/
PRINTING = 6,
/**
* The printing has been completed successfully.
*/
FINISHED = 7,
/**
* The printing has been aborted.
*/
FINISHED_ABORTED = 8,
}
alias GtkPrintStatus PrintStatus;
/**
* Describes the stage at which events are fed into a #GtkEventController.
*
* Since: 3.14
*/
public enum GtkPropagationPhase
{
/**
* Events are not delivered automatically. Those can be
* manually fed through gtk_event_controller_handle_event(). This should
* only be used when full control about when, or whether the controller
* handles the event is needed.
*/
NONE = 0,
/**
* Events are delivered in the capture phase. The
* capture phase happens before the bubble phase, runs from the toplevel down
* to the event widget. This option should only be used on containers that
* might possibly handle events before their children do.
*/
CAPTURE = 1,
/**
* Events are delivered in the bubble phase. The bubble
* phase happens after the capture phase, and before the default handlers
* are run. This phase runs from the event widget, up to the toplevel.
*/
BUBBLE = 2,
/**
* Events are delivered in the default widget event handlers,
* note that widget implementations must chain up on button, motion, touch and
* grab broken handlers for controllers in this phase to be run.
*/
TARGET = 3,
}
alias GtkPropagationPhase PropagationPhase;
/**
* Deprecated
*/
public enum GtkRcFlags
{
/**
* Deprecated
*/
FG = 1,
/**
* Deprecated
*/
BG = 2,
/**
* Deprecated
*/
TEXT = 4,
/**
* Deprecated
*/
BASE = 8,
}
alias GtkRcFlags RcFlags;
/**
* The #GtkRcTokenType enumeration represents the tokens
* in the RC file. It is exposed so that theme engines
* can reuse these tokens when parsing the theme-engine
* specific portions of a RC file.
*
* Deprecated: Use #GtkCssProvider instead.
*/
public enum GtkRcTokenType
{
/**
* Deprecated
*/
INVALID = 270,
/**
* Deprecated
*/
INCLUDE = 271,
/**
* Deprecated
*/
NORMAL = 272,
/**
* Deprecated
*/
ACTIVE = 273,
/**
* Deprecated
*/
PRELIGHT = 274,
/**
* Deprecated
*/
SELECTED = 275,
/**
* Deprecated
*/
INSENSITIVE = 276,
/**
* Deprecated
*/
FG = 277,
/**
* Deprecated
*/
BG = 278,
/**
* Deprecated
*/
TEXT = 279,
/**
* Deprecated
*/
BASE = 280,
/**
* Deprecated
*/
XTHICKNESS = 281,
/**
* Deprecated
*/
YTHICKNESS = 282,
/**
* Deprecated
*/
FONT = 283,
/**
* Deprecated
*/
FONTSET = 284,
/**
* Deprecated
*/
FONT_NAME = 285,
/**
* Deprecated
*/
BG_PIXMAP = 286,
/**
* Deprecated
*/
PIXMAP_PATH = 287,
/**
* Deprecated
*/
STYLE = 288,
/**
* Deprecated
*/
BINDING = 289,
/**
* Deprecated
*/
BIND = 290,
/**
* Deprecated
*/
WIDGET = 291,
/**
* Deprecated
*/
WIDGET_CLASS = 292,
/**
* Deprecated
*/
CLASS = 293,
/**
* Deprecated
*/
LOWEST = 294,
/**
* Deprecated
*/
GTK = 295,
/**
* Deprecated
*/
APPLICATION = 296,
/**
* Deprecated
*/
THEME = 297,
/**
* Deprecated
*/
RC = 298,
/**
* Deprecated
*/
HIGHEST = 299,
/**
* Deprecated
*/
ENGINE = 300,
/**
* Deprecated
*/
MODULE_PATH = 301,
/**
* Deprecated
*/
IM_MODULE_PATH = 302,
/**
* Deprecated
*/
IM_MODULE_FILE = 303,
/**
* Deprecated
*/
STOCK = 304,
/**
* Deprecated
*/
LTR = 305,
/**
* Deprecated
*/
RTL = 306,
/**
* Deprecated
*/
COLOR = 307,
/**
* Deprecated
*/
UNBIND = 308,
/**
* Deprecated
*/
LAST = 309,
}
alias GtkRcTokenType RcTokenType;
/**
* These identify the various errors that can occur while calling
* #GtkRecentChooser functions.
*
* Since: 2.10
*/
public enum GtkRecentChooserError
{
/**
* Indicates that a file does not exist
*/
NOT_FOUND = 0,
/**
* Indicates a malformed URI
*/
INVALID_URI = 1,
}
alias GtkRecentChooserError RecentChooserError;
/**
* These flags indicate what parts of a #GtkRecentFilterInfo struct
* are filled or need to be filled.
*/
public enum GtkRecentFilterFlags
{
/**
* the URI of the file being tested
*/
URI = 1,
/**
* the string that will be used to
* display the file in the recent chooser
*/
DISPLAY_NAME = 2,
/**
* the mime type of the file
*/
MIME_TYPE = 4,
/**
* the list of applications that have
* registered the file
*/
APPLICATION = 8,
/**
* the groups to which the file belongs to
*/
GROUP = 16,
/**
* the number of days elapsed since the file
* has been registered
*/
AGE = 32,
}
alias GtkRecentFilterFlags RecentFilterFlags;
/**
* Error codes for #GtkRecentManager operations
*
* Since: 2.10
*/
public enum GtkRecentManagerError
{
/**
* the URI specified does not exists in
* the recently used resources list.
*/
NOT_FOUND = 0,
/**
* the URI specified is not valid.
*/
INVALID_URI = 1,
/**
* the supplied string is not
* UTF-8 encoded.
*/
INVALID_ENCODING = 2,
/**
* no application has registered
* the specified item.
*/
NOT_REGISTERED = 3,
/**
* failure while reading the recently used
* resources file.
*/
READ = 4,
/**
* failure while writing the recently used
* resources file.
*/
WRITE = 5,
/**
* unspecified error.
*/
UNKNOWN = 6,
}
alias GtkRecentManagerError RecentManagerError;
/**
* Used to specify the sorting method to be applyed to the recently
* used resource list.
*
* Since: 2.10
*/
public enum GtkRecentSortType
{
/**
* Do not sort the returned list of recently used
* resources.
*/
NONE = 0,
/**
* Sort the returned list with the most recently used
* items first.
*/
MRU = 1,
/**
* Sort the returned list with the least recently used
* items first.
*/
LRU = 2,
/**
* Sort the returned list using a custom sorting
* function passed using gtk_recent_chooser_set_sort_func().
*/
CUSTOM = 3,
}
alias GtkRecentSortType RecentSortType;
/**
* Describes a region within a widget.
*/
public enum GtkRegionFlags
{
/**
* Region has an even number within a set.
*/
EVEN = 1,
/**
* Region has an odd number within a set.
*/
ODD = 2,
/**
* Region is the first one within a set.
*/
FIRST = 4,
/**
* Region is the last one within a set.
*/
LAST = 8,
/**
* Region is the only one within a set.
*/
ONLY = 16,
/**
* Region is part of a sorted area.
*/
SORTED = 32,
}
alias GtkRegionFlags RegionFlags;
/**
* Indicated the relief to be drawn around a #GtkButton.
*/
public enum GtkReliefStyle
{
/**
* Draw a normal relief.
*/
NORMAL = 0,
/**
* A half relief. Deprecated in 3.14, does the same as @GTK_RELIEF_NORMAL
*/
HALF = 1,
/**
* No relief.
*/
NONE = 2,
}
alias GtkReliefStyle ReliefStyle;
public enum GtkResizeMode
{
/**
* Pass resize request to the parent
*/
PARENT = 0,
/**
* Queue resizes on this widget
*/
QUEUE = 1,
/**
* Resize immediately. Deprecated.
*/
IMMEDIATE = 2,
}
alias GtkResizeMode ResizeMode;
/**
* Predefined values for use as response ids in gtk_dialog_add_button().
* All predefined values are negative, GTK+ leaves positive values for
* application-defined response ids.
*/
public enum GtkResponseType
{
/**
* Returned if an action widget has no response id,
* or if the dialog gets programmatically hidden or destroyed
*/
NONE = -1,
/**
* Generic response id, not used by GTK+ dialogs
*/
REJECT = -2,
/**
* Generic response id, not used by GTK+ dialogs
*/
ACCEPT = -3,
/**
* Returned if the dialog is deleted
*/
DELETE_EVENT = -4,
/**
* Returned by OK buttons in GTK+ dialogs
*/
OK = -5,
/**
* Returned by Cancel buttons in GTK+ dialogs
*/
CANCEL = -6,
/**
* Returned by Close buttons in GTK+ dialogs
*/
CLOSE = -7,
/**
* Returned by Yes buttons in GTK+ dialogs
*/
YES = -8,
/**
* Returned by No buttons in GTK+ dialogs
*/
NO = -9,
/**
* Returned by Apply buttons in GTK+ dialogs
*/
APPLY = -10,
/**
* Returned by Help buttons in GTK+ dialogs
*/
HELP = -11,
}
alias GtkResponseType ResponseType;
/**
* These enumeration values describe the possible transitions
* when the child of a #GtkRevealer widget is shown or hidden.
*/
public enum GtkRevealerTransitionType
{
/**
* No transition
*/
NONE = 0,
/**
* Fade in
*/
CROSSFADE = 1,
/**
* Slide in from the left
*/
SLIDE_RIGHT = 2,
/**
* Slide in from the right
*/
SLIDE_LEFT = 3,
/**
* Slide in from the bottom
*/
SLIDE_UP = 4,
/**
* Slide in from the top
*/
SLIDE_DOWN = 5,
}
alias GtkRevealerTransitionType RevealerTransitionType;
public enum GtkScrollStep
{
/**
* Scroll in steps.
*/
STEPS = 0,
/**
* Scroll by pages.
*/
PAGES = 1,
/**
* Scroll to ends.
*/
ENDS = 2,
/**
* Scroll in horizontal steps.
*/
HORIZONTAL_STEPS = 3,
/**
* Scroll by horizontal pages.
*/
HORIZONTAL_PAGES = 4,
/**
* Scroll to the horizontal ends.
*/
HORIZONTAL_ENDS = 5,
}
alias GtkScrollStep ScrollStep;
/**
* Scrolling types.
*/
public enum GtkScrollType
{
/**
* No scrolling.
*/
NONE = 0,
/**
* Jump to new location.
*/
JUMP = 1,
/**
* Step backward.
*/
STEP_BACKWARD = 2,
/**
* Step forward.
*/
STEP_FORWARD = 3,
/**
* Page backward.
*/
PAGE_BACKWARD = 4,
/**
* Page forward.
*/
PAGE_FORWARD = 5,
/**
* Step up.
*/
STEP_UP = 6,
/**
* Step down.
*/
STEP_DOWN = 7,
/**
* Page up.
*/
PAGE_UP = 8,
/**
* Page down.
*/
PAGE_DOWN = 9,
/**
* Step to the left.
*/
STEP_LEFT = 10,
/**
* Step to the right.
*/
STEP_RIGHT = 11,
/**
* Page to the left.
*/
PAGE_LEFT = 12,
/**
* Page to the right.
*/
PAGE_RIGHT = 13,
/**
* Scroll to start.
*/
START = 14,
/**
* Scroll to end.
*/
END = 15,
}
alias GtkScrollType ScrollType;
/**
* Defines the policy to be used in a scrollable widget when updating
* the scrolled window adjustments in a given orientation.
*/
public enum GtkScrollablePolicy
{
/**
* Scrollable adjustments are based on the minimum size
*/
MINIMUM = 0,
/**
* Scrollable adjustments are based on the natural size
*/
NATURAL = 1,
}
alias GtkScrollablePolicy ScrollablePolicy;
/**
* Used to control what selections users are allowed to make.
*/
public enum GtkSelectionMode
{
/**
* No selection is possible.
*/
NONE = 0,
/**
* Zero or one element may be selected.
*/
SINGLE = 1,
/**
* Exactly one element is selected.
* In some circumstances, such as initially or during a search
* operation, it’s possible for no element to be selected with
* %GTK_SELECTION_BROWSE. What is really enforced is that the user
* can’t deselect a currently selected element except by selecting
* another element.
*/
BROWSE = 2,
/**
* Any number of elements may be selected.
* The Ctrl key may be used to enlarge the selection, and Shift
* key to select between the focus and the child pointed to.
* Some widgets may also allow Click-drag to select a range of elements.
*/
MULTIPLE = 3,
}
alias GtkSelectionMode SelectionMode;
/**
* Determines how GTK+ handles the sensitivity of stepper arrows
* at the end of range widgets.
*/
public enum GtkSensitivityType
{
/**
* The arrow is made insensitive if the
* thumb is at the end
*/
AUTO = 0,
/**
* The arrow is always sensitive
*/
ON = 1,
/**
* The arrow is always insensitive
*/
OFF = 2,
}
alias GtkSensitivityType SensitivityType;
/**
* Used to change the appearance of an outline typically provided by a #GtkFrame.
*
* Note that many themes do not differentiate the appearance of the
* various shadow types: Either their is no visible shadow (@GTK_SHADOW_NONE),
* or there is (any other value).
*/
public enum GtkShadowType
{
/**
* No outline.
*/
NONE = 0,
/**
* The outline is bevelled inwards.
*/
IN = 1,
/**
* The outline is bevelled outwards like a button.
*/
OUT = 2,
/**
* The outline has a sunken 3d appearance.
*/
ETCHED_IN = 3,
/**
* The outline has a raised 3d appearance.
*/
ETCHED_OUT = 4,
}
alias GtkShadowType ShadowType;
/**
* GtkShortcutType specifies the kind of shortcut that is being described.
* More values may be added to this enumeration over time.
*
* Since: 3.20
*/
public enum GtkShortcutType
{
/**
* The shortcut is a keyboard accelerator. The #GtkShortcutsShortcut:accelerator
* property will be used.
*/
ACCELERATOR = 0,
/**
* The shortcut is a pinch gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_PINCH = 1,
/**
* The shortcut is a stretch gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_STRETCH = 2,
/**
* The shortcut is a clockwise rotation gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_ROTATE_CLOCKWISE = 3,
/**
* The shortcut is a counterclockwise rotation gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_ROTATE_COUNTERCLOCKWISE = 4,
/**
* The shortcut is a two-finger swipe gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_TWO_FINGER_SWIPE_LEFT = 5,
/**
* The shortcut is a two-finger swipe gesture. GTK+ provides an icon and subtitle.
*/
GESTURE_TWO_FINGER_SWIPE_RIGHT = 6,
/**
* The shortcut is a gesture. The #GtkShortcutsShortcut:icon property will be
* used.
*/
GESTURE = 7,
}
alias GtkShortcutType ShortcutType;
/**
* The mode of the size group determines the directions in which the size
* group affects the requested sizes of its component widgets.
*/
public enum GtkSizeGroupMode
{
/**
* group has no effect
*/
NONE = 0,
/**
* group affects horizontal requisition
*/
HORIZONTAL = 1,
/**
* group affects vertical requisition
*/
VERTICAL = 2,
/**
* group affects both horizontal and vertical requisition
*/
BOTH = 3,
}
alias GtkSizeGroupMode SizeGroupMode;
/**
* Specifies a preference for height-for-width or
* width-for-height geometry management.
*/
public enum GtkSizeRequestMode
{
/**
* Prefer height-for-width geometry management
*/
HEIGHT_FOR_WIDTH = 0,
/**
* Prefer width-for-height geometry management
*/
WIDTH_FOR_HEIGHT = 1,
/**
* Don’t trade height-for-width or width-for-height
*/
CONSTANT_SIZE = 2,
}
alias GtkSizeRequestMode SizeRequestMode;
/**
* Determines the direction of a sort.
*/
public enum GtkSortType
{
/**
* Sorting is in ascending order.
*/
ASCENDING = 0,
/**
* Sorting is in descending order.
*/
DESCENDING = 1,
}
alias GtkSortType SortType;
/**
* The spin button update policy determines whether the spin button displays
* values even if they are outside the bounds of its adjustment.
* See gtk_spin_button_set_update_policy().
*/
public enum GtkSpinButtonUpdatePolicy
{
/**
* When refreshing your #GtkSpinButton, the value is
* always displayed
*/
ALWAYS = 0,
/**
* When refreshing your #GtkSpinButton, the value is
* only displayed if it is valid within the bounds of the spin button's
* adjustment
*/
IF_VALID = 1,
}
alias GtkSpinButtonUpdatePolicy SpinButtonUpdatePolicy;
/**
* The values of the GtkSpinType enumeration are used to specify the
* change to make in gtk_spin_button_spin().
*/
public enum GtkSpinType
{
/**
* Increment by the adjustments step increment.
*/
STEP_FORWARD = 0,
/**
* Decrement by the adjustments step increment.
*/
STEP_BACKWARD = 1,
/**
* Increment by the adjustments page increment.
*/
PAGE_FORWARD = 2,
/**
* Decrement by the adjustments page increment.
*/
PAGE_BACKWARD = 3,
/**
* Go to the adjustments lower bound.
*/
HOME = 4,
/**
* Go to the adjustments upper bound.
*/
END = 5,
/**
* Change by a specified amount.
*/
USER_DEFINED = 6,
}
alias GtkSpinType SpinType;
/**
* These enumeration values describe the possible transitions
* between pages in a #GtkStack widget.
*
* New values may be added to this enumeration over time.
*/
public enum GtkStackTransitionType
{
/**
* No transition
*/
NONE = 0,
/**
* A cross-fade
*/
CROSSFADE = 1,
/**
* Slide from left to right
*/
SLIDE_RIGHT = 2,
/**
* Slide from right to left
*/
SLIDE_LEFT = 3,
/**
* Slide from bottom up
*/
SLIDE_UP = 4,
/**
* Slide from top down
*/
SLIDE_DOWN = 5,
/**
* Slide from left or right according to the children order
*/
SLIDE_LEFT_RIGHT = 6,
/**
* Slide from top down or bottom up according to the order
*/
SLIDE_UP_DOWN = 7,
/**
* Cover the old page by sliding up. Since 3.12
*/
OVER_UP = 8,
/**
* Cover the old page by sliding down. Since: 3.12
*/
OVER_DOWN = 9,
/**
* Cover the old page by sliding to the left. Since: 3.12
*/
OVER_LEFT = 10,
/**
* Cover the old page by sliding to the right. Since: 3.12
*/
OVER_RIGHT = 11,
/**
* Uncover the new page by sliding up. Since 3.12
*/
UNDER_UP = 12,
/**
* Uncover the new page by sliding down. Since: 3.12
*/
UNDER_DOWN = 13,
/**
* Uncover the new page by sliding to the left. Since: 3.12
*/
UNDER_LEFT = 14,
/**
* Uncover the new page by sliding to the right. Since: 3.12
*/
UNDER_RIGHT = 15,
/**
* Cover the old page sliding up or uncover the new page sliding down, according to order. Since: 3.12
*/
OVER_UP_DOWN = 16,
/**
* Cover the old page sliding down or uncover the new page sliding up, according to order. Since: 3.14
*/
OVER_DOWN_UP = 17,
/**
* Cover the old page sliding left or uncover the new page sliding right, according to order. Since: 3.14
*/
OVER_LEFT_RIGHT = 18,
/**
* Cover the old page sliding right or uncover the new page sliding left, according to order. Since: 3.14
*/
OVER_RIGHT_LEFT = 19,
}
alias GtkStackTransitionType StackTransitionType;
/**
* Describes a widget state. Widget states are used to match the widget
* against CSS pseudo-classes. Note that GTK extends the regular CSS
* classes and sometimes uses different names.
*/
public enum GtkStateFlags
{
/**
* State during normal operation.
*/
NORMAL = 0,
/**
* Widget is active.
*/
ACTIVE = 1,
/**
* Widget has a mouse pointer over it.
*/
PRELIGHT = 2,
/**
* Widget is selected.
*/
SELECTED = 4,
/**
* Widget is insensitive.
*/
INSENSITIVE = 8,
/**
* Widget is inconsistent.
*/
INCONSISTENT = 16,
/**
* Widget has the keyboard focus.
*/
FOCUSED = 32,
/**
* Widget is in a background toplevel window.
*/
BACKDROP = 64,
/**
* Widget is in left-to-right text direction. Since 3.8
*/
DIR_LTR = 128,
/**
* Widget is in right-to-left text direction. Since 3.8
*/
DIR_RTL = 256,
/**
* Widget is a link. Since 3.12
*/
LINK = 512,
/**
* The location the widget points to has already been visited. Since 3.12
*/
VISITED = 1024,
/**
* Widget is checked. Since 3.14
*/
CHECKED = 2048,
/**
* Widget is highlighted as a drop target for DND. Since 3.20
*/
DROP_ACTIVE = 4096,
}
alias GtkStateFlags StateFlags;
/**
* This type indicates the current state of a widget; the state determines how
* the widget is drawn. The #GtkStateType enumeration is also used to
* identify different colors in a #GtkStyle for drawing, so states can be
* used for subparts of a widget as well as entire widgets.
*
* Deprecated: All APIs that are using this enumeration have been deprecated
* in favor of alternatives using #GtkStateFlags.
*/
public enum GtkStateType
{
/**
* State during normal operation.
*/
NORMAL = 0,
/**
* State of a currently active widget, such as a depressed button.
*/
ACTIVE = 1,
/**
* State indicating that the mouse pointer is over
* the widget and the widget will respond to mouse clicks.
*/
PRELIGHT = 2,
/**
* State of a selected item, such the selected row in a list.
*/
SELECTED = 3,
/**
* State indicating that the widget is
* unresponsive to user actions.
*/
INSENSITIVE = 4,
/**
* The widget is inconsistent, such as checkbuttons
* or radiobuttons that aren’t either set to %TRUE nor %FALSE,
* or buttons requiring the user attention.
*/
INCONSISTENT = 5,
/**
* The widget has the keyboard focus.
*/
FOCUSED = 6,
}
alias GtkStateType StateType;
/**
* Flags that modify the behavior of gtk_style_context_to_string().
* New values may be added to this enumeration.
*/
public enum GtkStyleContextPrintFlags
{
NONE = 0,
/**
* Print the entire tree of
* CSS nodes starting at the style context's node
*/
RECURSE = 1,
/**
* Show the values of the
* CSS properties for each node
*/
SHOW_STYLE = 2,
}
alias GtkStyleContextPrintFlags StyleContextPrintFlags;
/**
* The #GtkTargetFlags enumeration is used to specify
* constraints on a #GtkTargetEntry.
*/
public enum GtkTargetFlags
{
/**
* If this is set, the target will only be selected
* for drags within a single application.
*/
SAME_APP = 1,
/**
* If this is set, the target will only be selected
* for drags within a single widget.
*/
SAME_WIDGET = 2,
/**
* If this is set, the target will not be selected
* for drags within a single application.
*/
OTHER_APP = 4,
/**
* If this is set, the target will not be selected
* for drags withing a single widget.
*/
OTHER_WIDGET = 8,
}
alias GtkTargetFlags TargetFlags;
/**
* These values are used as “info” for the targets contained in the
* lists returned by gtk_text_buffer_get_copy_target_list() and
* gtk_text_buffer_get_paste_target_list().
*
* The values counts down from `-1` to avoid clashes
* with application added drag destinations which usually start at 0.
*/
public enum GtkTextBufferTargetInfo
{
/**
* Buffer contents
*/
BUFFER_CONTENTS = -1,
/**
* Rich text
*/
RICH_TEXT = -2,
/**
* Text
*/
TEXT = -3,
}
alias GtkTextBufferTargetInfo TextBufferTargetInfo;
/**
* Reading directions for text.
*/
public enum GtkTextDirection
{
/**
* No direction.
*/
NONE = 0,
/**
* Left to right text direction.
*/
LTR = 1,
/**
* Right to left text direction.
*/
RTL = 2,
}
alias GtkTextDirection TextDirection;
/**
* Granularity types that extend the text selection. Use the
* #GtkTextView::extend-selection signal to customize the selection.
*
* Since: 3.16
*/
public enum GtkTextExtendSelection
{
/**
* Selects the current word. It is triggered by
* a double-click for example.
*/
WORD = 0,
/**
* Selects the current line. It is triggered by
* a triple-click for example.
*/
LINE = 1,
}
alias GtkTextExtendSelection TextExtendSelection;
/**
* Flags affecting how a search is done.
*
* If neither #GTK_TEXT_SEARCH_VISIBLE_ONLY nor #GTK_TEXT_SEARCH_TEXT_ONLY are
* enabled, the match must be exact; the special 0xFFFC character will match
* embedded pixbufs or child widgets.
*/
public enum GtkTextSearchFlags
{
/**
* Search only visible data. A search match may
* have invisible text interspersed.
*/
VISIBLE_ONLY = 1,
/**
* Search only text. A match may have pixbufs or
* child widgets mixed inside the matched range.
*/
TEXT_ONLY = 2,
/**
* The text will be matched regardless of
* what case it is in.
*/
CASE_INSENSITIVE = 4,
}
alias GtkTextSearchFlags TextSearchFlags;
/**
* Used to reference the layers of #GtkTextView for the purpose of customized
* drawing with the ::draw_layer vfunc.
*/
public enum GtkTextViewLayer
{
/**
* Old deprecated layer, use %GTK_TEXT_VIEW_LAYER_BELOW_TEXT instead
*/
BELOW = 0,
/**
* Old deprecated layer, use %GTK_TEXT_VIEW_LAYER_ABOVE_TEXT instead
*/
ABOVE = 1,
/**
* The layer rendered below the text (but above the background). Since: 3.20
*/
BELOW_TEXT = 2,
/**
* The layer rendered above the text. Since: 3.20
*/
ABOVE_TEXT = 3,
}
alias GtkTextViewLayer TextViewLayer;
/**
* Used to reference the parts of #GtkTextView.
*/
public enum GtkTextWindowType
{
PRIVATE = 0,
/**
* Window that floats over scrolling areas.
*/
WIDGET = 1,
/**
* Scrollable text window.
*/
TEXT = 2,
/**
* Left side border window.
*/
LEFT = 3,
/**
* Right side border window.
*/
RIGHT = 4,
/**
* Top border window.
*/
TOP = 5,
/**
* Bottom border window.
*/
BOTTOM = 6,
}
alias GtkTextWindowType TextWindowType;
/**
* Flags used to specify the supported drag targets.
*/
public enum GtkToolPaletteDragTargets
{
/**
* Support drag of items.
*/
ITEMS = 1,
/**
* Support drag of groups.
*/
GROUPS = 2,
}
alias GtkToolPaletteDragTargets ToolPaletteDragTargets;
/**
* Whether spacers are vertical lines or just blank.
*/
public enum GtkToolbarSpaceStyle
{
/**
* Use blank spacers.
*/
EMPTY = 0,
/**
* Use vertical lines for spacers.
*/
LINE = 1,
}
alias GtkToolbarSpaceStyle ToolbarSpaceStyle;
/**
* Used to customize the appearance of a #GtkToolbar. Note that
* setting the toolbar style overrides the user’s preferences
* for the default toolbar style. Note that if the button has only
* a label set and GTK_TOOLBAR_ICONS is used, the label will be
* visible, and vice versa.
*/
public enum GtkToolbarStyle
{
/**
* Buttons display only icons in the toolbar.
*/
ICONS = 0,
/**
* Buttons display only text labels in the toolbar.
*/
TEXT = 1,
/**
* Buttons display text and icons in the toolbar.
*/
BOTH = 2,
/**
* Buttons display icons and text alongside each
* other, rather than vertically stacked
*/
BOTH_HORIZ = 3,
}
alias GtkToolbarStyle ToolbarStyle;
/**
* These flags indicate various properties of a #GtkTreeModel.
*
* They are returned by gtk_tree_model_get_flags(), and must be
* static for the lifetime of the object. A more complete description
* of #GTK_TREE_MODEL_ITERS_PERSIST can be found in the overview of
* this section.
*/
public enum GtkTreeModelFlags
{
/**
* iterators survive all signals
* emitted by the tree
*/
ITERS_PERSIST = 1,
/**
* the model is a list only, and never
* has children
*/
LIST_ONLY = 2,
}
alias GtkTreeModelFlags TreeModelFlags;
/**
* The sizing method the column uses to determine its width. Please note
* that @GTK_TREE_VIEW_COLUMN_AUTOSIZE are inefficient for large views, and
* can make columns appear choppy.
*/
public enum GtkTreeViewColumnSizing
{
/**
* Columns only get bigger in reaction to changes in the model
*/
GROW_ONLY = 0,
/**
* Columns resize to be the optimal size everytime the model changes.
*/
AUTOSIZE = 1,
/**
* Columns are a fixed numbers of pixels wide.
*/
FIXED = 2,
}
alias GtkTreeViewColumnSizing TreeViewColumnSizing;
/**
* An enum for determining where a dropped row goes.
*/
public enum GtkTreeViewDropPosition
{
/**
* dropped row is inserted before
*/
BEFORE = 0,
/**
* dropped row is inserted after
*/
AFTER = 1,
/**
* dropped row becomes a child or is inserted before
*/
INTO_OR_BEFORE = 2,
/**
* dropped row becomes a child or is inserted after
*/
INTO_OR_AFTER = 3,
}
alias GtkTreeViewDropPosition TreeViewDropPosition;
/**
* Used to indicate which grid lines to draw in a tree view.
*/
public enum GtkTreeViewGridLines
{
/**
* No grid lines.
*/
NONE = 0,
/**
* Horizontal grid lines.
*/
HORIZONTAL = 1,
/**
* Vertical grid lines.
*/
VERTICAL = 2,
/**
* Horizontal and vertical grid lines.
*/
BOTH = 3,
}
alias GtkTreeViewGridLines TreeViewGridLines;
/**
* These enumeration values are used by gtk_ui_manager_add_ui() to determine
* what UI element to create.
*/
public enum GtkUIManagerItemType
{
/**
* Pick the type of the UI element according to context.
*/
AUTO = 0,
/**
* Create a menubar.
*/
MENUBAR = 1,
/**
* Create a menu.
*/
MENU = 2,
/**
* Create a toolbar.
*/
TOOLBAR = 4,
/**
* Insert a placeholder.
*/
PLACEHOLDER = 8,
/**
* Create a popup menu.
*/
POPUP = 16,
/**
* Create a menuitem.
*/
MENUITEM = 32,
/**
* Create a toolitem.
*/
TOOLITEM = 64,
/**
* Create a separator.
*/
SEPARATOR = 128,
/**
* Install an accelerator.
*/
ACCELERATOR = 256,
/**
* Same as %GTK_UI_MANAGER_POPUP, but the
* actions’ accelerators are shown.
*/
POPUP_WITH_ACCELS = 512,
}
alias GtkUIManagerItemType UIManagerItemType;
/**
* See also gtk_print_settings_set_paper_width().
*/
public enum GtkUnit
{
/**
* No units.
*/
NONE = 0,
/**
* Dimensions in points.
*/
POINTS = 1,
/**
* Dimensions in inches.
*/
INCH = 2,
/**
* Dimensions in millimeters
*/
MM = 3,
}
alias GtkUnit Unit;
/**
* Kinds of widget-specific help. Used by the ::show-help signal.
*/
public enum GtkWidgetHelpType
{
/**
* Tooltip.
*/
TOOLTIP = 0,
/**
* What’s this.
*/
WHATS_THIS = 1,
}
alias GtkWidgetHelpType WidgetHelpType;
/**
* Window placement can be influenced using this enumeration. Note that
* using #GTK_WIN_POS_CENTER_ALWAYS is almost always a bad idea.
* It won’t necessarily work well with all window managers or on all windowing systems.
*/
public enum GtkWindowPosition
{
/**
* No influence is made on placement.
*/
NONE = 0,
/**
* Windows should be placed in the center of the screen.
*/
CENTER = 1,
/**
* Windows should be placed at the current mouse position.
*/
MOUSE = 2,
/**
* Keep window centered as it changes size, etc.
*/
CENTER_ALWAYS = 3,
/**
* Center the window on its transient
* parent (see gtk_window_set_transient_for()).
*/
CENTER_ON_PARENT = 4,
}
alias GtkWindowPosition WindowPosition;
/**
* A #GtkWindow can be one of these types. Most things you’d consider a
* “window” should have type #GTK_WINDOW_TOPLEVEL; windows with this type
* are managed by the window manager and have a frame by default (call
* gtk_window_set_decorated() to toggle the frame). Windows with type
* #GTK_WINDOW_POPUP are ignored by the window manager; window manager
* keybindings won’t work on them, the window manager won’t decorate the
* window with a frame, many GTK+ features that rely on the window
* manager will not work (e.g. resize grips and
* maximization/minimization). #GTK_WINDOW_POPUP is used to implement
* widgets such as #GtkMenu or tooltips that you normally don’t think of
* as windows per se. Nearly all windows should be #GTK_WINDOW_TOPLEVEL.
* In particular, do not use #GTK_WINDOW_POPUP just to turn off
* the window borders; use gtk_window_set_decorated() for that.
*/
public enum GtkWindowType
{
/**
* A regular window, such as a dialog.
*/
TOPLEVEL = 0,
/**
* A special window such as a tooltip.
*/
POPUP = 1,
}
alias GtkWindowType WindowType;
/**
* Describes a type of line wrapping.
*/
public enum GtkWrapMode
{
/**
* do not wrap lines; just make the text area wider
*/
NONE = 0,
/**
* wrap text, breaking lines anywhere the cursor can
* appear (between characters, usually - if you want to be technical,
* between graphemes, see pango_get_log_attrs())
*/
CHAR = 1,
/**
* wrap text, breaking lines in between words
*/
WORD = 2,
/**
* wrap text, breaking lines in between words, or if
* that is not enough, also between graphemes
*/
WORD_CHAR = 3,
}
alias GtkWrapMode WrapMode;
struct GtkAboutDialog
{
GtkDialog parentInstance;
GtkAboutDialogPrivate* priv;
}
struct GtkAboutDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) int function(GtkAboutDialog* dialog, const(char)* uri) activateLink;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAboutDialogPrivate;
struct GtkAccelGroup
{
GObject parent;
GtkAccelGroupPrivate* priv;
}
struct GtkAccelGroupClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkAccelGroup* accelGroup, uint keyval, GdkModifierType modifier, GClosure* accelClosure) accelChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAccelGroupEntry
{
GtkAccelKey key;
GClosure* closure;
GQuark accelPathQuark;
}
struct GtkAccelGroupPrivate;
struct GtkAccelKey
{
/**
* The accelerator keyval
*/
uint accelKey;
/**
* The accelerator modifiers
*/
GdkModifierType accelMods;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "accelFlags", 16,
uint, "", 16
));
}
struct GtkAccelLabel
{
GtkLabel label;
GtkAccelLabelPrivate* priv;
}
struct GtkAccelLabelClass
{
GtkLabelClass parentClass;
char* signalQuote1;
char* signalQuote2;
char* modNameShift;
char* modNameControl;
char* modNameAlt;
char* modSeparator;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAccelLabelPrivate;
struct GtkAccelMap;
struct GtkAccelMapClass;
struct GtkAccessible
{
AtkObject parent;
GtkAccessiblePrivate* priv;
}
struct GtkAccessibleClass
{
AtkObjectClass parentClass;
/** */
extern(C) void function(GtkAccessible* accessible) connectWidgetDestroyed;
/** */
extern(C) void function(GtkAccessible* accessible) widgetSet;
/** */
extern(C) void function(GtkAccessible* accessible) widgetUnset;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAccessiblePrivate;
struct GtkAction
{
GObject object;
GtkActionPrivate* privateData;
}
struct GtkActionBar
{
GtkBin bin;
}
struct GtkActionBarClass
{
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkActionBarPrivate;
struct GtkActionClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkAction* action) activate;
GType menuItemType;
GType toolbarItemType;
/**
*
* Params:
* action = the action object
* Returns: a menu item connected to the action.
*/
extern(C) GtkWidget* function(GtkAction* action) createMenuItem;
/**
*
* Params:
* action = the action object
* Returns: a toolbar item connected to the action.
*/
extern(C) GtkWidget* function(GtkAction* action) createToolItem;
/** */
extern(C) void function(GtkAction* action, GtkWidget* proxy) connectProxy;
/** */
extern(C) void function(GtkAction* action, GtkWidget* proxy) disconnectProxy;
/**
*
* Params:
* action = a #GtkAction
* Returns: the menu item provided by the
* action, or %NULL.
*/
extern(C) GtkWidget* function(GtkAction* action) createMenu;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
/**
* #GtkActionEntry structs are used with gtk_action_group_add_actions() to
* construct actions.
*/
struct GtkActionEntry
{
/**
* The name of the action.
*/
const(char)* name;
/**
* The stock id for the action, or the name of an icon from the
* icon theme.
*/
const(char)* stockId;
/**
* The label for the action. This field should typically be marked
* for translation, see gtk_action_group_set_translation_domain(). If
* @label is %NULL, the label of the stock item with id @stock_id is used.
*/
const(char)* label;
/**
* The accelerator for the action, in the format understood by
* gtk_accelerator_parse().
*/
const(char)* accelerator;
/**
* The tooltip for the action. This field should typically be
* marked for translation, see gtk_action_group_set_translation_domain().
*/
const(char)* tooltip;
/**
* The function to call when the action is activated.
*/
GCallback callback;
}
struct GtkActionGroup
{
GObject parent;
GtkActionGroupPrivate* priv;
}
struct GtkActionGroupClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/**
*
* Params:
* actionGroup = the action group
* actionName = the name of the action
* Returns: the action, or %NULL if no action by that name exists
*/
extern(C) GtkAction* function(GtkActionGroup* actionGroup, const(char)* actionName) getAction;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkActionGroupPrivate;
struct GtkActionPrivate;
struct GtkActionable;
/**
* The interface vtable for #GtkActionable.
*/
struct GtkActionableInterface
{
GTypeInterface gIface;
/**
*
* Params:
* actionable = a #GtkActionable widget
* Returns: the action name, or %NULL if none is set
*/
extern(C) const(char)* function(GtkActionable* actionable) getActionName;
/** */
extern(C) void function(GtkActionable* actionable, const(char)* actionName) setActionName;
/**
*
* Params:
* actionable = a #GtkActionable widget
* Returns: the current target value
*/
extern(C) GVariant* function(GtkActionable* actionable) getActionTargetValue;
/** */
extern(C) void function(GtkActionable* actionable, GVariant* targetValue) setActionTargetValue;
}
struct GtkActivatable;
/**
* > This method can be called with a %NULL action at times.
*
* Since: 2.16
*/
struct GtkActivatableIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkActivatable* activatable, GtkAction* action, const(char)* propertyName) update;
/** */
extern(C) void function(GtkActivatable* activatable, GtkAction* action) syncActionProperties;
}
struct GtkAdjustment
{
GObject parentInstance;
GtkAdjustmentPrivate* priv;
}
struct GtkAdjustmentClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkAdjustment* adjustment) changed;
/** */
extern(C) void function(GtkAdjustment* adjustment) valueChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAdjustmentPrivate;
struct GtkAlignment
{
GtkBin bin;
GtkAlignmentPrivate* priv;
}
struct GtkAlignmentClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAlignmentPrivate;
struct GtkAppChooser;
struct GtkAppChooserButton
{
GtkComboBox parent;
GtkAppChooserButtonPrivate* priv;
}
struct GtkAppChooserButtonClass
{
/**
* The parent class.
*/
GtkComboBoxClass parentClass;
/** */
extern(C) void function(GtkAppChooserButton* self, const(char)* itemName) customItemActivated;
void*[16] padding;
}
struct GtkAppChooserButtonPrivate;
struct GtkAppChooserDialog
{
GtkDialog parent;
GtkAppChooserDialogPrivate* priv;
}
struct GtkAppChooserDialogClass
{
/**
* The parent class.
*/
GtkDialogClass parentClass;
void*[16] padding;
}
struct GtkAppChooserDialogPrivate;
struct GtkAppChooserWidget
{
GtkBox parent;
GtkAppChooserWidgetPrivate* priv;
}
struct GtkAppChooserWidgetClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function(GtkAppChooserWidget* self, GAppInfo* appInfo) applicationSelected;
/** */
extern(C) void function(GtkAppChooserWidget* self, GAppInfo* appInfo) applicationActivated;
/** */
extern(C) void function(GtkAppChooserWidget* self, GtkMenu* menu, GAppInfo* appInfo) populatePopup;
void*[16] padding;
}
struct GtkAppChooserWidgetPrivate;
struct GtkApplication
{
GApplication parent;
GtkApplicationPrivate* priv;
}
struct GtkApplicationClass
{
/**
* The parent class.
*/
GApplicationClass parentClass;
/** */
extern(C) void function(GtkApplication* application, GtkWindow* window) windowAdded;
/** */
extern(C) void function(GtkApplication* application, GtkWindow* window) windowRemoved;
void*[12] padding;
}
struct GtkApplicationPrivate;
struct GtkApplicationWindow
{
GtkWindow parentInstance;
GtkApplicationWindowPrivate* priv;
}
struct GtkApplicationWindowClass
{
/**
* The parent class.
*/
GtkWindowClass parentClass;
void*[14] padding;
}
struct GtkApplicationWindowPrivate;
struct GtkArrow
{
GtkMisc misc;
GtkArrowPrivate* priv;
}
struct GtkArrowAccessible
{
GtkWidgetAccessible parent;
GtkArrowAccessiblePrivate* priv;
}
struct GtkArrowAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkArrowAccessiblePrivate;
struct GtkArrowClass
{
GtkMiscClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkArrowPrivate;
struct GtkAspectFrame
{
GtkFrame frame;
GtkAspectFramePrivate* priv;
}
struct GtkAspectFrameClass
{
/**
* The parent class.
*/
GtkFrameClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkAspectFramePrivate;
struct GtkAssistant
{
GtkWindow parent;
GtkAssistantPrivate* priv;
}
struct GtkAssistantClass
{
/**
* The parent class.
*/
GtkWindowClass parentClass;
/** */
extern(C) void function(GtkAssistant* assistant, GtkWidget* page) prepare;
/** */
extern(C) void function(GtkAssistant* assistant) apply;
/** */
extern(C) void function(GtkAssistant* assistant) close;
/** */
extern(C) void function(GtkAssistant* assistant) cancel;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
}
struct GtkAssistantPrivate;
struct GtkBin
{
GtkContainer container;
GtkBinPrivate* priv;
}
struct GtkBinClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkBinPrivate;
/**
* A #GtkBindingArg holds the data associated with
* an argument for a key binding signal emission as
* stored in #GtkBindingSignal.
*/
struct GtkBindingArg
{
/**
* implementation detail
*/
GType argType;
union D
{
glong longData;
double doubleData;
char* stringData;
}
D d;
}
/**
* Each key binding element of a binding sets binding list is
* represented by a GtkBindingEntry.
*/
struct GtkBindingEntry
{
/**
* key value to match
*/
uint keyval;
/**
* key modifiers to match
*/
GdkModifierType modifiers;
/**
* binding set this entry belongs to
*/
GtkBindingSet* bindingSet;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "destroyed", 1,
uint, "inEmission", 1,
uint, "marksUnbound", 1,
uint, "", 29
));
/**
* linked list of entries maintained by binding set
*/
GtkBindingEntry* setNext;
/**
* implementation detail
*/
GtkBindingEntry* hashNext;
/**
* action signals of this entry
*/
GtkBindingSignal* signals;
}
struct GtkBindingSet
{
/**
* unique name of this binding set
*/
char* setName;
/**
* unused
*/
int priority;
/**
* unused
*/
GSList* widgetPathPspecs;
/**
* unused
*/
GSList* widgetClassPspecs;
/**
* unused
*/
GSList* classBranchPspecs;
/**
* the key binding entries in this binding set
*/
GtkBindingEntry* entries;
/**
* implementation detail
*/
GtkBindingEntry* current;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "parsed", 1,
uint, "", 31
));
}
/**
* A GtkBindingSignal stores the necessary information to
* activate a widget in response to a key press via a signal
* emission.
*/
struct GtkBindingSignal
{
/**
* implementation detail
*/
GtkBindingSignal* next;
/**
* the action signal to be emitted
*/
char* signalName;
/**
* number of arguments specified for the signal
*/
uint nArgs;
/**
* the arguments specified for the signal
*/
GtkBindingArg* args;
}
struct GtkBooleanCellAccessible
{
GtkRendererCellAccessible parent;
GtkBooleanCellAccessiblePrivate* priv;
}
struct GtkBooleanCellAccessibleClass
{
GtkRendererCellAccessibleClass parentClass;
}
struct GtkBooleanCellAccessiblePrivate;
struct GtkBorder
{
/**
* The width of the left border
*/
short left;
/**
* The width of the right border
*/
short right;
/**
* The width of the top border
*/
short top;
/**
* The width of the bottom border
*/
short bottom;
}
struct GtkBox
{
GtkContainer container;
GtkBoxPrivate* priv;
}
struct GtkBoxClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkBoxPrivate;
struct GtkBuildable;
/**
* The #GtkBuildableIface interface contains method that are
* necessary to allow #GtkBuilder to construct an object from
* a #GtkBuilder UI definition.
*/
struct GtkBuildableIface
{
/**
* the parent class
*/
GTypeInterface gIface;
/** */
extern(C) void function(GtkBuildable* buildable, const(char)* name) setName;
/**
*
* Params:
* buildable = a #GtkBuildable
* Returns: the name set with gtk_buildable_set_name()
*/
extern(C) const(char)* function(GtkBuildable* buildable) getName;
/** */
extern(C) void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* type) addChild;
/** */
extern(C) void function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* name, GValue* value) setBuildableProperty;
/**
*
* Params:
* buildable = A #GtkBuildable
* builder = #GtkBuilder used to construct this object
* name = name of child to construct
* Returns: the constructed child
*/
extern(C) GObject* function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* name) constructChild;
/**
*
* Params:
* buildable = a #GtkBuildable
* builder = a #GtkBuilder used to construct this object
* child = child object or %NULL for non-child tags
* tagname = name of tag
* parser = a #GMarkupParser to fill in
* data = return location for user data that will be passed in
* to parser functions
* Returns: %TRUE if a object has a custom implementation, %FALSE
* if it doesn't.
*/
extern(C) int function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, GMarkupParser* parser, void** data) customTagStart;
/** */
extern(C) void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, void** data) customTagEnd;
/** */
extern(C) void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, void* data) customFinished;
/** */
extern(C) void function(GtkBuildable* buildable, GtkBuilder* builder) parserFinished;
/**
*
* Params:
* buildable = a #GtkBuildable
* builder = a #GtkBuilder
* childname = name of child
* Returns: the internal child of the buildable object
*/
extern(C) GObject* function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* childname) getInternalChild;
}
struct GtkBuilder
{
GObject parentInstance;
GtkBuilderPrivate* priv;
}
struct GtkBuilderClass
{
GObjectClass parentClass;
/**
*
* Params:
* builder = a #GtkBuilder
* typeName = type name to lookup
* Returns: the #GType found for @type_name or #G_TYPE_INVALID
* if no type was found
*/
extern(C) GType function(GtkBuilder* builder, const(char)* typeName) getTypeFromName;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkBuilderPrivate;
struct GtkButton
{
GtkBin bin;
GtkButtonPrivate* priv;
}
struct GtkButtonAccessible
{
GtkContainerAccessible parent;
GtkButtonAccessiblePrivate* priv;
}
struct GtkButtonAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkButtonAccessiblePrivate;
struct GtkButtonBox
{
GtkBox box;
GtkButtonBoxPrivate* priv;
}
struct GtkButtonBoxClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkButtonBoxPrivate;
struct GtkButtonClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkButton* button) pressed;
/** */
extern(C) void function(GtkButton* button) released;
/** */
extern(C) void function(GtkButton* button) clicked;
/** */
extern(C) void function(GtkButton* button) enter;
/** */
extern(C) void function(GtkButton* button) leave;
/** */
extern(C) void function(GtkButton* button) activate;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkButtonPrivate;
struct GtkCalendar
{
GtkWidget widget;
GtkCalendarPrivate* priv;
}
struct GtkCalendarClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkCalendar* calendar) monthChanged;
/** */
extern(C) void function(GtkCalendar* calendar) daySelected;
/** */
extern(C) void function(GtkCalendar* calendar) daySelectedDoubleClick;
/** */
extern(C) void function(GtkCalendar* calendar) prevMonth;
/** */
extern(C) void function(GtkCalendar* calendar) nextMonth;
/** */
extern(C) void function(GtkCalendar* calendar) prevYear;
/** */
extern(C) void function(GtkCalendar* calendar) nextYear;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCalendarPrivate;
struct GtkCellAccessible
{
GtkAccessible parent;
GtkCellAccessiblePrivate* priv;
}
struct GtkCellAccessibleClass
{
GtkAccessibleClass parentClass;
/** */
extern(C) void function(GtkCellAccessible* cell, int emitSignal) updateCache;
}
struct GtkCellAccessibleParent;
struct GtkCellAccessibleParentIface
{
GTypeInterface parent;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, int* x, int* y, int* width, int* height, AtkCoordType coordType) getCellExtents;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, GdkRectangle* cellRect) getCellArea;
/** */
extern(C) int function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) grabFocus;
/** */
extern(C) int function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) getChildIndex;
/** */
extern(C) GtkCellRendererState function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) getRendererState;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) expandCollapse;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) activate;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) edit;
/** */
extern(C) void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, AtkRelationSet* relationset) updateRelationset;
}
struct GtkCellAccessiblePrivate;
struct GtkCellArea
{
GObject parentInstance;
GtkCellAreaPrivate* priv;
}
struct GtkCellAreaBox
{
GtkCellArea parentInstance;
GtkCellAreaBoxPrivate* priv;
}
struct GtkCellAreaBoxClass
{
GtkCellAreaClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellAreaBoxPrivate;
struct GtkCellAreaClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkCellArea* area, GtkCellRenderer* renderer) add;
/** */
extern(C) void function(GtkCellArea* area, GtkCellRenderer* renderer) remove;
/** */
extern(C) void function(GtkCellArea* area, GtkCellCallback callback, void* callbackData) foreac;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkRectangle* cellArea, GdkRectangle* backgroundArea, GtkCellAllocCallback callback, void* callbackData) foreachAlloc;
/**
*
* Params:
* area = a #GtkCellArea
* context = the #GtkCellAreaContext for this row of data.
* widget = the #GtkWidget that @area is rendering to
* event = the #GdkEvent to handle
* cellArea = the @widget relative coordinates for @area
* flags = the #GtkCellRendererState for @area in this row.
* Returns: %TRUE if the event was handled by @area.
*/
extern(C) int function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkEvent* event, GdkRectangle* cellArea, GtkCellRendererState flags) event;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, cairo_t* cr, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags, int paintFocus) render;
/** */
extern(C) void function(GtkCellArea* area, GtkTreeModel* treeModel, GtkTreeIter* iter, int isExpander, int isExpanded) applyAttributes;
/**
*
* Params:
* area = a #GtkCellArea
* Returns: a newly created #GtkCellAreaContext which can be used with @area.
*/
extern(C) GtkCellAreaContext* function(GtkCellArea* area) createContext;
/**
*
* Params:
* area = a #GtkCellArea
* context = the #GtkCellAreaContext to copy
* Returns: a newly created #GtkCellAreaContext copy of @context.
*/
extern(C) GtkCellAreaContext* function(GtkCellArea* area, GtkCellAreaContext* context) copyContext;
/**
*
* Params:
* area = a #GtkCellArea
* Returns: The #GtkSizeRequestMode preferred by @area.
*/
extern(C) GtkSizeRequestMode function(GtkCellArea* area) getRequestMode;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int* minimumWidth, int* naturalWidth) getPreferredWidth;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) getPreferredHeightForWidth;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int* minimumHeight, int* naturalHeight) getPreferredHeight;
/** */
extern(C) void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) getPreferredWidthForHeight;
/** */
extern(C) void function(GtkCellArea* area, GtkCellRenderer* renderer, uint propertyId, GValue* value, GParamSpec* pspec) setCellProperty;
/** */
extern(C) void function(GtkCellArea* area, GtkCellRenderer* renderer, uint propertyId, GValue* value, GParamSpec* pspec) getCellProperty;
/**
*
* Params:
* area = a #GtkCellArea
* direction = the #GtkDirectionType
* Returns: %TRUE if focus remains inside @area as a result of this call.
*/
extern(C) int function(GtkCellArea* area, GtkDirectionType direction) focus;
/**
*
* Params:
* area = a #GtkCellArea
* Returns: whether @area can do anything when activated.
*/
extern(C) int function(GtkCellArea* area) isActivatable;
/**
*
* Params:
* area = a #GtkCellArea
* context = the #GtkCellAreaContext in context with the current row data
* widget = the #GtkWidget that @area is rendering on
* cellArea = the size and location of @area relative to @widget’s allocation
* flags = the #GtkCellRendererState flags for @area for this row of data.
* editOnly = if %TRUE then only cell renderers that are %GTK_CELL_RENDERER_MODE_EDITABLE
* will be activated.
* Returns: Whether @area was successfully activated.
*/
extern(C) int function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkRectangle* cellArea, GtkCellRendererState flags, int editOnly) activate;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkCellAreaContext
{
GObject parentInstance;
GtkCellAreaContextPrivate* priv;
}
struct GtkCellAreaContextClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkCellAreaContext* context, int width, int height) allocate;
/** */
extern(C) void function(GtkCellAreaContext* context) reset;
/** */
extern(C) void function(GtkCellAreaContext* context, int width, int* minimumHeight, int* naturalHeight) getPreferredHeightForWidth;
/** */
extern(C) void function(GtkCellAreaContext* context, int height, int* minimumWidth, int* naturalWidth) getPreferredWidthForHeight;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
}
struct GtkCellAreaContextPrivate;
struct GtkCellAreaPrivate;
struct GtkCellEditable;
struct GtkCellEditableIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkCellEditable* cellEditable) editingDone;
/** */
extern(C) void function(GtkCellEditable* cellEditable) removeWidget;
/** */
extern(C) void function(GtkCellEditable* cellEditable, GdkEvent* event) startEditing;
}
struct GtkCellLayout;
struct GtkCellLayoutIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int expand) packStart;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int expand) packEnd;
/** */
extern(C) void function(GtkCellLayout* cellLayout) clear;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, const(char)* attribute, int column) addAttribute;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, GtkCellLayoutDataFunc func, void* funcData, GDestroyNotify destroy) setCellDataFunc;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell) clearAttributes;
/** */
extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int position) reorder;
/**
*
* Params:
* cellLayout = a #GtkCellLayout
* Returns: a list of cell renderers. The list, but not the renderers has
* been newly allocated and should be freed with g_list_free()
* when no longer needed.
*/
extern(C) GList* function(GtkCellLayout* cellLayout) getCells;
/**
*
* Params:
* cellLayout = a #GtkCellLayout
* Returns: the cell area used by @cell_layout,
* or %NULL in case no cell area is used.
*/
extern(C) GtkCellArea* function(GtkCellLayout* cellLayout) getArea;
}
struct GtkCellRenderer
{
GObject parentInstance;
GtkCellRendererPrivate* priv;
}
struct GtkCellRendererAccel
{
GtkCellRendererText parent;
GtkCellRendererAccelPrivate* priv;
}
struct GtkCellRendererAccelClass
{
GtkCellRendererTextClass parentClass;
/** */
extern(C) void function(GtkCellRendererAccel* accel, const(char)* pathString, uint accelKey, GdkModifierType accelMods, uint hardwareKeycode) accelEdited;
/** */
extern(C) void function(GtkCellRendererAccel* accel, const(char)* pathString) accelCleared;
/** */
extern(C) void function() GtkReserved0;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererAccelPrivate;
struct GtkCellRendererClass
{
GObjectClass parentClass;
/**
*
* Params:
* cell = a #GtkCellRenderer instance
* Returns: The #GtkSizeRequestMode preferred by this renderer.
*/
extern(C) GtkSizeRequestMode function(GtkCellRenderer* cell) getRequestMode;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, int* minimumSize, int* naturalSize) getPreferredWidth;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) getPreferredHeightForWidth;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, int* minimumSize, int* naturalSize) getPreferredHeight;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) getPreferredWidthForHeight;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, GtkCellRendererState flags, GdkRectangle* cellArea, GdkRectangle* alignedArea) getAlignedArea;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkWidget* widget, GdkRectangle* cellArea, int* xOffset, int* yOffset, int* width, int* height) getSize;
/** */
extern(C) void function(GtkCellRenderer* cell, cairo_t* cr, GtkWidget* widget, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) render;
/**
*
* Params:
* cell = a #GtkCellRenderer
* event = a #GdkEvent
* widget = widget that received the event
* path = widget-dependent string representation of the event location;
* e.g. for #GtkTreeView, a string representation of #GtkTreePath
* backgroundArea = background area as passed to gtk_cell_renderer_render()
* cellArea = cell area as passed to gtk_cell_renderer_render()
* flags = render flags
* Returns: %TRUE if the event was consumed/handled
*/
extern(C) int function(GtkCellRenderer* cell, GdkEvent* event, GtkWidget* widget, const(char)* path, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) activate;
/**
*
* Params:
* cell = a #GtkCellRenderer
* event = a #GdkEvent
* widget = widget that received the event
* path = widget-dependent string representation of the event location;
* e.g. for #GtkTreeView, a string representation of #GtkTreePath
* backgroundArea = background area as passed to gtk_cell_renderer_render()
* cellArea = cell area as passed to gtk_cell_renderer_render()
* flags = render flags
* Returns: A new #GtkCellEditable, or %NULL
*/
extern(C) GtkCellEditable* function(GtkCellRenderer* cell, GdkEvent* event, GtkWidget* widget, const(char)* path, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) startEditing;
/** */
extern(C) void function(GtkCellRenderer* cell) editingCanceled;
/** */
extern(C) void function(GtkCellRenderer* cell, GtkCellEditable* editable, const(char)* path) editingStarted;
GtkCellRendererClassPrivate* priv;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererClassPrivate;
struct GtkCellRendererCombo
{
GtkCellRendererText parent;
GtkCellRendererComboPrivate* priv;
}
struct GtkCellRendererComboClass
{
GtkCellRendererTextClass parent;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererComboPrivate;
struct GtkCellRendererPixbuf
{
GtkCellRenderer parent;
GtkCellRendererPixbufPrivate* priv;
}
struct GtkCellRendererPixbufClass
{
GtkCellRendererClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererPixbufPrivate;
struct GtkCellRendererPrivate;
struct GtkCellRendererProgress
{
GtkCellRenderer parentInstance;
GtkCellRendererProgressPrivate* priv;
}
struct GtkCellRendererProgressClass
{
GtkCellRendererClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererProgressPrivate;
struct GtkCellRendererSpin
{
GtkCellRendererText parent;
GtkCellRendererSpinPrivate* priv;
}
struct GtkCellRendererSpinClass
{
GtkCellRendererTextClass parent;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererSpinPrivate;
struct GtkCellRendererSpinner
{
GtkCellRenderer parent;
GtkCellRendererSpinnerPrivate* priv;
}
struct GtkCellRendererSpinnerClass
{
GtkCellRendererClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererSpinnerPrivate;
struct GtkCellRendererText
{
GtkCellRenderer parent;
GtkCellRendererTextPrivate* priv;
}
struct GtkCellRendererTextClass
{
GtkCellRendererClass parentClass;
/** */
extern(C) void function(GtkCellRendererText* cellRendererText, const(char)* path, const(char)* newText) edited;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererTextPrivate;
struct GtkCellRendererToggle
{
GtkCellRenderer parent;
GtkCellRendererTogglePrivate* priv;
}
struct GtkCellRendererToggleClass
{
GtkCellRendererClass parentClass;
/** */
extern(C) void function(GtkCellRendererToggle* cellRendererToggle, const(char)* path) toggled;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellRendererTogglePrivate;
struct GtkCellView
{
GtkWidget parentInstance;
GtkCellViewPrivate* priv;
}
struct GtkCellViewClass
{
/**
* The parent class.
*/
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCellViewPrivate;
struct GtkCheckButton
{
GtkToggleButton toggleButton;
}
struct GtkCheckButtonClass
{
GtkToggleButtonClass parentClass;
/** */
extern(C) void function(GtkCheckButton* checkButton, cairo_t* cr) drawIndicator;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCheckMenuItem
{
GtkMenuItem menuItem;
GtkCheckMenuItemPrivate* priv;
}
struct GtkCheckMenuItemAccessible
{
GtkMenuItemAccessible parent;
GtkCheckMenuItemAccessiblePrivate* priv;
}
struct GtkCheckMenuItemAccessibleClass
{
GtkMenuItemAccessibleClass parentClass;
}
struct GtkCheckMenuItemAccessiblePrivate;
struct GtkCheckMenuItemClass
{
/**
* The parent class.
*/
GtkMenuItemClass parentClass;
/** */
extern(C) void function(GtkCheckMenuItem* checkMenuItem) toggled;
/** */
extern(C) void function(GtkCheckMenuItem* checkMenuItem, cairo_t* cr) drawIndicator;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCheckMenuItemPrivate;
struct GtkClipboard;
struct GtkColorButton
{
GtkButton button;
GtkColorButtonPrivate* priv;
}
struct GtkColorButtonClass
{
GtkButtonClass parentClass;
/** */
extern(C) void function(GtkColorButton* cp) colorSet;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkColorButtonPrivate;
struct GtkColorChooser;
struct GtkColorChooserDialog
{
GtkDialog parentInstance;
GtkColorChooserDialogPrivate* priv;
}
struct GtkColorChooserDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkColorChooserDialogPrivate;
struct GtkColorChooserInterface
{
GTypeInterface baseInterface;
/** */
extern(C) void function(GtkColorChooser* chooser, GdkRGBA* color) getRgba;
/** */
extern(C) void function(GtkColorChooser* chooser, GdkRGBA* color) setRgba;
/** */
extern(C) void function(GtkColorChooser* chooser, GtkOrientation orientation, int colorsPerLine, int nColors, GdkRGBA* colors) addPalette;
/** */
extern(C) void function(GtkColorChooser* chooser, GdkRGBA* color) colorActivated;
void*[12] padding;
}
struct GtkColorChooserWidget
{
GtkBox parentInstance;
GtkColorChooserWidgetPrivate* priv;
}
struct GtkColorChooserWidgetClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkColorChooserWidgetPrivate;
struct GtkColorSelection
{
GtkBox parentInstance;
GtkColorSelectionPrivate* privateData;
}
struct GtkColorSelectionClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function(GtkColorSelection* colorSelection) colorChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkColorSelectionDialog
{
GtkDialog parentInstance;
GtkColorSelectionDialogPrivate* priv;
}
struct GtkColorSelectionDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkColorSelectionDialogPrivate;
struct GtkColorSelectionPrivate;
struct GtkComboBox
{
GtkBin parentInstance;
GtkComboBoxPrivate* priv;
}
struct GtkComboBoxAccessible
{
GtkContainerAccessible parent;
GtkComboBoxAccessiblePrivate* priv;
}
struct GtkComboBoxAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkComboBoxAccessiblePrivate;
struct GtkComboBoxClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkComboBox* comboBox) changed;
/** */
extern(C) char* function(GtkComboBox* comboBox, const(char)* path) formatEntryText;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
}
struct GtkComboBoxPrivate;
struct GtkComboBoxText
{
GtkComboBox parentInstance;
GtkComboBoxTextPrivate* priv;
}
struct GtkComboBoxTextClass
{
GtkComboBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkComboBoxTextPrivate;
struct GtkContainer
{
GtkWidget widget;
GtkContainerPrivate* priv;
}
struct GtkContainerAccessible
{
GtkWidgetAccessible parent;
GtkContainerAccessiblePrivate* priv;
}
struct GtkContainerAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
/** */
extern(C) int function(GtkContainer* container, GtkWidget* widget, void* data) addGtk;
/** */
extern(C) int function(GtkContainer* container, GtkWidget* widget, void* data) removeGtk;
}
struct GtkContainerAccessiblePrivate;
struct GtkContainerCellAccessible
{
GtkCellAccessible parent;
GtkContainerCellAccessiblePrivate* priv;
}
struct GtkContainerCellAccessibleClass
{
GtkCellAccessibleClass parentClass;
}
struct GtkContainerCellAccessiblePrivate;
struct GtkContainerClass
{
/**
* The parent class.
*/
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkContainer* container, GtkWidget* widget) add;
/** */
extern(C) void function(GtkContainer* container, GtkWidget* widget) remove;
/** */
extern(C) void function(GtkContainer* container) checkResize;
/** */
extern(C) void function(GtkContainer* container, int includeInternals, GtkCallback callback, void* callbackData) forall;
/** */
extern(C) void function(GtkContainer* container, GtkWidget* child) setFocusChild;
/**
*
* Params:
* container = a #GtkContainer
* Returns: a #GType.
*/
extern(C) GType function(GtkContainer* container) childType;
/** */
extern(C) char* function(GtkContainer* container, GtkWidget* child) compositeName;
/** */
extern(C) void function(GtkContainer* container, GtkWidget* child, uint propertyId, GValue* value, GParamSpec* pspec) setChildProperty;
/** */
extern(C) void function(GtkContainer* container, GtkWidget* child, uint propertyId, GValue* value, GParamSpec* pspec) getChildProperty;
/**
*
* Params:
* container = a #GtkContainer
* child = a child of @container
* Returns: A newly created #GtkWidgetPath
*/
extern(C) GtkWidgetPath* function(GtkContainer* container, GtkWidget* child) getPathForChild;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "HandleBorderWidth", 1,
uint, "", 31
));
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkContainerPrivate;
struct GtkCssProvider
{
GObject parentInstance;
GtkCssProviderPrivate* priv;
}
struct GtkCssProviderClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkCssProvider* provider, GtkCssSection* section, GError* error) parsingError;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkCssProviderPrivate;
struct GtkCssSection;
struct GtkDialog
{
GtkWindow window;
GtkDialogPrivate* priv;
}
struct GtkDialogClass
{
/**
* The parent class.
*/
GtkWindowClass parentClass;
/** */
extern(C) void function(GtkDialog* dialog, int responseId) response;
/** */
extern(C) void function(GtkDialog* dialog) close;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkDialogPrivate;
struct GtkDrawingArea
{
GtkWidget widget;
void* dummy;
}
struct GtkDrawingAreaClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkEditable;
struct GtkEditableInterface
{
GTypeInterface baseIface;
/** */
extern(C) void function(GtkEditable* editable, const(char)* newText, int newTextLength, int* position) insertText;
/** */
extern(C) void function(GtkEditable* editable, int startPos, int endPos) deleteText;
/** */
extern(C) void function(GtkEditable* editable) changed;
/** */
extern(C) void function(GtkEditable* editable, const(char)* newText, int newTextLength, int* position) doInsertText;
/** */
extern(C) void function(GtkEditable* editable, int startPos, int endPos) doDeleteText;
/**
*
* Params:
* editable = a #GtkEditable
* startPos = start of text
* endPos = end of text
* Returns: a pointer to the contents of the widget as a
* string. This string is allocated by the #GtkEditable
* implementation and should be freed by the caller.
*/
extern(C) char* function(GtkEditable* editable, int startPos, int endPos) getChars;
/** */
extern(C) void function(GtkEditable* editable, int startPos, int endPos) setSelectionBounds;
/**
*
* Params:
* editable = a #GtkEditable
* startPos = location to store the starting position, or %NULL
* endPos = location to store the end position, or %NULL
* Returns: %TRUE if an area is selected, %FALSE otherwise
*/
extern(C) int function(GtkEditable* editable, int* startPos, int* endPos) getSelectionBounds;
/** */
extern(C) void function(GtkEditable* editable, int position) setPosition;
/**
*
* Params:
* editable = a #GtkEditable
* Returns: the cursor position
*/
extern(C) int function(GtkEditable* editable) getPosition;
}
struct GtkEntry
{
GtkWidget parentInstance;
GtkEntryPrivate* priv;
}
struct GtkEntryAccessible
{
GtkWidgetAccessible parent;
GtkEntryAccessiblePrivate* priv;
}
struct GtkEntryAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkEntryAccessiblePrivate;
struct GtkEntryBuffer
{
GObject parentInstance;
GtkEntryBufferPrivate* priv;
}
struct GtkEntryBufferClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkEntryBuffer* buffer, uint position, const(char)* chars, uint nChars) insertedText;
/** */
extern(C) void function(GtkEntryBuffer* buffer, uint position, uint nChars) deletedText;
/** */
extern(C) const(char)* function(GtkEntryBuffer* buffer, size_t* nBytes) getText;
/**
*
* Params:
* buffer = a #GtkEntryBuffer
* Returns: The number of characters in the buffer.
*/
extern(C) uint function(GtkEntryBuffer* buffer) getLength;
/**
*
* Params:
* buffer = a #GtkEntryBuffer
* position = the position at which to insert text.
* chars = the text to insert into the buffer.
* nChars = the length of the text in characters, or -1
* Returns: The number of characters actually inserted.
*/
extern(C) uint function(GtkEntryBuffer* buffer, uint position, const(char)* chars, uint nChars) insertText;
/**
*
* Params:
* buffer = a #GtkEntryBuffer
* position = position at which to delete text
* nChars = number of characters to delete
* Returns: The number of characters deleted.
*/
extern(C) uint function(GtkEntryBuffer* buffer, uint position, uint nChars) deleteText;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkEntryBufferPrivate;
/**
* Class structure for #GtkEntry. All virtual functions have a default
* implementation. Derived classes may set the virtual function pointers for the
* signal handlers to %NULL, but must keep @get_text_area_size and
* @get_frame_size non-%NULL; either use the default implementation, or provide
* a custom one.
*/
struct GtkEntryClass
{
/**
* The parent class.
*/
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkEntry* entry, GtkWidget* popup) populatePopup;
/** */
extern(C) void function(GtkEntry* entry) activate;
/** */
extern(C) void function(GtkEntry* entry, GtkMovementStep step, int count, int extendSelection) moveCursor;
/** */
extern(C) void function(GtkEntry* entry, const(char)* str) insertAtCursor;
/** */
extern(C) void function(GtkEntry* entry, GtkDeleteType type, int count) deleteFromCursor;
/** */
extern(C) void function(GtkEntry* entry) backspace;
/** */
extern(C) void function(GtkEntry* entry) cutClipboard;
/** */
extern(C) void function(GtkEntry* entry) copyClipboard;
/** */
extern(C) void function(GtkEntry* entry) pasteClipboard;
/** */
extern(C) void function(GtkEntry* entry) toggleOverwrite;
/** */
extern(C) void function(GtkEntry* entry, int* x, int* y, int* width, int* height) getTextAreaSize;
/** */
extern(C) void function(GtkEntry* entry, int* x, int* y, int* width, int* height) getFrameSize;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
}
struct GtkEntryCompletion
{
GObject parentInstance;
GtkEntryCompletionPrivate* priv;
}
struct GtkEntryCompletionClass
{
GObjectClass parentClass;
/** */
extern(C) int function(GtkEntryCompletion* completion, GtkTreeModel* model, GtkTreeIter* iter) matchSelected;
/** */
extern(C) void function(GtkEntryCompletion* completion, int index) actionActivated;
/** */
extern(C) int function(GtkEntryCompletion* completion, const(char)* prefix) insertPrefix;
/** */
extern(C) int function(GtkEntryCompletion* completion, GtkTreeModel* model, GtkTreeIter* iter) cursorOnMatch;
/** */
extern(C) void function(GtkEntryCompletion* completion) noMatches;
/** */
extern(C) void function() GtkReserved0;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
}
struct GtkEntryCompletionPrivate;
struct GtkEntryPrivate;
struct GtkEventBox
{
GtkBin bin;
GtkEventBoxPrivate* priv;
}
struct GtkEventBoxClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkEventBoxPrivate;
struct GtkEventController;
struct GtkEventControllerClass;
struct GtkExpander
{
GtkBin bin;
GtkExpanderPrivate* priv;
}
struct GtkExpanderAccessible
{
GtkContainerAccessible parent;
GtkExpanderAccessiblePrivate* priv;
}
struct GtkExpanderAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkExpanderAccessiblePrivate;
struct GtkExpanderClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkExpander* expander) activate;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkExpanderPrivate;
struct GtkFileChooser;
struct GtkFileChooserButton
{
GtkBox parent;
GtkFileChooserButtonPrivate* priv;
}
struct GtkFileChooserButtonClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function(GtkFileChooserButton* fc) fileSet;
void* GtkReserved1;
void* GtkReserved2;
void* GtkReserved3;
void* GtkReserved4;
}
struct GtkFileChooserButtonPrivate;
struct GtkFileChooserDialog
{
GtkDialog parentInstance;
GtkFileChooserDialogPrivate* priv;
}
struct GtkFileChooserDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFileChooserDialogPrivate;
struct GtkFileChooserNative;
struct GtkFileChooserNativeClass
{
GtkNativeDialogClass parentClass;
}
struct GtkFileChooserWidget
{
GtkBox parentInstance;
GtkFileChooserWidgetPrivate* priv;
}
struct GtkFileChooserWidgetClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFileChooserWidgetPrivate;
struct GtkFileFilter;
/**
* A #GtkFileFilterInfo-struct is used to pass information about the
* tested file to gtk_file_filter_filter().
*/
struct GtkFileFilterInfo
{
/**
* Flags indicating which of the following fields need
* are filled
*/
GtkFileFilterFlags contains;
/**
* the filename of the file being tested
*/
const(char)* filename;
/**
* the URI for the file being tested
*/
const(char)* uri;
/**
* the string that will be used to display the file
* in the file chooser
*/
const(char)* displayName;
/**
* the mime type of the file
*/
const(char)* mimeType;
}
struct GtkFixed
{
GtkContainer container;
GtkFixedPrivate* priv;
}
struct GtkFixedChild
{
GtkWidget* widget;
int x;
int y;
}
struct GtkFixedClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFixedPrivate;
struct GtkFlowBox
{
GtkContainer container;
}
struct GtkFlowBoxAccessible
{
GtkContainerAccessible parent;
GtkFlowBoxAccessiblePrivate* priv;
}
struct GtkFlowBoxAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkFlowBoxAccessiblePrivate;
struct GtkFlowBoxChild
{
GtkBin parentInstance;
}
struct GtkFlowBoxChildAccessible
{
GtkContainerAccessible parent;
}
struct GtkFlowBoxChildAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkFlowBoxChildClass
{
GtkBinClass parentClass;
/** */
extern(C) void function(GtkFlowBoxChild* child) activate;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
}
struct GtkFlowBoxClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkFlowBox* box, GtkFlowBoxChild* child) childActivated;
/** */
extern(C) void function(GtkFlowBox* box) selectedChildrenChanged;
/** */
extern(C) void function(GtkFlowBox* box) activateCursorChild;
/** */
extern(C) void function(GtkFlowBox* box) toggleCursorChild;
/** */
extern(C) int function(GtkFlowBox* box, GtkMovementStep step, int count) moveCursor;
/** */
extern(C) void function(GtkFlowBox* box) selectAll;
/** */
extern(C) void function(GtkFlowBox* box) unselectAll;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
}
struct GtkFontButton
{
GtkButton button;
GtkFontButtonPrivate* priv;
}
struct GtkFontButtonClass
{
GtkButtonClass parentClass;
/** */
extern(C) void function(GtkFontButton* gfp) fontSet;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFontButtonPrivate;
struct GtkFontChooser;
struct GtkFontChooserDialog
{
GtkDialog parentInstance;
GtkFontChooserDialogPrivate* priv;
}
struct GtkFontChooserDialogClass
{
/**
* The parent class.
*/
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFontChooserDialogPrivate;
struct GtkFontChooserIface
{
GTypeInterface baseIface;
/**
*
* Params:
* fontchooser = a #GtkFontChooser
* Returns: A #PangoFontFamily representing the
* selected font family, or %NULL. The returned object is owned by @fontchooser
* and must not be modified or freed.
*/
extern(C) PangoFontFamily* function(GtkFontChooser* fontchooser) getFontFamily;
/**
*
* Params:
* fontchooser = a #GtkFontChooser
* Returns: A #PangoFontFace representing the
* selected font group details, or %NULL. The returned object is owned by
* @fontchooser and must not be modified or freed.
*/
extern(C) PangoFontFace* function(GtkFontChooser* fontchooser) getFontFace;
/**
*
* Params:
* fontchooser = a #GtkFontChooser
* Returns: A n integer representing the selected font size,
* or -1 if no font size is selected.
*/
extern(C) int function(GtkFontChooser* fontchooser) getFontSize;
/** */
extern(C) void function(GtkFontChooser* fontchooser, GtkFontFilterFunc filter, void* userData, GDestroyNotify destroy) setFilterFunc;
/** */
extern(C) void function(GtkFontChooser* chooser, const(char)* fontname) fontActivated;
/** */
extern(C) void function(GtkFontChooser* fontchooser, PangoFontMap* fontmap) setFontMap;
/**
*
* Params:
* fontchooser = a #GtkFontChooser
* Returns: a #PangoFontMap, or %NULL
*/
extern(C) PangoFontMap* function(GtkFontChooser* fontchooser) getFontMap;
void*[10] padding;
}
struct GtkFontChooserWidget
{
GtkBox parentInstance;
GtkFontChooserWidgetPrivate* priv;
}
struct GtkFontChooserWidgetClass
{
/**
* The parent class.
*/
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkFontChooserWidgetPrivate;
struct GtkFontSelection
{
GtkBox parentInstance;
GtkFontSelectionPrivate* priv;
}
struct GtkFontSelectionClass
{
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFontSelectionDialog
{
GtkDialog parentInstance;
GtkFontSelectionDialogPrivate* priv;
}
struct GtkFontSelectionDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFontSelectionDialogPrivate;
struct GtkFontSelectionPrivate;
struct GtkFrame
{
GtkBin bin;
GtkFramePrivate* priv;
}
struct GtkFrameAccessible
{
GtkContainerAccessible parent;
GtkFrameAccessiblePrivate* priv;
}
struct GtkFrameAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkFrameAccessiblePrivate;
struct GtkFrameClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkFrame* frame, GtkAllocation* allocation) computeChildAllocation;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkFramePrivate;
struct GtkGLArea
{
GtkWidget parentInstance;
}
/**
* The `GtkGLAreaClass` structure contains only private data.
*
* Since: 3.16
*/
struct GtkGLAreaClass
{
GtkWidgetClass parentClass;
/** */
extern(C) int function(GtkGLArea* area, GdkGLContext* context) render;
/** */
extern(C) void function(GtkGLArea* area, int width, int height) resize;
/** */
extern(C) GdkGLContext* function(GtkGLArea* area) createContext;
void*[6] Padding;
}
struct GtkGesture;
struct GtkGestureClass;
struct GtkGestureDrag;
struct GtkGestureDragClass;
struct GtkGestureLongPress;
struct GtkGestureLongPressClass;
struct GtkGestureMultiPress;
struct GtkGestureMultiPressClass;
struct GtkGesturePan;
struct GtkGesturePanClass;
struct GtkGestureRotate;
struct GtkGestureRotateClass;
struct GtkGestureSingle;
struct GtkGestureSingleClass;
struct GtkGestureSwipe;
struct GtkGestureSwipeClass;
struct GtkGestureZoom;
struct GtkGestureZoomClass;
struct GtkGradient;
struct GtkGrid
{
GtkContainer container;
GtkGridPrivate* priv;
}
struct GtkGridClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkGridPrivate;
struct GtkHBox
{
GtkBox box;
}
struct GtkHBoxClass
{
GtkBoxClass parentClass;
}
struct GtkHButtonBox
{
GtkButtonBox buttonBox;
}
struct GtkHButtonBoxClass
{
GtkButtonBoxClass parentClass;
}
struct GtkHPaned
{
GtkPaned paned;
}
struct GtkHPanedClass
{
GtkPanedClass parentClass;
}
struct GtkHSV
{
GtkWidget parentInstance;
GtkHSVPrivate* priv;
}
struct GtkHSVClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkHSV* hsv) changed;
/** */
extern(C) void function(GtkHSV* hsv, GtkDirectionType type) move;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkHSVPrivate;
struct GtkHScale
{
GtkScale scale;
}
struct GtkHScaleClass
{
GtkScaleClass parentClass;
}
struct GtkHScrollbar
{
GtkScrollbar scrollbar;
}
struct GtkHScrollbarClass
{
GtkScrollbarClass parentClass;
}
struct GtkHSeparator
{
GtkSeparator separator;
}
struct GtkHSeparatorClass
{
GtkSeparatorClass parentClass;
}
struct GtkHandleBox
{
GtkBin bin;
GtkHandleBoxPrivate* priv;
}
struct GtkHandleBoxClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkHandleBox* handleBox, GtkWidget* child) childAttached;
/** */
extern(C) void function(GtkHandleBox* handleBox, GtkWidget* child) childDetached;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkHandleBoxPrivate;
struct GtkHeaderBar
{
GtkContainer container;
}
struct GtkHeaderBarClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkHeaderBarPrivate;
struct GtkIMContext
{
GObject parentInstance;
}
struct GtkIMContextClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkIMContext* context) preeditStart;
/** */
extern(C) void function(GtkIMContext* context) preeditEnd;
/** */
extern(C) void function(GtkIMContext* context) preeditChanged;
/** */
extern(C) void function(GtkIMContext* context, const(char)* str) commit;
/** */
extern(C) int function(GtkIMContext* context) retrieveSurrounding;
/**
*
* Params:
* context = a #GtkIMContext
* offset = offset from cursor position in chars;
* a negative value means start before the cursor.
* nChars = number of characters to delete.
* Returns: %TRUE if the signal was handled.
*/
extern(C) int function(GtkIMContext* context, int offset, int nChars) deleteSurrounding;
/** */
extern(C) void function(GtkIMContext* context, GdkWindow* window) setClientWindow;
/** */
extern(C) void function(GtkIMContext* context, char** str, PangoAttrList** attrs, int* cursorPos) getPreeditString;
/**
*
* Params:
* context = a #GtkIMContext
* event = the key event
* Returns: %TRUE if the input method handled the key event.
*/
extern(C) int function(GtkIMContext* context, GdkEventKey* event) filterKeypress;
/** */
extern(C) void function(GtkIMContext* context) focusIn;
/** */
extern(C) void function(GtkIMContext* context) focusOut;
/** */
extern(C) void function(GtkIMContext* context) reset;
/** */
extern(C) void function(GtkIMContext* context, GdkRectangle* area) setCursorLocation;
/** */
extern(C) void function(GtkIMContext* context, int usePreedit) setUsePreedit;
/** */
extern(C) void function(GtkIMContext* context, const(char)* text, int len, int cursorIndex) setSurrounding;
/**
*
* Params:
* context = a #GtkIMContext
* text = location to store a UTF-8 encoded
* string of text holding context around the insertion point.
* If the function returns %TRUE, then you must free the result
* stored in this location with g_free().
* cursorIndex = location to store byte index of the insertion
* cursor within @text.
* Returns: %TRUE if surrounding text was provided; in this case
* you must free the result stored in *text.
*/
extern(C) int function(GtkIMContext* context, char** text, int* cursorIndex) getSurrounding;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
}
/**
* Bookkeeping information about a loadable input method.
*/
struct GtkIMContextInfo
{
/**
* The unique identification string of the input method.
*/
const(char)* contextId;
/**
* The human-readable name of the input method.
*/
const(char)* contextName;
/**
* Translation domain to be used with dgettext()
*/
const(char)* domain;
/**
* Name of locale directory for use with bindtextdomain()
*/
const(char)* domainDirname;
/**
* A colon-separated list of locales where this input method
* should be the default. The asterisk “*” sets the default for all locales.
*/
const(char)* defaultLocales;
}
struct GtkIMContextSimple
{
GtkIMContext object;
GtkIMContextSimplePrivate* priv;
}
struct GtkIMContextSimpleClass
{
GtkIMContextClass parentClass;
}
struct GtkIMContextSimplePrivate;
struct GtkIMMulticontext
{
GtkIMContext object;
GtkIMMulticontextPrivate* priv;
}
struct GtkIMMulticontextClass
{
GtkIMContextClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkIMMulticontextPrivate;
struct GtkIconFactory
{
GObject parentInstance;
GtkIconFactoryPrivate* priv;
}
struct GtkIconFactoryClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkIconFactoryPrivate;
struct GtkIconInfo;
struct GtkIconInfoClass;
struct GtkIconSet;
struct GtkIconSource;
struct GtkIconTheme
{
GObject parentInstance;
GtkIconThemePrivate* priv;
}
struct GtkIconThemeClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkIconTheme* iconTheme) changed;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkIconThemePrivate;
struct GtkIconView
{
GtkContainer parent;
GtkIconViewPrivate* priv;
}
struct GtkIconViewAccessible
{
GtkContainerAccessible parent;
GtkIconViewAccessiblePrivate* priv;
}
struct GtkIconViewAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkIconViewAccessiblePrivate;
struct GtkIconViewClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkIconView* iconView, GtkTreePath* path) itemActivated;
/** */
extern(C) void function(GtkIconView* iconView) selectionChanged;
/** */
extern(C) void function(GtkIconView* iconView) selectAll;
/** */
extern(C) void function(GtkIconView* iconView) unselectAll;
/** */
extern(C) void function(GtkIconView* iconView) selectCursorItem;
/** */
extern(C) void function(GtkIconView* iconView) toggleCursorItem;
/** */
extern(C) int function(GtkIconView* iconView, GtkMovementStep step, int count) moveCursor;
/** */
extern(C) int function(GtkIconView* iconView) activateCursorItem;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkIconViewPrivate;
struct GtkImage
{
GtkMisc misc;
GtkImagePrivate* priv;
}
struct GtkImageAccessible
{
GtkWidgetAccessible parent;
GtkImageAccessiblePrivate* priv;
}
struct GtkImageAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkImageAccessiblePrivate;
struct GtkImageCellAccessible
{
GtkRendererCellAccessible parent;
GtkImageCellAccessiblePrivate* priv;
}
struct GtkImageCellAccessibleClass
{
GtkRendererCellAccessibleClass parentClass;
}
struct GtkImageCellAccessiblePrivate;
struct GtkImageClass
{
GtkMiscClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkImageMenuItem
{
GtkMenuItem menuItem;
GtkImageMenuItemPrivate* priv;
}
struct GtkImageMenuItemClass
{
/**
* The parent class.
*/
GtkMenuItemClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkImageMenuItemPrivate;
struct GtkImagePrivate;
struct GtkInfoBar
{
GtkBox parent;
GtkInfoBarPrivate* priv;
}
struct GtkInfoBarClass
{
GtkBoxClass parentClass;
/** */
extern(C) void function(GtkInfoBar* infoBar, int responseId) response;
/** */
extern(C) void function(GtkInfoBar* infoBar) close;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkInfoBarPrivate;
struct GtkInvisible
{
GtkWidget widget;
GtkInvisiblePrivate* priv;
}
struct GtkInvisibleClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkInvisiblePrivate;
struct GtkLabel
{
GtkMisc misc;
GtkLabelPrivate* priv;
}
struct GtkLabelAccessible
{
GtkWidgetAccessible parent;
GtkLabelAccessiblePrivate* priv;
}
struct GtkLabelAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkLabelAccessiblePrivate;
struct GtkLabelClass
{
GtkMiscClass parentClass;
/** */
extern(C) void function(GtkLabel* label, GtkMovementStep step, int count, int extendSelection) moveCursor;
/** */
extern(C) void function(GtkLabel* label) copyClipboard;
/** */
extern(C) void function(GtkLabel* label, GtkMenu* menu) populatePopup;
/** */
extern(C) int function(GtkLabel* label, const(char)* uri) activateLink;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkLabelPrivate;
struct GtkLabelSelectionInfo;
struct GtkLayout
{
GtkContainer container;
GtkLayoutPrivate* priv;
}
struct GtkLayoutClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkLayoutPrivate;
struct GtkLevelBar
{
GtkWidget parent;
GtkLevelBarPrivate* priv;
}
struct GtkLevelBarAccessible
{
GtkWidgetAccessible parent;
GtkLevelBarAccessiblePrivate* priv;
}
struct GtkLevelBarAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkLevelBarAccessiblePrivate;
struct GtkLevelBarClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkLevelBar* self, const(char)* name) offsetChanged;
void*[16] padding;
}
struct GtkLevelBarPrivate;
struct GtkLinkButton
{
GtkButton parentInstance;
GtkLinkButtonPrivate* priv;
}
struct GtkLinkButtonAccessible
{
GtkButtonAccessible parent;
GtkLinkButtonAccessiblePrivate* priv;
}
struct GtkLinkButtonAccessibleClass
{
GtkButtonAccessibleClass parentClass;
}
struct GtkLinkButtonAccessiblePrivate;
/**
* The #GtkLinkButtonClass contains only
* private data.
*/
struct GtkLinkButtonClass
{
GtkButtonClass parentClass;
/** */
extern(C) int function(GtkLinkButton* button) activateLink;
/** */
extern(C) void function() GtkPadding1;
/** */
extern(C) void function() GtkPadding2;
/** */
extern(C) void function() GtkPadding3;
/** */
extern(C) void function() GtkPadding4;
}
struct GtkLinkButtonPrivate;
struct GtkListBox
{
GtkContainer parentInstance;
}
struct GtkListBoxAccessible
{
GtkContainerAccessible parent;
GtkListBoxAccessiblePrivate* priv;
}
struct GtkListBoxAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkListBoxAccessiblePrivate;
struct GtkListBoxClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkListBox* box, GtkListBoxRow* row) rowSelected;
/** */
extern(C) void function(GtkListBox* box, GtkListBoxRow* row) rowActivated;
/** */
extern(C) void function(GtkListBox* box) activateCursorRow;
/** */
extern(C) void function(GtkListBox* box) toggleCursorRow;
/** */
extern(C) void function(GtkListBox* box, GtkMovementStep step, int count) moveCursor;
/** */
extern(C) void function(GtkListBox* box) selectedRowsChanged;
/** */
extern(C) void function(GtkListBox* box) selectAll;
/** */
extern(C) void function(GtkListBox* box) unselectAll;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
}
struct GtkListBoxRow
{
GtkBin parentInstance;
}
struct GtkListBoxRowAccessible
{
GtkContainerAccessible parent;
}
struct GtkListBoxRowAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkListBoxRowClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkListBoxRow* row) activate;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
}
struct GtkListStore
{
GObject parent;
GtkListStorePrivate* priv;
}
struct GtkListStoreClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkListStorePrivate;
struct GtkLockButton
{
GtkButton parent;
GtkLockButtonPrivate* priv;
}
struct GtkLockButtonAccessible
{
GtkButtonAccessible parent;
GtkLockButtonAccessiblePrivate* priv;
}
struct GtkLockButtonAccessibleClass
{
GtkButtonAccessibleClass parentClass;
}
struct GtkLockButtonAccessiblePrivate;
struct GtkLockButtonClass
{
/**
* The parent class.
*/
GtkButtonClass parentClass;
/** */
extern(C) void function() reserved0;
/** */
extern(C) void function() reserved1;
/** */
extern(C) void function() reserved2;
/** */
extern(C) void function() reserved3;
/** */
extern(C) void function() reserved4;
/** */
extern(C) void function() reserved5;
/** */
extern(C) void function() reserved6;
/** */
extern(C) void function() reserved7;
}
struct GtkLockButtonPrivate;
struct GtkMenu
{
GtkMenuShell menuShell;
GtkMenuPrivate* priv;
}
struct GtkMenuAccessible
{
GtkMenuShellAccessible parent;
GtkMenuAccessiblePrivate* priv;
}
struct GtkMenuAccessibleClass
{
GtkMenuShellAccessibleClass parentClass;
}
struct GtkMenuAccessiblePrivate;
struct GtkMenuBar
{
GtkMenuShell menuShell;
GtkMenuBarPrivate* priv;
}
struct GtkMenuBarClass
{
GtkMenuShellClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuBarPrivate;
struct GtkMenuButton
{
GtkToggleButton parent;
GtkMenuButtonPrivate* priv;
}
struct GtkMenuButtonAccessible
{
GtkToggleButtonAccessible parent;
GtkMenuButtonAccessiblePrivate* priv;
}
struct GtkMenuButtonAccessibleClass
{
GtkToggleButtonAccessibleClass parentClass;
}
struct GtkMenuButtonAccessiblePrivate;
struct GtkMenuButtonClass
{
GtkToggleButtonClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuButtonPrivate;
struct GtkMenuClass
{
GtkMenuShellClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuItem
{
GtkBin bin;
GtkMenuItemPrivate* priv;
}
struct GtkMenuItemAccessible
{
GtkContainerAccessible parent;
GtkMenuItemAccessiblePrivate* priv;
}
struct GtkMenuItemAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkMenuItemAccessiblePrivate;
struct GtkMenuItemClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "hideOnActivate", 1,
uint, "", 31
));
/** */
extern(C) void function(GtkMenuItem* menuItem) activate;
/** */
extern(C) void function(GtkMenuItem* menuItem) activateItem;
/** */
extern(C) void function(GtkMenuItem* menuItem, int* requisition) toggleSizeRequest;
/** */
extern(C) void function(GtkMenuItem* menuItem, int allocation) toggleSizeAllocate;
/** */
extern(C) void function(GtkMenuItem* menuItem, const(char)* label) setLabel;
/**
*
* Params:
* menuItem = a #GtkMenuItem
* Returns: The text in the @menu_item label. This is the internal
* string used by the label, and must not be modified.
*/
extern(C) const(char)* function(GtkMenuItem* menuItem) getLabel;
/** */
extern(C) void function(GtkMenuItem* menuItem) select;
/** */
extern(C) void function(GtkMenuItem* menuItem) deselect;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuItemPrivate;
struct GtkMenuPrivate;
struct GtkMenuShell
{
GtkContainer container;
GtkMenuShellPrivate* priv;
}
struct GtkMenuShellAccessible
{
GtkContainerAccessible parent;
GtkMenuShellAccessiblePrivate* priv;
}
struct GtkMenuShellAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkMenuShellAccessiblePrivate;
struct GtkMenuShellClass
{
GtkContainerClass parentClass;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "submenuPlacement", 1,
uint, "", 31
));
/** */
extern(C) void function(GtkMenuShell* menuShell) deactivate;
/** */
extern(C) void function(GtkMenuShell* menuShell) selectionDone;
/** */
extern(C) void function(GtkMenuShell* menuShell, GtkMenuDirectionType direction) moveCurrent;
/** */
extern(C) void function(GtkMenuShell* menuShell, int forceHide) activateCurrent;
/** */
extern(C) void function(GtkMenuShell* menuShell) cancel;
/** */
extern(C) void function(GtkMenuShell* menuShell, GtkWidget* menuItem) selectItem;
/** */
extern(C) void function(GtkMenuShell* menuShell, GtkWidget* child, int position) insert;
/** */
extern(C) int function(GtkMenuShell* menuShell) getPopupDelay;
/** */
extern(C) int function(GtkMenuShell* menuShell, int distance) moveSelected;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuShellPrivate;
struct GtkMenuToolButton
{
GtkToolButton parent;
GtkMenuToolButtonPrivate* priv;
}
struct GtkMenuToolButtonClass
{
/**
* The parent class.
*/
GtkToolButtonClass parentClass;
/** */
extern(C) void function(GtkMenuToolButton* button) showMenu;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMenuToolButtonPrivate;
struct GtkMessageDialog
{
GtkDialog parentInstance;
GtkMessageDialogPrivate* priv;
}
struct GtkMessageDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMessageDialogPrivate;
struct GtkMisc
{
GtkWidget widget;
GtkMiscPrivate* priv;
}
struct GtkMiscClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMiscPrivate;
struct GtkModelButton;
struct GtkMountOperation
{
GMountOperation parentInstance;
GtkMountOperationPrivate* priv;
}
struct GtkMountOperationClass
{
/**
* The parent class.
*/
GMountOperationClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkMountOperationPrivate;
struct GtkNativeDialog
{
GObject parentInstance;
}
struct GtkNativeDialogClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkNativeDialog* self, int responseId) response;
/** */
extern(C) void function(GtkNativeDialog* self) show;
/** */
extern(C) void function(GtkNativeDialog* self) hide;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkNotebook
{
GtkContainer container;
GtkNotebookPrivate* priv;
}
struct GtkNotebookAccessible
{
GtkContainerAccessible parent;
GtkNotebookAccessiblePrivate* priv;
}
struct GtkNotebookAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkNotebookAccessiblePrivate;
struct GtkNotebookClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkNotebook* notebook, GtkWidget* page, uint pageNum) switchPage;
/** */
extern(C) int function(GtkNotebook* notebook, int moveFocus) selectPage;
/** */
extern(C) int function(GtkNotebook* notebook, GtkNotebookTab type) focusTab;
/** */
extern(C) int function(GtkNotebook* notebook, int offset) changeCurrentPage;
/** */
extern(C) void function(GtkNotebook* notebook, GtkDirectionType direction) moveFocusOut;
/** */
extern(C) int function(GtkNotebook* notebook, GtkDirectionType direction, int moveToLast) reorderTab;
/** */
extern(C) int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel, GtkWidget* menuLabel, int position) insertPage;
/** */
extern(C) GtkNotebook* function(GtkNotebook* notebook, GtkWidget* page, int x, int y) createWindow;
/** */
extern(C) void function(GtkNotebook* notebook, GtkWidget* child, uint pageNum) pageReordered;
/** */
extern(C) void function(GtkNotebook* notebook, GtkWidget* child, uint pageNum) pageRemoved;
/** */
extern(C) void function(GtkNotebook* notebook, GtkWidget* child, uint pageNum) pageAdded;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkNotebookPageAccessible
{
AtkObject parent;
GtkNotebookPageAccessiblePrivate* priv;
}
struct GtkNotebookPageAccessibleClass
{
AtkObjectClass parentClass;
}
struct GtkNotebookPageAccessiblePrivate;
struct GtkNotebookPrivate;
struct GtkNumerableIcon
{
GEmblemedIcon parent;
GtkNumerableIconPrivate* priv;
}
struct GtkNumerableIconClass
{
GEmblemedIconClass parentClass;
void*[16] padding;
}
struct GtkNumerableIconPrivate;
struct GtkOffscreenWindow
{
GtkWindow parentObject;
}
struct GtkOffscreenWindowClass
{
/**
* The parent class.
*/
GtkWindowClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkOrientable;
struct GtkOrientableIface
{
GTypeInterface baseIface;
}
struct GtkOverlay
{
GtkBin parent;
GtkOverlayPrivate* priv;
}
struct GtkOverlayClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) int function(GtkOverlay* overlay, GtkWidget* widget, GtkAllocation* allocation) getChildPosition;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkOverlayPrivate;
/**
* Struct defining a pad action entry.
*/
struct GtkPadActionEntry
{
/**
* the type of pad feature that will trigger this action entry.
*/
GtkPadActionType type;
/**
* the 0-indexed button/ring/strip number that will trigger this action
* entry.
*/
int index;
/**
* the mode that will trigger this action entry, or -1 for all modes.
*/
int mode;
/**
* Human readable description of this action entry, this string should
* be deemed user-visible.
*/
char* label;
/**
* action name that will be activated in the #GActionGroup.
*/
char* actionName;
}
struct GtkPadController;
struct GtkPadControllerClass;
/**
* See also gtk_print_settings_set_page_ranges().
*/
struct GtkPageRange
{
/**
* start of page range.
*/
int start;
/**
* end of page range.
*/
int end;
}
struct GtkPageSetup;
struct GtkPaned
{
GtkContainer container;
GtkPanedPrivate* priv;
}
struct GtkPanedAccessible
{
GtkContainerAccessible parent;
GtkPanedAccessiblePrivate* priv;
}
struct GtkPanedAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkPanedAccessiblePrivate;
struct GtkPanedClass
{
GtkContainerClass parentClass;
/** */
extern(C) int function(GtkPaned* paned, int reverse) cycleChildFocus;
/** */
extern(C) int function(GtkPaned* paned) toggleHandleFocus;
/** */
extern(C) int function(GtkPaned* paned, GtkScrollType scroll) moveHandle;
/** */
extern(C) int function(GtkPaned* paned, int reverse) cycleHandleFocus;
/** */
extern(C) int function(GtkPaned* paned) acceptPosition;
/** */
extern(C) int function(GtkPaned* paned) cancelPosition;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkPanedPrivate;
struct GtkPaperSize;
struct GtkPlacesSidebar;
struct GtkPlacesSidebarClass;
struct GtkPlug
{
GtkWindow window;
GtkPlugPrivate* priv;
}
struct GtkPlugClass
{
GtkWindowClass parentClass;
/** */
extern(C) void function(GtkPlug* plug) embedded;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkPlugPrivate;
struct GtkPopover
{
GtkBin parentInstance;
GtkPopoverPrivate* priv;
}
struct GtkPopoverAccessible
{
GtkContainerAccessible parent;
}
struct GtkPopoverAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkPopoverClass
{
GtkBinClass parentClass;
/** */
extern(C) void function(GtkPopover* popover) closed;
void*[10] reserved;
}
struct GtkPopoverMenu;
struct GtkPopoverMenuClass
{
GtkPopoverClass parentClass;
void*[10] reserved;
}
struct GtkPopoverPrivate;
struct GtkPrintContext;
struct GtkPrintOperation
{
GObject parentInstance;
GtkPrintOperationPrivate* priv;
}
struct GtkPrintOperationClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkPrintOperationResult result) done;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkPrintContext* context) beginPrint;
/** */
extern(C) int function(GtkPrintOperation* operation, GtkPrintContext* context) paginate;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkPrintContext* context, int pageNr, GtkPageSetup* setup) requestPageSetup;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkPrintContext* context, int pageNr) drawPage;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkPrintContext* context) endPrint;
/** */
extern(C) void function(GtkPrintOperation* operation) statusChanged;
/** */
extern(C) GtkWidget* function(GtkPrintOperation* operation) createCustomWidget;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkWidget* widget) customWidgetApply;
/** */
extern(C) int function(GtkPrintOperation* operation, GtkPrintOperationPreview* preview, GtkPrintContext* context, GtkWindow* parent) preview;
/** */
extern(C) void function(GtkPrintOperation* operation, GtkWidget* widget, GtkPageSetup* setup, GtkPrintSettings* settings) updateCustomWidget;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkPrintOperationPreview;
struct GtkPrintOperationPreviewIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkPrintOperationPreview* preview, GtkPrintContext* context) ready;
/** */
extern(C) void function(GtkPrintOperationPreview* preview, GtkPrintContext* context, GtkPageSetup* pageSetup) gotPageSize;
/** */
extern(C) void function(GtkPrintOperationPreview* preview, int pageNr) renderPage;
/**
*
* Params:
* preview = a #GtkPrintOperationPreview
* pageNr = a page number
* Returns: %TRUE if the page has been selected for printing
*/
extern(C) int function(GtkPrintOperationPreview* preview, int pageNr) isSelected;
/** */
extern(C) void function(GtkPrintOperationPreview* preview) endPreview;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkPrintOperationPrivate;
struct GtkPrintSettings;
struct GtkProgressBar
{
GtkWidget parent;
GtkProgressBarPrivate* priv;
}
struct GtkProgressBarAccessible
{
GtkWidgetAccessible parent;
GtkProgressBarAccessiblePrivate* priv;
}
struct GtkProgressBarAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkProgressBarAccessiblePrivate;
struct GtkProgressBarClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkProgressBarPrivate;
struct GtkRadioAction
{
GtkToggleAction parent;
GtkRadioActionPrivate* privateData;
}
struct GtkRadioActionClass
{
GtkToggleActionClass parentClass;
/** */
extern(C) void function(GtkRadioAction* action, GtkRadioAction* current) changed;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
/**
* #GtkRadioActionEntry structs are used with
* gtk_action_group_add_radio_actions() to construct groups of radio actions.
*/
struct GtkRadioActionEntry
{
/**
* The name of the action.
*/
const(char)* name;
/**
* The stock id for the action, or the name of an icon from the
* icon theme.
*/
const(char)* stockId;
/**
* The label for the action. This field should typically be marked
* for translation, see gtk_action_group_set_translation_domain().
*/
const(char)* label;
/**
* The accelerator for the action, in the format understood by
* gtk_accelerator_parse().
*/
const(char)* accelerator;
/**
* The tooltip for the action. This field should typically be
* marked for translation, see gtk_action_group_set_translation_domain().
*/
const(char)* tooltip;
/**
* The value to set on the radio action. See
* gtk_radio_action_get_current_value().
*/
int value;
}
struct GtkRadioActionPrivate;
struct GtkRadioButton
{
GtkCheckButton checkButton;
GtkRadioButtonPrivate* priv;
}
struct GtkRadioButtonAccessible
{
GtkToggleButtonAccessible parent;
GtkRadioButtonAccessiblePrivate* priv;
}
struct GtkRadioButtonAccessibleClass
{
GtkToggleButtonAccessibleClass parentClass;
}
struct GtkRadioButtonAccessiblePrivate;
struct GtkRadioButtonClass
{
GtkCheckButtonClass parentClass;
/** */
extern(C) void function(GtkRadioButton* radioButton) groupChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRadioButtonPrivate;
struct GtkRadioMenuItem
{
GtkCheckMenuItem checkMenuItem;
GtkRadioMenuItemPrivate* priv;
}
struct GtkRadioMenuItemAccessible
{
GtkCheckMenuItemAccessible parent;
GtkRadioMenuItemAccessiblePrivate* priv;
}
struct GtkRadioMenuItemAccessibleClass
{
GtkCheckMenuItemAccessibleClass parentClass;
}
struct GtkRadioMenuItemAccessiblePrivate;
struct GtkRadioMenuItemClass
{
GtkCheckMenuItemClass parentClass;
/** */
extern(C) void function(GtkRadioMenuItem* radioMenuItem) groupChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRadioMenuItemPrivate;
struct GtkRadioToolButton
{
GtkToggleToolButton parent;
}
struct GtkRadioToolButtonClass
{
GtkToggleToolButtonClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRange
{
GtkWidget widget;
GtkRangePrivate* priv;
}
struct GtkRangeAccessible
{
GtkWidgetAccessible parent;
GtkRangeAccessiblePrivate* priv;
}
struct GtkRangeAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkRangeAccessiblePrivate;
struct GtkRangeClass
{
GtkWidgetClass parentClass;
char* sliderDetail;
char* stepperDetail;
/** */
extern(C) void function(GtkRange* range) valueChanged;
/** */
extern(C) void function(GtkRange* range, double newValue) adjustBounds;
/** */
extern(C) void function(GtkRange* range, GtkScrollType scroll) moveSlider;
/** */
extern(C) void function(GtkRange* range, GtkBorder* border) getRangeBorder;
/** */
extern(C) int function(GtkRange* range, GtkScrollType scroll, double newValue) changeValue;
/** */
extern(C) void function(GtkRange* range, GtkOrientation orientation, int* minimum, int* natural) getRangeSizeRequest;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
}
struct GtkRangePrivate;
struct GtkRcContext;
/**
* Deprecated
*/
struct GtkRcProperty
{
/**
* quark-ified type identifier
*/
GQuark typeName;
/**
* quark-ified property identifier like
* “GtkScrollbar::spacing”
*/
GQuark propertyName;
/**
* field similar to one found in #GtkSettingsValue
*/
char* origin;
/**
* field similar to one found in #GtkSettingsValue
*/
GValue value;
}
struct GtkRcStyle
{
GObject parentInstance;
/**
* Name
*/
char* name;
/**
* Pixmap name
*/
char*[5] bgPixmapName;
/**
* A #PangoFontDescription
*/
PangoFontDescription* fontDesc;
/**
* #GtkRcFlags
*/
GtkRcFlags[5] colorFlags;
/**
* Foreground colors
*/
GdkColor[5] fg;
/**
* Background colors
*/
GdkColor[5] bg;
/**
* Text colors
*/
GdkColor[5] text;
/**
* Base colors
*/
GdkColor[5] base;
/**
* X thickness
*/
int xthickness;
/**
* Y thickness
*/
int ythickness;
GArray* rcProperties;
GSList* rcStyleLists;
GSList* iconFactories;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "engineSpecified", 1,
uint, "", 31
));
}
struct GtkRcStyleClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) GtkRcStyle* function(GtkRcStyle* rcStyle) createRcStyle;
/** */
extern(C) uint function(GtkRcStyle* rcStyle, GtkSettings* settings, GScanner* scanner) parse;
/** */
extern(C) void function(GtkRcStyle* dest, GtkRcStyle* src) merge;
/** */
extern(C) GtkStyle* function(GtkRcStyle* rcStyle) createStyle;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRecentAction
{
GtkAction parentInstance;
GtkRecentActionPrivate* priv;
}
struct GtkRecentActionClass
{
GtkActionClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRecentActionPrivate;
struct GtkRecentChooser;
struct GtkRecentChooserDialog
{
GtkDialog parentInstance;
GtkRecentChooserDialogPrivate* priv;
}
struct GtkRecentChooserDialogClass
{
GtkDialogClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRecentChooserDialogPrivate;
struct GtkRecentChooserIface
{
GTypeInterface baseIface;
/**
*
* Params:
* chooser = a #GtkRecentChooser
* uri = a URI
* Returns: %TRUE if the URI was found.
*
* Throws: GException on failure.
*/
extern(C) int function(GtkRecentChooser* chooser, const(char)* uri, GError** err) setCurrentUri;
/**
*
* Params:
* chooser = a #GtkRecentChooser
* Returns: a newly allocated string holding a URI.
*/
extern(C) char* function(GtkRecentChooser* chooser) getCurrentUri;
/**
*
* Params:
* chooser = a #GtkRecentChooser
* uri = a URI
* Returns: %TRUE if @uri was found.
*
* Throws: GException on failure.
*/
extern(C) int function(GtkRecentChooser* chooser, const(char)* uri, GError** err) selectUri;
/** */
extern(C) void function(GtkRecentChooser* chooser, const(char)* uri) unselectUri;
/** */
extern(C) void function(GtkRecentChooser* chooser) selectAll;
/** */
extern(C) void function(GtkRecentChooser* chooser) unselectAll;
/**
*
* Params:
* chooser = a #GtkRecentChooser
* Returns: A newly allocated
* list of #GtkRecentInfo objects. You should
* use gtk_recent_info_unref() on every item of the list, and then free
* the list itself using g_list_free().
*/
extern(C) GList* function(GtkRecentChooser* chooser) getItems;
/** */
extern(C) GtkRecentManager* function(GtkRecentChooser* chooser) getRecentManager;
/** */
extern(C) void function(GtkRecentChooser* chooser, GtkRecentFilter* filter) addFilter;
/** */
extern(C) void function(GtkRecentChooser* chooser, GtkRecentFilter* filter) removeFilter;
/**
*
* Params:
* chooser = a #GtkRecentChooser
* Returns: A singly linked list
* of #GtkRecentFilter objects. You
* should just free the returned list using g_slist_free().
*/
extern(C) GSList* function(GtkRecentChooser* chooser) listFilters;
/** */
extern(C) void function(GtkRecentChooser* chooser, GtkRecentSortFunc sortFunc, void* sortData, GDestroyNotify dataDestroy) setSortFunc;
/** */
extern(C) void function(GtkRecentChooser* chooser) itemActivated;
/** */
extern(C) void function(GtkRecentChooser* chooser) selectionChanged;
}
struct GtkRecentChooserMenu
{
GtkMenu parentInstance;
GtkRecentChooserMenuPrivate* priv;
}
struct GtkRecentChooserMenuClass
{
GtkMenuClass parentClass;
/** */
extern(C) void function() gtkRecent1;
/** */
extern(C) void function() gtkRecent2;
/** */
extern(C) void function() gtkRecent3;
/** */
extern(C) void function() gtkRecent4;
}
struct GtkRecentChooserMenuPrivate;
struct GtkRecentChooserWidget
{
GtkBox parentInstance;
GtkRecentChooserWidgetPrivate* priv;
}
struct GtkRecentChooserWidgetClass
{
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkRecentChooserWidgetPrivate;
/**
* Meta-data to be passed to gtk_recent_manager_add_full() when
* registering a recently used resource.
*/
struct GtkRecentData
{
/**
* a UTF-8 encoded string, containing the name of the recently
* used resource to be displayed, or %NULL;
*/
char* displayName;
/**
* a UTF-8 encoded string, containing a short description of
* the resource, or %NULL;
*/
char* description;
/**
* the MIME type of the resource;
*/
char* mimeType;
/**
* the name of the application that is registering this recently
* used resource;
*/
char* appName;
/**
* command line used to launch this resource; may contain the
* “\%f” and “\%u” escape characters which will be expanded
* to the resource file path and URI respectively when the command line
* is retrieved;
*/
char* appExec;
/**
* a vector of strings containing
* groups names;
*/
char** groups;
/**
* whether this resource should be displayed only by the
* applications that have registered it or not.
*/
bool isPrivate;
}
struct GtkRecentFilter;
/**
* A GtkRecentFilterInfo struct is used
* to pass information about the tested file to gtk_recent_filter_filter().
*/
struct GtkRecentFilterInfo
{
/**
* #GtkRecentFilterFlags to indicate which fields are set.
*/
GtkRecentFilterFlags contains;
/**
* The URI of the file being tested.
*/
const(char)* uri;
/**
* The string that will be used to display
* the file in the recent chooser.
*/
const(char)* displayName;
/**
* MIME type of the file.
*/
const(char)* mimeType;
/**
* The list of
* applications that have registered the file.
*/
char** applications;
/**
* The groups to which
* the file belongs to.
*/
char** groups;
/**
* The number of days elapsed since the file has been
* registered.
*/
int age;
}
struct GtkRecentInfo;
struct GtkRecentManager
{
GObject parentInstance;
GtkRecentManagerPrivate* priv;
}
/**
* #GtkRecentManagerClass contains only private data.
*
* Since: 2.10
*/
struct GtkRecentManagerClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkRecentManager* manager) changed;
/** */
extern(C) void function() GtkRecent1;
/** */
extern(C) void function() GtkRecent2;
/** */
extern(C) void function() GtkRecent3;
/** */
extern(C) void function() GtkRecent4;
}
struct GtkRecentManagerPrivate;
struct GtkRendererCellAccessible
{
GtkCellAccessible parent;
GtkRendererCellAccessiblePrivate* priv;
}
struct GtkRendererCellAccessibleClass
{
GtkCellAccessibleClass parentClass;
}
struct GtkRendererCellAccessiblePrivate;
/**
* Represents a request of a screen object in a given orientation. These
* are primarily used in container implementations when allocating a natural
* size for children calling. See gtk_distribute_natural_allocation().
*/
struct GtkRequestedSize
{
/**
* A client pointer
*/
void* data;
/**
* The minimum size needed for allocation in a given orientation
*/
int minimumSize;
/**
* The natural size for allocation in a given orientation
*/
int naturalSize;
}
struct GtkRequisition
{
/**
* the widget’s desired width
*/
int width;
/**
* the widget’s desired height
*/
int height;
}
struct GtkRevealer
{
GtkBin parentInstance;
}
struct GtkRevealerClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
}
struct GtkScale
{
GtkRange range;
GtkScalePrivate* priv;
}
struct GtkScaleAccessible
{
GtkRangeAccessible parent;
GtkScaleAccessiblePrivate* priv;
}
struct GtkScaleAccessibleClass
{
GtkRangeAccessibleClass parentClass;
}
struct GtkScaleAccessiblePrivate;
struct GtkScaleButton
{
GtkButton parent;
GtkScaleButtonPrivate* priv;
}
struct GtkScaleButtonAccessible
{
GtkButtonAccessible parent;
GtkScaleButtonAccessiblePrivate* priv;
}
struct GtkScaleButtonAccessibleClass
{
GtkButtonAccessibleClass parentClass;
}
struct GtkScaleButtonAccessiblePrivate;
struct GtkScaleButtonClass
{
GtkButtonClass parentClass;
/** */
extern(C) void function(GtkScaleButton* button, double value) valueChanged;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkScaleButtonPrivate;
struct GtkScaleClass
{
GtkRangeClass parentClass;
/** */
extern(C) char* function(GtkScale* scale, double value) formatValue;
/** */
extern(C) void function(GtkScale* scale) drawValue;
/** */
extern(C) void function(GtkScale* scale, int* x, int* y) getLayoutOffsets;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkScalePrivate;
struct GtkScrollable;
struct GtkScrollableInterface
{
GTypeInterface baseIface;
/**
*
* Params:
* scrollable = a #GtkScrollable
* border = return location for the results
* Returns: %TRUE if @border has been set
*/
extern(C) int function(GtkScrollable* scrollable, GtkBorder* border) getBorder;
}
struct GtkScrollbar
{
GtkRange range;
}
struct GtkScrollbarClass
{
GtkRangeClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkScrolledWindow
{
GtkBin container;
GtkScrolledWindowPrivate* priv;
}
struct GtkScrolledWindowAccessible
{
GtkContainerAccessible parent;
GtkScrolledWindowAccessiblePrivate* priv;
}
struct GtkScrolledWindowAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkScrolledWindowAccessiblePrivate;
struct GtkScrolledWindowClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
int scrollbarSpacing;
/** */
extern(C) int function(GtkScrolledWindow* scrolledWindow, GtkScrollType scroll, int horizontal) scrollChild;
/** */
extern(C) void function(GtkScrolledWindow* scrolledWindow, GtkDirectionType direction) moveFocusOut;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkScrolledWindowPrivate;
struct GtkSearchBar
{
GtkBin parent;
}
struct GtkSearchBarClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSearchEntry
{
GtkEntry parent;
}
struct GtkSearchEntryClass
{
GtkEntryClass parentClass;
/** */
extern(C) void function(GtkSearchEntry* entry) searchChanged;
/** */
extern(C) void function(GtkSearchEntry* entry) nextMatch;
/** */
extern(C) void function(GtkSearchEntry* entry) previousMatch;
/** */
extern(C) void function(GtkSearchEntry* entry) stopSearch;
}
struct GtkSelectionData;
struct GtkSeparator
{
GtkWidget widget;
GtkSeparatorPrivate* priv;
}
struct GtkSeparatorClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSeparatorMenuItem
{
GtkMenuItem menuItem;
}
struct GtkSeparatorMenuItemClass
{
/**
* The parent class.
*/
GtkMenuItemClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSeparatorPrivate;
struct GtkSeparatorToolItem
{
GtkToolItem parent;
GtkSeparatorToolItemPrivate* priv;
}
struct GtkSeparatorToolItemClass
{
/**
* The parent class.
*/
GtkToolItemClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSeparatorToolItemPrivate;
struct GtkSettings
{
GObject parentInstance;
GtkSettingsPrivate* priv;
}
struct GtkSettingsClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSettingsPrivate;
struct GtkSettingsValue
{
/**
* Origin should be something like “filename:linenumber” for
* rc files, or e.g. “XProperty” for other sources.
*/
char* origin;
/**
* Valid types are LONG, DOUBLE and STRING corresponding to
* the token parsed, or a GSTRING holding an unparsed statement
*/
GValue value;
}
struct GtkShortcutLabel;
struct GtkShortcutLabelClass;
struct GtkShortcutsGroup;
struct GtkShortcutsGroupClass;
struct GtkShortcutsSection;
struct GtkShortcutsSectionClass;
struct GtkShortcutsShortcut;
struct GtkShortcutsShortcutClass;
struct GtkShortcutsWindow
{
GtkWindow window;
}
struct GtkShortcutsWindowClass
{
GtkWindowClass parentClass;
/** */
extern(C) void function(GtkShortcutsWindow* self) close;
/** */
extern(C) void function(GtkShortcutsWindow* self) search;
}
struct GtkSizeGroup
{
GObject parentInstance;
GtkSizeGroupPrivate* priv;
}
struct GtkSizeGroupClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSizeGroupPrivate;
struct GtkSocket
{
GtkContainer container;
GtkSocketPrivate* priv;
}
struct GtkSocketClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkSocket* socket) plugAdded;
/** */
extern(C) int function(GtkSocket* socket) plugRemoved;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSocketPrivate;
struct GtkSpinButton
{
GtkEntry entry;
GtkSpinButtonPrivate* priv;
}
struct GtkSpinButtonAccessible
{
GtkEntryAccessible parent;
GtkSpinButtonAccessiblePrivate* priv;
}
struct GtkSpinButtonAccessibleClass
{
GtkEntryAccessibleClass parentClass;
}
struct GtkSpinButtonAccessiblePrivate;
struct GtkSpinButtonClass
{
GtkEntryClass parentClass;
/** */
extern(C) int function(GtkSpinButton* spinButton, double* newValue) input;
/** */
extern(C) int function(GtkSpinButton* spinButton) output;
/** */
extern(C) void function(GtkSpinButton* spinButton) valueChanged;
/** */
extern(C) void function(GtkSpinButton* spinButton, GtkScrollType scroll) changeValue;
/** */
extern(C) void function(GtkSpinButton* spinButton) wrapped;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSpinButtonPrivate;
struct GtkSpinner
{
GtkWidget parent;
GtkSpinnerPrivate* priv;
}
struct GtkSpinnerAccessible
{
GtkWidgetAccessible parent;
GtkSpinnerAccessiblePrivate* priv;
}
struct GtkSpinnerAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkSpinnerAccessiblePrivate;
struct GtkSpinnerClass
{
GtkWidgetClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkSpinnerPrivate;
struct GtkStack
{
GtkContainer parentInstance;
}
struct GtkStackAccessible
{
GtkContainerAccessible parent;
}
struct GtkStackAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkStackClass
{
GtkContainerClass parentClass;
}
struct GtkStackSidebar
{
GtkBin parent;
}
struct GtkStackSidebarClass
{
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkStackSidebarPrivate;
struct GtkStackSwitcher
{
GtkBox widget;
}
struct GtkStackSwitcherClass
{
GtkBoxClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkStatusIcon
{
GObject parentInstance;
GtkStatusIconPrivate* priv;
}
struct GtkStatusIconClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkStatusIcon* statusIcon) activate;
/** */
extern(C) void function(GtkStatusIcon* statusIcon, uint button, uint activateTime) popupMenu;
/** */
extern(C) int function(GtkStatusIcon* statusIcon, int size) sizeChanged;
/** */
extern(C) int function(GtkStatusIcon* statusIcon, GdkEventButton* event) buttonPressEvent;
/** */
extern(C) int function(GtkStatusIcon* statusIcon, GdkEventButton* event) buttonReleaseEvent;
/** */
extern(C) int function(GtkStatusIcon* statusIcon, GdkEventScroll* event) scrollEvent;
/** */
extern(C) int function(GtkStatusIcon* statusIcon, int x, int y, int keyboardMode, GtkTooltip* tooltip) queryTooltip;
void* GtkReserved1;
void* GtkReserved2;
void* GtkReserved3;
void* GtkReserved4;
}
struct GtkStatusIconPrivate;
struct GtkStatusbar
{
GtkBox parentWidget;
GtkStatusbarPrivate* priv;
}
struct GtkStatusbarAccessible
{
GtkContainerAccessible parent;
GtkStatusbarAccessiblePrivate* priv;
}
struct GtkStatusbarAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkStatusbarAccessiblePrivate;
struct GtkStatusbarClass
{
GtkBoxClass parentClass;
void* reserved;
/** */
extern(C) void function(GtkStatusbar* statusbar, uint contextId, const(char)* text) textPushed;
/** */
extern(C) void function(GtkStatusbar* statusbar, uint contextId, const(char)* text) textPopped;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkStatusbarPrivate;
struct GtkStockItem
{
/**
* Identifier.
*/
char* stockId;
/**
* User visible label.
*/
char* label;
/**
* Modifier type for keyboard accelerator
*/
GdkModifierType modifier;
/**
* Keyboard accelerator
*/
uint keyval;
/**
* Translation domain of the menu or toolbar item
*/
char* translationDomain;
}
struct GtkStyle
{
GObject parentInstance;
/**
* Set of foreground #GdkColor
*/
GdkColor[5] fg;
/**
* Set of background #GdkColor
*/
GdkColor[5] bg;
/**
* Set of light #GdkColor
*/
GdkColor[5] light;
/**
* Set of dark #GdkColor
*/
GdkColor[5] dark;
/**
* Set of mid #GdkColor
*/
GdkColor[5] mid;
/**
* Set of text #GdkColor
*/
GdkColor[5] text;
/**
* Set of base #GdkColor
*/
GdkColor[5] base;
/**
* Color halfway between text/base
*/
GdkColor[5] textAa;
/**
* #GdkColor to use for black
*/
GdkColor black;
/**
* #GdkColor to use for white
*/
GdkColor white;
/**
* #PangoFontDescription
*/
PangoFontDescription* fontDesc;
/**
* Thickness in X direction
*/
int xthickness;
/**
* Thickness in Y direction
*/
int ythickness;
/**
* Set of background #cairo_pattern_t
*/
cairo_pattern_t*[5] background;
int attachCount;
GdkVisual* visual;
PangoFontDescription* privateFontDesc;
GtkRcStyle* rcStyle;
GSList* styles;
GArray* propertyCache;
GSList* iconFactories;
}
struct GtkStyleClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkStyle* style) realize;
/** */
extern(C) void function(GtkStyle* style) unrealize;
/** */
extern(C) void function(GtkStyle* style, GtkStyle* src) copy;
/** */
extern(C) GtkStyle* function(GtkStyle* style) clone;
/** */
extern(C) void function(GtkStyle* style, GtkRcStyle* rcStyle) initFromRc;
/** */
extern(C) void function(GtkStyle* style, GdkWindow* window, GtkStateType stateType) setBackground;
/**
*
* Params:
* style = a #GtkStyle
* source = the #GtkIconSource specifying the icon to render
* direction = a text direction
* state = a state
* size = the size to render the icon at (#GtkIconSize). A size of
* `(GtkIconSize)-1` means render at the size of the source and
* don’t scale.
* widget = the widget
* detail = a style detail
* Returns: a newly-created #GdkPixbuf
* containing the rendered icon
*/
extern(C) GdkPixbuf* function(GtkStyle* style, GtkIconSource* source, GtkTextDirection direction, GtkStateType state, GtkIconSize size, GtkWidget* widget, const(char)* detail) renderIcon;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x1, int x2, int y) drawHline;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int y1, int y2, int x) drawVline;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawShadow;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, GtkArrowType arrowType, int fill, int x, int y, int width, int height) drawArrow;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawDiamond;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawBox;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawFlatBox;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawCheck;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawOption;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawTab;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide, int gapX, int gapWidth) drawShadowGap;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide, int gapX, int gapWidth) drawBoxGap;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide) drawExtension;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) drawFocus;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkOrientation orientation) drawSlider;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkOrientation orientation) drawHandle;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x, int y, GtkExpanderStyle expanderStyle) drawExpander;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, int useText, GtkWidget* widget, const(char)* detail, int x, int y, PangoLayout* layout) drawLayout;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, GdkWindowEdge edge, int x, int y, int width, int height) drawResizeGrip;
/** */
extern(C) void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, uint step, int x, int y, int width, int height) drawSpinner;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
/** */
extern(C) void function() GtkReserved9;
/** */
extern(C) void function() GtkReserved10;
/** */
extern(C) void function() GtkReserved11;
}
struct GtkStyleContext
{
GObject parentObject;
GtkStyleContextPrivate* priv;
}
struct GtkStyleContextClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkStyleContext* context) changed;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkStyleContextPrivate;
struct GtkStyleProperties
{
GObject parentObject;
GtkStylePropertiesPrivate* priv;
}
struct GtkStylePropertiesClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkStylePropertiesPrivate;
struct GtkStyleProvider;
struct GtkStyleProviderIface
{
GTypeInterface gIface;
/**
*
* Params:
* provider = a #GtkStyleProvider
* path = #GtkWidgetPath to query
* Returns: a #GtkStyleProperties containing the
* style settings affecting @path
*/
extern(C) GtkStyleProperties* function(GtkStyleProvider* provider, GtkWidgetPath* path) getStyle;
/**
*
* Params:
* provider = a #GtkStyleProvider
* path = #GtkWidgetPath to query
* state = state to query the style property for
* pspec = The #GParamSpec to query
* value = return location for the property value
* Returns: %TRUE if the property was found and has a value, %FALSE otherwise
*/
extern(C) int function(GtkStyleProvider* provider, GtkWidgetPath* path, GtkStateFlags state, GParamSpec* pspec, GValue* value) getStyleProperty;
/**
*
* Params:
* provider = a #GtkStyleProvider
* path = #GtkWidgetPath to query
* Returns: The icon factory to use for @path, or %NULL
*/
extern(C) GtkIconFactory* function(GtkStyleProvider* provider, GtkWidgetPath* path) getIconFactory;
}
struct GtkSwitch
{
GtkWidget parentInstance;
GtkSwitchPrivate* priv;
}
struct GtkSwitchAccessible
{
GtkWidgetAccessible parent;
GtkSwitchAccessiblePrivate* priv;
}
struct GtkSwitchAccessibleClass
{
GtkWidgetAccessibleClass parentClass;
}
struct GtkSwitchAccessiblePrivate;
struct GtkSwitchClass
{
/**
* The parent class.
*/
GtkWidgetClass parentClass;
/** */
extern(C) void function(GtkSwitch* sw) activate;
/** */
extern(C) int function(GtkSwitch* sw, int state) stateSet;
/** */
extern(C) void function() SwitchPadding1;
/** */
extern(C) void function() SwitchPadding2;
/** */
extern(C) void function() SwitchPadding3;
/** */
extern(C) void function() SwitchPadding4;
/** */
extern(C) void function() SwitchPadding5;
}
struct GtkSwitchPrivate;
struct GtkSymbolicColor;
struct GtkTable
{
GtkContainer container;
GtkTablePrivate* priv;
}
struct GtkTableChild
{
GtkWidget* widget;
ushort leftAttach;
ushort rightAttach;
ushort topAttach;
ushort bottomAttach;
ushort xpadding;
ushort ypadding;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "xexpand", 1,
uint, "yexpand", 1,
uint, "xshrink", 1,
uint, "yshrink", 1,
uint, "xfill", 1,
uint, "yfill", 1,
uint, "", 26
));
}
struct GtkTableClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTablePrivate;
struct GtkTableRowCol
{
ushort requisition;
ushort allocation;
ushort spacing;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "needExpand", 1,
uint, "needShrink", 1,
uint, "expand", 1,
uint, "shrink", 1,
uint, "empty", 1,
uint, "", 27
));
}
struct GtkTargetEntry
{
/**
* a string representation of the target type
*/
char* target;
/**
* #GtkTargetFlags for DND
*/
uint flags;
/**
* an application-assigned integer ID which will
* get passed as a parameter to e.g the #GtkWidget::selection-get
* signal. It allows the application to identify the target
* type without extensive string compares.
*/
uint info;
}
struct GtkTargetList;
/**
* A #GtkTargetPair is used to represent the same
* information as a table of #GtkTargetEntry, but in
* an efficient form.
*/
struct GtkTargetPair
{
/**
* #GdkAtom representation of the target type
*/
GdkAtom target;
/**
* #GtkTargetFlags for DND
*/
uint flags;
/**
* an application-assigned integer ID which will
* get passed as a parameter to e.g the #GtkWidget::selection-get
* signal. It allows the application to identify the target
* type without extensive string compares.
*/
uint info;
}
struct GtkTearoffMenuItem
{
GtkMenuItem menuItem;
GtkTearoffMenuItemPrivate* priv;
}
struct GtkTearoffMenuItemClass
{
/**
* The parent class.
*/
GtkMenuItemClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTearoffMenuItemPrivate;
struct GtkTextAppearance
{
/**
* Background #GdkColor.
*/
GdkColor bgColor;
/**
* Foreground #GdkColor.
*/
GdkColor fgColor;
/**
* Super/subscript rise, can be negative.
*/
int rise;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "underline", 4,
uint, "strikethrough", 1,
uint, "drawBg", 1,
uint, "insideSelection", 1,
uint, "isText", 1,
uint, "", 24
));
union
{
GdkRGBA*[2] rgba;
uint[4] padding;
}
}
struct GtkTextAttributes
{
uint refcount;
/**
* #GtkTextAppearance for text.
*/
GtkTextAppearance appearance;
/**
* #GtkJustification for text.
*/
GtkJustification justification;
/**
* #GtkTextDirection for text.
*/
GtkTextDirection direction;
/**
* #PangoFontDescription for text.
*/
PangoFontDescription* font;
/**
* Font scale factor.
*/
double fontScale;
/**
* Width of the left margin in pixels.
*/
int leftMargin;
/**
* Width of the right margin in pixels.
*/
int rightMargin;
/**
* Amount to indent the paragraph, in pixels.
*/
int indent;
/**
* Pixels of blank space above paragraphs.
*/
int pixelsAboveLines;
/**
* Pixels of blank space below paragraphs.
*/
int pixelsBelowLines;
/**
* Pixels of blank space between wrapped lines in
* a paragraph.
*/
int pixelsInsideWrap;
/**
* Custom #PangoTabArray for this text.
*/
PangoTabArray* tabs;
/**
* #GtkWrapMode for text.
*/
GtkWrapMode wrapMode;
/**
* #PangoLanguage for text.
*/
PangoLanguage* language;
GdkColor* pgBgColor;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "invisible", 1,
uint, "bgFullHeight", 1,
uint, "editable", 1,
uint, "noFallback", 1,
uint, "", 28
));
GdkRGBA* pgBgRgba;
/**
* Extra space to insert between graphemes, in Pango units
*/
int letterSpacing;
union
{
char* fontFeatures;
uint[2] padding;
}
}
struct GtkTextBTree;
struct GtkTextBuffer
{
GObject parentInstance;
GtkTextBufferPrivate* priv;
}
struct GtkTextBufferClass
{
/**
* The object class structure needs to be the first.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextIter* pos, const(char)* newText, int newTextLength) insertText;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextIter* iter, GdkPixbuf* pixbuf) insertPixbuf;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextChildAnchor* anchor) insertChildAnchor;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end) deleteRange;
/** */
extern(C) void function(GtkTextBuffer* buffer) changed;
/** */
extern(C) void function(GtkTextBuffer* buffer) modifiedChanged;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextIter* location, GtkTextMark* mark) markSet;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextMark* mark) markDeleted;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextTag* tag, GtkTextIter* start, GtkTextIter* end) applyTag;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkTextTag* tag, GtkTextIter* start, GtkTextIter* end) removeTag;
/** */
extern(C) void function(GtkTextBuffer* buffer) beginUserAction;
/** */
extern(C) void function(GtkTextBuffer* buffer) endUserAction;
/** */
extern(C) void function(GtkTextBuffer* buffer, GtkClipboard* clipboard) pasteDone;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTextBufferPrivate;
struct GtkTextCellAccessible
{
GtkRendererCellAccessible parent;
GtkTextCellAccessiblePrivate* priv;
}
struct GtkTextCellAccessibleClass
{
GtkRendererCellAccessibleClass parentClass;
}
struct GtkTextCellAccessiblePrivate;
struct GtkTextChildAnchor
{
GObject parentInstance;
void* segment;
}
struct GtkTextChildAnchorClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTextIter
{
void* dummy1;
void* dummy2;
int dummy3;
int dummy4;
int dummy5;
int dummy6;
int dummy7;
int dummy8;
void* dummy9;
void* dummy10;
int dummy11;
int dummy12;
int dummy13;
void* dummy14;
}
struct GtkTextMark
{
GObject parentInstance;
void* segment;
}
struct GtkTextMarkClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTextTag
{
GObject parentInstance;
GtkTextTagPrivate* priv;
}
struct GtkTextTagClass
{
GObjectClass parentClass;
/**
*
* Params:
* tag = a #GtkTextTag
* eventObject = object that received the event, such as a widget
* event = the event
* iter = location where the event was received
* Returns: result of signal emission (whether the event was handled)
*/
extern(C) int function(GtkTextTag* tag, GObject* eventObject, GdkEvent* event, GtkTextIter* iter) event;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTextTagPrivate;
struct GtkTextTagTable
{
GObject parentInstance;
GtkTextTagTablePrivate* priv;
}
struct GtkTextTagTableClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkTextTagTable* table, GtkTextTag* tag, int sizeChanged) tagChanged;
/** */
extern(C) void function(GtkTextTagTable* table, GtkTextTag* tag) tagAdded;
/** */
extern(C) void function(GtkTextTagTable* table, GtkTextTag* tag) tagRemoved;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTextTagTablePrivate;
struct GtkTextView
{
GtkContainer parentInstance;
GtkTextViewPrivate* priv;
}
struct GtkTextViewAccessible
{
GtkContainerAccessible parent;
GtkTextViewAccessiblePrivate* priv;
}
struct GtkTextViewAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkTextViewAccessiblePrivate;
struct GtkTextViewClass
{
/**
* The object class structure needs to be the first
*/
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkTextView* textView, GtkWidget* popup) populatePopup;
/** */
extern(C) void function(GtkTextView* textView, GtkMovementStep step, int count, int extendSelection) moveCursor;
/** */
extern(C) void function(GtkTextView* textView) setAnchor;
/** */
extern(C) void function(GtkTextView* textView, const(char)* str) insertAtCursor;
/** */
extern(C) void function(GtkTextView* textView, GtkDeleteType type, int count) deleteFromCursor;
/** */
extern(C) void function(GtkTextView* textView) backspace;
/** */
extern(C) void function(GtkTextView* textView) cutClipboard;
/** */
extern(C) void function(GtkTextView* textView) copyClipboard;
/** */
extern(C) void function(GtkTextView* textView) pasteClipboard;
/** */
extern(C) void function(GtkTextView* textView) toggleOverwrite;
/** */
extern(C) GtkTextBuffer* function(GtkTextView* textView) createBuffer;
/** */
extern(C) void function(GtkTextView* textView, GtkTextViewLayer layer, cairo_t* cr) drawLayer;
/** */
extern(C) int function(GtkTextView* textView, GtkTextExtendSelection granularity, GtkTextIter* location, GtkTextIter* start, GtkTextIter* end) extendSelection;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
}
struct GtkTextViewPrivate;
struct GtkThemeEngine;
struct GtkThemingEngine
{
GObject parentObject;
GtkThemingEnginePrivate* priv;
}
/**
* Base class for theming engines.
*/
struct GtkThemingEngineClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x0, double y0, double x1, double y1) renderLine;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderBackground;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderFrame;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height, GtkPositionType gapSide, double xy0Gap, double xy1Gap) renderFrameGap;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height, GtkPositionType gapSide) renderExtension;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderCheck;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderOption;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double angle, double x, double y, double size) renderArrow;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderExpander;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderFocus;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, PangoLayout* layout) renderLayout;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height, GtkOrientation orientation) renderSlider;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderHandle;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, double x, double y, double width, double height) renderActivity;
/** */
extern(C) GdkPixbuf* function(GtkThemingEngine* engine, GtkIconSource* source, GtkIconSize size) renderIconPixbuf;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, GdkPixbuf* pixbuf, double x, double y) renderIcon;
/** */
extern(C) void function(GtkThemingEngine* engine, cairo_t* cr, cairo_surface_t* surface, double x, double y) renderIconSurface;
void*[14] padding;
}
struct GtkThemingEnginePrivate;
struct GtkToggleAction
{
GtkAction parent;
GtkToggleActionPrivate* privateData;
}
struct GtkToggleActionClass
{
GtkActionClass parentClass;
/** */
extern(C) void function(GtkToggleAction* action) toggled;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
/**
* #GtkToggleActionEntry structs are used with
* gtk_action_group_add_toggle_actions() to construct toggle actions.
*/
struct GtkToggleActionEntry
{
/**
* The name of the action.
*/
const(char)* name;
/**
* The stock id for the action, or the name of an icon from the
* icon theme.
*/
const(char)* stockId;
/**
* The label for the action. This field should typically be marked
* for translation, see gtk_action_group_set_translation_domain().
*/
const(char)* label;
/**
* The accelerator for the action, in the format understood by
* gtk_accelerator_parse().
*/
const(char)* accelerator;
/**
* The tooltip for the action. This field should typically be
* marked for translation, see gtk_action_group_set_translation_domain().
*/
const(char)* tooltip;
/**
* The function to call when the action is activated.
*/
GCallback callback;
/**
* The initial state of the toggle action.
*/
bool isActive;
}
struct GtkToggleActionPrivate;
struct GtkToggleButton
{
GtkButton button;
GtkToggleButtonPrivate* priv;
}
struct GtkToggleButtonAccessible
{
GtkButtonAccessible parent;
GtkToggleButtonAccessiblePrivate* priv;
}
struct GtkToggleButtonAccessibleClass
{
GtkButtonAccessibleClass parentClass;
}
struct GtkToggleButtonAccessiblePrivate;
struct GtkToggleButtonClass
{
GtkButtonClass parentClass;
/** */
extern(C) void function(GtkToggleButton* toggleButton) toggled;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToggleButtonPrivate;
struct GtkToggleToolButton
{
GtkToolButton parent;
GtkToggleToolButtonPrivate* priv;
}
struct GtkToggleToolButtonClass
{
/**
* The parent class.
*/
GtkToolButtonClass parentClass;
/** */
extern(C) void function(GtkToggleToolButton* button) toggled;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToggleToolButtonPrivate;
struct GtkToolButton
{
GtkToolItem parent;
GtkToolButtonPrivate* priv;
}
struct GtkToolButtonClass
{
/**
* The parent class.
*/
GtkToolItemClass parentClass;
GType buttonType;
/** */
extern(C) void function(GtkToolButton* toolItem) clicked;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToolButtonPrivate;
struct GtkToolItem
{
GtkBin parent;
GtkToolItemPrivate* priv;
}
struct GtkToolItemClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) int function(GtkToolItem* toolItem) createMenuProxy;
/** */
extern(C) void function(GtkToolItem* toolItem) toolbarReconfigured;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToolItemGroup
{
GtkContainer parentInstance;
GtkToolItemGroupPrivate* priv;
}
struct GtkToolItemGroupClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToolItemGroupPrivate;
struct GtkToolItemPrivate;
struct GtkToolPalette
{
GtkContainer parentInstance;
GtkToolPalettePrivate* priv;
}
struct GtkToolPaletteClass
{
/**
* The parent class.
*/
GtkContainerClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToolPalettePrivate;
struct GtkToolShell;
/**
* Virtual function table for the #GtkToolShell interface.
*/
struct GtkToolShellIface
{
GTypeInterface gIface;
/** */
extern(C) GtkIconSize function(GtkToolShell* shell) getIconSize;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current orientation of @shell
*/
extern(C) GtkOrientation function(GtkToolShell* shell) getOrientation;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current style of @shell
*/
extern(C) GtkToolbarStyle function(GtkToolShell* shell) getStyle;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: The relief style of buttons on @shell.
*/
extern(C) GtkReliefStyle function(GtkToolShell* shell) getReliefStyle;
/** */
extern(C) void function(GtkToolShell* shell) rebuildMenu;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current text orientation of @shell
*/
extern(C) GtkOrientation function(GtkToolShell* shell) getTextOrientation;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current text alignment of @shell
*/
extern(C) float function(GtkToolShell* shell) getTextAlignment;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current ellipsize mode of @shell
*/
extern(C) PangoEllipsizeMode function(GtkToolShell* shell) getEllipsizeMode;
/**
*
* Params:
* shell = a #GtkToolShell
* Returns: the current text size group of @shell
*/
extern(C) GtkSizeGroup* function(GtkToolShell* shell) getTextSizeGroup;
}
struct GtkToolbar
{
GtkContainer container;
GtkToolbarPrivate* priv;
}
struct GtkToolbarClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkToolbar* toolbar, GtkOrientation orientation) orientationChanged;
/** */
extern(C) void function(GtkToolbar* toolbar, GtkToolbarStyle style) styleChanged;
/** */
extern(C) int function(GtkToolbar* toolbar, int x, int y, int buttonNumber) popupContextMenu;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkToolbarPrivate;
struct GtkTooltip;
struct GtkToplevelAccessible
{
AtkObject parent;
GtkToplevelAccessiblePrivate* priv;
}
struct GtkToplevelAccessibleClass
{
AtkObjectClass parentClass;
}
struct GtkToplevelAccessiblePrivate;
struct GtkTreeDragDest;
struct GtkTreeDragDestIface
{
GTypeInterface gIface;
/**
*
* Params:
* dragDest = a #GtkTreeDragDest
* dest = row to drop in front of
* selectionData = data to drop
* Returns: whether a new row was created before position @dest
*/
extern(C) int function(GtkTreeDragDest* dragDest, GtkTreePath* dest, GtkSelectionData* selectionData) dragDataReceived;
/**
*
* Params:
* dragDest = a #GtkTreeDragDest
* destPath = destination row
* selectionData = the data being dragged
* Returns: %TRUE if a drop is possible before @dest_path
*/
extern(C) int function(GtkTreeDragDest* dragDest, GtkTreePath* destPath, GtkSelectionData* selectionData) rowDropPossible;
}
struct GtkTreeDragSource;
struct GtkTreeDragSourceIface
{
GTypeInterface gIface;
/**
*
* Params:
* dragSource = a #GtkTreeDragSource
* path = row on which user is initiating a drag
* Returns: %TRUE if the row can be dragged
*/
extern(C) int function(GtkTreeDragSource* dragSource, GtkTreePath* path) rowDraggable;
/**
*
* Params:
* dragSource = a #GtkTreeDragSource
* path = row that was dragged
* selectionData = a #GtkSelectionData to fill with data
* from the dragged row
* Returns: %TRUE if data of the required type was provided
*/
extern(C) int function(GtkTreeDragSource* dragSource, GtkTreePath* path, GtkSelectionData* selectionData) dragDataGet;
/**
*
* Params:
* dragSource = a #GtkTreeDragSource
* path = row that was being dragged
* Returns: %TRUE if the row was successfully deleted
*/
extern(C) int function(GtkTreeDragSource* dragSource, GtkTreePath* path) dragDataDelete;
}
struct GtkTreeIter
{
/**
* a unique stamp to catch invalid iterators
*/
int stamp;
/**
* model-specific data
*/
void* userData;
/**
* model-specific data
*/
void* userData2;
/**
* model-specific data
*/
void* userData3;
}
struct GtkTreeModel;
struct GtkTreeModelFilter
{
GObject parent;
GtkTreeModelFilterPrivate* priv;
}
struct GtkTreeModelFilterClass
{
GObjectClass parentClass;
/** */
extern(C) int function(GtkTreeModelFilter* self, GtkTreeModel* childModel, GtkTreeIter* iter) visible;
/** */
extern(C) void function(GtkTreeModelFilter* self, GtkTreeModel* childModel, GtkTreeIter* iter, GValue* value, int column) modify;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTreeModelFilterPrivate;
struct GtkTreeModelIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) rowChanged;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) rowInserted;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) rowHasChildToggled;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreePath* path) rowDeleted;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter, int* newOrder) rowsReordered;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* Returns: the flags supported by this interface
*/
extern(C) GtkTreeModelFlags function(GtkTreeModel* treeModel) getFlags;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* Returns: the number of columns
*/
extern(C) int function(GtkTreeModel* treeModel) getNColumns;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* index = the column index
* Returns: the type of the column
*/
extern(C) GType function(GtkTreeModel* treeModel, int index) getColumnType;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the uninitialized #GtkTreeIter-struct
* path = the #GtkTreePath-struct
* Returns: %TRUE, if @iter was set
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreePath* path) getIter;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct
* Returns: a newly-created #GtkTreePath-struct
*/
extern(C) GtkTreePath* function(GtkTreeModel* treeModel, GtkTreeIter* iter) getPath;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreeIter* iter, int column, GValue* value) getValue;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct
* Returns: %TRUE if @iter has been changed to the next node
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter) iterNext;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct
* Returns: %TRUE if @iter has been changed to the previous node
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter) iterPrevious;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the new #GtkTreeIter-struct to be set to the child
* parent = the #GtkTreeIter-struct, or %NULL
* Returns: %TRUE, if @iter has been set to the first child
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* parent) iterChildren;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct to test for children
* Returns: %TRUE if @iter has children
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter) iterHasChild;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct, or %NULL
* Returns: the number of children of @iter
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter) iterNChildren;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the #GtkTreeIter-struct to set to the nth child
* parent = the #GtkTreeIter-struct to get the child from, or %NULL.
* n = the index of the desired child
* Returns: %TRUE, if @parent has an @n-th child
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* parent, int n) iterNthChild;
/**
*
* Params:
* treeModel = a #GtkTreeModel
* iter = the new #GtkTreeIter-struct to set to the parent
* child = the #GtkTreeIter-struct
* Returns: %TRUE, if @iter is set to the parent of @child
*/
extern(C) int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* child) iterParent;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreeIter* iter) refNode;
/** */
extern(C) void function(GtkTreeModel* treeModel, GtkTreeIter* iter) unrefNode;
}
struct GtkTreeModelSort
{
GObject parent;
GtkTreeModelSortPrivate* priv;
}
struct GtkTreeModelSortClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTreeModelSortPrivate;
struct GtkTreePath;
struct GtkTreeRowReference;
struct GtkTreeSelection
{
GObject parent;
GtkTreeSelectionPrivate* priv;
}
struct GtkTreeSelectionClass
{
/**
* The parent class.
*/
GObjectClass parentClass;
/** */
extern(C) void function(GtkTreeSelection* selection) changed;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTreeSelectionPrivate;
struct GtkTreeSortable;
struct GtkTreeSortableIface
{
GTypeInterface gIface;
/** */
extern(C) void function(GtkTreeSortable* sortable) sortColumnChanged;
/**
*
* Params:
* sortable = A #GtkTreeSortable
* sortColumnId = The sort column id to be filled in
* order = The #GtkSortType to be filled in
* Returns: %TRUE if the sort column is not one of the special sort
* column ids.
*/
extern(C) int function(GtkTreeSortable* sortable, int* sortColumnId, GtkSortType* order) getSortColumnId;
/** */
extern(C) void function(GtkTreeSortable* sortable, int sortColumnId, GtkSortType order) setSortColumnId;
/** */
extern(C) void function(GtkTreeSortable* sortable, int sortColumnId, GtkTreeIterCompareFunc sortFunc, void* userData, GDestroyNotify destroy) setSortFunc;
/** */
extern(C) void function(GtkTreeSortable* sortable, GtkTreeIterCompareFunc sortFunc, void* userData, GDestroyNotify destroy) setDefaultSortFunc;
/**
*
* Params:
* sortable = A #GtkTreeSortable
* Returns: %TRUE, if the model has a default sort function
*/
extern(C) int function(GtkTreeSortable* sortable) hasDefaultSortFunc;
}
struct GtkTreeStore
{
GObject parent;
GtkTreeStorePrivate* priv;
}
struct GtkTreeStoreClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTreeStorePrivate;
struct GtkTreeView
{
GtkContainer parent;
GtkTreeViewPrivate* priv;
}
struct GtkTreeViewAccessible
{
GtkContainerAccessible parent;
GtkTreeViewAccessiblePrivate* priv;
}
struct GtkTreeViewAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkTreeViewAccessiblePrivate;
struct GtkTreeViewClass
{
GtkContainerClass parentClass;
/** */
extern(C) void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* column) rowActivated;
/** */
extern(C) int function(GtkTreeView* treeView, GtkTreeIter* iter, GtkTreePath* path) testExpandRow;
/** */
extern(C) int function(GtkTreeView* treeView, GtkTreeIter* iter, GtkTreePath* path) testCollapseRow;
/** */
extern(C) void function(GtkTreeView* treeView, GtkTreeIter* iter, GtkTreePath* path) rowExpanded;
/** */
extern(C) void function(GtkTreeView* treeView, GtkTreeIter* iter, GtkTreePath* path) rowCollapsed;
/** */
extern(C) void function(GtkTreeView* treeView) columnsChanged;
/** */
extern(C) void function(GtkTreeView* treeView) cursorChanged;
/** */
extern(C) int function(GtkTreeView* treeView, GtkMovementStep step, int count) moveCursor;
/** */
extern(C) int function(GtkTreeView* treeView) selectAll;
/** */
extern(C) int function(GtkTreeView* treeView) unselectAll;
/** */
extern(C) int function(GtkTreeView* treeView, int startEditing) selectCursorRow;
/** */
extern(C) int function(GtkTreeView* treeView) toggleCursorRow;
/** */
extern(C) int function(GtkTreeView* treeView, int logical, int expand, int openAll) expandCollapseCursorRow;
/** */
extern(C) int function(GtkTreeView* treeView) selectCursorParent;
/** */
extern(C) int function(GtkTreeView* treeView) startInteractiveSearch;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
/** */
extern(C) void function() GtkReserved5;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
/** */
extern(C) void function() GtkReserved8;
}
struct GtkTreeViewColumn
{
GObject parentInstance;
GtkTreeViewColumnPrivate* priv;
}
struct GtkTreeViewColumnClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkTreeViewColumn* treeColumn) clicked;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkTreeViewColumnPrivate;
struct GtkTreeViewPrivate;
struct GtkUIManager
{
GObject parent;
GtkUIManagerPrivate* privateData;
}
struct GtkUIManagerClass
{
GObjectClass parentClass;
/** */
extern(C) void function(GtkUIManager* manager, GtkWidget* widget) addWidget;
/** */
extern(C) void function(GtkUIManager* manager) actionsChanged;
/** */
extern(C) void function(GtkUIManager* manager, GtkAction* action, GtkWidget* proxy) connectProxy;
/** */
extern(C) void function(GtkUIManager* manager, GtkAction* action, GtkWidget* proxy) disconnectProxy;
/** */
extern(C) void function(GtkUIManager* manager, GtkAction* action) preActivate;
/** */
extern(C) void function(GtkUIManager* manager, GtkAction* action) postActivate;
/**
*
* Params:
* manager = a #GtkUIManager
* path = a path
* Returns: the widget found by following the path,
* or %NULL if no widget was found
*/
extern(C) GtkWidget* function(GtkUIManager* manager, const(char)* path) getWidget;
/**
*
* Params:
* manager = a #GtkUIManager
* path = a path
* Returns: the action whose proxy widget is found by following the path,
* or %NULL if no widget was found.
*/
extern(C) GtkAction* function(GtkUIManager* manager, const(char)* path) getAction;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkUIManagerPrivate;
struct GtkVBox
{
GtkBox box;
}
struct GtkVBoxClass
{
GtkBoxClass parentClass;
}
struct GtkVButtonBox
{
GtkButtonBox buttonBox;
}
struct GtkVButtonBoxClass
{
GtkButtonBoxClass parentClass;
}
struct GtkVPaned
{
GtkPaned paned;
}
struct GtkVPanedClass
{
GtkPanedClass parentClass;
}
struct GtkVScale
{
GtkScale scale;
}
struct GtkVScaleClass
{
GtkScaleClass parentClass;
}
struct GtkVScrollbar
{
GtkScrollbar scrollbar;
}
struct GtkVScrollbarClass
{
GtkScrollbarClass parentClass;
}
struct GtkVSeparator
{
GtkSeparator separator;
}
struct GtkVSeparatorClass
{
GtkSeparatorClass parentClass;
}
struct GtkViewport
{
GtkBin bin;
GtkViewportPrivate* priv;
}
struct GtkViewportClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkViewportPrivate;
struct GtkVolumeButton
{
GtkScaleButton parent;
}
struct GtkVolumeButtonClass
{
GtkScaleButtonClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkWidget
{
GObject parentInstance;
GtkWidgetPrivate* priv;
}
struct GtkWidgetAccessible
{
GtkAccessible parent;
GtkWidgetAccessiblePrivate* priv;
}
struct GtkWidgetAccessibleClass
{
GtkAccessibleClass parentClass;
/** */
extern(C) void function(GObject* object, GParamSpec* pspec) notifyGtk;
}
struct GtkWidgetAccessiblePrivate;
struct GtkWidgetClass
{
/**
* The object class structure needs to be the first
* element in the widget class structure in order for the class mechanism
* to work correctly. This allows a GtkWidgetClass pointer to be cast to
* a GObjectClass pointer.
*/
GObjectClass parentClass;
/**
* The signal to emit when a widget of this class is
* activated, gtk_widget_activate() handles the emission.
* Implementation of this signal is optional.
*/
uint activateSignal;
/** */
extern(C) void function(GtkWidget* widget, uint nPspecs, GParamSpec** pspecs) dispatchChildPropertiesChanged;
/** */
extern(C) void function(GtkWidget* widget) destroy;
/** */
extern(C) void function(GtkWidget* widget) show;
/** */
extern(C) void function(GtkWidget* widget) showAll;
/** */
extern(C) void function(GtkWidget* widget) hide;
/** */
extern(C) void function(GtkWidget* widget) map;
/** */
extern(C) void function(GtkWidget* widget) unmap;
/** */
extern(C) void function(GtkWidget* widget) realize;
/** */
extern(C) void function(GtkWidget* widget) unrealize;
/** */
extern(C) void function(GtkWidget* widget, GtkAllocation* allocation) sizeAllocate;
/** */
extern(C) void function(GtkWidget* widget, GtkStateType previousState) stateChanged;
/** */
extern(C) void function(GtkWidget* widget, GtkStateFlags previousStateFlags) stateFlagsChanged;
/** */
extern(C) void function(GtkWidget* widget, GtkWidget* previousParent) parentSet;
/** */
extern(C) void function(GtkWidget* widget, GtkWidget* previousToplevel) hierarchyChanged;
/** */
extern(C) void function(GtkWidget* widget, GtkStyle* previousStyle) styleSet;
/** */
extern(C) void function(GtkWidget* widget, GtkTextDirection previousDirection) directionChanged;
/** */
extern(C) void function(GtkWidget* widget, int wasGrabbed) grabNotify;
/** */
extern(C) void function(GtkWidget* widget, GParamSpec* childProperty) childNotify;
/** */
extern(C) int function(GtkWidget* widget, cairo_t* cr) draw;
/**
*
* Params:
* widget = a #GtkWidget instance
* Returns: The #GtkSizeRequestMode preferred by @widget.
*/
extern(C) GtkSizeRequestMode function(GtkWidget* widget) getRequestMode;
/** */
extern(C) void function(GtkWidget* widget, int* minimumHeight, int* naturalHeight) getPreferredHeight;
/** */
extern(C) void function(GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) getPreferredWidthForHeight;
/** */
extern(C) void function(GtkWidget* widget, int* minimumWidth, int* naturalWidth) getPreferredWidth;
/** */
extern(C) void function(GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) getPreferredHeightForWidth;
/**
*
* Params:
* widget = a #GtkWidget
* groupCycling = %TRUE if there are other widgets with the same mnemonic
* Returns: %TRUE if the signal has been handled
*/
extern(C) int function(GtkWidget* widget, int groupCycling) mnemonicActivate;
/** */
extern(C) void function(GtkWidget* widget) grabFocus;
/** */
extern(C) int function(GtkWidget* widget, GtkDirectionType direction) focus;
/** */
extern(C) void function(GtkWidget* widget, GtkDirectionType direction) moveFocus;
/**
*
* Params:
* widget = a #GtkWidget
* direction = direction of focus movement
* Returns: %TRUE if stopping keyboard navigation is fine, %FALSE
* if the emitting widget should try to handle the keyboard
* navigation attempt in its parent container(s).
*/
extern(C) int function(GtkWidget* widget, GtkDirectionType direction) keynavFailed;
/**
*
* Params:
* widget = a #GtkWidget
* event = a #GdkEvent
* Returns: return from the event signal emission (%TRUE if
* the event was handled)
*/
extern(C) int function(GtkWidget* widget, GdkEvent* event) event;
/** */
extern(C) int function(GtkWidget* widget, GdkEventButton* event) buttonPressEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventButton* event) buttonReleaseEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventScroll* event) scrollEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventMotion* event) motionNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventAny* event) deleteEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventAny* event) destroyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventKey* event) keyPressEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventKey* event) keyReleaseEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventCrossing* event) enterNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventCrossing* event) leaveNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventConfigure* event) configureEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventFocus* event) focusInEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventFocus* event) focusOutEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventAny* event) mapEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventAny* event) unmapEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventProperty* event) propertyNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventSelection* event) selectionClearEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventSelection* event) selectionRequestEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventSelection* event) selectionNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventProximity* event) proximityInEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventProximity* event) proximityOutEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventVisibility* event) visibilityNotifyEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventWindowState* event) windowStateEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventExpose* event) damageEvent;
/** */
extern(C) int function(GtkWidget* widget, GdkEventGrabBroken* event) grabBrokenEvent;
/** */
extern(C) void function(GtkWidget* widget, GtkSelectionData* selectionData, uint info, uint time) selectionGet;
/** */
extern(C) void function(GtkWidget* widget, GtkSelectionData* selectionData, uint time) selectionReceived;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context) dragBegin;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context) dragEnd;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context, GtkSelectionData* selectionData, uint info, uint time) dragDataGet;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context) dragDataDelete;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context, uint time) dragLeave;
/** */
extern(C) int function(GtkWidget* widget, GdkDragContext* context, int x, int y, uint time) dragMotion;
/** */
extern(C) int function(GtkWidget* widget, GdkDragContext* context, int x, int y, uint time) dragDrop;
/** */
extern(C) void function(GtkWidget* widget, GdkDragContext* context, int x, int y, GtkSelectionData* selectionData, uint info, uint time) dragDataReceived;
/** */
extern(C) int function(GtkWidget* widget, GdkDragContext* context, GtkDragResult result) dragFailed;
/** */
extern(C) int function(GtkWidget* widget) popupMenu;
/** */
extern(C) int function(GtkWidget* widget, GtkWidgetHelpType helpType) showHelp;
/**
*
* Params:
* widget = a #GtkWidget
* Returns: the #AtkObject associated with @widget
*/
extern(C) AtkObject* function(GtkWidget* widget) getAccessible;
/** */
extern(C) void function(GtkWidget* widget, GdkScreen* previousScreen) screenChanged;
/**
*
* Params:
* widget = a #GtkWidget
* signalId = the ID of a signal installed on @widget
* Returns: %TRUE if the accelerator can be activated.
*/
extern(C) int function(GtkWidget* widget, uint signalId) canActivateAccel;
/** */
extern(C) void function(GtkWidget* widget) compositedChanged;
/** */
extern(C) int function(GtkWidget* widget, int x, int y, int keyboardTooltip, GtkTooltip* tooltip) queryTooltip;
/** */
extern(C) void function(GtkWidget* widget, int* hexpandP, int* vexpandP) computeExpand;
/** */
extern(C) void function(GtkWidget* widget, GtkOrientation orientation, int* minimumSize, int* naturalSize) adjustSizeRequest;
/** */
extern(C) void function(GtkWidget* widget, GtkOrientation orientation, int* minimumSize, int* naturalSize, int* allocatedPos, int* allocatedSize) adjustSizeAllocation;
/** */
extern(C) void function(GtkWidget* widget) styleUpdated;
/** */
extern(C) int function(GtkWidget* widget, GdkEventTouch* event) touchEvent;
/** */
extern(C) void function(GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight, int* minimumBaseline, int* naturalBaseline) getPreferredHeightAndBaselineForWidth;
/** */
extern(C) void function(GtkWidget* widget, int* minimumBaseline, int* naturalBaseline) adjustBaselineRequest;
/** */
extern(C) void function(GtkWidget* widget, int* baseline) adjustBaselineAllocation;
/** */
extern(C) void function(GtkWidget* widget, cairo_region_t* region) queueDrawRegion;
GtkWidgetClassPrivate* priv;
/** */
extern(C) void function() GtkReserved6;
/** */
extern(C) void function() GtkReserved7;
}
struct GtkWidgetClassPrivate;
struct GtkWidgetPath;
struct GtkWidgetPrivate;
struct GtkWindow
{
GtkBin bin;
GtkWindowPrivate* priv;
}
struct GtkWindowAccessible
{
GtkContainerAccessible parent;
GtkWindowAccessiblePrivate* priv;
}
struct GtkWindowAccessibleClass
{
GtkContainerAccessibleClass parentClass;
}
struct GtkWindowAccessiblePrivate;
struct GtkWindowClass
{
/**
* The parent class.
*/
GtkBinClass parentClass;
/** */
extern(C) void function(GtkWindow* window, GtkWidget* focus) setFocus;
/** */
extern(C) void function(GtkWindow* window) activateFocus;
/** */
extern(C) void function(GtkWindow* window) activateDefault;
/** */
extern(C) void function(GtkWindow* window) keysChanged;
/** */
extern(C) int function(GtkWindow* window, int toggle) enableDebugging;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
}
struct GtkWindowGeometryInfo;
struct GtkWindowGroup
{
GObject parentInstance;
GtkWindowGroupPrivate* priv;
}
struct GtkWindowGroupClass
{
GObjectClass parentClass;
/** */
extern(C) void function() GtkReserved1;
/** */
extern(C) void function() GtkReserved2;
/** */
extern(C) void function() GtkReserved3;
/** */
extern(C) void function() GtkReserved4;
}
struct GtkWindowGroupPrivate;
struct GtkWindowPrivate;
/** */
public alias extern(C) int function(GtkAccelGroup* accelGroup, GObject* acceleratable, uint keyval, GdkModifierType modifier) GtkAccelGroupActivate;
/** */
public alias extern(C) int function(GtkAccelKey* key, GClosure* closure, void* data) GtkAccelGroupFindFunc;
/** */
public alias extern(C) void function(void* data, const(char)* accelPath, uint accelKey, GdkModifierType accelMods, int changed) GtkAccelMapForeach;
/**
* A function used by gtk_assistant_set_forward_page_func() to know which
* is the next page given a current one. It’s called both for computing the
* next page when the user presses the “forward” button and for handling
* the behavior of the “last” button.
*
* Params:
* currentPage = The page number used to calculate the next page.
* data = user data.
*
* Returns: The next page number.
*/
public alias extern(C) int function(int currentPage, void* data) GtkAssistantPageFunc;
/**
* This is the signature of a function used to connect signals. It is used
* by the gtk_builder_connect_signals() and gtk_builder_connect_signals_full()
* methods. It is mainly intended for interpreted language bindings, but
* could be useful where the programmer wants more control over the signal
* connection process. Note that this function can only be called once,
* subsequent calls will do nothing.
*
* Params:
* builder = a #GtkBuilder
* object = object to connect a signal to
* signalName = name of the signal
* handlerName = name of the handler
* connectObject = a #GObject, if non-%NULL, use g_signal_connect_object()
* flags = #GConnectFlags to use
* userData = user data
*
* Since: 2.12
*/
public alias extern(C) void function(GtkBuilder* builder, GObject* object, const(char)* signalName, const(char)* handlerName, GObject* connectObject, GConnectFlags flags, void* userData) GtkBuilderConnectFunc;
/**
* This kind of functions provide Pango markup with detail information for the
* specified day. Examples for such details are holidays or appointments. The
* function returns %NULL when no information is available.
*
* Params:
* calendar = a #GtkCalendar.
* year = the year for which details are needed.
* month = the month for which details are needed.
* day = the day of @month for which details are needed.
* userData = the data passed with gtk_calendar_set_detail_func().
*
* Returns: Newly allocated string with Pango markup
* with details for the specified day or %NULL.
*
* Since: 2.14
*/
public alias extern(C) char* function(GtkCalendar* calendar, uint year, uint month, uint day, void* userData) GtkCalendarDetailFunc;
/**
* The type of the callback functions used for e.g. iterating over
* the children of a container, see gtk_container_foreach().
*
* Params:
* widget = the widget to operate on
* data = user-supplied data
*/
public alias extern(C) void function(GtkWidget* widget, void* data) GtkCallback;
/**
* The type of the callback functions used for iterating over the
* cell renderers and their allocated areas inside a #GtkCellArea,
* see gtk_cell_area_foreach_alloc().
*
* Params:
* renderer = the cell renderer to operate on
* cellArea = the area allocated to @renderer inside the rectangle
* provided to gtk_cell_area_foreach_alloc().
* cellBackground = the background area for @renderer inside the
* background area provided to gtk_cell_area_foreach_alloc().
* data = user-supplied data
*
* Returns: %TRUE to stop iterating over cells.
*/
public alias extern(C) int function(GtkCellRenderer* renderer, GdkRectangle* cellArea, GdkRectangle* cellBackground, void* data) GtkCellAllocCallback;
/**
* The type of the callback functions used for iterating over
* the cell renderers of a #GtkCellArea, see gtk_cell_area_foreach().
*
* Params:
* renderer = the cell renderer to operate on
* data = user-supplied data
*
* Returns: %TRUE to stop iterating over cells.
*/
public alias extern(C) int function(GtkCellRenderer* renderer, void* data) GtkCellCallback;
/**
* A function which should set the value of @cell_layout’s cell renderer(s)
* as appropriate.
*
* Params:
* cellLayout = a #GtkCellLayout
* cell = the cell renderer whose value is to be set
* treeModel = the model
* iter = a #GtkTreeIter indicating the row to set the value for
* data = user data passed to gtk_cell_layout_set_cell_data_func()
*/
public alias extern(C) void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, GtkTreeModel* treeModel, GtkTreeIter* iter, void* data) GtkCellLayoutDataFunc;
/**
* A function that will be called when the contents of the clipboard are changed
* or cleared. Once this has called, the @user_data_or_owner argument
* will not be used again.
*
* Params:
* clipboard = the #GtkClipboard
* userDataOrOwner = the @user_data argument passed to gtk_clipboard_set_with_data(),
* or the @owner argument passed to gtk_clipboard_set_with_owner()
*/
public alias extern(C) void function(GtkClipboard* clipboard, void* userDataOrOwner) GtkClipboardClearFunc;
/**
* A function that will be called to provide the contents of the selection.
* If multiple types of data were advertised, the requested type can
* be determined from the @info parameter or by checking the target field
* of @selection_data. If the data could successfully be converted into
* then it should be stored into the @selection_data object by
* calling gtk_selection_data_set() (or related functions such
* as gtk_selection_data_set_text()). If no data is set, the requestor
* will be informed that the attempt to get the data failed.
*
* Params:
* clipboard = the #GtkClipboard
* selectionData = a #GtkSelectionData argument in which the requested
* data should be stored.
* info = the info field corresponding to the requested target from the
* #GtkTargetEntry array passed to gtk_clipboard_set_with_data() or
* gtk_clipboard_set_with_owner().
* userDataOrOwner = the @user_data argument passed to
* gtk_clipboard_set_with_data(), or the @owner argument passed to
* gtk_clipboard_set_with_owner()
*/
public alias extern(C) void function(GtkClipboard* clipboard, GtkSelectionData* selectionData, uint info, void* userDataOrOwner) GtkClipboardGetFunc;
/**
* A function to be called when the results of gtk_clipboard_request_image()
* are received, or when the request fails.
*
* Params:
* clipboard = the #GtkClipboard
* pixbuf = the received image
* data = the @user_data supplied to
* gtk_clipboard_request_image().
*
* Since: 2.6
*/
public alias extern(C) void function(GtkClipboard* clipboard, GdkPixbuf* pixbuf, void* data) GtkClipboardImageReceivedFunc;
/**
* A function to be called when the results of gtk_clipboard_request_contents()
* are received, or when the request fails.
*
* Params:
* clipboard = the #GtkClipboard
* selectionData = a #GtkSelectionData containing the data was received.
* If retrieving the data failed, then then length field
* of @selection_data will be negative.
* data = the @user_data supplied to
* gtk_clipboard_request_contents().
*/
public alias extern(C) void function(GtkClipboard* clipboard, GtkSelectionData* selectionData, void* data) GtkClipboardReceivedFunc;
/**
* A function to be called when the results of
* gtk_clipboard_request_rich_text() are received, or when the request
* fails.
*
* Params:
* clipboard = the #GtkClipboard
* format = The format of the rich text
* text = the rich text received, as
* a UTF-8 encoded string, or %NULL if retrieving the data failed.
* length = Length of the text.
* data = the @user_data supplied to
* gtk_clipboard_request_rich_text().
*
* Since: 2.10
*/
public alias extern(C) void function(GtkClipboard* clipboard, GdkAtom format, ubyte* text, size_t length, void* data) GtkClipboardRichTextReceivedFunc;
/**
* A function to be called when the results of gtk_clipboard_request_targets()
* are received, or when the request fails.
*
* Params:
* clipboard = the #GtkClipboard
* atoms = the supported targets,
* as array of #GdkAtom, or %NULL if retrieving the data failed.
* nAtoms = the length of the @atoms array.
* data = the @user_data supplied to
* gtk_clipboard_request_targets().
*
* Since: 2.4
*/
public alias extern(C) void function(GtkClipboard* clipboard, GdkAtom* atoms, int nAtoms, void* data) GtkClipboardTargetsReceivedFunc;
/**
* A function to be called when the results of gtk_clipboard_request_text()
* are received, or when the request fails.
*
* Params:
* clipboard = the #GtkClipboard
* text = the text received, as a UTF-8 encoded string, or
* %NULL if retrieving the data failed.
* data = the @user_data supplied to
* gtk_clipboard_request_text().
*/
public alias extern(C) void function(GtkClipboard* clipboard, const(char)* text, void* data) GtkClipboardTextReceivedFunc;
/**
* A function to be called when the results of
* gtk_clipboard_request_uris() are received, or when the request
* fails.
*
* Params:
* clipboard = the #GtkClipboard
* uris = the received URIs
* data = the @user_data supplied to
* gtk_clipboard_request_uris().
*
* Since: 2.14
*/
public alias extern(C) void function(GtkClipboard* clipboard, char** uris, void* data) GtkClipboardURIReceivedFunc;
/** */
public alias extern(C) void function(GdkColor* colors, int nColors) GtkColorSelectionChangePaletteFunc;
/** */
public alias extern(C) void function(GdkScreen* screen, GdkColor* colors, int nColors) GtkColorSelectionChangePaletteWithScreenFunc;
/**
* A function which decides whether the row indicated by @iter matches
* a given @key, and should be displayed as a possible completion for @key.
* Note that @key is normalized and case-folded (see g_utf8_normalize()
* and g_utf8_casefold()). If this is not appropriate, match functions
* have access to the unmodified key via
* `gtk_entry_get_text (GTK_ENTRY (gtk_entry_completion_get_entry ()))`.
*
* Params:
* completion = the #GtkEntryCompletion
* key = the string to match, normalized and case-folded
* iter = a #GtkTreeIter indicating the row to match
* userData = user data given to gtk_entry_completion_set_match_func()
*
* Returns: %TRUE if @iter should be displayed as a possible completion
* for @key
*/
public alias extern(C) int function(GtkEntryCompletion* completion, const(char)* key, GtkTreeIter* iter, void* userData) GtkEntryCompletionMatchFunc;
/**
* The type of function that is used with custom filters, see
* gtk_file_filter_add_custom().
*
* Params:
* filterInfo = a #GtkFileFilterInfo that is filled according
* to the @needed flags passed to gtk_file_filter_add_custom()
* data = user data passed to gtk_file_filter_add_custom()
*
* Returns: %TRUE if the file should be displayed
*/
public alias extern(C) int function(GtkFileFilterInfo* filterInfo, void* data) GtkFileFilterFunc;
/**
* Called for flow boxes that are bound to a #GListModel with
* gtk_flow_box_bind_model() for each item that gets added to the model.
*
* Params:
* item = the item from the model for which to create a widget for
* userData = user data from gtk_flow_box_bind_model()
*
* Returns: a #GtkWidget that represents @item
*
* Since: 3.18
*/
public alias extern(C) GtkWidget* function(void* item, void* userData) GtkFlowBoxCreateWidgetFunc;
/**
* A function that will be called whenrever a child changes
* or is added. It lets you control if the child should be
* visible or not.
*
* Params:
* child = a #GtkFlowBoxChild that may be filtered
* userData = user data
*
* Returns: %TRUE if the row should be visible, %FALSE otherwise
*
* Since: 3.12
*/
public alias extern(C) int function(GtkFlowBoxChild* child, void* userData) GtkFlowBoxFilterFunc;
/**
* A function used by gtk_flow_box_selected_foreach().
* It will be called on every selected child of the @box.
*
* Params:
* box = a #GtkFlowBox
* child = a #GtkFlowBoxChild
* userData = user data
*
* Since: 3.12
*/
public alias extern(C) void function(GtkFlowBox* box, GtkFlowBoxChild* child, void* userData) GtkFlowBoxForeachFunc;
/**
* A function to compare two children to determine which
* should come first.
*
* Params:
* child1 = the first child
* child2 = the second child
* userData = user data
*
* Returns: < 0 if @child1 should be before @child2, 0 if
* the are equal, and > 0 otherwise
*
* Since: 3.12
*/
public alias extern(C) int function(GtkFlowBoxChild* child1, GtkFlowBoxChild* child2, void* userData) GtkFlowBoxSortFunc;
/**
* The type of function that is used for deciding what fonts get
* shown in a #GtkFontChooser. See gtk_font_chooser_set_filter_func().
*
* Params:
* family = a #PangoFontFamily
* face = a #PangoFontFace belonging to @family
* data = user data passed to gtk_font_chooser_set_filter_func()
*
* Returns: %TRUE if the font should be displayed
*/
public alias extern(C) int function(PangoFontFamily* family, PangoFontFace* face, void* data) GtkFontFilterFunc;
/**
* A function used by gtk_icon_view_selected_foreach() to map all
* selected rows. It will be called on every selected row in the view.
*
* Params:
* iconView = a #GtkIconView
* path = The #GtkTreePath of a selected row
* data = user data
*/
public alias extern(C) void function(GtkIconView* iconView, GtkTreePath* path, void* data) GtkIconViewForeachFunc;
/**
* Key snooper functions are called before normal event delivery.
* They can be used to implement custom key event handling.
*
* Params:
* grabWidget = the widget to which the event will be delivered
* event = the key event
* funcData = data supplied to gtk_key_snooper_install()
*
* Returns: %TRUE to stop further processing of @event, %FALSE to continue.
*/
public alias extern(C) int function(GtkWidget* grabWidget, GdkEventKey* event, void* funcData) GtkKeySnoopFunc;
/**
* Called for list boxes that are bound to a #GListModel with
* gtk_list_box_bind_model() for each item that gets added to the model.
*
* Versions of GTK+ prior to 3.18 called gtk_widget_show_all() on the rows
* created by the GtkListBoxCreateWidgetFunc, but this forced all widgets
* inside the row to be shown, and is no longer the case. Applications should
* be updated to show the desired row widgets.
*
* Params:
* item = the item from the model for which to create a widget for
* userData = user data
*
* Returns: a #GtkWidget that represents @item
*
* Since: 3.16
*/
public alias extern(C) GtkWidget* function(void* item, void* userData) GtkListBoxCreateWidgetFunc;
/**
* Will be called whenever the row changes or is added and lets you control
* if the row should be visible or not.
*
* Params:
* row = the row that may be filtered
* userData = user data
*
* Returns: %TRUE if the row should be visible, %FALSE otherwise
*
* Since: 3.10
*/
public alias extern(C) int function(GtkListBoxRow* row, void* userData) GtkListBoxFilterFunc;
/**
* A function used by gtk_list_box_selected_foreach().
* It will be called on every selected child of the @box.
*
* Params:
* box = a #GtkListBox
* row = a #GtkListBoxRow
* userData = user data
*
* Since: 3.14
*/
public alias extern(C) void function(GtkListBox* box, GtkListBoxRow* row, void* userData) GtkListBoxForeachFunc;
/**
* Compare two rows to determine which should be first.
*
* Params:
* row1 = the first row
* row2 = the second row
* userData = user data
*
* Returns: < 0 if @row1 should be before @row2, 0 if they are
* equal and > 0 otherwise
*
* Since: 3.10
*/
public alias extern(C) int function(GtkListBoxRow* row1, GtkListBoxRow* row2, void* userData) GtkListBoxSortFunc;
/**
* Whenever @row changes or which row is before @row changes this
* is called, which lets you update the header on @row. You may
* remove or set a new one via gtk_list_box_row_set_header() or
* just change the state of the current header widget.
*
* Params:
* row = the row to update
* before = the row before @row, or %NULL if it is first
* userData = user data
*
* Since: 3.10
*/
public alias extern(C) void function(GtkListBoxRow* row, GtkListBoxRow* before, void* userData) GtkListBoxUpdateHeaderFunc;
/**
* A user function supplied when calling gtk_menu_attach_to_widget() which
* will be called when the menu is later detached from the widget.
*
* Params:
* attachWidget = the #GtkWidget that the menu is being detached from.
* menu = the #GtkMenu being detached.
*/
public alias extern(C) void function(GtkWidget* attachWidget, GtkMenu* menu) GtkMenuDetachFunc;
/**
* A user function supplied when calling gtk_menu_popup() which
* controls the positioning of the menu when it is displayed. The
* function sets the @x and @y parameters to the coordinates where the
* menu is to be drawn. To make the menu appear on a different
* monitor than the mouse pointer, gtk_menu_set_monitor() must be
* called.
*
* Params:
* menu = a #GtkMenu.
* x = address of the #gint representing the horizontal
* position where the menu shall be drawn.
* y = address of the #gint representing the vertical position
* where the menu shall be drawn. This is an output parameter.
* pushIn = This parameter controls how menus placed outside
* the monitor are handled. If this is set to %TRUE and part of
* the menu is outside the monitor then GTK+ pushes the window
* into the visible area, effectively modifying the popup
* position. Note that moving and possibly resizing the menu
* around will alter the scroll position to keep the menu items
* “in place”, i.e. at the same monitor position they would have
* been without resizing. In practice, this behavior is only
* useful for combobox popups or option menus and cannot be used
* to simply confine a menu to monitor boundaries. In that case,
* changing the scroll offset is not desirable.
* userData = the data supplied by the user in the gtk_menu_popup()
* @data parameter.
*/
public alias extern(C) void function(GtkMenu* menu, int* x, int* y, int* pushIn, void* userData) GtkMenuPositionFunc;
/**
* A multihead-aware GTK+ module may have a gtk_module_display_init() function
* with this prototype. GTK+ calls this function for each opened display.
*
* Params:
* display = an open #GdkDisplay
*
* Since: 2.2
*/
public alias extern(C) void function(GdkDisplay* display) GtkModuleDisplayInitFunc;
/**
* Each GTK+ module must have a function gtk_module_init() with this prototype.
* This function is called after loading the module.
*
* Params:
* argc = GTK+ always passes %NULL for this argument
* argv = GTK+ always passes %NULL for this argument
*/
public alias extern(C) void function(int* argc, char*** argv) GtkModuleInitFunc;
/**
* The type of function that is passed to
* gtk_print_run_page_setup_dialog_async().
*
* This function will be called when the page setup dialog
* is dismissed, and also serves as destroy notify for @data.
*
* Params:
* pageSetup = the #GtkPageSetup that has been
* data = user data that has been passed to
* gtk_print_run_page_setup_dialog_async()
*/
public alias extern(C) void function(GtkPageSetup* pageSetup, void* data) GtkPageSetupDoneFunc;
/** */
public alias extern(C) void function(const(char)* key, const(char)* value, void* userData) GtkPrintSettingsFunc;
/** */
public alias extern(C) int function(GParamSpec* pspec, GString* rcString, GValue* propertyValue) GtkRcPropertyParser;
/**
* The type of function that is used with custom filters,
* see gtk_recent_filter_add_custom().
*
* Params:
* filterInfo = a #GtkRecentFilterInfo that is filled according
* to the @needed flags passed to gtk_recent_filter_add_custom()
* userData = user data passed to gtk_recent_filter_add_custom()
*
* Returns: %TRUE if the file should be displayed
*/
public alias extern(C) int function(GtkRecentFilterInfo* filterInfo, void* userData) GtkRecentFilterFunc;
/** */
public alias extern(C) int function(GtkRecentInfo* a, GtkRecentInfo* b, void* userData) GtkRecentSortFunc;
/** */
public alias extern(C) int function(const(char)* str, GValue* value, GError** err) GtkStylePropertyParser;
/**
* A function that is called to deserialize rich text that has been
* serialized with gtk_text_buffer_serialize(), and insert it at @iter.
*
* Params:
* registerBuffer = the #GtkTextBuffer the format is registered with
* contentBuffer = the #GtkTextBuffer to deserialize into
* iter = insertion point for the deserialized text
* data = data to deserialize
* length = length of @data
* createTags = %TRUE if deserializing may create tags
* userData = user data that was specified when registering the format
*
* Returns: %TRUE on success, %FALSE otherwise
*
* Throws: GException on failure.
*/
public alias extern(C) int function(GtkTextBuffer* registerBuffer, GtkTextBuffer* contentBuffer, GtkTextIter* iter, ubyte* data, size_t length, int createTags, void* userData, GError** err) GtkTextBufferDeserializeFunc;
/**
* A function that is called to serialize the content of a text buffer.
* It must return the serialized form of the content.
*
* Params:
* registerBuffer = the #GtkTextBuffer for which the format is registered
* contentBuffer = the #GtkTextBuffer to serialize
* start = start of the block of text to serialize
* end = end of the block of text to serialize
* length = Return location for the length of the serialized data
* userData = user data that was specified when registering the format
*
* Returns: a newly-allocated array of guint8 which contains
* the serialized data, or %NULL if an error occurred
*/
public alias extern(C) ubyte* function(GtkTextBuffer* registerBuffer, GtkTextBuffer* contentBuffer, GtkTextIter* start, GtkTextIter* end, size_t* length, void* userData) GtkTextBufferSerializeFunc;
/** */
public alias extern(C) int function(dchar ch, void* userData) GtkTextCharPredicate;
/** */
public alias extern(C) void function(GtkTextTag* tag, void* data) GtkTextTagTableForeach;
/**
* Callback type for adding a function to update animations. See gtk_widget_add_tick_callback().
*
* Params:
* widget = the widget
* frameClock = the frame clock for the widget (same as calling gtk_widget_get_frame_clock())
* userData = user data passed to gtk_widget_add_tick_callback().
*
* Returns: %G_SOURCE_CONTINUE if the tick callback should continue to be called,
* %G_SOURCE_REMOVE if the tick callback should be removed.
*
* Since: 3.8
*/
public alias extern(C) int function(GtkWidget* widget, GdkFrameClock* frameClock, void* userData) GtkTickCallback;
/**
* The function used to translate messages in e.g. #GtkIconFactory
* and #GtkActionGroup.
*
* Params:
* path = The id of the message. In #GtkActionGroup this will be a label
* or tooltip from a #GtkActionEntry.
* funcData = user data passed in when registering the
* function
*
* Returns: the translated message
*/
public alias extern(C) char* function(const(char)* path, void* funcData) GtkTranslateFunc;
/**
* A function to set the properties of a cell instead of just using the
* straight mapping between the cell and the model. This is useful for
* customizing the cell renderer. For example, a function might get an
* integer from the @tree_model, and render it to the “text” attribute of
* “cell” by converting it to its written equivalent. This is set by
* calling gtk_tree_view_column_set_cell_data_func()
*
* Params:
* treeColumn = A #GtkTreeViewColumn
* cell = The #GtkCellRenderer that is being rendered by @tree_column
* treeModel = The #GtkTreeModel being rendered
* iter = A #GtkTreeIter of the current row rendered
* data = user data
*/
public alias extern(C) void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cell, GtkTreeModel* treeModel, GtkTreeIter* iter, void* data) GtkTreeCellDataFunc;
/** */
public alias extern(C) void function(GtkTreeView* treeView, GtkTreePath* path, int children, void* userData) GtkTreeDestroyCountFunc;
/**
* A GtkTreeIterCompareFunc should return a negative integer, zero, or a positive
* integer if @a sorts before @b, @a sorts with @b, or @a sorts after @b
* respectively. If two iters compare as equal, their order in the sorted model
* is undefined. In order to ensure that the #GtkTreeSortable behaves as
* expected, the GtkTreeIterCompareFunc must define a partial order on
* the model, i.e. it must be reflexive, antisymmetric and transitive.
*
* For example, if @model is a product catalogue, then a compare function
* for the “price” column could be one which returns
* `price_of(@a) - price_of(@b)`.
*
* Params:
* model = The #GtkTreeModel the comparison is within
* a = A #GtkTreeIter in @model
* b = Another #GtkTreeIter in @model
* userData = Data passed when the compare func is assigned e.g. by
* gtk_tree_sortable_set_sort_func()
*
* Returns: a negative integer, zero or a positive integer depending on whether
* @a sorts before, with or after @b
*/
public alias extern(C) int function(GtkTreeModel* model, GtkTreeIter* a, GtkTreeIter* b, void* userData) GtkTreeIterCompareFunc;
/**
* A function which calculates display values from raw values in the model.
* It must fill @value with the display value for the column @column in the
* row indicated by @iter.
*
* Since this function is called for each data access, it’s not a
* particularly efficient operation.
*
* Params:
* model = the #GtkTreeModelFilter
* iter = a #GtkTreeIter pointing to the row whose display values are determined
* value = A #GValue which is already initialized for
* with the correct type for the column @column.
* column = the column whose display value is determined
* data = user data given to gtk_tree_model_filter_set_modify_func()
*/
public alias extern(C) void function(GtkTreeModel* model, GtkTreeIter* iter, GValue* value, int column, void* data) GtkTreeModelFilterModifyFunc;
/**
* A function which decides whether the row indicated by @iter is visible.
*
* Params:
* model = the child model of the #GtkTreeModelFilter
* iter = a #GtkTreeIter pointing to the row in @model whose visibility
* is determined
* data = user data given to gtk_tree_model_filter_set_visible_func()
*
* Returns: Whether the row indicated by @iter is visible.
*/
public alias extern(C) int function(GtkTreeModel* model, GtkTreeIter* iter, void* data) GtkTreeModelFilterVisibleFunc;
/**
* Type of the callback passed to gtk_tree_model_foreach() to
* iterate over the rows in a tree model.
*
* Params:
* model = the #GtkTreeModel being iterated
* path = the current #GtkTreePath
* iter = the current #GtkTreeIter
* data = The user data passed to gtk_tree_model_foreach()
*
* Returns: %TRUE to stop iterating, %FALSE to continue
*/
public alias extern(C) int function(GtkTreeModel* model, GtkTreePath* path, GtkTreeIter* iter, void* data) GtkTreeModelForeachFunc;
/**
* A function used by gtk_tree_selection_selected_foreach() to map all
* selected rows. It will be called on every selected row in the view.
*
* Params:
* model = The #GtkTreeModel being viewed
* path = The #GtkTreePath of a selected row
* iter = A #GtkTreeIter pointing to a selected row
* data = user data
*/
public alias extern(C) void function(GtkTreeModel* model, GtkTreePath* path, GtkTreeIter* iter, void* data) GtkTreeSelectionForeachFunc;
/**
* A function used by gtk_tree_selection_set_select_function() to filter
* whether or not a row may be selected. It is called whenever a row's
* state might change. A return value of %TRUE indicates to @selection
* that it is okay to change the selection.
*
* Params:
* selection = A #GtkTreeSelection
* model = A #GtkTreeModel being viewed
* path = The #GtkTreePath of the row in question
* pathCurrentlySelected = %TRUE, if the path is currently selected
* data = user data
*
* Returns: %TRUE, if the selection state of the row can be toggled
*/
public alias extern(C) int function(GtkTreeSelection* selection, GtkTreeModel* model, GtkTreePath* path, int pathCurrentlySelected, void* data) GtkTreeSelectionFunc;
/**
* Function type for determining whether @column can be dropped in a
* particular spot (as determined by @prev_column and @next_column). In
* left to right locales, @prev_column is on the left of the potential drop
* spot, and @next_column is on the right. In right to left mode, this is
* reversed. This function should return %TRUE if the spot is a valid drop
* spot. Please note that returning %TRUE does not actually indicate that
* the column drop was made, but is meant only to indicate a possible drop
* spot to the user.
*
* Params:
* treeView = A #GtkTreeView
* column = The #GtkTreeViewColumn being dragged
* prevColumn = A #GtkTreeViewColumn on one side of @column
* nextColumn = A #GtkTreeViewColumn on the other side of @column
* data = user data
*
* Returns: %TRUE, if @column can be dropped in this spot
*/
public alias extern(C) int function(GtkTreeView* treeView, GtkTreeViewColumn* column, GtkTreeViewColumn* prevColumn, GtkTreeViewColumn* nextColumn, void* data) GtkTreeViewColumnDropFunc;
/**
* Function used for gtk_tree_view_map_expanded_rows().
*
* Params:
* treeView = A #GtkTreeView
* path = The path that’s expanded
* userData = user data
*/
public alias extern(C) void function(GtkTreeView* treeView, GtkTreePath* path, void* userData) GtkTreeViewMappingFunc;
/**
* Function type for determining whether the row pointed to by @iter should
* be rendered as a separator. A common way to implement this is to have a
* boolean column in the model, whose values the #GtkTreeViewRowSeparatorFunc
* returns.
*
* Params:
* model = the #GtkTreeModel
* iter = a #GtkTreeIter pointing at a row in @model
* data = user data
*
* Returns: %TRUE if the row is a separator
*/
public alias extern(C) int function(GtkTreeModel* model, GtkTreeIter* iter, void* data) GtkTreeViewRowSeparatorFunc;
/**
* A function used for checking whether a row in @model matches
* a search key string entered by the user. Note the return value
* is reversed from what you would normally expect, though it
* has some similarity to strcmp() returning 0 for equal strings.
*
* Params:
* model = the #GtkTreeModel being searched
* column = the search column set by gtk_tree_view_set_search_column()
* key = the key string to compare with
* iter = a #GtkTreeIter pointing the row of @model that should be compared
* with @key.
* searchData = user data from gtk_tree_view_set_search_equal_func()
*
* Returns: %FALSE if the row matches, %TRUE otherwise.
*/
public alias extern(C) int function(GtkTreeModel* model, int column, const(char)* key, GtkTreeIter* iter, void* searchData) GtkTreeViewSearchEqualFunc;
/** */
public alias extern(C) void function(GtkTreeView* treeView, GtkWidget* searchDialog, void* userData) GtkTreeViewSearchPositionFunc;
/**
* A priority that can be used when adding a gtk.StyleProvider
* for application-specific style information.
*/
public enum STYLE_PROVIDER_PRIORITY_APPLICATION = 600;
alias STYLE_PROVIDER_PRIORITY_APPLICATION GTK_STYLE_PROVIDER_PRIORITY_APPLICATION;
/**
* The priority used for default style information
* that is used in the absence of themes.
*
* Note that this is not very useful for providing default
* styling for custom style classes - themes are likely to
* override styling provided at this priority with
* catch-all `* {...}` rules.
*/
public enum STYLE_PROVIDER_PRIORITY_FALLBACK = 1;
alias STYLE_PROVIDER_PRIORITY_FALLBACK GTK_STYLE_PROVIDER_PRIORITY_FALLBACK;
/**
* The priority used for style information provided
* via gtk.Settings.
*
* This priority is higher than STYLE_PROVIDER_PRIORITY_THEME
* to let settings override themes.
*/
public enum STYLE_PROVIDER_PRIORITY_SETTINGS = 400;
alias STYLE_PROVIDER_PRIORITY_SETTINGS GTK_STYLE_PROVIDER_PRIORITY_SETTINGS;
/**
* The priority used for style information provided
* by themes.
*/
public enum STYLE_PROVIDER_PRIORITY_THEME = 200;
alias STYLE_PROVIDER_PRIORITY_THEME GTK_STYLE_PROVIDER_PRIORITY_THEME;
/**
* The priority used for the style information from
* `~/.gtk-3.0.css`.
*
* You should not use priorities higher than this, to
* give the user the last word.
*/
public enum STYLE_PROVIDER_PRIORITY_USER = 800;
alias STYLE_PROVIDER_PRIORITY_USER GTK_STYLE_PROVIDER_PRIORITY_USER;
/**
* StockIds
*/
public enum StockID
{
/**
* The “About” item.
* 
*
* Deprecated: Use named icon "help-about" or the label "_About".
*/
ABOUT = "gtk-about",
/**
* The “Add” item and icon.
*
* Deprecated: Use named icon "list-add" or the label "_Add".
*/
ADD = "gtk-add",
/**
* The “Apply” item and icon.
*
* Deprecated: Do not use an icon. Use label "_Apply".
*/
APPLY = "gtk-apply",
/**
* The “Bold” item and icon.
*
* Deprecated: Use named icon "format-text-bold".
*/
BOLD = "gtk-bold",
/**
* The “Cancel” item and icon.
*
* Deprecated: Do not use an icon. Use label "_Cancel".
*/
CANCEL = "gtk-cancel",
/**
* The “Caps Lock Warning” icon.
*
* Deprecated: Use named icon "dialog-warning-symbolic".
*/
CAPS_LOCK_WARNING = "gtk-caps-lock-warning",
/**
* The “CD-Rom” item and icon.
*
* Deprecated: Use named icon "media-optical".
*/
CDROM = "gtk-cdrom",
/**
* The “Clear” item and icon.
*
* Deprecated: Use named icon "edit-clear".
*/
CLEAR = "gtk-clear",
/**
* The “Close” item and icon.
*
* Deprecated: Use named icon "window-close" or the label "_Close".
*/
CLOSE = "gtk-close",
/**
* The “Color Picker” item and icon.
*/
COLOR_PICKER = "gtk-color-picker",
/**
* The “Connect” icon.
*/
CONNECT = "gtk-connect",
/**
* The “Convert” item and icon.
*/
CONVERT = "gtk-convert",
/**
* The “Copy” item and icon.
*
* Deprecated: Use the named icon "edit-copy" or the label "_Copy".
*/
COPY = "gtk-copy",
/**
* The “Cut” item and icon.
*
* Deprecated: Use the named icon "edit-cut" or the label "Cu_t".
*/
CUT = "gtk-cut",
/**
* The “Delete” item and icon.
*
* Deprecated: Use the named icon "edit-delete" or the label "_Delete".
*/
DELETE = "gtk-delete",
/**
* The “Authentication” item and icon.
*
* Deprecated: Use named icon "dialog-password".
*/
DIALOG_AUTHENTICATION = "gtk-dialog-authentication",
/**
* The “Error” item and icon.
*
* Deprecated: Use named icon "dialog-error".
*/
DIALOG_ERROR = "gtk-dialog-error",
/**
* The “Information” item and icon.
*
* Deprecated: Use named icon "dialog-information".
*/
DIALOG_INFO = "gtk-dialog-info",
/**
* The “Question” item and icon.
*
* Deprecated: Use named icon "dialog-question".
*/
DIALOG_QUESTION = "gtk-dialog-question",
/**
* The “Warning” item and icon.
*
* Deprecated: Use named icon "dialog-warning".
*/
DIALOG_WARNING = "gtk-dialog-warning",
/**
* The “Directory” icon.
*
* Deprecated: Use named icon "folder".
*/
DIRECTORY = "gtk-directory",
/**
* The “Discard” item.
*/
DISCARD = "gtk-discard",
/**
* The “Disconnect” icon.
*/
DISCONNECT = "gtk-disconnect",
/**
* The “Drag-And-Drop” icon.
*/
DND = "gtk-dnd",
/**
* The “Drag-And-Drop multiple” icon.
*/
DND_MULTIPLE = "gtk-dnd-multiple",
/**
* The “Edit” item and icon.
*/
EDIT = "gtk-edit",
/**
* The “Execute” item and icon.
*
* Deprecated: Use named icon "system-run".
*/
EXECUTE = "gtk-execute",
/**
* The “File” item and icon.
*
* Since 3.0, this item has a label, before it only had an icon.
*
* Deprecated: Use named icon "text-x-generic".
*/
FILE = "gtk-file",
/**
* The “Find” item and icon.
*
* Deprecated: Use named icon "edit-find".
*/
FIND = "gtk-find",
/**
* The “Find and Replace” item and icon.
*
* Deprecated: Use named icon "edit-find-replace".
*/
FIND_AND_REPLACE = "gtk-find-and-replace",
/**
* The “Floppy” item and icon.
*/
FLOPPY = "gtk-floppy",
/**
* The “Fullscreen” item and icon.
*
* Deprecated: Use named icon "view-fullscreen".
*/
FULLSCREEN = "gtk-fullscreen",
/**
* The “Bottom” item and icon.
*
* Deprecated: Use named icon "go-bottom".
*/
GOTO_BOTTOM = "gtk-goto-bottom",
/**
* The “First” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "go-first".
*/
GOTO_FIRST = "gtk-goto-first",
/**
* The “Last” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "go-last".
*/
GOTO_LAST = "gtk-goto-last",
/**
* The “Top” item and icon.
*
* Deprecated: Use named icon "go-top".
*/
GOTO_TOP = "gtk-goto-top",
/**
* The “Back” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "go-previous".
*/
GO_BACK = "gtk-go-back",
/**
* The “Down” item and icon.
*
* Deprecated: Use named icon "go-down".
*/
GO_DOWN = "gtk-go-down",
/**
* The “Forward” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "go-next".
*/
GO_FORWARD = "gtk-go-forward",
/**
* The “Up” item and icon.
*
* Deprecated: Use named icon "go-up".
*/
GO_UP = "gtk-go-up",
/**
* The “Harddisk” item and icon.
*
* Deprecated: Use named icon "drive-harddisk".
*/
HARDDISK = "gtk-harddisk",
/**
* The “Help” item and icon.
*
* Deprecated: Use named icon "help-browser".
*/
HELP = "gtk-help",
/**
* The “Home” item and icon.
*
* Deprecated: Use named icon "go-home".
*/
HOME = "gtk-home",
/**
* The “Indent” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "format-indent-more".
*/
INDENT = "gtk-indent",
/**
* The “Index” item and icon.
*/
INDEX = "gtk-index",
/**
* The “Info” item and icon.
*
* Deprecated: Use named icon "dialog-information".
*/
INFO = "gtk-info",
/**
* The “Italic” item and icon.
*
* Deprecated: Use named icon "format-text-italic".
*/
ITALIC = "gtk-italic",
/**
* The “Jump to” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "go-jump".
*/
JUMP_TO = "gtk-jump-to",
/**
* The “Center” item and icon.
*
* Deprecated: Use named icon "format-justify-center".
*/
JUSTIFY_CENTER = "gtk-justify-center",
/**
* The “Fill” item and icon.
*
* Deprecated: Use named icon "format-justify-fill".
*/
JUSTIFY_FILL = "gtk-justify-fill",
/**
* The “Left” item and icon.
*
* Deprecated: Use named icon "format-justify-left".
*/
JUSTIFY_LEFT = "gtk-justify-left",
/**
* The “Right” item and icon.
*
* Deprecated: Use named icon "format-justify-right".
*/
JUSTIFY_RIGHT = "gtk-justify-right",
/**
* The “Leave Fullscreen” item and icon.
*
* Deprecated: Use named icon "view-restore".
*/
LEAVE_FULLSCREEN = "gtk-leave-fullscreen",
/**
* The “Media Forward” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "media-seek-forward" or the label "_Forward".
*/
MEDIA_FORWARD = "gtk-media-forward",
/**
* The “Media Next” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "media-skip-forward" or the label "_Next".
*/
MEDIA_NEXT = "gtk-media-next",
/**
* The “Media Pause” item and icon.
*
* Deprecated: Use named icon "media-playback-pause" or the label "P_ause".
*/
MEDIA_PAUSE = "gtk-media-pause",
/**
* The “Media Play” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "media-playback-start" or the label "_Play".
*/
MEDIA_PLAY = "gtk-media-play",
/**
* The “Media Previous” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "media-skip-backward" or the label "Pre_vious".
*/
MEDIA_PREVIOUS = "gtk-media-previous",
/**
* The “Media Record” item and icon.
*
* Deprecated: Use named icon "media-record" or the label "_Record".
*/
MEDIA_RECORD = "gtk-media-record",
/**
* The “Media Rewind” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "media-seek-backward" or the label "R_ewind".
*/
MEDIA_REWIND = "gtk-media-rewind",
/**
* The “Media Stop” item and icon.
*
* Deprecated: Use named icon "media-playback-stop" or the label "_Stop".
*/
MEDIA_STOP = "gtk-media-stop",
/**
* The “Missing image” icon.
*
* Deprecated: Use named icon "image-missing".
*/
MISSING_IMAGE = "gtk-missing-image",
/**
* The “Network” item and icon.
*
* Deprecated: Use named icon "network-workgroup".
*/
NETWORK = "gtk-network",
/**
* The “New” item and icon.
*
* Deprecated: Use named icon "document-new" or the label "_New".
*/
NEW = "gtk-new",
/**
* The “No” item and icon.
*/
NO = "gtk-no",
/**
* The “OK” item and icon.
*
* Deprecated: Do not use an icon. Use label "_OK".
*/
OK = "gtk-ok",
/**
* The “Open” item and icon.
*
* Deprecated: Use named icon "document-open" or the label "_Open".
*/
OPEN = "gtk-open",
/**
* The “Landscape Orientation” item and icon.
*/
ORIENTATION_LANDSCAPE = "gtk-orientation-landscape",
/**
* The “Portrait Orientation” item and icon.
*/
ORIENTATION_PORTRAIT = "gtk-orientation-portrait",
/**
* The “Reverse Landscape Orientation” item and icon.
*/
ORIENTATION_REVERSE_LANDSCAPE = "gtk-orientation-reverse-landscape",
/**
* The “Reverse Portrait Orientation” item and icon.
*/
ORIENTATION_REVERSE_PORTRAIT = "gtk-orientation-reverse-portrait",
/**
* The “Page Setup” item and icon.
*
* Deprecated: Use named icon "document-page-setup" or the label "Page Set_up".
*/
PAGE_SETUP = "gtk-page-setup",
/**
* The “Paste” item and icon.
*
* Deprecated: Use named icon "edit-paste" or the label "_Paste".
*/
PASTE = "gtk-paste",
/**
* The “Preferences” item and icon.
*
* Deprecated: Use named icon "preferences-system" or the label "_Preferences".
*/
PREFERENCES = "gtk-preferences",
/**
* The “Print” item and icon.
*
* Deprecated: Use named icon "document-print" or the label "_Print".
*/
PRINT = "gtk-print",
/**
* The “Print Error” icon.
*
* Deprecated: Use named icon "printer-error".
*/
PRINT_ERROR = "gtk-print-error",
/**
* The “Print Paused” icon.
*/
PRINT_PAUSED = "gtk-print-paused",
/**
* The “Print Preview” item and icon.
*
* Deprecated: Use label "Pre_view".
*/
PRINT_PREVIEW = "gtk-print-preview",
/**
* The “Print Report” icon.
*/
PRINT_REPORT = "gtk-print-report",
/**
* The “Print Warning” icon.
*/
PRINT_WARNING = "gtk-print-warning",
/**
* The “Properties” item and icon.
*
* Deprecated: Use named icon "document-properties" or the label "_Properties".
*/
PROPERTIES = "gtk-properties",
/**
* The “Quit” item and icon.
*
* Deprecated: Use named icon "application-exit" or the label "_Quit".
*/
QUIT = "gtk-quit",
/**
* The “Redo” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "edit-redo" or the label "_Redo".
*/
REDO = "gtk-redo",
/**
* The “Refresh” item and icon.
*
* Deprecated: Use named icon "view-refresh" or the label "_Refresh".
*/
REFRESH = "gtk-refresh",
/**
* The “Remove” item and icon.
*
* Deprecated: Use named icon "list-remove" or the label "_Remove".
*/
REMOVE = "gtk-remove",
/**
* The “Revert” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "document-revert" or the label "_Revert".
*/
REVERT_TO_SAVED = "gtk-revert-to-saved",
/**
* The “Save” item and icon.
*
* Deprecated: Use named icon "document-save" or the label "_Save".
*/
SAVE = "gtk-save",
/**
* The “Save As” item and icon.
*
* Deprecated: Use named icon "document-save-as" or the label "Save _As".
*/
SAVE_AS = "gtk-save-as",
/**
* The “Select All” item and icon.
*
* Deprecated: Use named icon "edit-select-all" or the label "Select _All".
*/
SELECT_ALL = "gtk-select-all",
/**
* The “Color” item and icon.
*/
SELECT_COLOR = "gtk-select-color",
/**
* The “Font” item and icon.
*/
SELECT_FONT = "gtk-select-font",
/**
* The “Ascending” item and icon.
*
* Deprecated: Use named icon "view-sort-ascending".
*/
SORT_ASCENDING = "gtk-sort-ascending",
/**
* The “Descending” item and icon.
*
* Deprecated: Use named icon "view-sort-descending".
*/
SORT_DESCENDING = "gtk-sort-descending",
/**
* The “Spell Check” item and icon.
*
* Deprecated: Use named icon "tools-check-spelling".
*/
SPELL_CHECK = "gtk-spell-check",
/**
* The “Stop” item and icon.
*
* Deprecated: Use named icon "process-stop" or the label "_Stop".
*/
STOP = "gtk-stop",
/**
* The “Strikethrough” item and icon.
*
* Deprecated: Use named icon "format-text-strikethrough" or the label "_Strikethrough".
*/
STRIKETHROUGH = "gtk-strikethrough",
/**
* The “Undelete” item and icon. The icon has an RTL variant.
*/
UNDELETE = "gtk-undelete",
/**
* The “Underline” item and icon.
*
* Deprecated: Use named icon "format-text-underline" or the label "_Underline".
*/
UNDERLINE = "gtk-underline",
/**
* The “Undo” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "edit-undo" or the label "_Undo".
*/
UNDO = "gtk-undo",
/**
* The “Unindent” item and icon. The icon has an RTL variant.
*
* Deprecated: Use named icon "format-indent-less".
*/
UNINDENT = "gtk-unindent",
/**
* The “Yes” item and icon.
*/
YES = "gtk-yes",
/**
* The “Zoom 100%” item and icon.
*
* Deprecated: Use named icon "zoom-original" or the label "_Normal Size".
*/
ZOOM_100 = "gtk-zoom-100",
/**
* The “Zoom to Fit” item and icon.
*
* Deprecated: Use named icon "zoom-fit-best" or the label "Best _Fit".
*/
ZOOM_FIT = "gtk-zoom-fit",
/**
* The “Zoom In” item and icon.
*
* Deprecated: Use named icon "zoom-in" or the label "Zoom _In".
*/
ZOOM_IN = "gtk-zoom-in",
/**
* The “Zoom Out” item and icon.
*
* Deprecated: Use named icon "zoom-out" or the label "Zoom _Out".
*/
ZOOM_OUT = "gtk-zoom-out",
}
|
D
|
instance PAL_213_Schiffswache(Npc_Default)
{
name[0] = NAME_Schiffswache;
guild = GIL_PAL;
id = 213;
voice = 1;
flags = NPC_FLAG_IMMORTAL;
npcType = NPCTYPE_MAIN;
B_SetAttributesToChapter(self,6);
fight_tactic = FAI_NAILED;
EquipItem(self,ItMw_2h_Pal_Sword);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Fighter",Face_B_Cavalorn,BodyTex_B,ITAR_PAL_M);
Mdl_SetModelFatness(self,0);
Mdl_ApplyOverlayMds(self,"Humans_Militia.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,68);
daily_routine = Rtn_Start_213;
};
func void Rtn_Start_213()
{
TA_Guard_Passage(8,0,23,0,"NW_CITY_SHIP_GUARD_01");
TA_Guard_Passage(23,0,8,0,"NW_CITY_SHIP_GUARD_01");
};
func void Rtn_ShipFree_213()
{
TA_Smalltalk(8,0,23,0,"NW_CITY_PALCAMP_01");
TA_Smalltalk(23,0,8,0,"NW_CITY_PALCAMP_01");
};
|
D
|
// Copyright Ferdinand Majerech 2010 - 2011.
// 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)
/**
* $(BIG DPong API documentation)
*
* Introduction:
*
* This is the complete API documentation for DPong. It describes
* all classes, structs, interfaces, functions and so on.
* This API documentation is intended to serve developers who want to
* improve the Pong engine, as well as those who want to modify it for
* their own needs.
*/
///Program entry point.
module main.pong;
import core.stdc.stdlib: exit;
import std.stdio: writeln;
import file.fileio;
import formats.cli;
import pong.pong;
///Program entry point.
void main(string[] args)
{
//will add -h/--help and generate usage info by itself
auto cli = new CLI();
cli.description = "DPong 0.6.0\n"
"Pong game written in D.\n"
"Copyright (C) 2010-2011 Ferdinand Majerech";
cli.epilog = "Report errors at <kiithsacmp@gmail.com> (in English, Czech or Slovak).";
string root = "./data";
string user = "./user_data";
//Root data and user data MUST be specified at startup
cli.add_option(CLIOption("root_data").short_name('R').target(&root));
cli.add_option(CLIOption("user_data").short_name('U').target(&user));
if(!cli.parse(args)){return;}
scope(exit) writeln("Main exit");
try
{
root_data(root);
user_data(user);
Pong pong = new Pong();
scope(exit){clear(pong);}
pong.run();
}
catch(Exception e)
{
writeln("Unhandled exeption: ", e.toString(), " ", e.msg);
exit(-1);
}
}
|
D
|
module field;
import gameobject;
import derelict.sdl2.sdl;
import tag;
struct MapLayer
{
public:
int[] data;
int width;
int height;
int opIndex(int y, int x) const pure
{
auto p = y * width + x;
if (p < 0 || data.length <= p)
{
return -1;
}
return data[p];
}
}
struct MapInfo
{
public:
uint width;
uint height;
uint tilewidth;
uint tileheight;
MapLayer[] layers;
uint mapwidth() const pure
{
return this.width * this.tilewidth;
}
uint mapheight() const pure
{
return this.height * this.tileheight;
}
}
struct ChipInfo
{
public:
bool rigid;
}
struct Map
{
public:
SDL_Surface* chipsurface;
MapInfo mapinfo;
ChipInfo[] chipinfo;
public:
this(SDL_Surface* chipsurface, MapInfo mapinfo, ChipInfo[] chipinfo)
{
this.chipsurface = chipsurface;
this.mapinfo = mapinfo;
this.chipinfo = chipinfo;
}
}
class Field : GameObject
{
private:
SDL_Surface* mapsurface;
Map map;
auto tileheight() const pure
{
return this.map.mapinfo.tileheight;
}
auto tilewidth() const pure
{
return this.map.mapinfo.tilewidth;
}
public:
this(Map map)
{
this.map = map;
this.mapsurface = SDL_CreateRGBSurface(0, map.mapinfo.mapwidth,
map.mapinfo.mapheight, 32, 0, 0, 0, 0);
foreach (layer; map.mapinfo.layers)
{
foreach (y; 0 .. map.mapinfo.height)
{
foreach (x; 0 .. map.mapinfo.width)
{
auto chipindex = layer[y, x];
if (chipindex > 0)
{
chipindex--;
auto src = SDL_Rect(this.tilewidth * chipindex, 0,
this.tilewidth, this.tileheight);
auto dst = SDL_Rect(this.tilewidth * x,
this.tileheight * y, this.tilewidth, this.tileheight);
SDL_BlitSurface(map.chipsurface, &src, this.mapsurface, &dst);
}
}
}
}
}
void update()
{
}
void onCollide(GameObject o, int direction)
{
}
Image getImage()
{
SDL_Rect pos = SDL_Rect(0, 0, this.mapsurface.w, this.mapsurface.h);
return Image(this.mapsurface, pos, pos);
}
SDL_Rect rect()
{
return SDL_Rect();
}
int level()
{
return -1;
}
override Tag[] tags()
{
return [Tag.FIELD];
}
enum
{
COLLIDE_TOP = 1,
COLLIDE_BOTTOM = 2,
COLLIDE_LEFT = 4,
COLLIDE_RIGHT = 8,
}
/// check collision for rect and map
auto checkCollision(SDL_Rect rect)
{
// get overlapping chips
int y_start = rect.y / this.tileheight;
int y_end = (rect.y + rect.h) / this.tileheight;
int x_start = rect.x / this.tilewidth;
int x_end = (rect.x + rect.w) / this.tilewidth;
uint r = 0;
foreach (l; this.map.mapinfo.layers)
{
foreach (x; x_start .. x_end)
{
auto chip = l[y_start, x];
if (chip > 0)
{
r |= COLLIDE_TOP;
}
chip = l[y_end, x];
if (chip > 0)
{
r |= COLLIDE_BOTTOM;
}
if (r & (COLLIDE_TOP | COLLIDE_BOTTOM))
{
break;
}
}
foreach (y; y_start .. y_end)
{
auto chip = l[y, x_start];
if (chip > 0)
{
r |= COLLIDE_LEFT;
}
chip = l[y, x_end];
if (chip > 0)
{
r |= COLLIDE_RIGHT;
}
if (r & (COLLIDE_LEFT | COLLIDE_RIGHT))
{
break;
}
}
}
return r;
}
}
|
D
|
; Copyright (C) 2008 The Android Open Source Project
;
; 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.
.source T_rem_double_1.java
.class public dot.junit.opcodes.rem_double.d.T_rem_double_1
.super java/lang/Object
.method public <init>()V
.limit regs 1
invoke-direct {v0}, java/lang/Object/<init>()V
return-void
.end method
.method public run(DD)D
.limit regs 14
rem-double v0, v10, v12
return-wide v0
.end method
|
D
|
module polyplex.core.audio.device;
import polyplex.core.audio;
import ppc.audio;
import derelict.openal;
public enum ALExtensionSupport {
/**
Basic OpenAL context is supported.
*/
Basic = 0x00,
/**
EAX 2.0 is supported.
*/
EAX2 = 0x01
// TODO add more extensions here.
}
public static AudioDevice DefaultAudioDevice;
public class AudioDevice {
public ALCdevice* ALDevice;
public ALCcontext* ALContext;
public ALExtensionSupport SupportedExt;
/**
Constucts an audio device, NULL for preffered device.
*/
this(string device = null) {
ALCdevice* dev = alcOpenDevice(device.ptr);
if (dev) {
ALContext = alcCreateContext(dev, null);
alcMakeContextCurrent(ALContext);
} else {
throw new Exception("Could not create device!");
}
// If EAX 2.0 is supported, flag it as supported.
bool supex = cast(bool)alIsExtensionPresent("EAX2.0");
if (supex) SupportedExt |= ALExtensionSupport.EAX2;
}
~this() {
alcMakeContextCurrent(null);
alcDestroyContext(ALContext);
alcCloseDevice(ALDevice);
}
/**
Makes the context for this device, a current context.
*/
public void MakeCurrent() {
alcMakeContextCurrent(ALContext);
}
public ALBuffer GenerateBuffer(Audio aud) {
return new ALBuffer(aud);
}
}
|
D
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.