diff --git a/_i_plug_a_a_x_8cpp_source.html b/_i_plug_a_a_x_8cpp_source.html index 07bec8dd..a2f26e8c 100644 --- a/_i_plug_a_a_x_8cpp_source.html +++ b/_i_plug_a_a_x_8cpp_source.html @@ -702,7 +702,7 @@
615}
IPlugAAX.h
IByteChunk
Manages a block of memory, for plug-in settings store/recall.
Definition: IPlugStructs.h:112
-
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if nessecary.
Definition: IPlugStructs.h:147
+
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if necessary.
Definition: IPlugStructs.h:147
IByteChunk::GetData
uint8_t * GetData()
Gets a ptr to the chunk data.
Definition: IPlugStructs.h:242
IByteChunk::Size
int Size() const
Returns the current size of the chunk.
Definition: IPlugStructs.h:221
IParam
IPlug's parameter class.
Definition: IPlugParameter.h:31
diff --git a/_i_plug_plugin_base_8cpp_source.html b/_i_plug_plugin_base_8cpp_source.html index d01ce961..4a190baf 100644 --- a/_i_plug_plugin_base_8cpp_source.html +++ b/_i_plug_plugin_base_8cpp_source.html @@ -1134,7 +1134,7 @@
IByteChunk::GetBytes
int GetBytes(void *pDst, int nBytesToCopy, int startPos) const
Copy raw bytes from the IByteChunk, returning the new position for subsequent calls.
Definition: IPlugStructs.h:160
IByteChunk::PutStr
int PutStr(const char *str)
Put a string into the IByteChunk.
Definition: IPlugStructs.h:189
IByteChunk::Get
int Get(T *pDst, int startPos) const
Get arbitary typed data from the IByteChunk.
Definition: IPlugStructs.h:181
-
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if nessecary.
Definition: IPlugStructs.h:147
+
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if necessary.
Definition: IPlugStructs.h:147
IByteChunk::Clear
void Clear()
Clears the chunk (resizes to 0)
Definition: IPlugStructs.h:214
IByteChunk::GetData
uint8_t * GetData()
Gets a ptr to the chunk data.
Definition: IPlugStructs.h:242
IByteChunk::InitChunkWithIPlugVer
static void InitChunkWithIPlugVer(IByteChunk &chunk)
This method is used in order to place the IPlug version number in the chunk when serialising data.
Definition: IPlugStructs.h:119
diff --git a/_i_plug_structs_8h_source.html b/_i_plug_structs_8h_source.html index 998cc381..44b0c3d8 100644 --- a/_i_plug_structs_8h_source.html +++ b/_i_plug_structs_8h_source.html @@ -591,7 +591,7 @@
IByteChunk::GetBytes
int GetBytes(void *pDst, int nBytesToCopy, int startPos) const
Copy raw bytes from the IByteChunk, returning the new position for subsequent calls.
Definition: IPlugStructs.h:160
IByteChunk::PutStr
int PutStr(const char *str)
Put a string into the IByteChunk.
Definition: IPlugStructs.h:189
IByteChunk::Get
int Get(T *pDst, int startPos) const
Get arbitary typed data from the IByteChunk.
Definition: IPlugStructs.h:181
-
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if nessecary.
Definition: IPlugStructs.h:147
+
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if necessary.
Definition: IPlugStructs.h:147
IByteChunk::Clear
void Clear()
Clears the chunk (resizes to 0)
Definition: IPlugStructs.h:214
IByteChunk::IsEqual
bool IsEqual(IByteChunk &otherChunk) const
Compares the size & values of the data of another chunk with this one.
Definition: IPlugStructs.h:257
IByteChunk::GetData
uint8_t * GetData()
Gets a ptr to the chunk data.
Definition: IPlugStructs.h:242
diff --git a/_i_plug_v_s_t3___common_8h_source.html b/_i_plug_v_s_t3___common_8h_source.html index 4b7c9008..6af210e4 100644 --- a/_i_plug_v_s_t3___common_8h_source.html +++ b/_i_plug_v_s_t3___common_8h_source.html @@ -190,7 +190,7 @@
104END_IPLUG_NAMESPACE
IPlugAPIBase.h
IByteChunk
Manages a block of memory, for plug-in settings store/recall.
Definition: IPlugStructs.h:112
-
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if nessecary.
Definition: IPlugStructs.h:147
+
IByteChunk::PutBytes
int PutBytes(const void *pSrc, int nBytesToCopy)
Copies data into the chunk, placing it at the end, resizing if necessary.
Definition: IPlugStructs.h:147
IByteChunk::GetData
uint8_t * GetData()
Gets a ptr to the chunk data.
Definition: IPlugStructs.h:242
IByteChunk::Size
int Size() const
Returns the current size of the chunk.
Definition: IPlugStructs.h:221
IPlugAPIBase
The base class of an IPlug plug-in, which interacts with the different plug-in APIs.
Definition: IPlugAPIBase.h:43
diff --git a/_i_plug_v_s_t3___processor_base_8h_source.html b/_i_plug_v_s_t3___processor_base_8h_source.html index 48712f7f..f7923148 100644 --- a/_i_plug_v_s_t3___processor_base_8h_source.html +++ b/_i_plug_v_s_t3___processor_base_8h_source.html @@ -136,7 +136,7 @@
50 /*int maxNInBuses =*/ MaxNBuses(ERoute::kInput, &configWithMostInputBuses);
51 int maxNOutBuses = MaxNBuses(ERoute::kOutput, &configWithMostOutputBuses);
52
-
53 // Add the maximum number of input buses in any ioconfig. channel count/API Bus type will be changed later if nessecary
+
53 // Add the maximum number of input buses in any ioconfig. channel count/API Bus type will be changed later if necessary
54 {
55 const IOConfig* pConfig = GetIOConfig(configWithMostInputBuses);
56
@@ -153,7 +153,7 @@
67 }
68 }
69
-
70 // Add the maximum number of output buses in any ioconfig. channel count/API Bus type will be changed later if nessecary
+
70 // Add the maximum number of output buses in any ioconfig. channel count/API Bus type will be changed later if necessary
71 {
72 const IOConfig* pConfig = GetIOConfig(configWithMostOutputBuses);
73 int nOut = pConfig->NBuses(ERoute::kOutput);
diff --git a/class_i_byte_chunk.html b/class_i_byte_chunk.html index 225cdd96..04f5c484 100644 --- a/class_i_byte_chunk.html +++ b/class_i_byte_chunk.html @@ -100,7 +100,7 @@

Public Member Functions

int PutBytes (const void *pSrc, int nBytesToCopy) - Copies data into the chunk, placing it at the end, resizing if nessecary. More...
+ Copies data into the chunk, placing it at the end, resizing if necessary. More...
  int GetBytes (void *pDst, int nBytesToCopy, int startPos) const  Copy raw bytes from the IByteChunk, returning the new position for subsequent calls. More...
@@ -692,7 +692,7 @@

-

Copies data into the chunk, placing it at the end, resizing if nessecary.

+

Copies data into the chunk, placing it at the end, resizing if necessary.

Parameters
pSrcPointer to the data to copy