mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 23:10:42 +01:00
Remove WUT_LIB_HEADER_START.
This commit is contained in:
parent
e8b6b9b308
commit
4bebe2242d
@ -4,7 +4,9 @@
|
|||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSAlarm OSAlarm;
|
typedef struct OSAlarm OSAlarm;
|
||||||
typedef struct OSAlarmLink OSAlarmLink;
|
typedef struct OSAlarmLink OSAlarmLink;
|
||||||
@ -125,4 +127,6 @@ OSSetAlarmUserData(OSAlarm *alarm,
|
|||||||
BOOL
|
BOOL
|
||||||
OSWaitAlarm(OSAlarm *alarm);
|
OSWaitAlarm(OSAlarm *alarm);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
uint64_t
|
uint64_t
|
||||||
OSGetAtomic64(uint64_t *ptr);
|
OSGetAtomic64(uint64_t *ptr);
|
||||||
@ -49,4 +51,6 @@ BOOL
|
|||||||
OSTestAndSetAtomic64(uint64_t *ptr,
|
OSTestAndSetAtomic64(uint64_t *ptr,
|
||||||
uint32_t bit);
|
uint32_t bit);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint32_t MEMBaseHeapType;
|
typedef uint32_t MEMBaseHeapType;
|
||||||
typedef void *MEMHeapHandle;
|
typedef void *MEMHeapHandle;
|
||||||
@ -23,4 +25,6 @@ MEMHeapHandle
|
|||||||
MEMSetBaseHeapHandle(MEMBaseHeapType type,
|
MEMSetBaseHeapHandle(MEMBaseHeapType type,
|
||||||
MEMHeapHandle handle);
|
MEMHeapHandle handle);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
DCInvalidateRange(void *addr,
|
DCInvalidateRange(void *addr,
|
||||||
@ -31,4 +33,6 @@ void
|
|||||||
DCTouchRange(void *addr,
|
DCTouchRange(void *addr,
|
||||||
uint32_t size);
|
uint32_t size);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSCondition OSCondition;
|
typedef struct OSCondition OSCondition;
|
||||||
typedef struct OSMutex OSMutex;
|
typedef struct OSMutex OSMutex;
|
||||||
@ -41,4 +43,6 @@ OSWaitCond(OSCondition *condition,
|
|||||||
void
|
void
|
||||||
OSSignalCond(OSCondition *condition);
|
OSSignalCond(OSCondition *condition);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
uint32_t
|
uint32_t
|
||||||
OSGetCoreCount();
|
OSGetCoreCount();
|
||||||
@ -15,4 +17,6 @@ OSGetMainCoreId();
|
|||||||
BOOL
|
BOOL
|
||||||
OSIsMainCore();
|
OSIsMainCore();
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
OSConsoleWrite(const char *msg,
|
OSConsoleWrite(const char *msg,
|
||||||
@ -18,4 +20,6 @@ OSPanic(const char *file,
|
|||||||
void
|
void
|
||||||
OSFatal(const char *msg);
|
OSFatal(const char *msg);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -3,7 +3,9 @@
|
|||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef void *OSDynLoadModule;
|
typedef void *OSDynLoadModule;
|
||||||
|
|
||||||
@ -31,4 +33,6 @@ OSDynLoad_FindExport(OSDynLoadModule module,
|
|||||||
void
|
void
|
||||||
OSDynLoad_Release(OSDynLoadModule module);
|
OSDynLoad_Release(OSDynLoadModule module);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -3,7 +3,9 @@
|
|||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSEvent OSEvent;
|
typedef struct OSEvent OSEvent;
|
||||||
typedef uint32_t OSEventMode;
|
typedef uint32_t OSEventMode;
|
||||||
@ -61,4 +63,6 @@ BOOL
|
|||||||
OSWaitEventWithTimeout(OSEvent *event,
|
OSWaitEventWithTimeout(OSEvent *event,
|
||||||
OSTime timeout);
|
OSTime timeout);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint32_t OSExceptionType;
|
typedef uint32_t OSExceptionType;
|
||||||
typedef BOOL (*OSExceptionCallbackFn)(OSContext *context);
|
typedef BOOL (*OSExceptionCallbackFn)(OSContext *context);
|
||||||
@ -34,4 +36,6 @@ OSSetExceptionCallbackEx(UNKNOWN_ARG,
|
|||||||
OSExceptionType exceptionType,
|
OSExceptionType exceptionType,
|
||||||
OSExceptionCallbackFn callback);
|
OSExceptionCallbackFn callback);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
exit(int code);
|
exit(int code);
|
||||||
@ -9,4 +11,6 @@ exit(int code);
|
|||||||
void
|
void
|
||||||
_Exit();
|
_Exit();
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct MEMExpandedHeap MEMExpandedHeap;
|
typedef struct MEMExpandedHeap MEMExpandedHeap;
|
||||||
|
|
||||||
@ -82,4 +84,6 @@ MEMGetGroupIDForMBlockExpHeap(uint8_t *addr);
|
|||||||
MEMExpHeapDirection
|
MEMExpHeapDirection
|
||||||
MEMGetAllocDirForMBlockExpHeap(uint8_t *addr);
|
MEMGetAllocDirForMBlockExpHeap(uint8_t *addr);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSFastCondition OSFastCondition;
|
typedef struct OSFastCondition OSFastCondition;
|
||||||
typedef struct OSFastMutex OSFastMutex;
|
typedef struct OSFastMutex OSFastMutex;
|
||||||
@ -32,4 +34,6 @@ OSFastCond_Wait(OSFastCondition *condition,
|
|||||||
void
|
void
|
||||||
OSFastCond_Signal(OSFastCondition *condition);
|
OSFastCond_Signal(OSFastCondition *condition);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSFastMutex OSFastMutex;
|
typedef struct OSFastMutex OSFastMutex;
|
||||||
typedef struct OSFastMutexLink OSFastMutexLink;
|
typedef struct OSFastMutexLink OSFastMutexLink;
|
||||||
@ -46,4 +48,6 @@ OSFastMutex_Unlock(OSFastMutex *mutex);
|
|||||||
BOOL
|
BOOL
|
||||||
OSFastMutex_TryLock(OSFastMutex *mutex);
|
OSFastMutex_TryLock(OSFastMutex *mutex);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint32_t MEMFrameHeapFreeMode;
|
typedef uint32_t MEMFrameHeapFreeMode;
|
||||||
|
|
||||||
@ -59,4 +61,6 @@ uint32_t
|
|||||||
MEMGetAllocatableSizeForFrmHeapEx(MEMFrameHeap *heap,
|
MEMGetAllocatableSizeForFrmHeapEx(MEMFrameHeap *heap,
|
||||||
int alignment);
|
int alignment);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
struct MEMMemoryLink
|
struct MEMMemoryLink
|
||||||
{
|
{
|
||||||
@ -59,4 +61,6 @@ void *
|
|||||||
MEMGetNthListObject(MEMMEMMemoryList *list,
|
MEMGetNthListObject(MEMMEMMemoryList *list,
|
||||||
uint16_t n);
|
uint16_t n);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint32_t OSMessageFlags;
|
typedef uint32_t OSMessageFlags;
|
||||||
|
|
||||||
@ -79,4 +81,6 @@ OSPeekMessage(OSMessageQueue *queue,
|
|||||||
OSMessageQueue *
|
OSMessageQueue *
|
||||||
OSGetSystemMessageQueue();
|
OSGetSystemMessageQueue();
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSThread;
|
typedef struct OSThread;
|
||||||
|
|
||||||
@ -66,4 +68,6 @@ OSUnlockMutex(OSMutex *mutex);
|
|||||||
BOOL
|
BOOL
|
||||||
OSTryLockMutex(OSMutex *mutex);
|
OSTryLockMutex(OSMutex *mutex);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSRendezvous OSRendezvous;
|
typedef struct OSRendezvous OSRendezvous;
|
||||||
|
|
||||||
@ -27,4 +29,6 @@ OSWaitRendezvousWithTimeout(OSRendezvous *rendezvous,
|
|||||||
uint32_t coreMask,
|
uint32_t coreMask,
|
||||||
OSTime timeout);
|
OSTime timeout);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSSemaphore OSSemaphore;
|
typedef struct OSSemaphore OSSemaphore;
|
||||||
|
|
||||||
@ -43,4 +45,6 @@ OSWaitSemaphore(OSSemaphore *semaphore);
|
|||||||
int32_t
|
int32_t
|
||||||
OSTryWaitSemaphore(OSSemaphore *semaphore);
|
OSTryWaitSemaphore(OSSemaphore *semaphore);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSSpinLock OSSpinLock;
|
typedef struct OSSpinLock OSSpinLock;
|
||||||
|
|
||||||
@ -48,4 +50,6 @@ OSUninterruptibleSpinLock_TryAcquireWithTimeout(OSSpinLock *spinlock,
|
|||||||
BOOL
|
BOOL
|
||||||
OSUninterruptibleSpinLock_Release(OSSpinLock *spinlock);
|
OSUninterruptibleSpinLock_Release(OSSpinLock *spinlock);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct MPTask MPTask;
|
typedef struct MPTask MPTask;
|
||||||
typedef struct MPTaskInfo MPTaskInfo;
|
typedef struct MPTaskInfo MPTaskInfo;
|
||||||
@ -178,4 +180,6 @@ MPRunTasksFromTaskQ(MPTaskQueue *queue,
|
|||||||
BOOL
|
BOOL
|
||||||
MPRunTask(MPTask *task);
|
MPRunTask(MPTask *task);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -3,7 +3,9 @@
|
|||||||
#include "time.h"
|
#include "time.h"
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSContext OSContext;
|
typedef struct OSContext OSContext;
|
||||||
typedef struct OSFastMutex OSFastMutex;
|
typedef struct OSFastMutex OSFastMutex;
|
||||||
@ -319,4 +321,6 @@ OSWakeupThread(OSThreadQueue *queue);
|
|||||||
void
|
void
|
||||||
OSYieldThread();
|
OSYieldThread();
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSThread OSThread;
|
typedef struct OSThread OSThread;
|
||||||
|
|
||||||
@ -46,4 +48,6 @@ void
|
|||||||
OSInitThreadQueueEx(OSThreadQueue *queue,
|
OSInitThreadQueueEx(OSThreadQueue *queue,
|
||||||
void *parent);
|
void *parent);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct OSCalendarTime OSCalendarTime;
|
typedef struct OSCalendarTime OSCalendarTime;
|
||||||
|
|
||||||
@ -44,4 +46,6 @@ void
|
|||||||
OSTicksToCalendarTime(OSTime time,
|
OSTicksToCalendarTime(OSTime time,
|
||||||
OSCalendarTime *calendarTime);
|
OSCalendarTime *calendarTime);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct MEMUnitHeap MEMUnitHeap;
|
typedef struct MEMUnitHeap MEMUnitHeap;
|
||||||
|
|
||||||
@ -38,4 +40,6 @@ MEMCalcHeapSizeForUnitHeap(uint32_t blockSize,
|
|||||||
uint32_t count,
|
uint32_t count,
|
||||||
int32_t alignment);
|
int32_t alignment);
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
WUT_LIB_HEADER_START
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint32_t GX2InitAttributes;
|
typedef uint32_t GX2InitAttributes;
|
||||||
|
|
||||||
@ -20,4 +22,6 @@ GX2Init(uint32_t *attributes);
|
|||||||
void
|
void
|
||||||
GX2Shutdown();
|
GX2Shutdown();
|
||||||
|
|
||||||
WUT_LIB_HEADER_END
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,23 +1,3 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "wut_structsize.h"
|
#include "wut_structsize.h"
|
||||||
#include "wut_types.h"
|
#include "wut_types.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
|
|
||||||
#define WUT_LIB_HEADER_START \
|
|
||||||
extern "C" { \
|
|
||||||
_Pragma("pack(push, 1)")
|
|
||||||
|
|
||||||
#define WUT_LIB_HEADER_END \
|
|
||||||
_Pragma("pack(pop)") \
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define WUT_LIB_HEADER_START \
|
|
||||||
_Pragma("pack(push, 1)")
|
|
||||||
|
|
||||||
#define WUT_LIB_HEADER_END \
|
|
||||||
_Pragma("pack(pop)")
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
Loading…
Reference in New Issue
Block a user