Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
aidinabedi committed Dec 27, 2009
1 parent 7d816f1 commit 140321a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
16 changes: 8 additions & 8 deletions Shiny/include/ShinyMacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ THE SOFTWARE.
#define PROFILE_UPDATE() \
ShinyManager_update(&Shiny_instance)

#define PROFILE_SET_DAMPING(from0to1) \
Shiny_instance.damping = (from0to1);
#define PROFILE_SET_DAMPING(floatfrom0to1) \
Shiny_instance.damping = (floatfrom0to1);

#define PROFILE_GET_DAMPING() \
(Shiny_instance.damping)
Expand Down Expand Up @@ -103,13 +103,13 @@ THE SOFTWARE.
/*---------------------------------------------------------------------------*/
/* public preprocessors */

#define PROFILE_WATCH_SHARED_SELF(name, from0to1) \
ShinyManager_isSelfZoneGreaterEqual( \
&Shiny_instance, _PROFILE_ID_ZONE_SHARED(name), from0to1)
#define PROFILE_IS_SHARED_SELF_BELOW(name, floatfrom0to1) \
ShinyManager_isZoneSelfTimeBelow( \
&Shiny_instance, _PROFILE_ID_ZONE_SHARED(name), floatfrom0to1)

#define PROFILE_WATCH_SHARED_TOTAL(name, from0to1) \
ShinyManager_isTotalZoneGreaterEqual( \
&Shiny_instance, _PROFILE_ID_ZONE_SHARED(name), from0to1)
#define PROFILE_IS_SHARED_TOTAL_BELOW(name, floatfrom0to1) \
ShinyManager_isZoneTotalTimeBelow( \
&Shiny_instance, _PROFILE_ID_ZONE_SHARED(name), floatfrom0to1)


/*---------------------------------------------------------------------------*/
Expand Down
4 changes: 0 additions & 4 deletions Shiny/scripts/Shiny.vcproj
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,6 @@
RelativePath="..\include\ShinyData.h"
>
</File>
<File
RelativePath="..\include\ShinyDoc.h"
>
</File>
<File
RelativePath="..\include\ShinyMacros.h"
>
Expand Down

0 comments on commit 140321a

Please sign in to comment.