mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 08:13:01 +00:00
[SDK][INCLUDE] Formatting gdiplus headers (#2190)
Just code formatting. CORE-16585 $ clang-format -style=file -i sdk/include/psdk/gdiplus[a-z]*
This commit is contained in:
parent
8faf38ed22
commit
e7814f19fb
23 changed files with 6651 additions and 5056 deletions
|
@ -19,27 +19,32 @@
|
|||
#ifndef _GDIPLUSBASE_H
|
||||
#define _GDIPLUSBASE_H
|
||||
|
||||
class GdiplusBase {
|
||||
public:
|
||||
void operator delete(void *in_pVoid)
|
||||
{
|
||||
DllExports::GdipFree(in_pVoid);
|
||||
}
|
||||
class GdiplusBase
|
||||
{
|
||||
public:
|
||||
void
|
||||
operator delete(void *in_pVoid)
|
||||
{
|
||||
DllExports::GdipFree(in_pVoid);
|
||||
}
|
||||
|
||||
void operator delete[](void *in_pVoid)
|
||||
{
|
||||
DllExports::GdipFree(in_pVoid);
|
||||
}
|
||||
void
|
||||
operator delete[](void *in_pVoid)
|
||||
{
|
||||
DllExports::GdipFree(in_pVoid);
|
||||
}
|
||||
|
||||
void *operator new(size_t in_size)
|
||||
{
|
||||
return DllExports::GdipAlloc(in_size);
|
||||
}
|
||||
void *
|
||||
operator new(size_t in_size)
|
||||
{
|
||||
return DllExports::GdipAlloc(in_size);
|
||||
}
|
||||
|
||||
void *operator new[](size_t in_size)
|
||||
{
|
||||
return DllExports::GdipAlloc(in_size);
|
||||
}
|
||||
void *
|
||||
operator new[](size_t in_size)
|
||||
{
|
||||
return DllExports::GdipAlloc(in_size);
|
||||
}
|
||||
};
|
||||
|
||||
#endif /* _GDIPLUSBASE_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue